
    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_d03d80e354a9a0d140d32b48.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00000{vertical-align:0.000000px;}
.ls8_c00000{letter-spacing:-0.079200px;}
.ls4_c00000{letter-spacing:-0.067284px;}
.ls3_c00000{letter-spacing:-0.064800px;}
.ls1_c00000{letter-spacing:-0.050400px;}
.ls6_c00000{letter-spacing:-0.043200px;}
.ls5_c00000{letter-spacing:-0.028800px;}
.ls2_c00000{letter-spacing:-0.021600px;}
.ls9_c00000{letter-spacing:-0.007200px;}
.ls0_c00000{letter-spacing:0.000000px;}
.ls7_c00000{letter-spacing:0.021600px;}
.lsa_c00000{letter-spacing:843.998400px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00000{word-spacing:0.000000px;}
.ws7_c00000{word-spacing:0.165600px;}
.ws2_c00000{word-spacing:0.180000px;}
.ws5_c00000{word-spacing:0.201600px;}
.ws1_c00000{word-spacing:0.208800px;}
.ws3_c00000{word-spacing:0.223200px;}
.ws6_c00000{word-spacing:0.237600px;}
.ws4_c00000{word-spacing:0.273600px;}
._0_c00000{width:1.224000px;}
.fc0_c00000{color:rgb(0,0,0);}
.fs0_c00000{font-size:72.000000px;}
.fs1_c00000{font-size:96.120000px;}
.y0_c00000{bottom:0.000000px;}
.y10_c00000{bottom:230.430450px;}
.yf_c00000{bottom:271.830450px;}
.ye_c00000{bottom:313.230450px;}
.yd_c00000{bottom:354.630450px;}
.yc_c00000{bottom:396.030450px;}
.yb_c00000{bottom:437.430450px;}
.ya_c00000{bottom:478.830450px;}
.y9_c00000{bottom:520.230450px;}
.y8_c00000{bottom:561.630450px;}
.y7_c00000{bottom:603.030450px;}
.y6_c00000{bottom:652.530450px;}
.y5_c00000{bottom:699.600450px;}
.y4_c00000{bottom:741.000450px;}
.y3_c00000{bottom:782.400450px;}
.y2_c00000{bottom:823.800450px;}
.y1_c00000{bottom:861.330450px;}
.h1_c00000{height:75.093750px;}
.h2_c00000{height:100.250156px;}
.h0_c00000{height:1263.000000px;}
.w1_c00000{width:892.500000px;}
.w0_c00000{width:892.830000px;}
.x0_c00000{left:0.000000px;}
.x5_c00000{left:170.100000px;}
.x8_c00000{left:178.740000px;}
.x4_c00000{left:196.650000px;}
.x7_c00000{left:209.340000px;}
.x3_c00000{left:271.710000px;}
.xa_c00000{left:329.220000px;}
.x2_c00000{left:348.660000px;}
.x6_c00000{left:361.710000px;}
.xc_c00000{left:405.720000px;}
.x9_c00000{left:428.220000px;}
.xb_c00000{left:467.730000px;}
.x1_c00000{left:679.680000px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls8_c00000{letter-spacing:-0.070400pt;}
.ls4_c00000{letter-spacing:-0.059808pt;}
.ls3_c00000{letter-spacing:-0.057600pt;}
.ls1_c00000{letter-spacing:-0.044800pt;}
.ls6_c00000{letter-spacing:-0.038400pt;}
.ls5_c00000{letter-spacing:-0.025600pt;}
.ls2_c00000{letter-spacing:-0.019200pt;}
.ls9_c00000{letter-spacing:-0.006400pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ls7_c00000{letter-spacing:0.019200pt;}
.lsa_c00000{letter-spacing:750.220800pt;}
.ws0_c00000{word-spacing:0.000000pt;}
.ws7_c00000{word-spacing:0.147200pt;}
.ws2_c00000{word-spacing:0.160000pt;}
.ws5_c00000{word-spacing:0.179200pt;}
.ws1_c00000{word-spacing:0.185600pt;}
.ws3_c00000{word-spacing:0.198400pt;}
.ws6_c00000{word-spacing:0.211200pt;}
.ws4_c00000{word-spacing:0.243200pt;}
._0_c00000{width:1.088000pt;}
.fs0_c00000{font-size:64.000000pt;}
.fs1_c00000{font-size:85.440000pt;}
.y0_c00000{bottom:0.000000pt;}
.y10_c00000{bottom:204.827067pt;}
.yf_c00000{bottom:241.627067pt;}
.ye_c00000{bottom:278.427067pt;}
.yd_c00000{bottom:315.227067pt;}
.yc_c00000{bottom:352.027067pt;}
.yb_c00000{bottom:388.827067pt;}
.ya_c00000{bottom:425.627067pt;}
.y9_c00000{bottom:462.427067pt;}
.y8_c00000{bottom:499.227067pt;}
.y7_c00000{bottom:536.027067pt;}
.y6_c00000{bottom:580.027067pt;}
.y5_c00000{bottom:621.867067pt;}
.y4_c00000{bottom:658.667067pt;}
.y3_c00000{bottom:695.467067pt;}
.y2_c00000{bottom:732.267067pt;}
.y1_c00000{bottom:765.627067pt;}
.h1_c00000{height:66.750000pt;}
.h2_c00000{height:89.111250pt;}
.h0_c00000{height:1122.666667pt;}
.w1_c00000{width:793.333333pt;}
.w0_c00000{width:793.626667pt;}
.x0_c00000{left:0.000000pt;}
.x5_c00000{left:151.200000pt;}
.x8_c00000{left:158.880000pt;}
.x4_c00000{left:174.800000pt;}
.x7_c00000{left:186.080000pt;}
.x3_c00000{left:241.520000pt;}
.xa_c00000{left:292.640000pt;}
.x2_c00000{left:309.920000pt;}
.x6_c00000{left:321.520000pt;}
.xc_c00000{left:360.640000pt;}
.x9_c00000{left:380.640000pt;}
.xb_c00000{left:415.760000pt;}
.x1_c00000{left:604.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_67c54012e048c73b48797a9d.woff2')format("woff");}.ff1_c00001{font-family:ff1_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);}
.m1_c00001{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00001{word-spacing:-16.500000px;}
.ws1_c00001{word-spacing:0.000000px;}
._1_c00001{margin-left:-4.800000px;}
._9_c00001{margin-left:-3.252000px;}
._6_c00001{margin-left:-2.244000px;}
._0_c00001{margin-left:-1.080000px;}
._4_c00001{width:1.716000px;}
._8_c00001{width:2.772000px;}
._5_c00001{width:4.158000px;}
._2_c00001{width:5.874000px;}
._3_c00001{width:6.954000px;}
._7_c00001{width:8.118000px;}
.fc1_c00001{color:transparent;}
.fc0_c00001{color:rgb(0,0,0);}
.fs0_c00001{font-size:60.000000px;}
.fs1_c00001{font-size:66.000000px;}
.y0_c00001{bottom:0.000000px;}
.yc_c00001{bottom:131.808000px;}
.yb_c00001{bottom:151.311000px;}
.ya_c00001{bottom:190.317000px;}
.y9_c00001{bottom:209.820000px;}
.y8_c00001{bottom:229.323000px;}
.y7_c00001{bottom:248.826000px;}
.y6_c00001{bottom:268.329000px;}
.y5_c00001{bottom:287.832000px;}
.y4_c00001{bottom:307.335000px;}
.y3_c00001{bottom:470.835000px;}
.y2_c00001{bottom:506.836500px;}
.y1_c00001{bottom:538.335000px;}
.h2_c00001{height:45.858398px;}
.h0_c00001{height:1262.835000px;}
.h1_c00001{height:1263.000000px;}
.w0_c00001{width:892.920000px;}
.w1_c00001{width:893.250000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:127.575000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:-14.666667pt;}
.ws1_c00001{word-spacing:0.000000pt;}
._1_c00001{margin-left:-4.266667pt;}
._9_c00001{margin-left:-2.890667pt;}
._6_c00001{margin-left:-1.994667pt;}
._0_c00001{margin-left:-0.960000pt;}
._4_c00001{width:1.525333pt;}
._8_c00001{width:2.464000pt;}
._5_c00001{width:3.696000pt;}
._2_c00001{width:5.221333pt;}
._3_c00001{width:6.181333pt;}
._7_c00001{width:7.216000pt;}
.fs0_c00001{font-size:53.333333pt;}
.fs1_c00001{font-size:58.666667pt;}
.y0_c00001{bottom:0.000000pt;}
.yc_c00001{bottom:117.162667pt;}
.yb_c00001{bottom:134.498667pt;}
.ya_c00001{bottom:169.170667pt;}
.y9_c00001{bottom:186.506667pt;}
.y8_c00001{bottom:203.842667pt;}
.y7_c00001{bottom:221.178667pt;}
.y6_c00001{bottom:238.514667pt;}
.y5_c00001{bottom:255.850667pt;}
.y4_c00001{bottom:273.186667pt;}
.y3_c00001{bottom:418.520000pt;}
.y2_c00001{bottom:450.521333pt;}
.y1_c00001{bottom:478.520000pt;}
.h2_c00001{height:40.763021pt;}
.h0_c00001{height:1122.520000pt;}
.h1_c00001{height:1122.666667pt;}
.w0_c00001{width:793.706667pt;}
.w1_c00001{width:794.000000pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b346ca62cd5fd2a41cdb0cad.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.093262;font-style:normal;font-weight:normal;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_b01d64c338414ae0f4faf82d.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00002;src:url('chunks/assets/font_e46928406132eab9ed4c2975.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:1.106934;font-style: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.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.v1_c00002{vertical-align:-82.800000px;}
.v0_c00002{vertical-align:0.000000px;}
.lsb_c00002{letter-spacing:-0.122400px;}
.ls6_c00002{letter-spacing:-0.064800px;}
.ls8_c00002{letter-spacing:-0.036000px;}
.ls7_c00002{letter-spacing:-0.028800px;}
.lsc_c00002{letter-spacing:-0.021600px;}
.lsd_c00002{letter-spacing:-0.014400px;}
.ls5_c00002{letter-spacing:0.000000px;}
.lsa_c00002{letter-spacing:0.007200px;}
.ls4_c00002{letter-spacing:0.014400px;}
.ls1_c00002{letter-spacing:0.021600px;}
.ls2_c00002{letter-spacing:0.028800px;}
.ls9_c00002{letter-spacing:0.043200px;}
.ls0_c00002{letter-spacing:652.752000px;}
.lse_c00002{letter-spacing:844.351200px;}
.ls3_c00002{letter-spacing:1171.008000px;}
.sc__c00002{text-shadow:none;}
.sc0_c00002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
.sc0_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00002{word-spacing:0.000000px;}
.ws7_c00002{word-spacing:0.136800px;}
.ws5_c00002{word-spacing:0.144000px;}
.ws6_c00002{word-spacing:0.151200px;}
.ws4_c00002{word-spacing:0.158400px;}
.wsa_c00002{word-spacing:0.165600px;}
.ws9_c00002{word-spacing:0.180000px;}
.ws8_c00002{word-spacing:0.273600px;}
.ws3_c00002{word-spacing:8.841600px;}
.ws2_c00002{word-spacing:8.920800px;}
.ws1_c00002{word-spacing:104.788800px;}
._0_c00002{width:1.296000px;}
.fc0_c00002{color:rgb(0,0,0);}
.fs0_c00002{font-size:72.000000px;}
.y0_c00002{bottom:0.000000px;}
.y2_c00002{bottom:46.830450px;}
.y1_c00002{bottom:67.530450px;}
.y1b_c00002{bottom:203.070450px;}
.y1a_c00002{bottom:223.770450px;}
.y19_c00002{bottom:244.470450px;}
.y18_c00002{bottom:265.170450px;}
.y17_c00002{bottom:285.870450px;}
.y16_c00002{bottom:306.570450px;}
.y15_c00002{bottom:327.270450px;}
.y14_c00002{bottom:347.880450px;}
.y13_c00002{bottom:389.280450px;}
.y12_c00002{bottom:409.980450px;}
.y11_c00002{bottom:430.680450px;}
.y10_c00002{bottom:451.380450px;}
.yf_c00002{bottom:472.080450px;}
.ye_c00002{bottom:492.780450px;}
.yd_c00002{bottom:513.480450px;}
.yc_c00002{bottom:534.180450px;}
.yb_c00002{bottom:554.880450px;}
.ya_c00002{bottom:596.280450px;}
.y9_c00002{bottom:616.980450px;}
.y8_c00002{bottom:654.420450px;}
.y7_c00002{bottom:931.800450px;}
.y6_c00002{bottom:973.200450px;}
.y5_c00002{bottom:1014.600450px;}
.y4_c00002{bottom:1056.000450px;}
.y3_c00002{bottom:1097.400450px;}
.h1_c00002{height:63.175781px;}
.h3_c00002{height:64.546875px;}
.h2_c00002{height:75.093750px;}
.h0_c00002{height:1263.000000px;}
.w1_c00002{width:892.500000px;}
.w0_c00002{width:892.830000px;}
.x0_c00002{left:0.000000px;}
.x2_c00002{left:170.105485px;}
.xa_c00002{left:199.091644px;}
.xb_c00002{left:275.236539px;}
.x7_c00002{left:320.128201px;}
.x9_c00002{left:321.207760px;}
.x4_c00002{left:360.179840px;}
.xc_c00002{left:375.671511px;}
.x6_c00002{left:417.234533px;}
.x8_c00002{left:461.694371px;}
.x5_c00002{left:467.721909px;}
.x3_c00002{left:680.862841px;}
.x1_c00002{left:756.360000px;}
@media print{
.v1_c00002{vertical-align:-73.600000pt;}
.v0_c00002{vertical-align:0.000000pt;}
.lsb_c00002{letter-spacing:-0.108800pt;}
.ls6_c00002{letter-spacing:-0.057600pt;}
.ls8_c00002{letter-spacing:-0.032000pt;}
.ls7_c00002{letter-spacing:-0.025600pt;}
.lsc_c00002{letter-spacing:-0.019200pt;}
.lsd_c00002{letter-spacing:-0.012800pt;}
.ls5_c00002{letter-spacing:0.000000pt;}
.lsa_c00002{letter-spacing:0.006400pt;}
.ls4_c00002{letter-spacing:0.012800pt;}
.ls1_c00002{letter-spacing:0.019200pt;}
.ls2_c00002{letter-spacing:0.025600pt;}
.ls9_c00002{letter-spacing:0.038400pt;}
.ls0_c00002{letter-spacing:580.224000pt;}
.lse_c00002{letter-spacing:750.534400pt;}
.ls3_c00002{letter-spacing:1040.896000pt;}
.ws0_c00002{word-spacing:0.000000pt;}
.ws7_c00002{word-spacing:0.121600pt;}
.ws5_c00002{word-spacing:0.128000pt;}
.ws6_c00002{word-spacing:0.134400pt;}
.ws4_c00002{word-spacing:0.140800pt;}
.wsa_c00002{word-spacing:0.147200pt;}
.ws9_c00002{word-spacing:0.160000pt;}
.ws8_c00002{word-spacing:0.243200pt;}
.ws3_c00002{word-spacing:7.859200pt;}
.ws2_c00002{word-spacing:7.929600pt;}
.ws1_c00002{word-spacing:93.145600pt;}
._0_c00002{width:1.152000pt;}
.fs0_c00002{font-size:64.000000pt;}
.y0_c00002{bottom:0.000000pt;}
.y2_c00002{bottom:41.627067pt;}
.y1_c00002{bottom:60.027067pt;}
.y1b_c00002{bottom:180.507067pt;}
.y1a_c00002{bottom:198.907067pt;}
.y19_c00002{bottom:217.307067pt;}
.y18_c00002{bottom:235.707067pt;}
.y17_c00002{bottom:254.107067pt;}
.y16_c00002{bottom:272.507067pt;}
.y15_c00002{bottom:290.907067pt;}
.y14_c00002{bottom:309.227067pt;}
.y13_c00002{bottom:346.027067pt;}
.y12_c00002{bottom:364.427067pt;}
.y11_c00002{bottom:382.827067pt;}
.y10_c00002{bottom:401.227067pt;}
.yf_c00002{bottom:419.627067pt;}
.ye_c00002{bottom:438.027067pt;}
.yd_c00002{bottom:456.427067pt;}
.yc_c00002{bottom:474.827067pt;}
.yb_c00002{bottom:493.227067pt;}
.ya_c00002{bottom:530.027067pt;}
.y9_c00002{bottom:548.427067pt;}
.y8_c00002{bottom:581.707067pt;}
.y7_c00002{bottom:828.267067pt;}
.y6_c00002{bottom:865.067067pt;}
.y5_c00002{bottom:901.867067pt;}
.y4_c00002{bottom:938.667067pt;}
.y3_c00002{bottom:975.467067pt;}
.h1_c00002{height:56.156250pt;}
.h3_c00002{height:57.375000pt;}
.h2_c00002{height:66.750000pt;}
.h0_c00002{height:1122.666667pt;}
.w1_c00002{width:793.333333pt;}
.w0_c00002{width:793.626667pt;}
.x0_c00002{left:0.000000pt;}
.x2_c00002{left:151.204876pt;}
.xa_c00002{left:176.970350pt;}
.xb_c00002{left:244.654701pt;}
.x7_c00002{left:284.558401pt;}
.x9_c00002{left:285.518009pt;}
.x4_c00002{left:320.159857pt;}
.xc_c00002{left:333.930232pt;}
.x6_c00002{left:370.875140pt;}
.x8_c00002{left:410.394996pt;}
.x5_c00002{left:415.752808pt;}
.x3_c00002{left:605.211414pt;}
.x1_c00002{left:672.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e88b769613618b7f67d9c81f.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:1.106934;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00003{font-family:ff3_c00003;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00003{vertical-align:0.000000px;}
.ls0_c00003{letter-spacing:0.000000px;}
.ls1_c00003{letter-spacing:843.998400px;}
.sc__c00003{text-shadow:none;}
.sc0_c00003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
.sc0_c00003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00003{word-spacing:0.000000px;}
.fc0_c00003{color:rgb(0,0,0);}
.fs0_c00003{font-size:72.000000px;}
.y0_c00003{bottom:0.000000px;}
.y2_c00003{bottom:46.830450px;}
.y1_c00003{bottom:67.530450px;}
.y6_c00003{bottom:1035.300450px;}
.y5_c00003{bottom:1056.090450px;}
.y4_c00003{bottom:1076.790450px;}
.y3_c00003{bottom:1097.490450px;}
.h1_c00003{height:63.175781px;}
.h2_c00003{height:64.546875px;}
.h3_c00003{height:75.093750px;}
.h0_c00003{height:1263.000000px;}
.w1_c00003{width:892.500000px;}
.w0_c00003{width:892.830000px;}
.x0_c00003{left:0.000000px;}
.x2_c00003{left:127.620000px;}
.x3_c00003{left:425.250000px;}
.x1_c00003{left:713.880000px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls0_c00003{letter-spacing:0.000000pt;}
.ls1_c00003{letter-spacing:750.220800pt;}
.ws0_c00003{word-spacing:0.000000pt;}
.fs0_c00003{font-size:64.000000pt;}
.y0_c00003{bottom:0.000000pt;}
.y2_c00003{bottom:41.627067pt;}
.y1_c00003{bottom:60.027067pt;}
.y6_c00003{bottom:920.267067pt;}
.y5_c00003{bottom:938.747067pt;}
.y4_c00003{bottom:957.147067pt;}
.y3_c00003{bottom:975.547067pt;}
.h1_c00003{height:56.156250pt;}
.h2_c00003{height:57.375000pt;}
.h3_c00003{height:66.750000pt;}
.h0_c00003{height:1122.666667pt;}
.w1_c00003{width:793.333333pt;}
.w0_c00003{width:793.626667pt;}
.x0_c00003{left:0.000000pt;}
.x2_c00003{left:113.440000pt;}
.x3_c00003{left:378.000000pt;}
.x1_c00003{left:634.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_faef6a164de7157fcd8ae8eb.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.093262;font-style:normal;font-weight:normal;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_25e87e43af0b26757eb8fce0.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00004;src:url('chunks/assets/font_89160228d7762050d71ce14a.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:1.106934;font-style: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;}
.ls4_c00004{letter-spacing:-0.007200px;}
.ls2_c00004{letter-spacing:0.000000px;}
.ls1_c00004{letter-spacing:0.007200px;}
.ls3_c00004{letter-spacing:0.021600px;}
.ls0_c00004{letter-spacing:0.050400px;}
.ls5_c00004{letter-spacing:843.998400px;}
.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;}
}
.ws1_c00004{word-spacing:-0.136800px;}
.ws5_c00004{word-spacing:-0.064800px;}
.ws4_c00004{word-spacing:-0.050400px;}
.ws2_c00004{word-spacing:-0.007200px;}
.ws0_c00004{word-spacing:0.000000px;}
.ws3_c00004{word-spacing:0.007200px;}
._0_c00004{margin-left:-1.224000px;}
.fc0_c00004{color:rgb(0,0,0);}
.fs0_c00004{font-size:72.000000px;}
.y0_c00004{bottom:0.000000px;}
.y2_c00004{bottom:46.830450px;}
.y1_c00004{bottom:67.530450px;}
.yc_c00004{bottom:724.890450px;}
.yb_c00004{bottom:766.290450px;}
.ya_c00004{bottom:807.600450px;}
.y9_c00004{bottom:849.000450px;}
.y8_c00004{bottom:890.400450px;}
.y7_c00004{bottom:931.800450px;}
.y6_c00004{bottom:973.200450px;}
.y5_c00004{bottom:1014.600450px;}
.y4_c00004{bottom:1056.000450px;}
.y3_c00004{bottom:1097.400450px;}
.h1_c00004{height:63.175781px;}
.h3_c00004{height:64.546875px;}
.h2_c00004{height:72.562500px;}
.h0_c00004{height:1263.000000px;}
.w1_c00004{width:892.500000px;}
.w0_c00004{width:892.830000px;}
.x0_c00004{left:0.000000px;}
.x2_c00004{left:170.100000px;}
.x9_c00004{left:174.960000px;}
.x8_c00004{left:183.870000px;}
.x6_c00004{left:331.830000px;}
.x3_c00004{left:557.910000px;}
.x4_c00004{left:589.500000px;}
.x5_c00004{left:678.330000px;}
.x1_c00004{left:756.360000px;}
.x7_c00004{left:765.360000px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls4_c00004{letter-spacing:-0.006400pt;}
.ls2_c00004{letter-spacing:0.000000pt;}
.ls1_c00004{letter-spacing:0.006400pt;}
.ls3_c00004{letter-spacing:0.019200pt;}
.ls0_c00004{letter-spacing:0.044800pt;}
.ls5_c00004{letter-spacing:750.220800pt;}
.ws1_c00004{word-spacing:-0.121600pt;}
.ws5_c00004{word-spacing:-0.057600pt;}
.ws4_c00004{word-spacing:-0.044800pt;}
.ws2_c00004{word-spacing:-0.006400pt;}
.ws0_c00004{word-spacing:0.000000pt;}
.ws3_c00004{word-spacing:0.006400pt;}
._0_c00004{margin-left:-1.088000pt;}
.fs0_c00004{font-size:64.000000pt;}
.y0_c00004{bottom:0.000000pt;}
.y2_c00004{bottom:41.627067pt;}
.y1_c00004{bottom:60.027067pt;}
.yc_c00004{bottom:644.347067pt;}
.yb_c00004{bottom:681.147067pt;}
.ya_c00004{bottom:717.867067pt;}
.y9_c00004{bottom:754.667067pt;}
.y8_c00004{bottom:791.467067pt;}
.y7_c00004{bottom:828.267067pt;}
.y6_c00004{bottom:865.067067pt;}
.y5_c00004{bottom:901.867067pt;}
.y4_c00004{bottom:938.667067pt;}
.y3_c00004{bottom:975.467067pt;}
.h1_c00004{height:56.156250pt;}
.h3_c00004{height:57.375000pt;}
.h2_c00004{height:64.500000pt;}
.h0_c00004{height:1122.666667pt;}
.w1_c00004{width:793.333333pt;}
.w0_c00004{width:793.626667pt;}
.x0_c00004{left:0.000000pt;}
.x2_c00004{left:151.200000pt;}
.x9_c00004{left:155.520000pt;}
.x8_c00004{left:163.440000pt;}
.x6_c00004{left:294.960000pt;}
.x3_c00004{left:495.920000pt;}
.x4_c00004{left:524.000000pt;}
.x5_c00004{left:602.960000pt;}
.x1_c00004{left:672.320000pt;}
.x7_c00004{left:680.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c2e06db89967a63057743762.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00005{vertical-align:0.000000px;}
.ls0_c00005{letter-spacing:0.000000px;}
.ls1_c00005{letter-spacing:843.998400px;}
.sc__c00005{text-shadow:none;}
.sc0_c00005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00005{-webkit-text-stroke:0px transparent;}
.sc0_c00005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00005{word-spacing:0.000000px;}
.fc0_c00005{color:rgb(0,0,0);}
.fs0_c00005{font-size:72.000000px;}
.y0_c00005{bottom:0.000000px;}
.y2_c00005{bottom:46.830450px;}
.y1_c00005{bottom:67.530450px;}
.y6_c00005{bottom:973.290450px;}
.y5_c00005{bottom:1014.690450px;}
.y4_c00005{bottom:1056.090450px;}
.y3_c00005{bottom:1097.490450px;}
.h1_c00005{height:63.175781px;}
.h2_c00005{height:64.546875px;}
.h0_c00005{height:1263.000000px;}
.w1_c00005{width:892.500000px;}
.w0_c00005{width:892.830000px;}
.x0_c00005{left:0.000000px;}
.x2_c00005{left:127.620000px;}
.x1_c00005{left:713.880000px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls0_c00005{letter-spacing:0.000000pt;}
.ls1_c00005{letter-spacing:750.220800pt;}
.ws0_c00005{word-spacing:0.000000pt;}
.fs0_c00005{font-size:64.000000pt;}
.y0_c00005{bottom:0.000000pt;}
.y2_c00005{bottom:41.627067pt;}
.y1_c00005{bottom:60.027067pt;}
.y6_c00005{bottom:865.147067pt;}
.y5_c00005{bottom:901.947067pt;}
.y4_c00005{bottom:938.747067pt;}
.y3_c00005{bottom:975.547067pt;}
.h1_c00005{height:56.156250pt;}
.h2_c00005{height:57.375000pt;}
.h0_c00005{height:1122.666667pt;}
.w1_c00005{width:793.333333pt;}
.w0_c00005{width:793.626667pt;}
.x0_c00005{left:0.000000pt;}
.x2_c00005{left:113.440000pt;}
.x1_c00005{left:634.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_463db9d97e7cbb1f7fa3ba27.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.093262;font-style:normal;font-weight:normal;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_e30bf56908157be48a58b9f2.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00006;src:url('chunks/assets/font_7399883fd344dafaf17dd822.woff2')format("woff");}.ff3_c00006{font-family:ff3_c00006;line-height:1.106934;font-style: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;}
.lsd_c00006{letter-spacing:-0.072000px;}
.lsc_c00006{letter-spacing:-0.064800px;}
.lsb_c00006{letter-spacing:-0.057600px;}
.ls5_c00006{letter-spacing:-0.050400px;}
.lse_c00006{letter-spacing:-0.043200px;}
.ls7_c00006{letter-spacing:-0.036000px;}
.ls8_c00006{letter-spacing:-0.028800px;}
.ls6_c00006{letter-spacing:-0.021600px;}
.ls9_c00006{letter-spacing:-0.014400px;}
.lsa_c00006{letter-spacing:-0.007200px;}
.ls4_c00006{letter-spacing:0.000000px;}
.ls3_c00006{letter-spacing:0.007200px;}
.ls2_c00006{letter-spacing:0.014400px;}
.ls1_c00006{letter-spacing:0.021600px;}
.ls0_c00006{letter-spacing:1.584000px;}
.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;}
}
.ws1_c00006{word-spacing:-20.037600px;}
.ws0_c00006{word-spacing:-20.016000px;}
.ws19_c00006{word-spacing:-4.615200px;}
.ws18_c00006{word-spacing:-4.528800px;}
.ws23_c00006{word-spacing:-2.671200px;}
.ws22_c00006{word-spacing:-2.649600px;}
.ws10_c00006{word-spacing:-2.325600px;}
.ws2b_c00006{word-spacing:-1.836000px;}
.wsc_c00006{word-spacing:-1.670400px;}
.ws27_c00006{word-spacing:-1.663200px;}
.ws2a_c00006{word-spacing:-1.648800px;}
.ws26_c00006{word-spacing:-1.627200px;}
.ws2c_c00006{word-spacing:-1.620000px;}
.wsd_c00006{word-spacing:-1.612800px;}
.ws14_c00006{word-spacing:-0.921600px;}
.ws8_c00006{word-spacing:-0.885600px;}
.ws9_c00006{word-spacing:-0.799200px;}
.ws28_c00006{word-spacing:-0.604800px;}
.ws29_c00006{word-spacing:-0.525600px;}
.ws2_c00006{word-spacing:0.000000px;}
.ws13_c00006{word-spacing:0.144000px;}
.ws12_c00006{word-spacing:0.158400px;}
.ws1c_c00006{word-spacing:0.172800px;}
.wsf_c00006{word-spacing:0.180000px;}
.ws15_c00006{word-spacing:0.201600px;}
.ws3_c00006{word-spacing:0.208800px;}
.ws4_c00006{word-spacing:1.692000px;}
.ws5_c00006{word-spacing:1.706400px;}
.ws1f_c00006{word-spacing:2.304000px;}
.ws24_c00006{word-spacing:2.340000px;}
.ws1e_c00006{word-spacing:2.376000px;}
.ws25_c00006{word-spacing:2.426400px;}
.ws1d_c00006{word-spacing:2.685600px;}
.wsa_c00006{word-spacing:2.692800px;}
.wsb_c00006{word-spacing:2.721600px;}
.wse_c00006{word-spacing:3.794400px;}
.ws16_c00006{word-spacing:4.831200px;}
.ws17_c00006{word-spacing:4.903200px;}
.ws1a_c00006{word-spacing:17.827200px;}
.ws1b_c00006{word-spacing:17.834400px;}
.ws6_c00006{word-spacing:19.627200px;}
.ws7_c00006{word-spacing:19.706400px;}
.ws20_c00006{word-spacing:28.648800px;}
.ws21_c00006{word-spacing:28.656000px;}
.ws11_c00006{word-spacing:57.434400px;}
._0_c00006{margin-left:-2.808000px;}
._1_c00006{width:1.080000px;}
.fc0_c00006{color:rgb(0,0,0);}
.fs0_c00006{font-size:72.000000px;}
.y0_c00006{bottom:0.000000px;}
.y2_c00006{bottom:46.830450px;}
.y1_c00006{bottom:67.530450px;}
.y1f_c00006{bottom:136.830450px;}
.y1e_c00006{bottom:167.880450px;}
.y1d_c00006{bottom:198.930450px;}
.y1c_c00006{bottom:229.980450px;}
.y1b_c00006{bottom:261.030450px;}
.y1a_c00006{bottom:292.080450px;}
.y19_c00006{bottom:332.040450px;}
.y18_c00006{bottom:363.090450px;}
.y17_c00006{bottom:394.140450px;}
.y16_c00006{bottom:425.190450px;}
.y15_c00006{bottom:465.240450px;}
.y14_c00006{bottom:496.290450px;}
.y13_c00006{bottom:527.340450px;}
.y12_c00006{bottom:558.390450px;}
.y11_c00006{bottom:598.440450px;}
.y10_c00006{bottom:629.490450px;}
.yf_c00006{bottom:669.540450px;}
.ye_c00006{bottom:709.590450px;}
.yd_c00006{bottom:740.640450px;}
.yc_c00006{bottom:771.690450px;}
.yb_c00006{bottom:811.740450px;}
.ya_c00006{bottom:842.790450px;}
.y9_c00006{bottom:873.840450px;}
.y8_c00006{bottom:904.890450px;}
.y7_c00006{bottom:944.940450px;}
.y6_c00006{bottom:975.990450px;}
.y5_c00006{bottom:1007.040450px;}
.y4_c00006{bottom:1047.090450px;}
.y3_c00006{bottom:1097.400450px;}
.h1_c00006{height:63.175781px;}
.h3_c00006{height:64.546875px;}
.h2_c00006{height:75.093750px;}
.h0_c00006{height:1263.000000px;}
.w1_c00006{width:892.500000px;}
.w0_c00006{width:892.830000px;}
.x0_c00006{left:0.000000px;}
.x2_c00006{left:170.100000px;}
.x3_c00006{left:428.400000px;}
.x1_c00006{left:756.360000px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.lsd_c00006{letter-spacing:-0.064000pt;}
.lsc_c00006{letter-spacing:-0.057600pt;}
.lsb_c00006{letter-spacing:-0.051200pt;}
.ls5_c00006{letter-spacing:-0.044800pt;}
.lse_c00006{letter-spacing:-0.038400pt;}
.ls7_c00006{letter-spacing:-0.032000pt;}
.ls8_c00006{letter-spacing:-0.025600pt;}
.ls6_c00006{letter-spacing:-0.019200pt;}
.ls9_c00006{letter-spacing:-0.012800pt;}
.lsa_c00006{letter-spacing:-0.006400pt;}
.ls4_c00006{letter-spacing:0.000000pt;}
.ls3_c00006{letter-spacing:0.006400pt;}
.ls2_c00006{letter-spacing:0.012800pt;}
.ls1_c00006{letter-spacing:0.019200pt;}
.ls0_c00006{letter-spacing:1.408000pt;}
.ws1_c00006{word-spacing:-17.811200pt;}
.ws0_c00006{word-spacing:-17.792000pt;}
.ws19_c00006{word-spacing:-4.102400pt;}
.ws18_c00006{word-spacing:-4.025600pt;}
.ws23_c00006{word-spacing:-2.374400pt;}
.ws22_c00006{word-spacing:-2.355200pt;}
.ws10_c00006{word-spacing:-2.067200pt;}
.ws2b_c00006{word-spacing:-1.632000pt;}
.wsc_c00006{word-spacing:-1.484800pt;}
.ws27_c00006{word-spacing:-1.478400pt;}
.ws2a_c00006{word-spacing:-1.465600pt;}
.ws26_c00006{word-spacing:-1.446400pt;}
.ws2c_c00006{word-spacing:-1.440000pt;}
.wsd_c00006{word-spacing:-1.433600pt;}
.ws14_c00006{word-spacing:-0.819200pt;}
.ws8_c00006{word-spacing:-0.787200pt;}
.ws9_c00006{word-spacing:-0.710400pt;}
.ws28_c00006{word-spacing:-0.537600pt;}
.ws29_c00006{word-spacing:-0.467200pt;}
.ws2_c00006{word-spacing:0.000000pt;}
.ws13_c00006{word-spacing:0.128000pt;}
.ws12_c00006{word-spacing:0.140800pt;}
.ws1c_c00006{word-spacing:0.153600pt;}
.wsf_c00006{word-spacing:0.160000pt;}
.ws15_c00006{word-spacing:0.179200pt;}
.ws3_c00006{word-spacing:0.185600pt;}
.ws4_c00006{word-spacing:1.504000pt;}
.ws5_c00006{word-spacing:1.516800pt;}
.ws1f_c00006{word-spacing:2.048000pt;}
.ws24_c00006{word-spacing:2.080000pt;}
.ws1e_c00006{word-spacing:2.112000pt;}
.ws25_c00006{word-spacing:2.156800pt;}
.ws1d_c00006{word-spacing:2.387200pt;}
.wsa_c00006{word-spacing:2.393600pt;}
.wsb_c00006{word-spacing:2.419200pt;}
.wse_c00006{word-spacing:3.372800pt;}
.ws16_c00006{word-spacing:4.294400pt;}
.ws17_c00006{word-spacing:4.358400pt;}
.ws1a_c00006{word-spacing:15.846400pt;}
.ws1b_c00006{word-spacing:15.852800pt;}
.ws6_c00006{word-spacing:17.446400pt;}
.ws7_c00006{word-spacing:17.516800pt;}
.ws20_c00006{word-spacing:25.465600pt;}
.ws21_c00006{word-spacing:25.472000pt;}
.ws11_c00006{word-spacing:51.052800pt;}
._0_c00006{margin-left:-2.496000pt;}
._1_c00006{width:0.960000pt;}
.fs0_c00006{font-size:64.000000pt;}
.y0_c00006{bottom:0.000000pt;}
.y2_c00006{bottom:41.627067pt;}
.y1_c00006{bottom:60.027067pt;}
.y1f_c00006{bottom:121.627067pt;}
.y1e_c00006{bottom:149.227067pt;}
.y1d_c00006{bottom:176.827067pt;}
.y1c_c00006{bottom:204.427067pt;}
.y1b_c00006{bottom:232.027067pt;}
.y1a_c00006{bottom:259.627067pt;}
.y19_c00006{bottom:295.147067pt;}
.y18_c00006{bottom:322.747067pt;}
.y17_c00006{bottom:350.347067pt;}
.y16_c00006{bottom:377.947067pt;}
.y15_c00006{bottom:413.547067pt;}
.y14_c00006{bottom:441.147067pt;}
.y13_c00006{bottom:468.747067pt;}
.y12_c00006{bottom:496.347067pt;}
.y11_c00006{bottom:531.947067pt;}
.y10_c00006{bottom:559.547067pt;}
.yf_c00006{bottom:595.147067pt;}
.ye_c00006{bottom:630.747067pt;}
.yd_c00006{bottom:658.347067pt;}
.yc_c00006{bottom:685.947067pt;}
.yb_c00006{bottom:721.547067pt;}
.ya_c00006{bottom:749.147067pt;}
.y9_c00006{bottom:776.747067pt;}
.y8_c00006{bottom:804.347067pt;}
.y7_c00006{bottom:839.947067pt;}
.y6_c00006{bottom:867.547067pt;}
.y5_c00006{bottom:895.147067pt;}
.y4_c00006{bottom:930.747067pt;}
.y3_c00006{bottom:975.467067pt;}
.h1_c00006{height:56.156250pt;}
.h3_c00006{height:57.375000pt;}
.h2_c00006{height:66.750000pt;}
.h0_c00006{height:1122.666667pt;}
.w1_c00006{width:793.333333pt;}
.w0_c00006{width:793.626667pt;}
.x0_c00006{left:0.000000pt;}
.x2_c00006{left:151.200000pt;}
.x3_c00006{left:380.800000pt;}
.x1_c00006{left:672.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7bd326f6484c961d7b306543.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.093262;font-style:normal;font-weight:normal;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_74677e0f56d3c70d4a964df0.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.106934;font-style: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;}
.ls4_c00007{letter-spacing:-0.064800px;}
.ls6_c00007{letter-spacing:-0.050400px;}
.ls2_c00007{letter-spacing:-0.043200px;}
.ls3_c00007{letter-spacing:-0.036000px;}
.ls5_c00007{letter-spacing:-0.028800px;}
.ls9_c00007{letter-spacing:-0.021600px;}
.ls7_c00007{letter-spacing:-0.014400px;}
.ls8_c00007{letter-spacing:-0.007200px;}
.ls0_c00007{letter-spacing:0.000000px;}
.lsa_c00007{letter-spacing:0.028800px;}
.ls1_c00007{letter-spacing:0.158400px;}
.lsb_c00007{letter-spacing:843.998400px;}
.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;}
}
.ws8_c00007{word-spacing:-4.204800px;}
.ws7_c00007{word-spacing:-4.111200px;}
.ws12_c00007{word-spacing:-1.706400px;}
.ws11_c00007{word-spacing:-1.605600px;}
.ws0_c00007{word-spacing:0.000000px;}
.wsb_c00007{word-spacing:0.165600px;}
.ws6_c00007{word-spacing:0.180000px;}
.wsc_c00007{word-spacing:0.194400px;}
.ws14_c00007{word-spacing:0.208800px;}
.ws2_c00007{word-spacing:1.274400px;}
.ws3_c00007{word-spacing:1.303200px;}
.ws5_c00007{word-spacing:1.987200px;}
.ws4_c00007{word-spacing:2.059200px;}
.wsd_c00007{word-spacing:8.841600px;}
.ws13_c00007{word-spacing:10.260000px;}
.wse_c00007{word-spacing:21.772800px;}
.ws10_c00007{word-spacing:21.895200px;}
.wsf_c00007{word-spacing:21.938400px;}
.ws1_c00007{word-spacing:22.161600px;}
.ws9_c00007{word-spacing:28.879200px;}
.wsa_c00007{word-spacing:29.001600px;}
._1_c00007{margin-left:-21.600000px;}
._0_c00007{width:1.008000px;}
.fc0_c00007{color:rgb(0,0,0);}
.fs0_c00007{font-size:72.000000px;}
.y0_c00007{bottom:0.000000px;}
.y2_c00007{bottom:46.830450px;}
.y1_c00007{bottom:67.530450px;}
.y16_c00007{bottom:404.490450px;}
.y15_c00007{bottom:445.890450px;}
.y14_c00007{bottom:487.290450px;}
.y13_c00007{bottom:528.690450px;}
.y12_c00007{bottom:568.740450px;}
.y11_c00007{bottom:608.790450px;}
.y10_c00007{bottom:648.840450px;}
.yf_c00007{bottom:679.890450px;}
.ye_c00007{bottom:710.940450px;}
.yd_c00007{bottom:741.990450px;}
.yc_c00007{bottom:782.040450px;}
.yb_c00007{bottom:813.090450px;}
.ya_c00007{bottom:853.140450px;}
.y9_c00007{bottom:884.190450px;}
.y8_c00007{bottom:924.240450px;}
.y7_c00007{bottom:964.290450px;}
.y6_c00007{bottom:995.340450px;}
.y5_c00007{bottom:1026.390450px;}
.y4_c00007{bottom:1057.440450px;}
.y3_c00007{bottom:1097.490450px;}
.h1_c00007{height:63.175781px;}
.h2_c00007{height:64.546875px;}
.h0_c00007{height:1263.000000px;}
.w1_c00007{width:892.500000px;}
.w0_c00007{width:892.830000px;}
.x0_c00007{left:0.000000px;}
.x2_c00007{left:127.620000px;}
.x1_c00007{left:713.880000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls4_c00007{letter-spacing:-0.057600pt;}
.ls6_c00007{letter-spacing:-0.044800pt;}
.ls2_c00007{letter-spacing:-0.038400pt;}
.ls3_c00007{letter-spacing:-0.032000pt;}
.ls5_c00007{letter-spacing:-0.025600pt;}
.ls9_c00007{letter-spacing:-0.019200pt;}
.ls7_c00007{letter-spacing:-0.012800pt;}
.ls8_c00007{letter-spacing:-0.006400pt;}
.ls0_c00007{letter-spacing:0.000000pt;}
.lsa_c00007{letter-spacing:0.025600pt;}
.ls1_c00007{letter-spacing:0.140800pt;}
.lsb_c00007{letter-spacing:750.220800pt;}
.ws8_c00007{word-spacing:-3.737600pt;}
.ws7_c00007{word-spacing:-3.654400pt;}
.ws12_c00007{word-spacing:-1.516800pt;}
.ws11_c00007{word-spacing:-1.427200pt;}
.ws0_c00007{word-spacing:0.000000pt;}
.wsb_c00007{word-spacing:0.147200pt;}
.ws6_c00007{word-spacing:0.160000pt;}
.wsc_c00007{word-spacing:0.172800pt;}
.ws14_c00007{word-spacing:0.185600pt;}
.ws2_c00007{word-spacing:1.132800pt;}
.ws3_c00007{word-spacing:1.158400pt;}
.ws5_c00007{word-spacing:1.766400pt;}
.ws4_c00007{word-spacing:1.830400pt;}
.wsd_c00007{word-spacing:7.859200pt;}
.ws13_c00007{word-spacing:9.120000pt;}
.wse_c00007{word-spacing:19.353600pt;}
.ws10_c00007{word-spacing:19.462400pt;}
.wsf_c00007{word-spacing:19.500800pt;}
.ws1_c00007{word-spacing:19.699200pt;}
.ws9_c00007{word-spacing:25.670400pt;}
.wsa_c00007{word-spacing:25.779200pt;}
._1_c00007{margin-left:-19.200000pt;}
._0_c00007{width:0.896000pt;}
.fs0_c00007{font-size:64.000000pt;}
.y0_c00007{bottom:0.000000pt;}
.y2_c00007{bottom:41.627067pt;}
.y1_c00007{bottom:60.027067pt;}
.y16_c00007{bottom:359.547067pt;}
.y15_c00007{bottom:396.347067pt;}
.y14_c00007{bottom:433.147067pt;}
.y13_c00007{bottom:469.947067pt;}
.y12_c00007{bottom:505.547067pt;}
.y11_c00007{bottom:541.147067pt;}
.y10_c00007{bottom:576.747067pt;}
.yf_c00007{bottom:604.347067pt;}
.ye_c00007{bottom:631.947067pt;}
.yd_c00007{bottom:659.547067pt;}
.yc_c00007{bottom:695.147067pt;}
.yb_c00007{bottom:722.747067pt;}
.ya_c00007{bottom:758.347067pt;}
.y9_c00007{bottom:785.947067pt;}
.y8_c00007{bottom:821.547067pt;}
.y7_c00007{bottom:857.147067pt;}
.y6_c00007{bottom:884.747067pt;}
.y5_c00007{bottom:912.347067pt;}
.y4_c00007{bottom:939.947067pt;}
.y3_c00007{bottom:975.547067pt;}
.h1_c00007{height:56.156250pt;}
.h2_c00007{height:57.375000pt;}
.h0_c00007{height:1122.666667pt;}
.w1_c00007{width:793.333333pt;}
.w0_c00007{width:793.626667pt;}
.x0_c00007{left:0.000000pt;}
.x2_c00007{left:113.440000pt;}
.x1_c00007{left:634.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e0a5a5bfd46110426044824a.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:1.106934;font-style: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;}
.ls0_c00008{letter-spacing:0.000000px;}
.ls1_c00008{letter-spacing:843.998400px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00008{word-spacing:0.000000px;}
.fc0_c00008{color:rgb(0,0,0);}
.fs0_c00008{font-size:72.000000px;}
.y0_c00008{bottom:0.000000px;}
.y2_c00008{bottom:46.830450px;}
.y1_c00008{bottom:67.530450px;}
.y4_c00008{bottom:1056.090450px;}
.y3_c00008{bottom:1097.490450px;}
.h1_c00008{height:63.175781px;}
.h2_c00008{height:64.546875px;}
.h0_c00008{height:1263.000000px;}
.w1_c00008{width:892.500000px;}
.w0_c00008{width:892.830000px;}
.x0_c00008{left:0.000000px;}
.x2_c00008{left:170.100000px;}
.x1_c00008{left:756.360000px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls0_c00008{letter-spacing:0.000000pt;}
.ls1_c00008{letter-spacing:750.220800pt;}
.ws0_c00008{word-spacing:0.000000pt;}
.fs0_c00008{font-size:64.000000pt;}
.y0_c00008{bottom:0.000000pt;}
.y2_c00008{bottom:41.627067pt;}
.y1_c00008{bottom:60.027067pt;}
.y4_c00008{bottom:938.747067pt;}
.y3_c00008{bottom:975.547067pt;}
.h1_c00008{height:56.156250pt;}
.h2_c00008{height:57.375000pt;}
.h0_c00008{height:1122.666667pt;}
.w1_c00008{width:793.333333pt;}
.w0_c00008{width:793.626667pt;}
.x0_c00008{left:0.000000pt;}
.x2_c00008{left:151.200000pt;}
.x1_c00008{left:672.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f12d2db8739299dbcd64bb66.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.106934;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00009{font-family:ff3_c00009;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00009{letter-spacing:0.000000px;}
.ls1_c00009{letter-spacing:843.998400px;}
.sc__c00009{text-shadow:none;}
.sc0_c00009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00009{-webkit-text-stroke:0px transparent;}
.sc0_c00009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00009{word-spacing:0.000000px;}
.fc0_c00009{color:rgb(0,0,0);}
.fs0_c00009{font-size:72.000000px;}
.y0_c00009{bottom:0.000000px;}
.y2_c00009{bottom:46.830450px;}
.y1_c00009{bottom:67.530450px;}
.y4_c00009{bottom:1056.000450px;}
.y3_c00009{bottom:1097.490450px;}
.h1_c00009{height:63.175781px;}
.h2_c00009{height:64.546875px;}
.h3_c00009{height:75.093750px;}
.h0_c00009{height:1263.000000px;}
.w1_c00009{width:892.500000px;}
.w0_c00009{width:892.830000px;}
.x0_c00009{left:0.000000px;}
.x2_c00009{left:127.620000px;}
.x1_c00009{left:704.880000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls0_c00009{letter-spacing:0.000000pt;}
.ls1_c00009{letter-spacing:750.220800pt;}
.ws0_c00009{word-spacing:0.000000pt;}
.fs0_c00009{font-size:64.000000pt;}
.y0_c00009{bottom:0.000000pt;}
.y2_c00009{bottom:41.627067pt;}
.y1_c00009{bottom:60.027067pt;}
.y4_c00009{bottom:938.667067pt;}
.y3_c00009{bottom:975.547067pt;}
.h1_c00009{height:56.156250pt;}
.h2_c00009{height:57.375000pt;}
.h3_c00009{height:66.750000pt;}
.h0_c00009{height:1122.666667pt;}
.w1_c00009{width:793.333333pt;}
.w0_c00009{width:793.626667pt;}
.x0_c00009{left:0.000000pt;}
.x2_c00009{left:113.440000pt;}
.x1_c00009{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9e94e0da380f674f71db2af3.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.093262;font-style:normal;font-weight:normal;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_3a64e0e69901257995ae74aa.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:0.938965;font-style:normal;font-weight:normal;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_40f994ffe422ad5e2b7f8f10.woff2')format("woff");}.ff3_c00010{font-family:ff3_c00010;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00010;src:url('chunks/assets/font_4841fa7d8724ef50197aa613.woff2')format("woff");}.ff4_c00010{font-family:ff4_c00010;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00010;src:url('chunks/assets/font_b8943151dc998760cbe98d45.woff2')format("woff");}.ff5_c00010{font-family:ff5_c00010;line-height:0.666504;font-style: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;}
.ls28_c00010{letter-spacing:-0.151524px;}
.ls2d_c00010{letter-spacing:-0.125172px;}
.ls27_c00010{letter-spacing:-0.072468px;}
.ls2e_c00010{letter-spacing:-0.059292px;}
.ls25_c00010{letter-spacing:-0.052704px;}
.ls2c_c00010{letter-spacing:-0.046116px;}
.ls26_c00010{letter-spacing:-0.039528px;}
.ls2f_c00010{letter-spacing:-0.032940px;}
.ls31_c00010{letter-spacing:-0.026352px;}
.ls33_c00010{letter-spacing:-0.019764px;}
.ls24_c00010{letter-spacing:-0.013176px;}
.ls2b_c00010{letter-spacing:-0.006588px;}
.ls23_c00010{letter-spacing:0.000000px;}
.ls15_c00010{letter-spacing:0.006588px;}
.lsc_c00010{letter-spacing:0.013176px;}
.lsd_c00010{letter-spacing:0.019764px;}
.ls1c_c00010{letter-spacing:0.026352px;}
.ls13_c00010{letter-spacing:0.032940px;}
.ls6_c00010{letter-spacing:0.039528px;}
.ls2_c00010{letter-spacing:0.046116px;}
.lsa_c00010{letter-spacing:0.052704px;}
.ls0_c00010{letter-spacing:0.058716px;}
.ls1a_c00010{letter-spacing:0.059292px;}
.ls17_c00010{letter-spacing:0.065880px;}
.ls7_c00010{letter-spacing:0.072468px;}
.ls19_c00010{letter-spacing:0.079056px;}
.ls8_c00010{letter-spacing:0.092232px;}
.lse_c00010{letter-spacing:0.098820px;}
.ls20_c00010{letter-spacing:0.118584px;}
.ls1f_c00010{letter-spacing:0.131760px;}
.ls9_c00010{letter-spacing:0.138348px;}
.ls16_c00010{letter-spacing:0.144936px;}
.ls21_c00010{letter-spacing:0.197640px;}
.ls10_c00010{letter-spacing:0.204228px;}
.ls30_c00010{letter-spacing:0.210816px;}
.ls12_c00010{letter-spacing:0.217404px;}
.ls32_c00010{letter-spacing:0.230580px;}
.ls4_c00010{letter-spacing:0.237168px;}
.ls3_c00010{letter-spacing:0.263520px;}
.ls2a_c00010{letter-spacing:0.309636px;}
.ls5_c00010{letter-spacing:0.329400px;}
.ls34_c00010{letter-spacing:0.342576px;}
.ls29_c00010{letter-spacing:0.362340px;}
.ls11_c00010{letter-spacing:0.395280px;}
.ls35_c00010{letter-spacing:0.527040px;}
.ls1b_c00010{letter-spacing:0.592920px;}
.ls22_c00010{letter-spacing:0.922320px;}
.ls1e_c00010{letter-spacing:2.371680px;}
.ls18_c00010{letter-spacing:43.810200px;}
.ls1d_c00010{letter-spacing:64.694160px;}
.ls14_c00010{letter-spacing:114.697080px;}
.lsf_c00010{letter-spacing:164.765880px;}
.lsb_c00010{letter-spacing:215.164080px;}
.ls1_c00010{letter-spacing:265.167000px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00010{word-spacing:-65.880000px;}
.ws25_c00010{word-spacing:-0.592920px;}
.wsf_c00010{word-spacing:-0.428220px;}
.ws23_c00010{word-spacing:-0.408456px;}
.ws10_c00010{word-spacing:-0.375516px;}
.ws1e_c00010{word-spacing:-0.296460px;}
.ws1a_c00010{word-spacing:-0.276696px;}
.ws1c_c00010{word-spacing:-0.210816px;}
.ws9_c00010{word-spacing:-0.204228px;}
.ws22_c00010{word-spacing:-0.184464px;}
.ws12_c00010{word-spacing:-0.164700px;}
.ws1_c00010{word-spacing:-0.158112px;}
.ws1f_c00010{word-spacing:-0.144936px;}
.ws0_c00010{word-spacing:-0.142596px;}
.ws8_c00010{word-spacing:-0.138348px;}
.ws1d_c00010{word-spacing:-0.131760px;}
.ws20_c00010{word-spacing:-0.125172px;}
.wsb_c00010{word-spacing:-0.118584px;}
.ws2_c00010{word-spacing:-0.111996px;}
.ws6_c00010{word-spacing:-0.105408px;}
.ws17_c00010{word-spacing:-0.098820px;}
.ws21_c00010{word-spacing:-0.092232px;}
.ws11_c00010{word-spacing:-0.085644px;}
.wsc_c00010{word-spacing:-0.079056px;}
.ws18_c00010{word-spacing:-0.072468px;}
.ws5_c00010{word-spacing:-0.065880px;}
.ws13_c00010{word-spacing:-0.059292px;}
.ws4_c00010{word-spacing:-0.052704px;}
.ws24_c00010{word-spacing:-0.046116px;}
.ws1b_c00010{word-spacing:-0.039528px;}
.ws19_c00010{word-spacing:-0.032940px;}
.ws7_c00010{word-spacing:-0.026352px;}
.ws14_c00010{word-spacing:-0.019764px;}
.wsd_c00010{word-spacing:-0.013176px;}
.ws16_c00010{word-spacing:-0.006588px;}
.ws26_c00010{word-spacing:0.000000px;}
.wsa_c00010{word-spacing:0.006588px;}
.ws15_c00010{word-spacing:0.059292px;}
.wse_c00010{word-spacing:0.085644px;}
._6_c00010{margin-left:-12.266856px;}
._8_c00010{margin-left:-10.211400px;}
._9_c00010{margin-left:-8.748864px;}
._5_c00010{margin-left:-6.851520px;}
._a_c00010{margin-left:-5.151816px;}
._1_c00010{margin-left:-3.926448px;}
._0_c00010{margin-left:-2.358504px;}
._3_c00010{margin-left:-1.027728px;}
._7_c00010{width:1.159488px;}
._4_c00010{width:2.272860px;}
._2_c00010{width:3.340116px;}
.fc1_c00010{color:rgb(54,95,145);}
.fc0_c00010{color:rgb(0,0,0);}
.fs2_c00010{font-size:65.880000px;}
.fs0_c00010{font-size:72.000000px;}
.fs1_c00010{font-size:83.880000px;}
.y0_c00010{bottom:0.000000px;}
.y2_c00010{bottom:46.830450px;}
.y1_c00010{bottom:67.530450px;}
.y23_c00010{bottom:134.603490px;}
.y22_c00010{bottom:165.287100px;}
.y21_c00010{bottom:195.970710px;}
.y20_c00010{bottom:226.571970px;}
.y1f_c00010{bottom:257.255580px;}
.y1e_c00010{bottom:287.939190px;}
.y1d_c00010{bottom:318.571020px;}
.y1c_c00010{bottom:349.254630px;}
.y1b_c00010{bottom:379.938240px;}
.y1a_c00010{bottom:410.621850px;}
.y19_c00010{bottom:433.782390px;}
.y18_c00010{bottom:464.466000px;}
.y17_c00010{bottom:495.067260px;}
.y16_c00010{bottom:525.750870px;}
.y15_c00010{bottom:556.434480px;}
.y14_c00010{bottom:587.035740px;}
.y13_c00010{bottom:617.719350px;}
.y12_c00010{bottom:648.402960px;}
.y11_c00010{bottom:679.086570px;}
.y10_c00010{bottom:702.233490px;}
.yf_c00010{bottom:732.917100px;}
.ye_c00010{bottom:763.518360px;}
.yd_c00010{bottom:794.201970px;}
.yc_c00010{bottom:824.885580px;}
.yb_c00010{bottom:855.486840px;}
.ya_c00010{bottom:886.193490px;}
.y9_c00010{bottom:916.877100px;}
.y8_c00010{bottom:947.478360px;}
.y7_c00010{bottom:978.161970px;}
.y6_c00010{bottom:1008.845580px;}
.y5_c00010{bottom:1039.529190px;}
.y4_c00010{bottom:1070.130450px;}
.y3_c00010{bottom:1094.250450px;}
.h3_c00010{height:47.286914px;}
.h2_c00010{height:60.411621px;}
.h1_c00010{height:63.175781px;}
.h0_c00010{height:1263.000000px;}
.w1_c00010{width:892.500000px;}
.w0_c00010{width:892.830000px;}
.x0_c00010{left:0.000000px;}
.x2_c00010{left:170.100000px;}
.x3_c00010{left:186.570000px;}
.x1_c00010{left:747.360000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls28_c00010{letter-spacing:-0.134688pt;}
.ls2d_c00010{letter-spacing:-0.111264pt;}
.ls27_c00010{letter-spacing:-0.064416pt;}
.ls2e_c00010{letter-spacing:-0.052704pt;}
.ls25_c00010{letter-spacing:-0.046848pt;}
.ls2c_c00010{letter-spacing:-0.040992pt;}
.ls26_c00010{letter-spacing:-0.035136pt;}
.ls2f_c00010{letter-spacing:-0.029280pt;}
.ls31_c00010{letter-spacing:-0.023424pt;}
.ls33_c00010{letter-spacing:-0.017568pt;}
.ls24_c00010{letter-spacing:-0.011712pt;}
.ls2b_c00010{letter-spacing:-0.005856pt;}
.ls23_c00010{letter-spacing:0.000000pt;}
.ls15_c00010{letter-spacing:0.005856pt;}
.lsc_c00010{letter-spacing:0.011712pt;}
.lsd_c00010{letter-spacing:0.017568pt;}
.ls1c_c00010{letter-spacing:0.023424pt;}
.ls13_c00010{letter-spacing:0.029280pt;}
.ls6_c00010{letter-spacing:0.035136pt;}
.ls2_c00010{letter-spacing:0.040992pt;}
.lsa_c00010{letter-spacing:0.046848pt;}
.ls0_c00010{letter-spacing:0.052192pt;}
.ls1a_c00010{letter-spacing:0.052704pt;}
.ls17_c00010{letter-spacing:0.058560pt;}
.ls7_c00010{letter-spacing:0.064416pt;}
.ls19_c00010{letter-spacing:0.070272pt;}
.ls8_c00010{letter-spacing:0.081984pt;}
.lse_c00010{letter-spacing:0.087840pt;}
.ls20_c00010{letter-spacing:0.105408pt;}
.ls1f_c00010{letter-spacing:0.117120pt;}
.ls9_c00010{letter-spacing:0.122976pt;}
.ls16_c00010{letter-spacing:0.128832pt;}
.ls21_c00010{letter-spacing:0.175680pt;}
.ls10_c00010{letter-spacing:0.181536pt;}
.ls30_c00010{letter-spacing:0.187392pt;}
.ls12_c00010{letter-spacing:0.193248pt;}
.ls32_c00010{letter-spacing:0.204960pt;}
.ls4_c00010{letter-spacing:0.210816pt;}
.ls3_c00010{letter-spacing:0.234240pt;}
.ls2a_c00010{letter-spacing:0.275232pt;}
.ls5_c00010{letter-spacing:0.292800pt;}
.ls34_c00010{letter-spacing:0.304512pt;}
.ls29_c00010{letter-spacing:0.322080pt;}
.ls11_c00010{letter-spacing:0.351360pt;}
.ls35_c00010{letter-spacing:0.468480pt;}
.ls1b_c00010{letter-spacing:0.527040pt;}
.ls22_c00010{letter-spacing:0.819840pt;}
.ls1e_c00010{letter-spacing:2.108160pt;}
.ls18_c00010{letter-spacing:38.942400pt;}
.ls1d_c00010{letter-spacing:57.505920pt;}
.ls14_c00010{letter-spacing:101.952960pt;}
.lsf_c00010{letter-spacing:146.458560pt;}
.lsb_c00010{letter-spacing:191.256960pt;}
.ls1_c00010{letter-spacing:235.704000pt;}
.ws3_c00010{word-spacing:-58.560000pt;}
.ws25_c00010{word-spacing:-0.527040pt;}
.wsf_c00010{word-spacing:-0.380640pt;}
.ws23_c00010{word-spacing:-0.363072pt;}
.ws10_c00010{word-spacing:-0.333792pt;}
.ws1e_c00010{word-spacing:-0.263520pt;}
.ws1a_c00010{word-spacing:-0.245952pt;}
.ws1c_c00010{word-spacing:-0.187392pt;}
.ws9_c00010{word-spacing:-0.181536pt;}
.ws22_c00010{word-spacing:-0.163968pt;}
.ws12_c00010{word-spacing:-0.146400pt;}
.ws1_c00010{word-spacing:-0.140544pt;}
.ws1f_c00010{word-spacing:-0.128832pt;}
.ws0_c00010{word-spacing:-0.126752pt;}
.ws8_c00010{word-spacing:-0.122976pt;}
.ws1d_c00010{word-spacing:-0.117120pt;}
.ws20_c00010{word-spacing:-0.111264pt;}
.wsb_c00010{word-spacing:-0.105408pt;}
.ws2_c00010{word-spacing:-0.099552pt;}
.ws6_c00010{word-spacing:-0.093696pt;}
.ws17_c00010{word-spacing:-0.087840pt;}
.ws21_c00010{word-spacing:-0.081984pt;}
.ws11_c00010{word-spacing:-0.076128pt;}
.wsc_c00010{word-spacing:-0.070272pt;}
.ws18_c00010{word-spacing:-0.064416pt;}
.ws5_c00010{word-spacing:-0.058560pt;}
.ws13_c00010{word-spacing:-0.052704pt;}
.ws4_c00010{word-spacing:-0.046848pt;}
.ws24_c00010{word-spacing:-0.040992pt;}
.ws1b_c00010{word-spacing:-0.035136pt;}
.ws19_c00010{word-spacing:-0.029280pt;}
.ws7_c00010{word-spacing:-0.023424pt;}
.ws14_c00010{word-spacing:-0.017568pt;}
.wsd_c00010{word-spacing:-0.011712pt;}
.ws16_c00010{word-spacing:-0.005856pt;}
.ws26_c00010{word-spacing:0.000000pt;}
.wsa_c00010{word-spacing:0.005856pt;}
.ws15_c00010{word-spacing:0.052704pt;}
.wse_c00010{word-spacing:0.076128pt;}
._6_c00010{margin-left:-10.903872pt;}
._8_c00010{margin-left:-9.076800pt;}
._9_c00010{margin-left:-7.776768pt;}
._5_c00010{margin-left:-6.090240pt;}
._a_c00010{margin-left:-4.579392pt;}
._1_c00010{margin-left:-3.490176pt;}
._0_c00010{margin-left:-2.096448pt;}
._3_c00010{margin-left:-0.913536pt;}
._7_c00010{width:1.030656pt;}
._4_c00010{width:2.020320pt;}
._2_c00010{width:2.968992pt;}
.fs2_c00010{font-size:58.560000pt;}
.fs0_c00010{font-size:64.000000pt;}
.fs1_c00010{font-size:74.560000pt;}
.y0_c00010{bottom:0.000000pt;}
.y2_c00010{bottom:41.627067pt;}
.y1_c00010{bottom:60.027067pt;}
.y23_c00010{bottom:119.647547pt;}
.y22_c00010{bottom:146.921867pt;}
.y21_c00010{bottom:174.196187pt;}
.y20_c00010{bottom:201.397307pt;}
.y1f_c00010{bottom:228.671627pt;}
.y1e_c00010{bottom:255.945947pt;}
.y1d_c00010{bottom:283.174240pt;}
.y1c_c00010{bottom:310.448560pt;}
.y1b_c00010{bottom:337.722880pt;}
.y1a_c00010{bottom:364.997200pt;}
.y19_c00010{bottom:385.584347pt;}
.y18_c00010{bottom:412.858667pt;}
.y17_c00010{bottom:440.059787pt;}
.y16_c00010{bottom:467.334107pt;}
.y15_c00010{bottom:494.608427pt;}
.y14_c00010{bottom:521.809547pt;}
.y13_c00010{bottom:549.083867pt;}
.y12_c00010{bottom:576.358187pt;}
.y11_c00010{bottom:603.632507pt;}
.y10_c00010{bottom:624.207547pt;}
.yf_c00010{bottom:651.481867pt;}
.ye_c00010{bottom:678.682987pt;}
.yd_c00010{bottom:705.957307pt;}
.yc_c00010{bottom:733.231627pt;}
.yb_c00010{bottom:760.432747pt;}
.ya_c00010{bottom:787.727547pt;}
.y9_c00010{bottom:815.001867pt;}
.y8_c00010{bottom:842.202987pt;}
.y7_c00010{bottom:869.477307pt;}
.y6_c00010{bottom:896.751627pt;}
.y5_c00010{bottom:924.025947pt;}
.y4_c00010{bottom:951.227067pt;}
.y3_c00010{bottom:972.667067pt;}
.h3_c00010{height:42.032812pt;}
.h2_c00010{height:53.699219pt;}
.h1_c00010{height:56.156250pt;}
.h0_c00010{height:1122.666667pt;}
.w1_c00010{width:793.333333pt;}
.w0_c00010{width:793.626667pt;}
.x0_c00010{left:0.000000pt;}
.x2_c00010{left:151.200000pt;}
.x3_c00010{left:165.840000pt;}
.x1_c00010{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4f549f30217a07fa2078b6ad.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.093262;font-style:normal;font-weight:normal;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_e9cc5b916f0d6ae6c4ca997c.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:0.895996;font-style:normal;font-weight:normal;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_e4b82f33289a7abee99da48a.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:0.666504;font-style: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;}
.ls43_c00011{letter-spacing:-3.735396px;}
.ls37_c00011{letter-spacing:-2.292624px;}
.ls40_c00011{letter-spacing:-0.131760px;}
.ls3b_c00011{letter-spacing:-0.125172px;}
.ls33_c00011{letter-spacing:-0.111996px;}
.ls44_c00011{letter-spacing:-0.105408px;}
.ls31_c00011{letter-spacing:-0.072468px;}
.ls3f_c00011{letter-spacing:-0.065880px;}
.ls2e_c00011{letter-spacing:-0.052704px;}
.ls38_c00011{letter-spacing:-0.046116px;}
.ls2f_c00011{letter-spacing:-0.039528px;}
.ls45_c00011{letter-spacing:-0.032940px;}
.ls3a_c00011{letter-spacing:-0.026352px;}
.ls3c_c00011{letter-spacing:-0.019764px;}
.ls32_c00011{letter-spacing:-0.013176px;}
.ls36_c00011{letter-spacing:-0.006588px;}
.ls2d_c00011{letter-spacing:0.000000px;}
.lsc_c00011{letter-spacing:0.006588px;}
.ls1c_c00011{letter-spacing:0.013176px;}
.ls10_c00011{letter-spacing:0.019764px;}
.ls6_c00011{letter-spacing:0.026352px;}
.lsa_c00011{letter-spacing:0.032940px;}
.ls0_c00011{letter-spacing:0.039528px;}
.ls2_c00011{letter-spacing:0.046116px;}
.ls5_c00011{letter-spacing:0.052704px;}
.ls1a_c00011{letter-spacing:0.059292px;}
.ls4_c00011{letter-spacing:0.065880px;}
.ls12_c00011{letter-spacing:0.072468px;}
.ls39_c00011{letter-spacing:0.079056px;}
.ls2b_c00011{letter-spacing:0.085644px;}
.ls9_c00011{letter-spacing:0.092232px;}
.ls7_c00011{letter-spacing:0.105408px;}
.ls8_c00011{letter-spacing:0.118584px;}
.ls1f_c00011{letter-spacing:0.131760px;}
.lsf_c00011{letter-spacing:0.158112px;}
.ls11_c00011{letter-spacing:0.197640px;}
.ls42_c00011{letter-spacing:0.230580px;}
.ls1e_c00011{letter-spacing:0.237168px;}
.ls3_c00011{letter-spacing:0.263520px;}
.ls3d_c00011{letter-spacing:0.289872px;}
.ls35_c00011{letter-spacing:0.309636px;}
.ls2a_c00011{letter-spacing:0.329400px;}
.ls41_c00011{letter-spacing:0.342576px;}
.ls30_c00011{letter-spacing:0.362340px;}
.lsd_c00011{letter-spacing:0.395280px;}
.ls15_c00011{letter-spacing:0.461160px;}
.ls20_c00011{letter-spacing:0.527040px;}
.ls34_c00011{letter-spacing:0.540216px;}
.ls24_c00011{letter-spacing:0.922320px;}
.ls14_c00011{letter-spacing:8.841096px;}
.ls13_c00011{letter-spacing:8.893800px;}
.ls16_c00011{letter-spacing:9.223200px;}
.ls29_c00011{letter-spacing:11.397240px;}
.ls2c_c00011{letter-spacing:11.403828px;}
.ls28_c00011{letter-spacing:11.726640px;}
.ls25_c00011{letter-spacing:14.625360px;}
.ls26_c00011{letter-spacing:18.973440px;}
.ls27_c00011{letter-spacing:19.302840px;}
.ls19_c00011{letter-spacing:22.926240px;}
.ls1b_c00011{letter-spacing:24.705000px;}
.ls1d_c00011{letter-spacing:25.100280px;}
.lse_c00011{letter-spacing:64.298880px;}
.ls23_c00011{letter-spacing:64.694160px;}
.ls22_c00011{letter-spacing:70.755120px;}
.ls3e_c00011{letter-spacing:70.788060px;}
.ls21_c00011{letter-spacing:71.150400px;}
.lsb_c00011{letter-spacing:114.697080px;}
.ls1_c00011{letter-spacing:164.765880px;}
.ls18_c00011{letter-spacing:215.164080px;}
.ls17_c00011{letter-spacing:315.235800px;}
.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;}
}
.ws2_c00011{word-spacing:-65.880000px;}
.ws21_c00011{word-spacing:-65.748240px;}
.ws24_c00011{word-spacing:-62.144604px;}
.ws10_c00011{word-spacing:-0.606096px;}
.ws9_c00011{word-spacing:-0.428220px;}
.ws22_c00011{word-spacing:-0.408456px;}
.ws11_c00011{word-spacing:-0.375516px;}
.ws1e_c00011{word-spacing:-0.355752px;}
.ws23_c00011{word-spacing:-0.296460px;}
.ws15_c00011{word-spacing:-0.223992px;}
.ws1f_c00011{word-spacing:-0.197640px;}
.ws8_c00011{word-spacing:-0.184464px;}
.ws6_c00011{word-spacing:-0.171288px;}
.wsb_c00011{word-spacing:-0.158112px;}
.ws27_c00011{word-spacing:-0.151524px;}
.ws17_c00011{word-spacing:-0.138348px;}
.ws18_c00011{word-spacing:-0.131760px;}
.ws19_c00011{word-spacing:-0.125172px;}
.ws4_c00011{word-spacing:-0.118584px;}
.ws1_c00011{word-spacing:-0.111996px;}
.ws0_c00011{word-spacing:-0.105408px;}
.wsc_c00011{word-spacing:-0.098820px;}
.ws5_c00011{word-spacing:-0.092232px;}
.ws16_c00011{word-spacing:-0.085644px;}
.ws1b_c00011{word-spacing:-0.079056px;}
.wsd_c00011{word-spacing:-0.072468px;}
.ws3_c00011{word-spacing:-0.065880px;}
.ws13_c00011{word-spacing:-0.059292px;}
.wse_c00011{word-spacing:-0.052704px;}
.ws1d_c00011{word-spacing:-0.046116px;}
.ws1a_c00011{word-spacing:-0.039528px;}
.ws26_c00011{word-spacing:-0.032940px;}
.ws7_c00011{word-spacing:-0.026352px;}
.ws14_c00011{word-spacing:-0.019764px;}
.ws12_c00011{word-spacing:-0.013176px;}
.ws20_c00011{word-spacing:0.000000px;}
.wsa_c00011{word-spacing:0.006588px;}
.ws25_c00011{word-spacing:0.039528px;}
.wsf_c00011{word-spacing:0.046116px;}
.ws1c_c00011{word-spacing:0.059292px;}
._9_c00011{margin-left:-14.209092px;}
._6_c00011{margin-left:-12.418380px;}
._a_c00011{margin-left:-10.712088px;}
._0_c00011{margin-left:-9.578952px;}
._2_c00011{margin-left:-8.445816px;}
._4_c00011{margin-left:-7.299504px;}
._c_c00011{margin-left:-5.533920px;}
._b_c00011{margin-left:-4.189968px;}
._5_c00011{margin-left:-2.786724px;}
._3_c00011{margin-left:-1.146312px;}
._1_c00011{width:1.185840px;}
._7_c00011{width:2.226744px;}
._8_c00011{width:3.432348px;}
.fc0_c00011{color:rgb(0,0,0);}
.fs1_c00011{font-size:65.880000px;}
.fs0_c00011{font-size:72.000000px;}
.y0_c00011{bottom:0.000000px;}
.y2_c00011{bottom:46.830450px;}
.y1_c00011{bottom:67.530450px;}
.y24_c00011{bottom:146.565390px;}
.y23_c00011{bottom:177.249000px;}
.y22_c00011{bottom:200.471700px;}
.y21_c00011{bottom:231.072960px;}
.y20_c00011{bottom:261.756570px;}
.y1f_c00011{bottom:284.905920px;}
.y1e_c00011{bottom:315.589530px;}
.y1d_c00011{bottom:346.273140px;}
.y1c_c00011{bottom:376.874400px;}
.y1b_c00011{bottom:407.558010px;}
.y1a_c00011{bottom:438.241620px;}
.y19_c00011{bottom:468.842880px;}
.y18_c00011{bottom:499.526490px;}
.y17_c00011{bottom:522.763140px;}
.y16_c00011{bottom:553.364400px;}
.y15_c00011{bottom:576.587100px;}
.y14_c00011{bottom:607.188360px;}
.y13_c00011{bottom:637.871970px;}
.y12_c00011{bottom:668.555580px;}
.y11_c00011{bottom:699.156840px;}
.y10_c00011{bottom:729.890760px;}
.yf_c00011{bottom:760.574370px;}
.ye_c00011{bottom:783.698250px;}
.yd_c00011{bottom:814.381860px;}
.yc_c00011{bottom:837.505740px;}
.yb_c00011{bottom:868.189350px;}
.ya_c00011{bottom:898.872960px;}
.y9_c00011{bottom:922.004400px;}
.y8_c00011{bottom:952.688010px;}
.y7_c00011{bottom:983.289270px;}
.y6_c00011{bottom:1006.511970px;}
.y5_c00011{bottom:1037.113230px;}
.y4_c00011{bottom:1067.796840px;}
.y3_c00011{bottom:1098.480450px;}
.h2_c00011{height:47.286914px;}
.h1_c00011{height:63.175781px;}
.h0_c00011{height:1263.000000px;}
.w1_c00011{width:892.500000px;}
.w0_c00011{width:892.830000px;}
.x0_c00011{left:0.000000px;}
.x2_c00011{left:127.620000px;}
.x3_c00011{left:144.090000px;}
.x1_c00011{left:704.880000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls43_c00011{letter-spacing:-3.320352pt;}
.ls37_c00011{letter-spacing:-2.037888pt;}
.ls40_c00011{letter-spacing:-0.117120pt;}
.ls3b_c00011{letter-spacing:-0.111264pt;}
.ls33_c00011{letter-spacing:-0.099552pt;}
.ls44_c00011{letter-spacing:-0.093696pt;}
.ls31_c00011{letter-spacing:-0.064416pt;}
.ls3f_c00011{letter-spacing:-0.058560pt;}
.ls2e_c00011{letter-spacing:-0.046848pt;}
.ls38_c00011{letter-spacing:-0.040992pt;}
.ls2f_c00011{letter-spacing:-0.035136pt;}
.ls45_c00011{letter-spacing:-0.029280pt;}
.ls3a_c00011{letter-spacing:-0.023424pt;}
.ls3c_c00011{letter-spacing:-0.017568pt;}
.ls32_c00011{letter-spacing:-0.011712pt;}
.ls36_c00011{letter-spacing:-0.005856pt;}
.ls2d_c00011{letter-spacing:0.000000pt;}
.lsc_c00011{letter-spacing:0.005856pt;}
.ls1c_c00011{letter-spacing:0.011712pt;}
.ls10_c00011{letter-spacing:0.017568pt;}
.ls6_c00011{letter-spacing:0.023424pt;}
.lsa_c00011{letter-spacing:0.029280pt;}
.ls0_c00011{letter-spacing:0.035136pt;}
.ls2_c00011{letter-spacing:0.040992pt;}
.ls5_c00011{letter-spacing:0.046848pt;}
.ls1a_c00011{letter-spacing:0.052704pt;}
.ls4_c00011{letter-spacing:0.058560pt;}
.ls12_c00011{letter-spacing:0.064416pt;}
.ls39_c00011{letter-spacing:0.070272pt;}
.ls2b_c00011{letter-spacing:0.076128pt;}
.ls9_c00011{letter-spacing:0.081984pt;}
.ls7_c00011{letter-spacing:0.093696pt;}
.ls8_c00011{letter-spacing:0.105408pt;}
.ls1f_c00011{letter-spacing:0.117120pt;}
.lsf_c00011{letter-spacing:0.140544pt;}
.ls11_c00011{letter-spacing:0.175680pt;}
.ls42_c00011{letter-spacing:0.204960pt;}
.ls1e_c00011{letter-spacing:0.210816pt;}
.ls3_c00011{letter-spacing:0.234240pt;}
.ls3d_c00011{letter-spacing:0.257664pt;}
.ls35_c00011{letter-spacing:0.275232pt;}
.ls2a_c00011{letter-spacing:0.292800pt;}
.ls41_c00011{letter-spacing:0.304512pt;}
.ls30_c00011{letter-spacing:0.322080pt;}
.lsd_c00011{letter-spacing:0.351360pt;}
.ls15_c00011{letter-spacing:0.409920pt;}
.ls20_c00011{letter-spacing:0.468480pt;}
.ls34_c00011{letter-spacing:0.480192pt;}
.ls24_c00011{letter-spacing:0.819840pt;}
.ls14_c00011{letter-spacing:7.858752pt;}
.ls13_c00011{letter-spacing:7.905600pt;}
.ls16_c00011{letter-spacing:8.198400pt;}
.ls29_c00011{letter-spacing:10.130880pt;}
.ls2c_c00011{letter-spacing:10.136736pt;}
.ls28_c00011{letter-spacing:10.423680pt;}
.ls25_c00011{letter-spacing:13.000320pt;}
.ls26_c00011{letter-spacing:16.865280pt;}
.ls27_c00011{letter-spacing:17.158080pt;}
.ls19_c00011{letter-spacing:20.378880pt;}
.ls1b_c00011{letter-spacing:21.960000pt;}
.ls1d_c00011{letter-spacing:22.311360pt;}
.lse_c00011{letter-spacing:57.154560pt;}
.ls23_c00011{letter-spacing:57.505920pt;}
.ls22_c00011{letter-spacing:62.893440pt;}
.ls3e_c00011{letter-spacing:62.922720pt;}
.ls21_c00011{letter-spacing:63.244800pt;}
.lsb_c00011{letter-spacing:101.952960pt;}
.ls1_c00011{letter-spacing:146.458560pt;}
.ls18_c00011{letter-spacing:191.256960pt;}
.ls17_c00011{letter-spacing:280.209600pt;}
.ws2_c00011{word-spacing:-58.560000pt;}
.ws21_c00011{word-spacing:-58.442880pt;}
.ws24_c00011{word-spacing:-55.239648pt;}
.ws10_c00011{word-spacing:-0.538752pt;}
.ws9_c00011{word-spacing:-0.380640pt;}
.ws22_c00011{word-spacing:-0.363072pt;}
.ws11_c00011{word-spacing:-0.333792pt;}
.ws1e_c00011{word-spacing:-0.316224pt;}
.ws23_c00011{word-spacing:-0.263520pt;}
.ws15_c00011{word-spacing:-0.199104pt;}
.ws1f_c00011{word-spacing:-0.175680pt;}
.ws8_c00011{word-spacing:-0.163968pt;}
.ws6_c00011{word-spacing:-0.152256pt;}
.wsb_c00011{word-spacing:-0.140544pt;}
.ws27_c00011{word-spacing:-0.134688pt;}
.ws17_c00011{word-spacing:-0.122976pt;}
.ws18_c00011{word-spacing:-0.117120pt;}
.ws19_c00011{word-spacing:-0.111264pt;}
.ws4_c00011{word-spacing:-0.105408pt;}
.ws1_c00011{word-spacing:-0.099552pt;}
.ws0_c00011{word-spacing:-0.093696pt;}
.wsc_c00011{word-spacing:-0.087840pt;}
.ws5_c00011{word-spacing:-0.081984pt;}
.ws16_c00011{word-spacing:-0.076128pt;}
.ws1b_c00011{word-spacing:-0.070272pt;}
.wsd_c00011{word-spacing:-0.064416pt;}
.ws3_c00011{word-spacing:-0.058560pt;}
.ws13_c00011{word-spacing:-0.052704pt;}
.wse_c00011{word-spacing:-0.046848pt;}
.ws1d_c00011{word-spacing:-0.040992pt;}
.ws1a_c00011{word-spacing:-0.035136pt;}
.ws26_c00011{word-spacing:-0.029280pt;}
.ws7_c00011{word-spacing:-0.023424pt;}
.ws14_c00011{word-spacing:-0.017568pt;}
.ws12_c00011{word-spacing:-0.011712pt;}
.ws20_c00011{word-spacing:0.000000pt;}
.wsa_c00011{word-spacing:0.005856pt;}
.ws25_c00011{word-spacing:0.035136pt;}
.wsf_c00011{word-spacing:0.040992pt;}
.ws1c_c00011{word-spacing:0.052704pt;}
._9_c00011{margin-left:-12.630304pt;}
._6_c00011{margin-left:-11.038560pt;}
._a_c00011{margin-left:-9.521856pt;}
._0_c00011{margin-left:-8.514624pt;}
._2_c00011{margin-left:-7.507392pt;}
._4_c00011{margin-left:-6.488448pt;}
._c_c00011{margin-left:-4.919040pt;}
._b_c00011{margin-left:-3.724416pt;}
._5_c00011{margin-left:-2.477088pt;}
._3_c00011{margin-left:-1.018944pt;}
._1_c00011{width:1.054080pt;}
._7_c00011{width:1.979328pt;}
._8_c00011{width:3.050976pt;}
.fs1_c00011{font-size:58.560000pt;}
.fs0_c00011{font-size:64.000000pt;}
.y0_c00011{bottom:0.000000pt;}
.y2_c00011{bottom:41.627067pt;}
.y1_c00011{bottom:60.027067pt;}
.y24_c00011{bottom:130.280347pt;}
.y23_c00011{bottom:157.554667pt;}
.y22_c00011{bottom:178.197067pt;}
.y21_c00011{bottom:205.398187pt;}
.y20_c00011{bottom:232.672507pt;}
.y1f_c00011{bottom:253.249707pt;}
.y1e_c00011{bottom:280.524027pt;}
.y1d_c00011{bottom:307.798347pt;}
.y1c_c00011{bottom:334.999467pt;}
.y1b_c00011{bottom:362.273787pt;}
.y1a_c00011{bottom:389.548107pt;}
.y19_c00011{bottom:416.749227pt;}
.y18_c00011{bottom:444.023547pt;}
.y17_c00011{bottom:464.678347pt;}
.y16_c00011{bottom:491.879467pt;}
.y15_c00011{bottom:512.521867pt;}
.y14_c00011{bottom:539.722987pt;}
.y13_c00011{bottom:566.997307pt;}
.y12_c00011{bottom:594.271627pt;}
.y11_c00011{bottom:621.472747pt;}
.y10_c00011{bottom:648.791787pt;}
.yf_c00011{bottom:676.066107pt;}
.ye_c00011{bottom:696.620667pt;}
.yd_c00011{bottom:723.894987pt;}
.yc_c00011{bottom:744.449547pt;}
.yb_c00011{bottom:771.723867pt;}
.ya_c00011{bottom:798.998187pt;}
.y9_c00011{bottom:819.559467pt;}
.y8_c00011{bottom:846.833787pt;}
.y7_c00011{bottom:874.034907pt;}
.y6_c00011{bottom:894.677307pt;}
.y5_c00011{bottom:921.878427pt;}
.y4_c00011{bottom:949.152747pt;}
.y3_c00011{bottom:976.427067pt;}
.h2_c00011{height:42.032812pt;}
.h1_c00011{height:56.156250pt;}
.h0_c00011{height:1122.666667pt;}
.w1_c00011{width:793.333333pt;}
.w0_c00011{width:793.626667pt;}
.x0_c00011{left:0.000000pt;}
.x2_c00011{left:113.440000pt;}
.x3_c00011{left:128.080000pt;}
.x1_c00011{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bf2c5b642a66d5e6b9e265bc.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.093262;font-style:normal;font-weight:normal;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_74610f6686701b3ad2803d95.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:0.895996;font-style:normal;font-weight:normal;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_e4b82f33289a7abee99da48a.woff2')format("woff");}.ff3_c00012{font-family:ff3_c00012;line-height:0.666504;font-style: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;}
.ls3c_c00012{letter-spacing:-0.125172px;}
.ls39_c00012{letter-spacing:-0.085644px;}
.ls3b_c00012{letter-spacing:-0.079056px;}
.ls30_c00012{letter-spacing:-0.072468px;}
.ls3a_c00012{letter-spacing:-0.065880px;}
.ls3e_c00012{letter-spacing:-0.059292px;}
.ls35_c00012{letter-spacing:-0.052704px;}
.ls32_c00012{letter-spacing:-0.046116px;}
.ls34_c00012{letter-spacing:-0.039528px;}
.ls37_c00012{letter-spacing:-0.032940px;}
.ls2f_c00012{letter-spacing:-0.026352px;}
.ls31_c00012{letter-spacing:-0.019764px;}
.ls38_c00012{letter-spacing:-0.013176px;}
.ls36_c00012{letter-spacing:-0.006588px;}
.ls2e_c00012{letter-spacing:0.000000px;}
.ls2_c00012{letter-spacing:0.006588px;}
.lsd_c00012{letter-spacing:0.013176px;}
.lsf_c00012{letter-spacing:0.019764px;}
.ls8_c00012{letter-spacing:0.026352px;}
.ls4_c00012{letter-spacing:0.032940px;}
.ls0_c00012{letter-spacing:0.039528px;}
.ls18_c00012{letter-spacing:0.046116px;}
.ls15_c00012{letter-spacing:0.052704px;}
.lsa_c00012{letter-spacing:0.059292px;}
.ls25_c00012{letter-spacing:0.065880px;}
.ls10_c00012{letter-spacing:0.072468px;}
.ls1e_c00012{letter-spacing:0.079056px;}
.ls13_c00012{letter-spacing:0.085644px;}
.ls3_c00012{letter-spacing:0.092232px;}
.ls1b_c00012{letter-spacing:0.098820px;}
.ls3d_c00012{letter-spacing:0.125172px;}
.ls11_c00012{letter-spacing:0.131760px;}
.ls24_c00012{letter-spacing:0.144936px;}
.ls33_c00012{letter-spacing:0.151524px;}
.ls1c_c00012{letter-spacing:0.158112px;}
.ls2c_c00012{letter-spacing:0.184464px;}
.lsb_c00012{letter-spacing:0.197640px;}
.ls20_c00012{letter-spacing:0.223992px;}
.ls17_c00012{letter-spacing:0.237168px;}
.ls2b_c00012{letter-spacing:0.243756px;}
.lse_c00012{letter-spacing:0.263520px;}
.ls21_c00012{letter-spacing:0.270108px;}
.ls2a_c00012{letter-spacing:0.309636px;}
.ls1f_c00012{letter-spacing:0.329400px;}
.ls1d_c00012{letter-spacing:0.395280px;}
.ls19_c00012{letter-spacing:0.592920px;}
.ls12_c00012{letter-spacing:0.922320px;}
.ls2d_c00012{letter-spacing:1.317600px;}
.ls29_c00012{letter-spacing:3.076596px;}
.ls26_c00012{letter-spacing:3.096360px;}
.ls28_c00012{letter-spacing:3.135888px;}
.ls27_c00012{letter-spacing:3.491640px;}
.ls9_c00012{letter-spacing:7.391736px;}
.ls6_c00012{letter-spacing:7.444440px;}
.ls7_c00012{letter-spacing:7.483968px;}
.ls23_c00012{letter-spacing:18.973440px;}
.ls22_c00012{letter-spacing:19.302840px;}
.ls5_c00012{letter-spacing:114.697080px;}
.ls1_c00012{letter-spacing:164.765880px;}
.ls14_c00012{letter-spacing:181.697040px;}
.ls16_c00012{letter-spacing:215.164080px;}
.ls1a_c00012{letter-spacing:265.167000px;}
.lsc_c00012{letter-spacing:315.235800px;}
.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;}
}
.ws2_c00012{word-spacing:-65.880000px;}
.ws16_c00012{word-spacing:-0.375516px;}
.ws21_c00012{word-spacing:-0.335988px;}
.ws24_c00012{word-spacing:-0.309636px;}
.ws26_c00012{word-spacing:-0.250344px;}
.ws1a_c00012{word-spacing:-0.223992px;}
.wse_c00012{word-spacing:-0.217404px;}
.ws22_c00012{word-spacing:-0.210816px;}
.ws20_c00012{word-spacing:-0.191052px;}
.ws18_c00012{word-spacing:-0.164700px;}
.ws5_c00012{word-spacing:-0.158112px;}
.ws12_c00012{word-spacing:-0.151524px;}
.ws1e_c00012{word-spacing:-0.144936px;}
.wsd_c00012{word-spacing:-0.138348px;}
.ws23_c00012{word-spacing:-0.131760px;}
.ws9_c00012{word-spacing:-0.125172px;}
.ws15_c00012{word-spacing:-0.118584px;}
.ws17_c00012{word-spacing:-0.111996px;}
.ws0_c00012{word-spacing:-0.105408px;}
.ws6_c00012{word-spacing:-0.098820px;}
.ws8_c00012{word-spacing:-0.092232px;}
.wsc_c00012{word-spacing:-0.085644px;}
.wsa_c00012{word-spacing:-0.079056px;}
.ws3_c00012{word-spacing:-0.072468px;}
.wsf_c00012{word-spacing:-0.065880px;}
.ws13_c00012{word-spacing:-0.059292px;}
.ws19_c00012{word-spacing:-0.052704px;}
.ws7_c00012{word-spacing:-0.046116px;}
.ws1_c00012{word-spacing:-0.039528px;}
.ws14_c00012{word-spacing:-0.032940px;}
.ws10_c00012{word-spacing:-0.026352px;}
.wsb_c00012{word-spacing:-0.019764px;}
.ws11_c00012{word-spacing:-0.013176px;}
.ws25_c00012{word-spacing:-0.006588px;}
.ws1c_c00012{word-spacing:0.000000px;}
.ws4_c00012{word-spacing:0.006588px;}
.ws1d_c00012{word-spacing:0.013176px;}
.ws1b_c00012{word-spacing:0.019764px;}
.ws1f_c00012{word-spacing:0.059292px;}
._5_c00012{margin-left:-12.905892px;}
._6_c00012{margin-left:-11.647584px;}
._1_c00012{margin-left:-9.816120px;}
._9_c00012{margin-left:-7.852896px;}
._7_c00012{margin-left:-5.533920px;}
._3_c00012{margin-left:-4.413960px;}
._4_c00012{margin-left:-2.990952px;}
._8_c00012{margin-left:-1.069632px;}
._0_c00012{width:1.126548px;}
._2_c00012{width:2.424384px;}
._a_c00012{width:3.623400px;}
.fc0_c00012{color:rgb(0,0,0);}
.fs1_c00012{font-size:65.880000px;}
.fs0_c00012{font-size:72.000000px;}
.y0_c00012{bottom:0.000000px;}
.y2_c00012{bottom:46.830450px;}
.y1_c00012{bottom:67.530450px;}
.y23_c00012{bottom:139.729770px;}
.y22_c00012{bottom:170.413380px;}
.y21_c00012{bottom:201.096990px;}
.y20_c00012{bottom:231.800520px;}
.y1f_c00012{bottom:254.924400px;}
.y1e_c00012{bottom:278.048280px;}
.y1d_c00012{bottom:308.771400px;}
.y1c_c00012{bottom:339.455010px;}
.y1b_c00012{bottom:370.056270px;}
.y1a_c00012{bottom:400.739880px;}
.y19_c00012{bottom:431.423490px;}
.y18_c00012{bottom:462.107100px;}
.y17_c00012{bottom:492.708360px;}
.y16_c00012{bottom:523.391970px;}
.y15_c00012{bottom:554.075580px;}
.y14_c00012{bottom:584.676840px;}
.y13_c00012{bottom:615.396270px;}
.y12_c00012{bottom:646.079880px;}
.y11_c00012{bottom:676.681140px;}
.y10_c00012{bottom:707.364750px;}
.yf_c00012{bottom:738.048360px;}
.ye_c00012{bottom:768.649620px;}
.yd_c00012{bottom:799.333230px;}
.yc_c00012{bottom:830.016840px;}
.yb_c00012{bottom:860.736000px;}
.ya_c00012{bottom:891.337260px;}
.y9_c00012{bottom:922.020870px;}
.y8_c00012{bottom:952.704480px;}
.y7_c00012{bottom:983.305740px;}
.y6_c00012{bottom:1013.989350px;}
.y5_c00012{bottom:1044.672960px;}
.y4_c00012{bottom:1067.796840px;}
.y3_c00012{bottom:1098.480450px;}
.h2_c00012{height:47.286914px;}
.h1_c00012{height:63.175781px;}
.h0_c00012{height:1263.000000px;}
.w1_c00012{width:892.500000px;}
.w0_c00012{width:892.830000px;}
.x0_c00012{left:0.000000px;}
.x2_c00012{left:170.100000px;}
.x3_c00012{left:186.570000px;}
.x1_c00012{left:747.360000px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls3c_c00012{letter-spacing:-0.111264pt;}
.ls39_c00012{letter-spacing:-0.076128pt;}
.ls3b_c00012{letter-spacing:-0.070272pt;}
.ls30_c00012{letter-spacing:-0.064416pt;}
.ls3a_c00012{letter-spacing:-0.058560pt;}
.ls3e_c00012{letter-spacing:-0.052704pt;}
.ls35_c00012{letter-spacing:-0.046848pt;}
.ls32_c00012{letter-spacing:-0.040992pt;}
.ls34_c00012{letter-spacing:-0.035136pt;}
.ls37_c00012{letter-spacing:-0.029280pt;}
.ls2f_c00012{letter-spacing:-0.023424pt;}
.ls31_c00012{letter-spacing:-0.017568pt;}
.ls38_c00012{letter-spacing:-0.011712pt;}
.ls36_c00012{letter-spacing:-0.005856pt;}
.ls2e_c00012{letter-spacing:0.000000pt;}
.ls2_c00012{letter-spacing:0.005856pt;}
.lsd_c00012{letter-spacing:0.011712pt;}
.lsf_c00012{letter-spacing:0.017568pt;}
.ls8_c00012{letter-spacing:0.023424pt;}
.ls4_c00012{letter-spacing:0.029280pt;}
.ls0_c00012{letter-spacing:0.035136pt;}
.ls18_c00012{letter-spacing:0.040992pt;}
.ls15_c00012{letter-spacing:0.046848pt;}
.lsa_c00012{letter-spacing:0.052704pt;}
.ls25_c00012{letter-spacing:0.058560pt;}
.ls10_c00012{letter-spacing:0.064416pt;}
.ls1e_c00012{letter-spacing:0.070272pt;}
.ls13_c00012{letter-spacing:0.076128pt;}
.ls3_c00012{letter-spacing:0.081984pt;}
.ls1b_c00012{letter-spacing:0.087840pt;}
.ls3d_c00012{letter-spacing:0.111264pt;}
.ls11_c00012{letter-spacing:0.117120pt;}
.ls24_c00012{letter-spacing:0.128832pt;}
.ls33_c00012{letter-spacing:0.134688pt;}
.ls1c_c00012{letter-spacing:0.140544pt;}
.ls2c_c00012{letter-spacing:0.163968pt;}
.lsb_c00012{letter-spacing:0.175680pt;}
.ls20_c00012{letter-spacing:0.199104pt;}
.ls17_c00012{letter-spacing:0.210816pt;}
.ls2b_c00012{letter-spacing:0.216672pt;}
.lse_c00012{letter-spacing:0.234240pt;}
.ls21_c00012{letter-spacing:0.240096pt;}
.ls2a_c00012{letter-spacing:0.275232pt;}
.ls1f_c00012{letter-spacing:0.292800pt;}
.ls1d_c00012{letter-spacing:0.351360pt;}
.ls19_c00012{letter-spacing:0.527040pt;}
.ls12_c00012{letter-spacing:0.819840pt;}
.ls2d_c00012{letter-spacing:1.171200pt;}
.ls29_c00012{letter-spacing:2.734752pt;}
.ls26_c00012{letter-spacing:2.752320pt;}
.ls28_c00012{letter-spacing:2.787456pt;}
.ls27_c00012{letter-spacing:3.103680pt;}
.ls9_c00012{letter-spacing:6.570432pt;}
.ls6_c00012{letter-spacing:6.617280pt;}
.ls7_c00012{letter-spacing:6.652416pt;}
.ls23_c00012{letter-spacing:16.865280pt;}
.ls22_c00012{letter-spacing:17.158080pt;}
.ls5_c00012{letter-spacing:101.952960pt;}
.ls1_c00012{letter-spacing:146.458560pt;}
.ls14_c00012{letter-spacing:161.508480pt;}
.ls16_c00012{letter-spacing:191.256960pt;}
.ls1a_c00012{letter-spacing:235.704000pt;}
.lsc_c00012{letter-spacing:280.209600pt;}
.ws2_c00012{word-spacing:-58.560000pt;}
.ws16_c00012{word-spacing:-0.333792pt;}
.ws21_c00012{word-spacing:-0.298656pt;}
.ws24_c00012{word-spacing:-0.275232pt;}
.ws26_c00012{word-spacing:-0.222528pt;}
.ws1a_c00012{word-spacing:-0.199104pt;}
.wse_c00012{word-spacing:-0.193248pt;}
.ws22_c00012{word-spacing:-0.187392pt;}
.ws20_c00012{word-spacing:-0.169824pt;}
.ws18_c00012{word-spacing:-0.146400pt;}
.ws5_c00012{word-spacing:-0.140544pt;}
.ws12_c00012{word-spacing:-0.134688pt;}
.ws1e_c00012{word-spacing:-0.128832pt;}
.wsd_c00012{word-spacing:-0.122976pt;}
.ws23_c00012{word-spacing:-0.117120pt;}
.ws9_c00012{word-spacing:-0.111264pt;}
.ws15_c00012{word-spacing:-0.105408pt;}
.ws17_c00012{word-spacing:-0.099552pt;}
.ws0_c00012{word-spacing:-0.093696pt;}
.ws6_c00012{word-spacing:-0.087840pt;}
.ws8_c00012{word-spacing:-0.081984pt;}
.wsc_c00012{word-spacing:-0.076128pt;}
.wsa_c00012{word-spacing:-0.070272pt;}
.ws3_c00012{word-spacing:-0.064416pt;}
.wsf_c00012{word-spacing:-0.058560pt;}
.ws13_c00012{word-spacing:-0.052704pt;}
.ws19_c00012{word-spacing:-0.046848pt;}
.ws7_c00012{word-spacing:-0.040992pt;}
.ws1_c00012{word-spacing:-0.035136pt;}
.ws14_c00012{word-spacing:-0.029280pt;}
.ws10_c00012{word-spacing:-0.023424pt;}
.wsb_c00012{word-spacing:-0.017568pt;}
.ws11_c00012{word-spacing:-0.011712pt;}
.ws25_c00012{word-spacing:-0.005856pt;}
.ws1c_c00012{word-spacing:0.000000pt;}
.ws4_c00012{word-spacing:0.005856pt;}
.ws1d_c00012{word-spacing:0.011712pt;}
.ws1b_c00012{word-spacing:0.017568pt;}
.ws1f_c00012{word-spacing:0.052704pt;}
._5_c00012{margin-left:-11.471904pt;}
._6_c00012{margin-left:-10.353408pt;}
._1_c00012{margin-left:-8.725440pt;}
._9_c00012{margin-left:-6.980352pt;}
._7_c00012{margin-left:-4.919040pt;}
._3_c00012{margin-left:-3.923520pt;}
._4_c00012{margin-left:-2.658624pt;}
._8_c00012{margin-left:-0.950784pt;}
._0_c00012{width:1.001376pt;}
._2_c00012{width:2.155008pt;}
._a_c00012{width:3.220800pt;}
.fs1_c00012{font-size:58.560000pt;}
.fs0_c00012{font-size:64.000000pt;}
.y0_c00012{bottom:0.000000pt;}
.y2_c00012{bottom:41.627067pt;}
.y1_c00012{bottom:60.027067pt;}
.y23_c00012{bottom:124.204240pt;}
.y22_c00012{bottom:151.478560pt;}
.y21_c00012{bottom:178.752880pt;}
.y20_c00012{bottom:206.044907pt;}
.y1f_c00012{bottom:226.599467pt;}
.y1e_c00012{bottom:247.154027pt;}
.y1d_c00012{bottom:274.463467pt;}
.y1c_c00012{bottom:301.737787pt;}
.y1b_c00012{bottom:328.938907pt;}
.y1a_c00012{bottom:356.213227pt;}
.y19_c00012{bottom:383.487547pt;}
.y18_c00012{bottom:410.761867pt;}
.y17_c00012{bottom:437.962987pt;}
.y16_c00012{bottom:465.237307pt;}
.y15_c00012{bottom:492.511627pt;}
.y14_c00012{bottom:519.712747pt;}
.y13_c00012{bottom:547.018907pt;}
.y12_c00012{bottom:574.293227pt;}
.y11_c00012{bottom:601.494347pt;}
.y10_c00012{bottom:628.768667pt;}
.yf_c00012{bottom:656.042987pt;}
.ye_c00012{bottom:683.244107pt;}
.yd_c00012{bottom:710.518427pt;}
.yc_c00012{bottom:737.792747pt;}
.yb_c00012{bottom:765.098667pt;}
.ya_c00012{bottom:792.299787pt;}
.y9_c00012{bottom:819.574107pt;}
.y8_c00012{bottom:846.848427pt;}
.y7_c00012{bottom:874.049547pt;}
.y6_c00012{bottom:901.323867pt;}
.y5_c00012{bottom:928.598187pt;}
.y4_c00012{bottom:949.152747pt;}
.y3_c00012{bottom:976.427067pt;}
.h2_c00012{height:42.032812pt;}
.h1_c00012{height:56.156250pt;}
.h0_c00012{height:1122.666667pt;}
.w1_c00012{width:793.333333pt;}
.w0_c00012{width:793.626667pt;}
.x0_c00012{left:0.000000pt;}
.x2_c00012{left:151.200000pt;}
.x3_c00012{left:165.840000pt;}
.x1_c00012{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_894502163021d0ff90c5d0f9.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.093262;font-style:normal;font-weight:normal;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_c08944359bf0a3bc531534ee.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:0.895996;font-style:normal;font-weight:normal;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_e4b82f33289a7abee99da48a.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00013;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff4_c00013{font-family:ff4_c00013;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls1c_c00013{letter-spacing:-0.125172px;}
.ls1b_c00013{letter-spacing:-0.072468px;}
.ls24_c00013{letter-spacing:-0.065880px;}
.ls1d_c00013{letter-spacing:-0.052704px;}
.ls23_c00013{letter-spacing:-0.046116px;}
.ls28_c00013{letter-spacing:-0.032940px;}
.ls25_c00013{letter-spacing:-0.019764px;}
.ls1e_c00013{letter-spacing:-0.013176px;}
.ls1f_c00013{letter-spacing:-0.006588px;}
.ls1a_c00013{letter-spacing:0.000000px;}
.ls12_c00013{letter-spacing:0.006588px;}
.ls9_c00013{letter-spacing:0.013176px;}
.ls11_c00013{letter-spacing:0.019764px;}
.ls1_c00013{letter-spacing:0.026352px;}
.lsd_c00013{letter-spacing:0.032940px;}
.lsa_c00013{letter-spacing:0.039528px;}
.ls13_c00013{letter-spacing:0.046116px;}
.ls3_c00013{letter-spacing:0.052704px;}
.lsc_c00013{letter-spacing:0.059292px;}
.lsf_c00013{letter-spacing:0.065880px;}
.ls5_c00013{letter-spacing:0.079056px;}
.ls2_c00013{letter-spacing:0.092232px;}
.ls7_c00013{letter-spacing:0.105408px;}
.ls20_c00013{letter-spacing:0.131760px;}
.ls10_c00013{letter-spacing:0.197640px;}
.ls16_c00013{letter-spacing:0.204228px;}
.ls27_c00013{letter-spacing:0.223992px;}
.ls14_c00013{letter-spacing:0.237168px;}
.ls6_c00013{letter-spacing:0.263520px;}
.ls8_c00013{letter-spacing:0.270108px;}
.ls21_c00013{letter-spacing:0.309636px;}
.ls22_c00013{letter-spacing:0.362340px;}
.ls18_c00013{letter-spacing:0.461160px;}
.ls26_c00013{letter-spacing:0.527040px;}
.ls15_c00013{letter-spacing:0.922320px;}
.ls17_c00013{letter-spacing:1.317600px;}
.lse_c00013{letter-spacing:114.697080px;}
.lsb_c00013{letter-spacing:164.765880px;}
.ls4_c00013{letter-spacing:215.164080px;}
.ls0_c00013{letter-spacing:265.167000px;}
.ls19_c00013{letter-spacing:846.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;}
}
.ws1c_c00013{word-spacing:-66.103992px;}
.ws2_c00013{word-spacing:-65.880000px;}
.ws1b_c00013{word-spacing:-0.592920px;}
.ws14_c00013{word-spacing:-0.428220px;}
.ws13_c00013{word-spacing:-0.375516px;}
.ws9_c00013{word-spacing:-0.335988px;}
.ws17_c00013{word-spacing:-0.270108px;}
.ws8_c00013{word-spacing:-0.171288px;}
.ws0_c00013{word-spacing:-0.158112px;}
.ws6_c00013{word-spacing:-0.144936px;}
.ws10_c00013{word-spacing:-0.131760px;}
.wsd_c00013{word-spacing:-0.125172px;}
.ws4_c00013{word-spacing:-0.118584px;}
.ws15_c00013{word-spacing:-0.111996px;}
.wsc_c00013{word-spacing:-0.105408px;}
.wse_c00013{word-spacing:-0.098820px;}
.ws1_c00013{word-spacing:-0.092232px;}
.ws11_c00013{word-spacing:-0.085644px;}
.wsa_c00013{word-spacing:-0.079056px;}
.ws12_c00013{word-spacing:-0.072468px;}
.ws16_c00013{word-spacing:-0.065880px;}
.wsf_c00013{word-spacing:-0.059292px;}
.wsb_c00013{word-spacing:-0.052704px;}
.ws1a_c00013{word-spacing:-0.046116px;}
.ws1d_c00013{word-spacing:-0.032940px;}
.ws18_c00013{word-spacing:-0.019764px;}
.ws7_c00013{word-spacing:-0.013176px;}
.ws19_c00013{word-spacing:0.000000px;}
.ws3_c00013{word-spacing:0.006588px;}
.ws5_c00013{word-spacing:0.059292px;}
._9_c00013{margin-left:-12.760956px;}
._6_c00013{margin-left:-11.621232px;}
._0_c00013{margin-left:-10.053288px;}
._2_c00013{margin-left:-8.762040px;}
._3_c00013{margin-left:-6.074136px;}
._5_c00013{margin-left:-4.894884px;}
._8_c00013{margin-left:-3.320352px;}
._7_c00013{margin-left:-1.758996px;}
._4_c00013{width:1.917108px;}
._1_c00013{width:3.096360px;}
.fc0_c00013{color:rgb(0,0,0);}
.fs1_c00013{font-size:65.880000px;}
.fs0_c00013{font-size:72.000000px;}
.fs2_c00013{font-size:83.880000px;}
.y0_c00013{bottom:0.000000px;}
.y2_c00013{bottom:46.830450px;}
.y1_c00013{bottom:67.530450px;}
.y1d_c00013{bottom:291.270450px;}
.y1c_c00013{bottom:319.890450px;}
.y1b_c00013{bottom:361.650450px;}
.y1a_c00013{bottom:393.269880px;}
.y19_c00013{bottom:423.871140px;}
.y18_c00013{bottom:454.554750px;}
.y17_c00013{bottom:485.238360px;}
.y16_c00013{bottom:515.921970px;}
.y15_c00013{bottom:546.523230px;}
.y14_c00013{bottom:577.206840px;}
.y13_c00013{bottom:607.918620px;}
.y12_c00013{bottom:638.519880px;}
.y11_c00013{bottom:669.203490px;}
.y10_c00013{bottom:699.887100px;}
.yf_c00013{bottom:730.488360px;}
.ye_c00013{bottom:761.171970px;}
.yd_c00013{bottom:791.855580px;}
.yc_c00013{bottom:822.575010px;}
.yb_c00013{bottom:853.176270px;}
.ya_c00013{bottom:883.859880px;}
.y9_c00013{bottom:914.543490px;}
.y8_c00013{bottom:945.144750px;}
.y7_c00013{bottom:975.828360px;}
.y6_c00013{bottom:1006.511970px;}
.y5_c00013{bottom:1037.113230px;}
.y4_c00013{bottom:1067.796840px;}
.y3_c00013{bottom:1098.480450px;}
.h2_c00013{height:47.286914px;}
.h1_c00013{height:63.175781px;}
.h3_c00013{height:87.484219px;}
.h0_c00013{height:1263.000000px;}
.w1_c00013{width:892.500000px;}
.w0_c00013{width:892.830000px;}
.x0_c00013{left:0.000000px;}
.x2_c00013{left:127.620000px;}
.x3_c00013{left:144.090000px;}
.x1_c00013{left:704.880000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls1c_c00013{letter-spacing:-0.111264pt;}
.ls1b_c00013{letter-spacing:-0.064416pt;}
.ls24_c00013{letter-spacing:-0.058560pt;}
.ls1d_c00013{letter-spacing:-0.046848pt;}
.ls23_c00013{letter-spacing:-0.040992pt;}
.ls28_c00013{letter-spacing:-0.029280pt;}
.ls25_c00013{letter-spacing:-0.017568pt;}
.ls1e_c00013{letter-spacing:-0.011712pt;}
.ls1f_c00013{letter-spacing:-0.005856pt;}
.ls1a_c00013{letter-spacing:0.000000pt;}
.ls12_c00013{letter-spacing:0.005856pt;}
.ls9_c00013{letter-spacing:0.011712pt;}
.ls11_c00013{letter-spacing:0.017568pt;}
.ls1_c00013{letter-spacing:0.023424pt;}
.lsd_c00013{letter-spacing:0.029280pt;}
.lsa_c00013{letter-spacing:0.035136pt;}
.ls13_c00013{letter-spacing:0.040992pt;}
.ls3_c00013{letter-spacing:0.046848pt;}
.lsc_c00013{letter-spacing:0.052704pt;}
.lsf_c00013{letter-spacing:0.058560pt;}
.ls5_c00013{letter-spacing:0.070272pt;}
.ls2_c00013{letter-spacing:0.081984pt;}
.ls7_c00013{letter-spacing:0.093696pt;}
.ls20_c00013{letter-spacing:0.117120pt;}
.ls10_c00013{letter-spacing:0.175680pt;}
.ls16_c00013{letter-spacing:0.181536pt;}
.ls27_c00013{letter-spacing:0.199104pt;}
.ls14_c00013{letter-spacing:0.210816pt;}
.ls6_c00013{letter-spacing:0.234240pt;}
.ls8_c00013{letter-spacing:0.240096pt;}
.ls21_c00013{letter-spacing:0.275232pt;}
.ls22_c00013{letter-spacing:0.322080pt;}
.ls18_c00013{letter-spacing:0.409920pt;}
.ls26_c00013{letter-spacing:0.468480pt;}
.ls15_c00013{letter-spacing:0.819840pt;}
.ls17_c00013{letter-spacing:1.171200pt;}
.lse_c00013{letter-spacing:101.952960pt;}
.lsb_c00013{letter-spacing:146.458560pt;}
.ls4_c00013{letter-spacing:191.256960pt;}
.ls0_c00013{letter-spacing:235.704000pt;}
.ls19_c00013{letter-spacing:752.000000pt;}
.ws1c_c00013{word-spacing:-58.759104pt;}
.ws2_c00013{word-spacing:-58.560000pt;}
.ws1b_c00013{word-spacing:-0.527040pt;}
.ws14_c00013{word-spacing:-0.380640pt;}
.ws13_c00013{word-spacing:-0.333792pt;}
.ws9_c00013{word-spacing:-0.298656pt;}
.ws17_c00013{word-spacing:-0.240096pt;}
.ws8_c00013{word-spacing:-0.152256pt;}
.ws0_c00013{word-spacing:-0.140544pt;}
.ws6_c00013{word-spacing:-0.128832pt;}
.ws10_c00013{word-spacing:-0.117120pt;}
.wsd_c00013{word-spacing:-0.111264pt;}
.ws4_c00013{word-spacing:-0.105408pt;}
.ws15_c00013{word-spacing:-0.099552pt;}
.wsc_c00013{word-spacing:-0.093696pt;}
.wse_c00013{word-spacing:-0.087840pt;}
.ws1_c00013{word-spacing:-0.081984pt;}
.ws11_c00013{word-spacing:-0.076128pt;}
.wsa_c00013{word-spacing:-0.070272pt;}
.ws12_c00013{word-spacing:-0.064416pt;}
.ws16_c00013{word-spacing:-0.058560pt;}
.wsf_c00013{word-spacing:-0.052704pt;}
.wsb_c00013{word-spacing:-0.046848pt;}
.ws1a_c00013{word-spacing:-0.040992pt;}
.ws1d_c00013{word-spacing:-0.029280pt;}
.ws18_c00013{word-spacing:-0.017568pt;}
.ws7_c00013{word-spacing:-0.011712pt;}
.ws19_c00013{word-spacing:0.000000pt;}
.ws3_c00013{word-spacing:0.005856pt;}
.ws5_c00013{word-spacing:0.052704pt;}
._9_c00013{margin-left:-11.343072pt;}
._6_c00013{margin-left:-10.329984pt;}
._0_c00013{margin-left:-8.936256pt;}
._2_c00013{margin-left:-7.788480pt;}
._3_c00013{margin-left:-5.399232pt;}
._5_c00013{margin-left:-4.351008pt;}
._8_c00013{margin-left:-2.951424pt;}
._7_c00013{margin-left:-1.563552pt;}
._4_c00013{width:1.704096pt;}
._1_c00013{width:2.752320pt;}
.fs1_c00013{font-size:58.560000pt;}
.fs0_c00013{font-size:64.000000pt;}
.fs2_c00013{font-size:74.560000pt;}
.y0_c00013{bottom:0.000000pt;}
.y2_c00013{bottom:41.627067pt;}
.y1_c00013{bottom:60.027067pt;}
.y1d_c00013{bottom:258.907067pt;}
.y1c_c00013{bottom:284.347067pt;}
.y1b_c00013{bottom:321.467067pt;}
.y1a_c00013{bottom:349.573227pt;}
.y19_c00013{bottom:376.774347pt;}
.y18_c00013{bottom:404.048667pt;}
.y17_c00013{bottom:431.322987pt;}
.y16_c00013{bottom:458.597307pt;}
.y15_c00013{bottom:485.798427pt;}
.y14_c00013{bottom:513.072747pt;}
.y13_c00013{bottom:540.372107pt;}
.y12_c00013{bottom:567.573227pt;}
.y11_c00013{bottom:594.847547pt;}
.y10_c00013{bottom:622.121867pt;}
.yf_c00013{bottom:649.322987pt;}
.ye_c00013{bottom:676.597307pt;}
.yd_c00013{bottom:703.871627pt;}
.yc_c00013{bottom:731.177787pt;}
.yb_c00013{bottom:758.378907pt;}
.ya_c00013{bottom:785.653227pt;}
.y9_c00013{bottom:812.927547pt;}
.y8_c00013{bottom:840.128667pt;}
.y7_c00013{bottom:867.402987pt;}
.y6_c00013{bottom:894.677307pt;}
.y5_c00013{bottom:921.878427pt;}
.y4_c00013{bottom:949.152747pt;}
.y3_c00013{bottom:976.427067pt;}
.h2_c00013{height:42.032812pt;}
.h1_c00013{height:56.156250pt;}
.h3_c00013{height:77.763750pt;}
.h0_c00013{height:1122.666667pt;}
.w1_c00013{width:793.333333pt;}
.w0_c00013{width:793.626667pt;}
.x0_c00013{left:0.000000pt;}
.x2_c00013{left:113.440000pt;}
.x3_c00013{left:128.080000pt;}
.x1_c00013{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c965afe0c432912fc86f94c7.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.093262;font-style:normal;font-weight:normal;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_a12926c207225281a226b5d2.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls1_c00014{letter-spacing:0.000000px;}
.ls0_c00014{letter-spacing:846.000000px;}
.sc__c00014{text-shadow:none;}
.sc0_c00014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00014{-webkit-text-stroke:0px transparent;}
.sc0_c00014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00014{word-spacing:0.000000px;}
.fc0_c00014{color:rgb(0,0,0);}
.fs0_c00014{font-size:72.000000px;}
.fs1_c00014{font-size:83.880000px;}
.y0_c00014{bottom:0.000000px;}
.y2_c00014{bottom:46.830450px;}
.y1_c00014{bottom:67.530450px;}
.y4_c00014{bottom:1065.900450px;}
.y3_c00014{bottom:1094.520450px;}
.h1_c00014{height:63.175781px;}
.h2_c00014{height:87.484219px;}
.h0_c00014{height:1263.000000px;}
.w1_c00014{width:892.500000px;}
.w0_c00014{width:892.830000px;}
.x0_c00014{left:0.000000px;}
.x2_c00014{left:170.100000px;}
.x1_c00014{left:747.360000px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls1_c00014{letter-spacing:0.000000pt;}
.ls0_c00014{letter-spacing:752.000000pt;}
.ws0_c00014{word-spacing:0.000000pt;}
.fs0_c00014{font-size:64.000000pt;}
.fs1_c00014{font-size:74.560000pt;}
.y0_c00014{bottom:0.000000pt;}
.y2_c00014{bottom:41.627067pt;}
.y1_c00014{bottom:60.027067pt;}
.y4_c00014{bottom:947.467067pt;}
.y3_c00014{bottom:972.907067pt;}
.h1_c00014{height:56.156250pt;}
.h2_c00014{height:77.763750pt;}
.h0_c00014{height:1122.666667pt;}
.w1_c00014{width:793.333333pt;}
.w0_c00014{width:793.626667pt;}
.x0_c00014{left:0.000000pt;}
.x2_c00014{left:151.200000pt;}
.x1_c00014{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c14ef6021a0cbae5b883f7d1.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.093262;font-style:normal;font-weight:normal;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_a12926c207225281a226b5d2.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00015{letter-spacing:0.000000px;}
.ls1_c00015{letter-spacing:840.695688px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00015{word-spacing:0.000000px;}
.fc0_c00015{color:rgb(0,0,0);}
.fs0_c00015{font-size:72.000000px;}
.fs1_c00015{font-size:83.880000px;}
.y0_c00015{bottom:0.000000px;}
.y2_c00015{bottom:46.830450px;}
.y1_c00015{bottom:67.530450px;}
.y3_c00015{bottom:1094.520450px;}
.h1_c00015{height:63.175781px;}
.h2_c00015{height:87.484219px;}
.h0_c00015{height:1263.000000px;}
.w1_c00015{width:892.500000px;}
.w0_c00015{width:892.830000px;}
.x0_c00015{left:0.000000px;}
.x2_c00015{left:127.620000px;}
.x1_c00015{left:704.880000px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls0_c00015{letter-spacing:0.000000pt;}
.ls1_c00015{letter-spacing:747.285056pt;}
.ws0_c00015{word-spacing:0.000000pt;}
.fs0_c00015{font-size:64.000000pt;}
.fs1_c00015{font-size:74.560000pt;}
.y0_c00015{bottom:0.000000pt;}
.y2_c00015{bottom:41.627067pt;}
.y1_c00015{bottom:60.027067pt;}
.y3_c00015{bottom:972.907067pt;}
.h1_c00015{height:56.156250pt;}
.h2_c00015{height:77.763750pt;}
.h0_c00015{height:1122.666667pt;}
.w1_c00015{width:793.333333pt;}
.w0_c00015{width:793.626667pt;}
.x0_c00015{left:0.000000pt;}
.x2_c00015{left:113.440000pt;}
.x1_c00015{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bffcae0b424ed7415b90055d.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.093262;font-style:normal;font-weight:normal;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_1e4c42c507da2a8465a14c18.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00016;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00016{font-family:ff3_c00016;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00016;src:url('chunks/assets/font_7dfb96126da045071f0b926c.woff2')format("woff");}.ff4_c00016{font-family:ff4_c00016;line-height:1.106934;font-style: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;}
.lsb_c00016{letter-spacing:-0.079200px;}
.lsc_c00016{letter-spacing:-0.072000px;}
.ls6_c00016{letter-spacing:-0.064800px;}
.ls2_c00016{letter-spacing:-0.057600px;}
.ls8_c00016{letter-spacing:-0.050400px;}
.ls4_c00016{letter-spacing:-0.043200px;}
.ls3_c00016{letter-spacing:-0.036000px;}
.ls7_c00016{letter-spacing:-0.028800px;}
.ls9_c00016{letter-spacing:-0.021600px;}
.lsa_c00016{letter-spacing:-0.014400px;}
.ls5_c00016{letter-spacing:-0.007200px;}
.ls1_c00016{letter-spacing:0.000000px;}
.ls0_c00016{letter-spacing:0.050328px;}
.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;}
}
.ws15_c00016{word-spacing:-3.081600px;}
.ws14_c00016{word-spacing:-2.952000px;}
.ws9_c00016{word-spacing:-2.692800px;}
.wsa_c00016{word-spacing:-2.563200px;}
.ws12_c00016{word-spacing:-2.138400px;}
.ws13_c00016{word-spacing:-1.965600px;}
.ws11_c00016{word-spacing:-1.951200px;}
.ws2f_c00016{word-spacing:-1.641600px;}
.ws2e_c00016{word-spacing:-1.605600px;}
.ws1a_c00016{word-spacing:-1.267200px;}
.ws3_c00016{word-spacing:-0.597600px;}
.ws2_c00016{word-spacing:-0.504000px;}
.ws23_c00016{word-spacing:-0.158400px;}
.ws22_c00016{word-spacing:-0.151200px;}
.ws32_c00016{word-spacing:-0.014400px;}
.ws0_c00016{word-spacing:0.000000px;}
.ws1_c00016{word-spacing:0.041940px;}
.ws1e_c00016{word-spacing:1.267200px;}
.ws1f_c00016{word-spacing:1.317600px;}
.ws2c_c00016{word-spacing:2.340000px;}
.ws2d_c00016{word-spacing:2.440800px;}
.wsc_c00016{word-spacing:3.787200px;}
.wsb_c00016{word-spacing:3.801600px;}
.ws5_c00016{word-spacing:4.845600px;}
.ws4_c00016{word-spacing:4.881600px;}
.ws2a_c00016{word-spacing:5.544000px;}
.ws2b_c00016{word-spacing:5.616000px;}
.ws17_c00016{word-spacing:6.314400px;}
.ws16_c00016{word-spacing:6.321600px;}
.ws33_c00016{word-spacing:8.481600px;}
.ws26_c00016{word-spacing:9.532800px;}
.ws27_c00016{word-spacing:9.554400px;}
.ws25_c00016{word-spacing:14.932800px;}
.ws24_c00016{word-spacing:14.947200px;}
.ws20_c00016{word-spacing:15.660000px;}
.ws21_c00016{word-spacing:15.753600px;}
.ws31_c00016{word-spacing:15.998400px;}
.ws30_c00016{word-spacing:16.020000px;}
.ws1c_c00016{word-spacing:16.754400px;}
.ws1d_c00016{word-spacing:16.761600px;}
.ws37_c00016{word-spacing:17.474400px;}
.ws35_c00016{word-spacing:17.488800px;}
.ws36_c00016{word-spacing:17.510400px;}
.ws1b_c00016{word-spacing:19.281600px;}
.ws29_c00016{word-spacing:20.232000px;}
.ws28_c00016{word-spacing:20.397600px;}
.ws18_c00016{word-spacing:21.081600px;}
.ws19_c00016{word-spacing:21.103200px;}
.wse_c00016{word-spacing:22.485600px;}
.wsd_c00016{word-spacing:22.521600px;}
.ws10_c00016{word-spacing:23.565600px;}
.wsf_c00016{word-spacing:23.587200px;}
.ws8_c00016{word-spacing:24.127200px;}
.ws6_c00016{word-spacing:24.228000px;}
.ws7_c00016{word-spacing:24.343200px;}
.ws34_c00016{word-spacing:56.692800px;}
._1_c00016{width:1.468800px;}
._0_c00016{width:14.427360px;}
.fc0_c00016{color:rgb(0,0,0);}
.fs0_c00016{font-size:72.000000px;}
.fs1_c00016{font-size:83.880000px;}
.y0_c00016{bottom:0.000000px;}
.y2_c00016{bottom:46.830450px;}
.y1_c00016{bottom:67.530450px;}
.y22_c00016{bottom:136.650450px;}
.y21_c00016{bottom:167.700450px;}
.y20_c00016{bottom:198.750450px;}
.y1f_c00016{bottom:229.800450px;}
.y1e_c00016{bottom:269.850450px;}
.y1d_c00016{bottom:300.900450px;}
.y1c_c00016{bottom:331.950450px;}
.y1b_c00016{bottom:363.000450px;}
.y1a_c00016{bottom:394.050450px;}
.y19_c00016{bottom:425.100450px;}
.y18_c00016{bottom:456.150450px;}
.y17_c00016{bottom:487.200450px;}
.y16_c00016{bottom:518.250450px;}
.y15_c00016{bottom:549.300450px;}
.y14_c00016{bottom:580.350450px;}
.y13_c00016{bottom:611.400450px;}
.y12_c00016{bottom:642.450450px;}
.y11_c00016{bottom:673.500450px;}
.y10_c00016{bottom:704.550450px;}
.yf_c00016{bottom:735.510450px;}
.ye_c00016{bottom:766.560450px;}
.yd_c00016{bottom:797.610450px;}
.yc_c00016{bottom:828.660450px;}
.yb_c00016{bottom:859.710450px;}
.ya_c00016{bottom:890.760450px;}
.y9_c00016{bottom:921.810450px;}
.y8_c00016{bottom:952.860450px;}
.y7_c00016{bottom:983.910450px;}
.y6_c00016{bottom:1014.960450px;}
.y5_c00016{bottom:1044.570450px;}
.y4_c00016{bottom:1070.404950px;}
.y3_c00016{bottom:1094.520450px;}
.h1_c00016{height:63.175781px;}
.h4_c00016{height:64.546875px;}
.h3_c00016{height:72.562500px;}
.h2_c00016{height:87.484219px;}
.h0_c00016{height:1263.000000px;}
.w1_c00016{width:892.500000px;}
.w0_c00016{width:892.830000px;}
.x0_c00016{left:0.000000px;}
.x2_c00016{left:170.100000px;}
.x3_c00016{left:197.109360px;}
.x1_c00016{left:747.360000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.lsb_c00016{letter-spacing:-0.070400pt;}
.lsc_c00016{letter-spacing:-0.064000pt;}
.ls6_c00016{letter-spacing:-0.057600pt;}
.ls2_c00016{letter-spacing:-0.051200pt;}
.ls8_c00016{letter-spacing:-0.044800pt;}
.ls4_c00016{letter-spacing:-0.038400pt;}
.ls3_c00016{letter-spacing:-0.032000pt;}
.ls7_c00016{letter-spacing:-0.025600pt;}
.ls9_c00016{letter-spacing:-0.019200pt;}
.lsa_c00016{letter-spacing:-0.012800pt;}
.ls5_c00016{letter-spacing:-0.006400pt;}
.ls1_c00016{letter-spacing:0.000000pt;}
.ls0_c00016{letter-spacing:0.044736pt;}
.ws15_c00016{word-spacing:-2.739200pt;}
.ws14_c00016{word-spacing:-2.624000pt;}
.ws9_c00016{word-spacing:-2.393600pt;}
.wsa_c00016{word-spacing:-2.278400pt;}
.ws12_c00016{word-spacing:-1.900800pt;}
.ws13_c00016{word-spacing:-1.747200pt;}
.ws11_c00016{word-spacing:-1.734400pt;}
.ws2f_c00016{word-spacing:-1.459200pt;}
.ws2e_c00016{word-spacing:-1.427200pt;}
.ws1a_c00016{word-spacing:-1.126400pt;}
.ws3_c00016{word-spacing:-0.531200pt;}
.ws2_c00016{word-spacing:-0.448000pt;}
.ws23_c00016{word-spacing:-0.140800pt;}
.ws22_c00016{word-spacing:-0.134400pt;}
.ws32_c00016{word-spacing:-0.012800pt;}
.ws0_c00016{word-spacing:0.000000pt;}
.ws1_c00016{word-spacing:0.037280pt;}
.ws1e_c00016{word-spacing:1.126400pt;}
.ws1f_c00016{word-spacing:1.171200pt;}
.ws2c_c00016{word-spacing:2.080000pt;}
.ws2d_c00016{word-spacing:2.169600pt;}
.wsc_c00016{word-spacing:3.366400pt;}
.wsb_c00016{word-spacing:3.379200pt;}
.ws5_c00016{word-spacing:4.307200pt;}
.ws4_c00016{word-spacing:4.339200pt;}
.ws2a_c00016{word-spacing:4.928000pt;}
.ws2b_c00016{word-spacing:4.992000pt;}
.ws17_c00016{word-spacing:5.612800pt;}
.ws16_c00016{word-spacing:5.619200pt;}
.ws33_c00016{word-spacing:7.539200pt;}
.ws26_c00016{word-spacing:8.473600pt;}
.ws27_c00016{word-spacing:8.492800pt;}
.ws25_c00016{word-spacing:13.273600pt;}
.ws24_c00016{word-spacing:13.286400pt;}
.ws20_c00016{word-spacing:13.920000pt;}
.ws21_c00016{word-spacing:14.003200pt;}
.ws31_c00016{word-spacing:14.220800pt;}
.ws30_c00016{word-spacing:14.240000pt;}
.ws1c_c00016{word-spacing:14.892800pt;}
.ws1d_c00016{word-spacing:14.899200pt;}
.ws37_c00016{word-spacing:15.532800pt;}
.ws35_c00016{word-spacing:15.545600pt;}
.ws36_c00016{word-spacing:15.564800pt;}
.ws1b_c00016{word-spacing:17.139200pt;}
.ws29_c00016{word-spacing:17.984000pt;}
.ws28_c00016{word-spacing:18.131200pt;}
.ws18_c00016{word-spacing:18.739200pt;}
.ws19_c00016{word-spacing:18.758400pt;}
.wse_c00016{word-spacing:19.987200pt;}
.wsd_c00016{word-spacing:20.019200pt;}
.ws10_c00016{word-spacing:20.947200pt;}
.wsf_c00016{word-spacing:20.966400pt;}
.ws8_c00016{word-spacing:21.446400pt;}
.ws6_c00016{word-spacing:21.536000pt;}
.ws7_c00016{word-spacing:21.638400pt;}
.ws34_c00016{word-spacing:50.393600pt;}
._1_c00016{width:1.305600pt;}
._0_c00016{width:12.824320pt;}
.fs0_c00016{font-size:64.000000pt;}
.fs1_c00016{font-size:74.560000pt;}
.y0_c00016{bottom:0.000000pt;}
.y2_c00016{bottom:41.627067pt;}
.y1_c00016{bottom:60.027067pt;}
.y22_c00016{bottom:121.467067pt;}
.y21_c00016{bottom:149.067067pt;}
.y20_c00016{bottom:176.667067pt;}
.y1f_c00016{bottom:204.267067pt;}
.y1e_c00016{bottom:239.867067pt;}
.y1d_c00016{bottom:267.467067pt;}
.y1c_c00016{bottom:295.067067pt;}
.y1b_c00016{bottom:322.667067pt;}
.y1a_c00016{bottom:350.267067pt;}
.y19_c00016{bottom:377.867067pt;}
.y18_c00016{bottom:405.467067pt;}
.y17_c00016{bottom:433.067067pt;}
.y16_c00016{bottom:460.667067pt;}
.y15_c00016{bottom:488.267067pt;}
.y14_c00016{bottom:515.867067pt;}
.y13_c00016{bottom:543.467067pt;}
.y12_c00016{bottom:571.067067pt;}
.y11_c00016{bottom:598.667067pt;}
.y10_c00016{bottom:626.267067pt;}
.yf_c00016{bottom:653.787067pt;}
.ye_c00016{bottom:681.387067pt;}
.yd_c00016{bottom:708.987067pt;}
.yc_c00016{bottom:736.587067pt;}
.yb_c00016{bottom:764.187067pt;}
.ya_c00016{bottom:791.787067pt;}
.y9_c00016{bottom:819.387067pt;}
.y8_c00016{bottom:846.987067pt;}
.y7_c00016{bottom:874.587067pt;}
.y6_c00016{bottom:902.187067pt;}
.y5_c00016{bottom:928.507067pt;}
.y4_c00016{bottom:951.471067pt;}
.y3_c00016{bottom:972.907067pt;}
.h1_c00016{height:56.156250pt;}
.h4_c00016{height:57.375000pt;}
.h3_c00016{height:64.500000pt;}
.h2_c00016{height:77.763750pt;}
.h0_c00016{height:1122.666667pt;}
.w1_c00016{width:793.333333pt;}
.w0_c00016{width:793.626667pt;}
.x0_c00016{left:0.000000pt;}
.x2_c00016{left:151.200000pt;}
.x3_c00016{left:175.208320pt;}
.x1_c00016{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_120594a67f6b1ac35edcc433.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.093262;font-style:normal;font-weight:normal;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_12df5ad60b5d356116729ead.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00017{vertical-align:0.000000px;}
.lsc_c00017{letter-spacing:-0.100800px;}
.ls4_c00017{letter-spacing:-0.079200px;}
.lsb_c00017{letter-spacing:-0.064800px;}
.ls5_c00017{letter-spacing:-0.057600px;}
.ls7_c00017{letter-spacing:-0.050400px;}
.ls6_c00017{letter-spacing:-0.043200px;}
.ls2_c00017{letter-spacing:-0.036000px;}
.ls8_c00017{letter-spacing:-0.028800px;}
.lsa_c00017{letter-spacing:-0.021600px;}
.ls3_c00017{letter-spacing:-0.014400px;}
.ls9_c00017{letter-spacing:-0.007200px;}
.ls1_c00017{letter-spacing:0.000000px;}
.ls0_c00017{letter-spacing:0.007200px;}
.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;}
}
.wsa_c00017{word-spacing:-4.147200px;}
.ws9_c00017{word-spacing:-4.118400px;}
.ws13_c00017{word-spacing:-3.427200px;}
.ws11_c00017{word-spacing:-3.405600px;}
.ws12_c00017{word-spacing:-3.355200px;}
.wsf_c00017{word-spacing:-2.714400px;}
.wse_c00017{word-spacing:-2.692800px;}
.ws10_c00017{word-spacing:-2.642400px;}
.ws2_c00017{word-spacing:-2.044800px;}
.ws1_c00017{word-spacing:-1.965600px;}
.ws23_c00017{word-spacing:-1.274400px;}
.ws16_c00017{word-spacing:-1.238400px;}
.ws24_c00017{word-spacing:-1.137600px;}
.ws3_c00017{word-spacing:-0.885600px;}
.ws4_c00017{word-spacing:-0.842400px;}
.ws33_c00017{word-spacing:-0.187200px;}
.ws0_c00017{word-spacing:0.000000px;}
.ws2a_c00017{word-spacing:0.007200px;}
.ws2f_c00017{word-spacing:0.086400px;}
.ws6_c00017{word-spacing:0.151200px;}
.ws30_c00017{word-spacing:0.165600px;}
.ws1e_c00017{word-spacing:0.172800px;}
.ws29_c00017{word-spacing:0.194400px;}
.ws17_c00017{word-spacing:0.208800px;}
.wsd_c00017{word-spacing:0.237600px;}
.ws2b_c00017{word-spacing:0.799200px;}
.ws2c_c00017{word-spacing:0.928800px;}
.ws1a_c00017{word-spacing:1.555200px;}
.ws19_c00017{word-spacing:1.641600px;}
.ws1b_c00017{word-spacing:1.677600px;}
.ws37_c00017{word-spacing:1.951200px;}
.ws36_c00017{word-spacing:2.044800px;}
.ws39_c00017{word-spacing:2.620800px;}
.ws38_c00017{word-spacing:2.649600px;}
.ws27_c00017{word-spacing:4.140000px;}
.ws15_c00017{word-spacing:5.925600px;}
.ws5_c00017{word-spacing:5.932800px;}
.ws14_c00017{word-spacing:5.961600px;}
.ws1d_c00017{word-spacing:6.408000px;}
.ws1c_c00017{word-spacing:6.429600px;}
.ws20_c00017{word-spacing:8.820000px;}
.ws1f_c00017{word-spacing:8.892000px;}
.ws28_c00017{word-spacing:13.536000px;}
.ws21_c00017{word-spacing:13.888800px;}
.ws22_c00017{word-spacing:13.903200px;}
.ws2d_c00017{word-spacing:14.227200px;}
.ws2e_c00017{word-spacing:14.306400px;}
.ws34_c00017{word-spacing:17.100000px;}
.ws35_c00017{word-spacing:17.121600px;}
.ws26_c00017{word-spacing:17.179200px;}
.ws25_c00017{word-spacing:17.208000px;}
.ws8_c00017{word-spacing:19.634400px;}
.ws7_c00017{word-spacing:19.656000px;}
.ws31_c00017{word-spacing:24.321600px;}
.ws32_c00017{word-spacing:24.379200px;}
.ws18_c00017{word-spacing:25.394400px;}
.wsc_c00017{word-spacing:27.547200px;}
.wsb_c00017{word-spacing:27.655200px;}
._0_c00017{width:1.152000px;}
.fc0_c00017{color:rgb(0,0,0);}
.fs0_c00017{font-size:72.000000px;}
.y0_c00017{bottom:0.000000px;}
.y2_c00017{bottom:46.830450px;}
.y1_c00017{bottom:67.530450px;}
.y24_c00017{bottom:156.180450px;}
.y23_c00017{bottom:187.230450px;}
.y22_c00017{bottom:218.280450px;}
.y21_c00017{bottom:258.330450px;}
.y20_c00017{bottom:289.380450px;}
.y1f_c00017{bottom:320.430450px;}
.y1e_c00017{bottom:351.390450px;}
.y1d_c00017{bottom:382.440450px;}
.y1c_c00017{bottom:422.490450px;}
.y1b_c00017{bottom:453.540450px;}
.y1a_c00017{bottom:484.590450px;}
.y19_c00017{bottom:515.640450px;}
.y18_c00017{bottom:546.690450px;}
.y17_c00017{bottom:577.740450px;}
.y16_c00017{bottom:608.790450px;}
.y15_c00017{bottom:647.490450px;}
.y14_c00017{bottom:686.190450px;}
.y13_c00017{bottom:706.890450px;}
.y12_c00017{bottom:727.590450px;}
.y11_c00017{bottom:748.290450px;}
.y10_c00017{bottom:768.990450px;}
.yf_c00017{bottom:789.690450px;}
.ye_c00017{bottom:810.390450px;}
.yd_c00017{bottom:831.090450px;}
.yc_c00017{bottom:851.790450px;}
.yb_c00017{bottom:872.490450px;}
.ya_c00017{bottom:902.190450px;}
.y9_c00017{bottom:922.890450px;}
.y8_c00017{bottom:943.590450px;}
.y7_c00017{bottom:964.290450px;}
.y6_c00017{bottom:1004.340450px;}
.y5_c00017{bottom:1035.390450px;}
.y4_c00017{bottom:1066.440450px;}
.y3_c00017{bottom:1097.490450px;}
.h1_c00017{height:63.175781px;}
.h2_c00017{height:64.546875px;}
.h0_c00017{height:1263.000000px;}
.w1_c00017{width:892.500000px;}
.w0_c00017{width:892.830000px;}
.x0_c00017{left:0.000000px;}
.x2_c00017{left:127.620000px;}
.x3_c00017{left:148.950000px;}
.x1_c00017{left:704.880000px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.lsc_c00017{letter-spacing:-0.089600pt;}
.ls4_c00017{letter-spacing:-0.070400pt;}
.lsb_c00017{letter-spacing:-0.057600pt;}
.ls5_c00017{letter-spacing:-0.051200pt;}
.ls7_c00017{letter-spacing:-0.044800pt;}
.ls6_c00017{letter-spacing:-0.038400pt;}
.ls2_c00017{letter-spacing:-0.032000pt;}
.ls8_c00017{letter-spacing:-0.025600pt;}
.lsa_c00017{letter-spacing:-0.019200pt;}
.ls3_c00017{letter-spacing:-0.012800pt;}
.ls9_c00017{letter-spacing:-0.006400pt;}
.ls1_c00017{letter-spacing:0.000000pt;}
.ls0_c00017{letter-spacing:0.006400pt;}
.wsa_c00017{word-spacing:-3.686400pt;}
.ws9_c00017{word-spacing:-3.660800pt;}
.ws13_c00017{word-spacing:-3.046400pt;}
.ws11_c00017{word-spacing:-3.027200pt;}
.ws12_c00017{word-spacing:-2.982400pt;}
.wsf_c00017{word-spacing:-2.412800pt;}
.wse_c00017{word-spacing:-2.393600pt;}
.ws10_c00017{word-spacing:-2.348800pt;}
.ws2_c00017{word-spacing:-1.817600pt;}
.ws1_c00017{word-spacing:-1.747200pt;}
.ws23_c00017{word-spacing:-1.132800pt;}
.ws16_c00017{word-spacing:-1.100800pt;}
.ws24_c00017{word-spacing:-1.011200pt;}
.ws3_c00017{word-spacing:-0.787200pt;}
.ws4_c00017{word-spacing:-0.748800pt;}
.ws33_c00017{word-spacing:-0.166400pt;}
.ws0_c00017{word-spacing:0.000000pt;}
.ws2a_c00017{word-spacing:0.006400pt;}
.ws2f_c00017{word-spacing:0.076800pt;}
.ws6_c00017{word-spacing:0.134400pt;}
.ws30_c00017{word-spacing:0.147200pt;}
.ws1e_c00017{word-spacing:0.153600pt;}
.ws29_c00017{word-spacing:0.172800pt;}
.ws17_c00017{word-spacing:0.185600pt;}
.wsd_c00017{word-spacing:0.211200pt;}
.ws2b_c00017{word-spacing:0.710400pt;}
.ws2c_c00017{word-spacing:0.825600pt;}
.ws1a_c00017{word-spacing:1.382400pt;}
.ws19_c00017{word-spacing:1.459200pt;}
.ws1b_c00017{word-spacing:1.491200pt;}
.ws37_c00017{word-spacing:1.734400pt;}
.ws36_c00017{word-spacing:1.817600pt;}
.ws39_c00017{word-spacing:2.329600pt;}
.ws38_c00017{word-spacing:2.355200pt;}
.ws27_c00017{word-spacing:3.680000pt;}
.ws15_c00017{word-spacing:5.267200pt;}
.ws5_c00017{word-spacing:5.273600pt;}
.ws14_c00017{word-spacing:5.299200pt;}
.ws1d_c00017{word-spacing:5.696000pt;}
.ws1c_c00017{word-spacing:5.715200pt;}
.ws20_c00017{word-spacing:7.840000pt;}
.ws1f_c00017{word-spacing:7.904000pt;}
.ws28_c00017{word-spacing:12.032000pt;}
.ws21_c00017{word-spacing:12.345600pt;}
.ws22_c00017{word-spacing:12.358400pt;}
.ws2d_c00017{word-spacing:12.646400pt;}
.ws2e_c00017{word-spacing:12.716800pt;}
.ws34_c00017{word-spacing:15.200000pt;}
.ws35_c00017{word-spacing:15.219200pt;}
.ws26_c00017{word-spacing:15.270400pt;}
.ws25_c00017{word-spacing:15.296000pt;}
.ws8_c00017{word-spacing:17.452800pt;}
.ws7_c00017{word-spacing:17.472000pt;}
.ws31_c00017{word-spacing:21.619200pt;}
.ws32_c00017{word-spacing:21.670400pt;}
.ws18_c00017{word-spacing:22.572800pt;}
.wsc_c00017{word-spacing:24.486400pt;}
.wsb_c00017{word-spacing:24.582400pt;}
._0_c00017{width:1.024000pt;}
.fs0_c00017{font-size:64.000000pt;}
.y0_c00017{bottom:0.000000pt;}
.y2_c00017{bottom:41.627067pt;}
.y1_c00017{bottom:60.027067pt;}
.y24_c00017{bottom:138.827067pt;}
.y23_c00017{bottom:166.427067pt;}
.y22_c00017{bottom:194.027067pt;}
.y21_c00017{bottom:229.627067pt;}
.y20_c00017{bottom:257.227067pt;}
.y1f_c00017{bottom:284.827067pt;}
.y1e_c00017{bottom:312.347067pt;}
.y1d_c00017{bottom:339.947067pt;}
.y1c_c00017{bottom:375.547067pt;}
.y1b_c00017{bottom:403.147067pt;}
.y1a_c00017{bottom:430.747067pt;}
.y19_c00017{bottom:458.347067pt;}
.y18_c00017{bottom:485.947067pt;}
.y17_c00017{bottom:513.547067pt;}
.y16_c00017{bottom:541.147067pt;}
.y15_c00017{bottom:575.547067pt;}
.y14_c00017{bottom:609.947067pt;}
.y13_c00017{bottom:628.347067pt;}
.y12_c00017{bottom:646.747067pt;}
.y11_c00017{bottom:665.147067pt;}
.y10_c00017{bottom:683.547067pt;}
.yf_c00017{bottom:701.947067pt;}
.ye_c00017{bottom:720.347067pt;}
.yd_c00017{bottom:738.747067pt;}
.yc_c00017{bottom:757.147067pt;}
.yb_c00017{bottom:775.547067pt;}
.ya_c00017{bottom:801.947067pt;}
.y9_c00017{bottom:820.347067pt;}
.y8_c00017{bottom:838.747067pt;}
.y7_c00017{bottom:857.147067pt;}
.y6_c00017{bottom:892.747067pt;}
.y5_c00017{bottom:920.347067pt;}
.y4_c00017{bottom:947.947067pt;}
.y3_c00017{bottom:975.547067pt;}
.h1_c00017{height:56.156250pt;}
.h2_c00017{height:57.375000pt;}
.h0_c00017{height:1122.666667pt;}
.w1_c00017{width:793.333333pt;}
.w0_c00017{width:793.626667pt;}
.x0_c00017{left:0.000000pt;}
.x2_c00017{left:113.440000pt;}
.x3_c00017{left:132.400000pt;}
.x1_c00017{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4531fc8bf4d169313a4bc836.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.093262;font-style:normal;font-weight:normal;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_40c0a08e9bd4550d17c8b430.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.106934;font-style:normal;font-weight:normal;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_361c67cbc8ffada069d10827.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls8_c00018{letter-spacing:-0.100800px;}
.ls9_c00018{letter-spacing:-0.064800px;}
.ls5_c00018{letter-spacing:-0.057600px;}
.ls4_c00018{letter-spacing:-0.050400px;}
.ls6_c00018{letter-spacing:-0.043200px;}
.ls2_c00018{letter-spacing:-0.036000px;}
.ls7_c00018{letter-spacing:-0.028800px;}
.ls1_c00018{letter-spacing:-0.021600px;}
.ls3_c00018{letter-spacing:-0.014400px;}
.lsa_c00018{letter-spacing:-0.007200px;}
.ls0_c00018{letter-spacing:0.000000px;}
.sc__c00018{text-shadow:none;}
.sc0_c00018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00018{-webkit-text-stroke:0px transparent;}
.sc0_c00018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00018{word-spacing:-20.001600px;}
.ws24_c00018{word-spacing:-2.685600px;}
.ws23_c00018{word-spacing:-2.599200px;}
.ws6_c00018{word-spacing:-2.368800px;}
.ws1a_c00018{word-spacing:-2.311200px;}
.ws20_c00018{word-spacing:-1.238400px;}
.ws1f_c00018{word-spacing:-1.216800px;}
.ws11_c00018{word-spacing:-0.518400px;}
.ws10_c00018{word-spacing:-0.504000px;}
.wse_c00018{word-spacing:-0.244800px;}
.wsf_c00018{word-spacing:-0.230400px;}
.ws1_c00018{word-spacing:0.000000px;}
.ws1d_c00018{word-spacing:0.129600px;}
.ws30_c00018{word-spacing:0.187200px;}
.ws32_c00018{word-spacing:0.194400px;}
.ws1e_c00018{word-spacing:0.201600px;}
.ws31_c00018{word-spacing:0.288000px;}
.ws22_c00018{word-spacing:0.900000px;}
.wsb_c00018{word-spacing:1.634400px;}
.wsc_c00018{word-spacing:1.656000px;}
.ws7_c00018{word-spacing:2.354400px;}
.ws8_c00018{word-spacing:2.361600px;}
.ws1c_c00018{word-spacing:3.002400px;}
.ws1b_c00018{word-spacing:3.067200px;}
.wsd_c00018{word-spacing:3.801600px;}
.wsa_c00018{word-spacing:4.492800px;}
.ws28_c00018{word-spacing:4.500000px;}
.ws27_c00018{word-spacing:4.694400px;}
.ws4_c00018{word-spacing:4.852800px;}
.ws5_c00018{word-spacing:4.860000px;}
.ws26_c00018{word-spacing:6.285600px;}
.ws2f_c00018{word-spacing:6.292800px;}
.ws25_c00018{word-spacing:6.307200px;}
.ws29_c00018{word-spacing:7.401600px;}
.ws2a_c00018{word-spacing:7.416000px;}
.ws2e_c00018{word-spacing:9.201600px;}
.ws2d_c00018{word-spacing:9.288000px;}
.ws21_c00018{word-spacing:12.067200px;}
.ws16_c00018{word-spacing:20.642400px;}
.ws15_c00018{word-spacing:20.714400px;}
.ws14_c00018{word-spacing:21.787200px;}
.ws13_c00018{word-spacing:21.801600px;}
.ws19_c00018{word-spacing:22.147200px;}
.ws17_c00018{word-spacing:22.435200px;}
.ws18_c00018{word-spacing:22.514400px;}
.ws2b_c00018{word-spacing:24.314400px;}
.ws2c_c00018{word-spacing:24.328800px;}
.ws2_c00018{word-spacing:26.820000px;}
.ws9_c00018{word-spacing:26.827200px;}
.ws3_c00018{word-spacing:26.834400px;}
.ws12_c00018{word-spacing:36.194400px;}
._0_c00018{width:1.368000px;}
.fc0_c00018{color:rgb(0,0,0);}
.fs0_c00018{font-size:72.000000px;}
.y0_c00018{bottom:0.000000px;}
.y2_c00018{bottom:46.830450px;}
.y1_c00018{bottom:67.530450px;}
.y20_c00018{bottom:197.130450px;}
.y1f_c00018{bottom:228.180450px;}
.y1e_c00018{bottom:259.230450px;}
.y1d_c00018{bottom:290.280450px;}
.y1c_c00018{bottom:321.330450px;}
.y1b_c00018{bottom:352.380450px;}
.y1a_c00018{bottom:383.430450px;}
.y19_c00018{bottom:414.390450px;}
.y18_c00018{bottom:445.440450px;}
.y17_c00018{bottom:476.490450px;}
.y16_c00018{bottom:507.540450px;}
.y15_c00018{bottom:538.590450px;}
.y14_c00018{bottom:569.640450px;}
.y13_c00018{bottom:600.690450px;}
.y12_c00018{bottom:631.740450px;}
.y11_c00018{bottom:662.790450px;}
.y10_c00018{bottom:693.840450px;}
.yf_c00018{bottom:724.890450px;}
.ye_c00018{bottom:755.940450px;}
.yd_c00018{bottom:786.990450px;}
.yc_c00018{bottom:818.040450px;}
.yb_c00018{bottom:849.090450px;}
.ya_c00018{bottom:880.140450px;}
.y9_c00018{bottom:911.190450px;}
.y8_c00018{bottom:942.240450px;}
.y7_c00018{bottom:973.290450px;}
.y6_c00018{bottom:1004.340450px;}
.y5_c00018{bottom:1035.390450px;}
.y4_c00018{bottom:1066.440450px;}
.y3_c00018{bottom:1097.490450px;}
.h1_c00018{height:63.175781px;}
.h2_c00018{height:64.546875px;}
.h3_c00018{height:75.093750px;}
.h0_c00018{height:1263.000000px;}
.w1_c00018{width:892.500000px;}
.w0_c00018{width:892.830000px;}
.x0_c00018{left:0.000000px;}
.x2_c00018{left:170.100000px;}
.x1_c00018{left:747.360000px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls8_c00018{letter-spacing:-0.089600pt;}
.ls9_c00018{letter-spacing:-0.057600pt;}
.ls5_c00018{letter-spacing:-0.051200pt;}
.ls4_c00018{letter-spacing:-0.044800pt;}
.ls6_c00018{letter-spacing:-0.038400pt;}
.ls2_c00018{letter-spacing:-0.032000pt;}
.ls7_c00018{letter-spacing:-0.025600pt;}
.ls1_c00018{letter-spacing:-0.019200pt;}
.ls3_c00018{letter-spacing:-0.012800pt;}
.lsa_c00018{letter-spacing:-0.006400pt;}
.ls0_c00018{letter-spacing:0.000000pt;}
.ws0_c00018{word-spacing:-17.779200pt;}
.ws24_c00018{word-spacing:-2.387200pt;}
.ws23_c00018{word-spacing:-2.310400pt;}
.ws6_c00018{word-spacing:-2.105600pt;}
.ws1a_c00018{word-spacing:-2.054400pt;}
.ws20_c00018{word-spacing:-1.100800pt;}
.ws1f_c00018{word-spacing:-1.081600pt;}
.ws11_c00018{word-spacing:-0.460800pt;}
.ws10_c00018{word-spacing:-0.448000pt;}
.wse_c00018{word-spacing:-0.217600pt;}
.wsf_c00018{word-spacing:-0.204800pt;}
.ws1_c00018{word-spacing:0.000000pt;}
.ws1d_c00018{word-spacing:0.115200pt;}
.ws30_c00018{word-spacing:0.166400pt;}
.ws32_c00018{word-spacing:0.172800pt;}
.ws1e_c00018{word-spacing:0.179200pt;}
.ws31_c00018{word-spacing:0.256000pt;}
.ws22_c00018{word-spacing:0.800000pt;}
.wsb_c00018{word-spacing:1.452800pt;}
.wsc_c00018{word-spacing:1.472000pt;}
.ws7_c00018{word-spacing:2.092800pt;}
.ws8_c00018{word-spacing:2.099200pt;}
.ws1c_c00018{word-spacing:2.668800pt;}
.ws1b_c00018{word-spacing:2.726400pt;}
.wsd_c00018{word-spacing:3.379200pt;}
.wsa_c00018{word-spacing:3.993600pt;}
.ws28_c00018{word-spacing:4.000000pt;}
.ws27_c00018{word-spacing:4.172800pt;}
.ws4_c00018{word-spacing:4.313600pt;}
.ws5_c00018{word-spacing:4.320000pt;}
.ws26_c00018{word-spacing:5.587200pt;}
.ws2f_c00018{word-spacing:5.593600pt;}
.ws25_c00018{word-spacing:5.606400pt;}
.ws29_c00018{word-spacing:6.579200pt;}
.ws2a_c00018{word-spacing:6.592000pt;}
.ws2e_c00018{word-spacing:8.179200pt;}
.ws2d_c00018{word-spacing:8.256000pt;}
.ws21_c00018{word-spacing:10.726400pt;}
.ws16_c00018{word-spacing:18.348800pt;}
.ws15_c00018{word-spacing:18.412800pt;}
.ws14_c00018{word-spacing:19.366400pt;}
.ws13_c00018{word-spacing:19.379200pt;}
.ws19_c00018{word-spacing:19.686400pt;}
.ws17_c00018{word-spacing:19.942400pt;}
.ws18_c00018{word-spacing:20.012800pt;}
.ws2b_c00018{word-spacing:21.612800pt;}
.ws2c_c00018{word-spacing:21.625600pt;}
.ws2_c00018{word-spacing:23.840000pt;}
.ws9_c00018{word-spacing:23.846400pt;}
.ws3_c00018{word-spacing:23.852800pt;}
.ws12_c00018{word-spacing:32.172800pt;}
._0_c00018{width:1.216000pt;}
.fs0_c00018{font-size:64.000000pt;}
.y0_c00018{bottom:0.000000pt;}
.y2_c00018{bottom:41.627067pt;}
.y1_c00018{bottom:60.027067pt;}
.y20_c00018{bottom:175.227067pt;}
.y1f_c00018{bottom:202.827067pt;}
.y1e_c00018{bottom:230.427067pt;}
.y1d_c00018{bottom:258.027067pt;}
.y1c_c00018{bottom:285.627067pt;}
.y1b_c00018{bottom:313.227067pt;}
.y1a_c00018{bottom:340.827067pt;}
.y19_c00018{bottom:368.347067pt;}
.y18_c00018{bottom:395.947067pt;}
.y17_c00018{bottom:423.547067pt;}
.y16_c00018{bottom:451.147067pt;}
.y15_c00018{bottom:478.747067pt;}
.y14_c00018{bottom:506.347067pt;}
.y13_c00018{bottom:533.947067pt;}
.y12_c00018{bottom:561.547067pt;}
.y11_c00018{bottom:589.147067pt;}
.y10_c00018{bottom:616.747067pt;}
.yf_c00018{bottom:644.347067pt;}
.ye_c00018{bottom:671.947067pt;}
.yd_c00018{bottom:699.547067pt;}
.yc_c00018{bottom:727.147067pt;}
.yb_c00018{bottom:754.747067pt;}
.ya_c00018{bottom:782.347067pt;}
.y9_c00018{bottom:809.947067pt;}
.y8_c00018{bottom:837.547067pt;}
.y7_c00018{bottom:865.147067pt;}
.y6_c00018{bottom:892.747067pt;}
.y5_c00018{bottom:920.347067pt;}
.y4_c00018{bottom:947.947067pt;}
.y3_c00018{bottom:975.547067pt;}
.h1_c00018{height:56.156250pt;}
.h2_c00018{height:57.375000pt;}
.h3_c00018{height:66.750000pt;}
.h0_c00018{height:1122.666667pt;}
.w1_c00018{width:793.333333pt;}
.w0_c00018{width:793.626667pt;}
.x0_c00018{left:0.000000pt;}
.x2_c00018{left:151.200000pt;}
.x1_c00018{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_94172922a23c0c9e414de577.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.093262;font-style:normal;font-weight:normal;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_5031bd3401dbe17eb34dc89e.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.106934;font-style:normal;font-weight:normal;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_766b7f31e062b7c3546cd45d.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lse_c00019{letter-spacing:-0.208800px;}
.lsf_c00019{letter-spacing:-0.086400px;}
.ls10_c00019{letter-spacing:-0.072000px;}
.lsd_c00019{letter-spacing:-0.064800px;}
.ls8_c00019{letter-spacing:-0.057600px;}
.ls7_c00019{letter-spacing:-0.050400px;}
.ls5_c00019{letter-spacing:-0.043200px;}
.ls4_c00019{letter-spacing:-0.036000px;}
.ls6_c00019{letter-spacing:-0.028800px;}
.ls9_c00019{letter-spacing:-0.021600px;}
.lsb_c00019{letter-spacing:-0.014400px;}
.lsc_c00019{letter-spacing:-0.007200px;}
.ls3_c00019{letter-spacing:0.000000px;}
.ls0_c00019{letter-spacing:0.007200px;}
.lsa_c00019{letter-spacing:0.021600px;}
.ls11_c00019{letter-spacing:0.057600px;}
.ls2_c00019{letter-spacing:4.464000px;}
.ls1_c00019{letter-spacing:8.064000px;}
.sc__c00019{text-shadow:none;}
.sc0_c00019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00019{-webkit-text-stroke:0px transparent;}
.sc0_c00019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00019{word-spacing:-19.929600px;}
.ws29_c00019{word-spacing:-3.924000px;}
.ws2a_c00019{word-spacing:-3.787200px;}
.ws15_c00019{word-spacing:-3.038400px;}
.ws1c_c00019{word-spacing:-2.671200px;}
.ws1b_c00019{word-spacing:-2.584800px;}
.ws2e_c00019{word-spacing:-2.340000px;}
.ws2d_c00019{word-spacing:-2.304000px;}
.ws22_c00019{word-spacing:-0.518400px;}
.ws23_c00019{word-spacing:-0.482400px;}
.ws1_c00019{word-spacing:0.000000px;}
.ws11_c00019{word-spacing:0.172800px;}
.wsf_c00019{word-spacing:0.194400px;}
.wse_c00019{word-spacing:0.266400px;}
.ws9_c00019{word-spacing:0.453600px;}
.wsa_c00019{word-spacing:0.561600px;}
.wsb_c00019{word-spacing:0.576000px;}
.ws14_c00019{word-spacing:2.340000px;}
.ws1f_c00019{word-spacing:2.671200px;}
.ws20_c00019{word-spacing:2.685600px;}
.ws34_c00019{word-spacing:3.052800px;}
.ws2_c00019{word-spacing:3.074400px;}
.ws3_c00019{word-spacing:3.081600px;}
.ws36_c00019{word-spacing:3.103200px;}
.ws35_c00019{word-spacing:3.110400px;}
.ws10_c00019{word-spacing:4.464000px;}
.ws27_c00019{word-spacing:4.492800px;}
.ws28_c00019{word-spacing:4.500000px;}
.ws21_c00019{word-spacing:5.587200px;}
.ws31_c00019{word-spacing:6.667200px;}
.ws25_c00019{word-spacing:8.071200px;}
.ws26_c00019{word-spacing:8.143200px;}
.ws24_c00019{word-spacing:8.474400px;}
.ws38_c00019{word-spacing:8.805600px;}
.ws37_c00019{word-spacing:9.000000px;}
.wsd_c00019{word-spacing:10.576800px;}
.wsc_c00019{word-spacing:10.620000px;}
.ws7_c00019{word-spacing:10.994400px;}
.ws8_c00019{word-spacing:11.008800px;}
.ws1e_c00019{word-spacing:12.405600px;}
.ws1d_c00019{word-spacing:12.412800px;}
.ws16_c00019{word-spacing:12.715200px;}
.ws17_c00019{word-spacing:12.765600px;}
.ws4_c00019{word-spacing:13.399200px;}
.ws5_c00019{word-spacing:13.507200px;}
.ws12_c00019{word-spacing:13.852800px;}
.ws13_c00019{word-spacing:13.867200px;}
.ws33_c00019{word-spacing:18.547200px;}
.ws32_c00019{word-spacing:18.568800px;}
.ws2b_c00019{word-spacing:18.900000px;}
.ws2c_c00019{word-spacing:18.907200px;}
.ws6_c00019{word-spacing:28.634400px;}
.ws18_c00019{word-spacing:37.612800px;}
.ws19_c00019{word-spacing:39.952800px;}
.ws1a_c00019{word-spacing:40.183200px;}
.ws30_c00019{word-spacing:54.172800px;}
.ws2f_c00019{word-spacing:54.187200px;}
._2_c00019{margin-left:-4.320000px;}
._1_c00019{margin-left:-1.152000px;}
._0_c00019{width:1.303200px;}
.fc0_c00019{color:rgb(0,0,0);}
.fs0_c00019{font-size:72.000000px;}
.y0_c00019{bottom:0.000000px;}
.y2_c00019{bottom:46.830450px;}
.y1_c00019{bottom:67.530450px;}
.y27_c00019{bottom:134.130450px;}
.y26_c00019{bottom:154.830450px;}
.y25_c00019{bottom:175.530450px;}
.y24_c00019{bottom:196.230450px;}
.y23_c00019{bottom:216.930450px;}
.y22_c00019{bottom:237.630450px;}
.y21_c00019{bottom:258.330450px;}
.y20_c00019{bottom:279.030450px;}
.y1f_c00019{bottom:319.080450px;}
.y1e_c00019{bottom:350.040450px;}
.y1d_c00019{bottom:381.090450px;}
.y1c_c00019{bottom:412.140450px;}
.y1b_c00019{bottom:443.190450px;}
.y1a_c00019{bottom:474.240450px;}
.y19_c00019{bottom:512.940450px;}
.y18_c00019{bottom:551.640450px;}
.y17_c00019{bottom:572.340450px;}
.y16_c00019{bottom:593.040450px;}
.y15_c00019{bottom:613.740450px;}
.y14_c00019{bottom:634.440450px;}
.y13_c00019{bottom:655.140450px;}
.y12_c00019{bottom:675.840450px;}
.y11_c00019{bottom:696.540450px;}
.y10_c00019{bottom:717.240450px;}
.yf_c00019{bottom:737.940450px;}
.ye_c00019{bottom:758.640450px;}
.yd_c00019{bottom:779.340450px;}
.yc_c00019{bottom:800.040450px;}
.yb_c00019{bottom:840.090450px;}
.ya_c00019{bottom:871.140450px;}
.y9_c00019{bottom:911.190450px;}
.y8_c00019{bottom:942.240450px;}
.y7_c00019{bottom:973.290450px;}
.y6_c00019{bottom:1004.340450px;}
.y5_c00019{bottom:1035.390450px;}
.y4_c00019{bottom:1066.440450px;}
.y3_c00019{bottom:1097.490450px;}
.h1_c00019{height:63.175781px;}
.h2_c00019{height:64.546875px;}
.h3_c00019{height:75.093750px;}
.h0_c00019{height:1263.000000px;}
.w1_c00019{width:892.500000px;}
.w0_c00019{width:892.830000px;}
.x0_c00019{left:0.000000px;}
.x2_c00019{left:127.620000px;}
.x3_c00019{left:148.950000px;}
.x1_c00019{left:704.880000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.lse_c00019{letter-spacing:-0.185600pt;}
.lsf_c00019{letter-spacing:-0.076800pt;}
.ls10_c00019{letter-spacing:-0.064000pt;}
.lsd_c00019{letter-spacing:-0.057600pt;}
.ls8_c00019{letter-spacing:-0.051200pt;}
.ls7_c00019{letter-spacing:-0.044800pt;}
.ls5_c00019{letter-spacing:-0.038400pt;}
.ls4_c00019{letter-spacing:-0.032000pt;}
.ls6_c00019{letter-spacing:-0.025600pt;}
.ls9_c00019{letter-spacing:-0.019200pt;}
.lsb_c00019{letter-spacing:-0.012800pt;}
.lsc_c00019{letter-spacing:-0.006400pt;}
.ls3_c00019{letter-spacing:0.000000pt;}
.ls0_c00019{letter-spacing:0.006400pt;}
.lsa_c00019{letter-spacing:0.019200pt;}
.ls11_c00019{letter-spacing:0.051200pt;}
.ls2_c00019{letter-spacing:3.968000pt;}
.ls1_c00019{letter-spacing:7.168000pt;}
.ws0_c00019{word-spacing:-17.715200pt;}
.ws29_c00019{word-spacing:-3.488000pt;}
.ws2a_c00019{word-spacing:-3.366400pt;}
.ws15_c00019{word-spacing:-2.700800pt;}
.ws1c_c00019{word-spacing:-2.374400pt;}
.ws1b_c00019{word-spacing:-2.297600pt;}
.ws2e_c00019{word-spacing:-2.080000pt;}
.ws2d_c00019{word-spacing:-2.048000pt;}
.ws22_c00019{word-spacing:-0.460800pt;}
.ws23_c00019{word-spacing:-0.428800pt;}
.ws1_c00019{word-spacing:0.000000pt;}
.ws11_c00019{word-spacing:0.153600pt;}
.wsf_c00019{word-spacing:0.172800pt;}
.wse_c00019{word-spacing:0.236800pt;}
.ws9_c00019{word-spacing:0.403200pt;}
.wsa_c00019{word-spacing:0.499200pt;}
.wsb_c00019{word-spacing:0.512000pt;}
.ws14_c00019{word-spacing:2.080000pt;}
.ws1f_c00019{word-spacing:2.374400pt;}
.ws20_c00019{word-spacing:2.387200pt;}
.ws34_c00019{word-spacing:2.713600pt;}
.ws2_c00019{word-spacing:2.732800pt;}
.ws3_c00019{word-spacing:2.739200pt;}
.ws36_c00019{word-spacing:2.758400pt;}
.ws35_c00019{word-spacing:2.764800pt;}
.ws10_c00019{word-spacing:3.968000pt;}
.ws27_c00019{word-spacing:3.993600pt;}
.ws28_c00019{word-spacing:4.000000pt;}
.ws21_c00019{word-spacing:4.966400pt;}
.ws31_c00019{word-spacing:5.926400pt;}
.ws25_c00019{word-spacing:7.174400pt;}
.ws26_c00019{word-spacing:7.238400pt;}
.ws24_c00019{word-spacing:7.532800pt;}
.ws38_c00019{word-spacing:7.827200pt;}
.ws37_c00019{word-spacing:8.000000pt;}
.wsd_c00019{word-spacing:9.401600pt;}
.wsc_c00019{word-spacing:9.440000pt;}
.ws7_c00019{word-spacing:9.772800pt;}
.ws8_c00019{word-spacing:9.785600pt;}
.ws1e_c00019{word-spacing:11.027200pt;}
.ws1d_c00019{word-spacing:11.033600pt;}
.ws16_c00019{word-spacing:11.302400pt;}
.ws17_c00019{word-spacing:11.347200pt;}
.ws4_c00019{word-spacing:11.910400pt;}
.ws5_c00019{word-spacing:12.006400pt;}
.ws12_c00019{word-spacing:12.313600pt;}
.ws13_c00019{word-spacing:12.326400pt;}
.ws33_c00019{word-spacing:16.486400pt;}
.ws32_c00019{word-spacing:16.505600pt;}
.ws2b_c00019{word-spacing:16.800000pt;}
.ws2c_c00019{word-spacing:16.806400pt;}
.ws6_c00019{word-spacing:25.452800pt;}
.ws18_c00019{word-spacing:33.433600pt;}
.ws19_c00019{word-spacing:35.513600pt;}
.ws1a_c00019{word-spacing:35.718400pt;}
.ws30_c00019{word-spacing:48.153600pt;}
.ws2f_c00019{word-spacing:48.166400pt;}
._2_c00019{margin-left:-3.840000pt;}
._1_c00019{margin-left:-1.024000pt;}
._0_c00019{width:1.158400pt;}
.fs0_c00019{font-size:64.000000pt;}
.y0_c00019{bottom:0.000000pt;}
.y2_c00019{bottom:41.627067pt;}
.y1_c00019{bottom:60.027067pt;}
.y27_c00019{bottom:119.227067pt;}
.y26_c00019{bottom:137.627067pt;}
.y25_c00019{bottom:156.027067pt;}
.y24_c00019{bottom:174.427067pt;}
.y23_c00019{bottom:192.827067pt;}
.y22_c00019{bottom:211.227067pt;}
.y21_c00019{bottom:229.627067pt;}
.y20_c00019{bottom:248.027067pt;}
.y1f_c00019{bottom:283.627067pt;}
.y1e_c00019{bottom:311.147067pt;}
.y1d_c00019{bottom:338.747067pt;}
.y1c_c00019{bottom:366.347067pt;}
.y1b_c00019{bottom:393.947067pt;}
.y1a_c00019{bottom:421.547067pt;}
.y19_c00019{bottom:455.947067pt;}
.y18_c00019{bottom:490.347067pt;}
.y17_c00019{bottom:508.747067pt;}
.y16_c00019{bottom:527.147067pt;}
.y15_c00019{bottom:545.547067pt;}
.y14_c00019{bottom:563.947067pt;}
.y13_c00019{bottom:582.347067pt;}
.y12_c00019{bottom:600.747067pt;}
.y11_c00019{bottom:619.147067pt;}
.y10_c00019{bottom:637.547067pt;}
.yf_c00019{bottom:655.947067pt;}
.ye_c00019{bottom:674.347067pt;}
.yd_c00019{bottom:692.747067pt;}
.yc_c00019{bottom:711.147067pt;}
.yb_c00019{bottom:746.747067pt;}
.ya_c00019{bottom:774.347067pt;}
.y9_c00019{bottom:809.947067pt;}
.y8_c00019{bottom:837.547067pt;}
.y7_c00019{bottom:865.147067pt;}
.y6_c00019{bottom:892.747067pt;}
.y5_c00019{bottom:920.347067pt;}
.y4_c00019{bottom:947.947067pt;}
.y3_c00019{bottom:975.547067pt;}
.h1_c00019{height:56.156250pt;}
.h2_c00019{height:57.375000pt;}
.h3_c00019{height:66.750000pt;}
.h0_c00019{height:1122.666667pt;}
.w1_c00019{width:793.333333pt;}
.w0_c00019{width:793.626667pt;}
.x0_c00019{left:0.000000pt;}
.x2_c00019{left:113.440000pt;}
.x3_c00019{left:132.400000pt;}
.x1_c00019{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4f549f30217a07fa2078b6ad.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.093262;font-style:normal;font-weight:normal;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_2bda93857668806db53f150e.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.106934;font-style:normal;font-weight:normal;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_1ba61bca7088c615fed3ad15.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00020{letter-spacing:-0.093600px;}
.lsc_c00020{letter-spacing:-0.079200px;}
.ls6_c00020{letter-spacing:-0.064800px;}
.ls5_c00020{letter-spacing:-0.057600px;}
.ls4_c00020{letter-spacing:-0.050400px;}
.ls2_c00020{letter-spacing:-0.043200px;}
.ls9_c00020{letter-spacing:-0.036000px;}
.ls7_c00020{letter-spacing:-0.028800px;}
.ls3_c00020{letter-spacing:-0.021600px;}
.lse_c00020{letter-spacing:-0.014400px;}
.lsb_c00020{letter-spacing:-0.007200px;}
.ls1_c00020{letter-spacing:0.000000px;}
.ls8_c00020{letter-spacing:0.007200px;}
.lsa_c00020{letter-spacing:0.014400px;}
.ls0_c00020{letter-spacing:0.028800px;}
.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;}
}
.ws31_c00020{word-spacing:-2.412000px;}
.wsf_c00020{word-spacing:-2.376000px;}
.ws20_c00020{word-spacing:-2.361600px;}
.wsd_c00020{word-spacing:-2.332800px;}
.ws30_c00020{word-spacing:-2.318400px;}
.ws21_c00020{word-spacing:-2.296800px;}
.wsb_c00020{word-spacing:-2.066400px;}
.ws22_c00020{word-spacing:-2.030400px;}
.wsc_c00020{word-spacing:-1.972800px;}
.wse_c00020{word-spacing:-1.965600px;}
.ws9_c00020{word-spacing:-1.951200px;}
.wsa_c00020{word-spacing:-1.900800px;}
.ws25_c00020{word-spacing:-0.885600px;}
.ws28_c00020{word-spacing:-0.547200px;}
.ws29_c00020{word-spacing:-0.532800px;}
.ws7_c00020{word-spacing:-0.151200px;}
.ws8_c00020{word-spacing:-0.136800px;}
.ws0_c00020{word-spacing:0.000000px;}
.ws12_c00020{word-spacing:0.144000px;}
.ws18_c00020{word-spacing:0.165600px;}
.ws32_c00020{word-spacing:0.180000px;}
.ws1d_c00020{word-spacing:0.194400px;}
.ws5_c00020{word-spacing:1.951200px;}
.ws4_c00020{word-spacing:2.008800px;}
.ws19_c00020{word-spacing:2.404800px;}
.ws1a_c00020{word-spacing:2.685600px;}
.ws2c_c00020{word-spacing:2.721600px;}
.ws1b_c00020{word-spacing:2.772000px;}
.ws2d_c00020{word-spacing:2.793600px;}
.ws1_c00020{word-spacing:3.441600px;}
.ws2f_c00020{word-spacing:3.736800px;}
.ws2e_c00020{word-spacing:3.801600px;}
.ws1e_c00020{word-spacing:4.982400px;}
.ws1f_c00020{word-spacing:5.176800px;}
.ws2_c00020{word-spacing:6.300000px;}
.ws3_c00020{word-spacing:6.307200px;}
.ws2a_c00020{word-spacing:8.460000px;}
.ws2b_c00020{word-spacing:8.474400px;}
.ws11_c00020{word-spacing:10.598400px;}
.ws10_c00020{word-spacing:10.720800px;}
.ws17_c00020{word-spacing:11.347200px;}
.ws16_c00020{word-spacing:11.354400px;}
.ws1c_c00020{word-spacing:14.565600px;}
.ws15_c00020{word-spacing:18.849600px;}
.ws13_c00020{word-spacing:18.986400px;}
.ws14_c00020{word-spacing:19.065600px;}
.ws23_c00020{word-spacing:21.052800px;}
.ws24_c00020{word-spacing:21.081600px;}
.ws6_c00020{word-spacing:24.696000px;}
.ws26_c00020{word-spacing:32.090400px;}
.ws27_c00020{word-spacing:32.277600px;}
._0_c00020{width:1.332000px;}
.fc0_c00020{color:rgb(0,0,0);}
.fs0_c00020{font-size:72.000000px;}
.y0_c00020{bottom:0.000000px;}
.y2_c00020{bottom:46.830450px;}
.y1_c00020{bottom:67.530450px;}
.y24_c00020{bottom:163.830450px;}
.y23_c00020{bottom:193.530450px;}
.y22_c00020{bottom:214.230450px;}
.y21_c00020{bottom:234.930450px;}
.y20_c00020{bottom:255.630450px;}
.y1f_c00020{bottom:276.330450px;}
.y1e_c00020{bottom:297.030450px;}
.y1d_c00020{bottom:317.730450px;}
.y1c_c00020{bottom:338.430450px;}
.y1b_c00020{bottom:378.390450px;}
.y1a_c00020{bottom:409.440450px;}
.y19_c00020{bottom:440.490450px;}
.y18_c00020{bottom:471.540450px;}
.y17_c00020{bottom:502.590450px;}
.y16_c00020{bottom:533.640450px;}
.y15_c00020{bottom:563.250450px;}
.y14_c00020{bottom:593.040450px;}
.y13_c00020{bottom:613.740450px;}
.y12_c00020{bottom:634.440450px;}
.y11_c00020{bottom:655.140450px;}
.y10_c00020{bottom:695.190450px;}
.yf_c00020{bottom:726.240450px;}
.ye_c00020{bottom:757.290450px;}
.yd_c00020{bottom:797.250450px;}
.yc_c00020{bottom:828.300450px;}
.yb_c00020{bottom:859.350450px;}
.ya_c00020{bottom:890.490450px;}
.y9_c00020{bottom:921.540450px;}
.y8_c00020{bottom:952.590450px;}
.y7_c00020{bottom:983.640450px;}
.y6_c00020{bottom:1014.690450px;}
.y5_c00020{bottom:1045.740450px;}
.y4_c00020{bottom:1076.790450px;}
.y3_c00020{bottom:1097.490450px;}
.h1_c00020{height:63.175781px;}
.h2_c00020{height:64.546875px;}
.h3_c00020{height:75.093750px;}
.h0_c00020{height:1263.000000px;}
.w1_c00020{width:892.500000px;}
.w0_c00020{width:892.830000px;}
.x0_c00020{left:0.000000px;}
.x2_c00020{left:170.100000px;}
.x3_c00020{left:191.430000px;}
.x1_c00020{left:747.360000px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.lsd_c00020{letter-spacing:-0.083200pt;}
.lsc_c00020{letter-spacing:-0.070400pt;}
.ls6_c00020{letter-spacing:-0.057600pt;}
.ls5_c00020{letter-spacing:-0.051200pt;}
.ls4_c00020{letter-spacing:-0.044800pt;}
.ls2_c00020{letter-spacing:-0.038400pt;}
.ls9_c00020{letter-spacing:-0.032000pt;}
.ls7_c00020{letter-spacing:-0.025600pt;}
.ls3_c00020{letter-spacing:-0.019200pt;}
.lse_c00020{letter-spacing:-0.012800pt;}
.lsb_c00020{letter-spacing:-0.006400pt;}
.ls1_c00020{letter-spacing:0.000000pt;}
.ls8_c00020{letter-spacing:0.006400pt;}
.lsa_c00020{letter-spacing:0.012800pt;}
.ls0_c00020{letter-spacing:0.025600pt;}
.ws31_c00020{word-spacing:-2.144000pt;}
.wsf_c00020{word-spacing:-2.112000pt;}
.ws20_c00020{word-spacing:-2.099200pt;}
.wsd_c00020{word-spacing:-2.073600pt;}
.ws30_c00020{word-spacing:-2.060800pt;}
.ws21_c00020{word-spacing:-2.041600pt;}
.wsb_c00020{word-spacing:-1.836800pt;}
.ws22_c00020{word-spacing:-1.804800pt;}
.wsc_c00020{word-spacing:-1.753600pt;}
.wse_c00020{word-spacing:-1.747200pt;}
.ws9_c00020{word-spacing:-1.734400pt;}
.wsa_c00020{word-spacing:-1.689600pt;}
.ws25_c00020{word-spacing:-0.787200pt;}
.ws28_c00020{word-spacing:-0.486400pt;}
.ws29_c00020{word-spacing:-0.473600pt;}
.ws7_c00020{word-spacing:-0.134400pt;}
.ws8_c00020{word-spacing:-0.121600pt;}
.ws0_c00020{word-spacing:0.000000pt;}
.ws12_c00020{word-spacing:0.128000pt;}
.ws18_c00020{word-spacing:0.147200pt;}
.ws32_c00020{word-spacing:0.160000pt;}
.ws1d_c00020{word-spacing:0.172800pt;}
.ws5_c00020{word-spacing:1.734400pt;}
.ws4_c00020{word-spacing:1.785600pt;}
.ws19_c00020{word-spacing:2.137600pt;}
.ws1a_c00020{word-spacing:2.387200pt;}
.ws2c_c00020{word-spacing:2.419200pt;}
.ws1b_c00020{word-spacing:2.464000pt;}
.ws2d_c00020{word-spacing:2.483200pt;}
.ws1_c00020{word-spacing:3.059200pt;}
.ws2f_c00020{word-spacing:3.321600pt;}
.ws2e_c00020{word-spacing:3.379200pt;}
.ws1e_c00020{word-spacing:4.428800pt;}
.ws1f_c00020{word-spacing:4.601600pt;}
.ws2_c00020{word-spacing:5.600000pt;}
.ws3_c00020{word-spacing:5.606400pt;}
.ws2a_c00020{word-spacing:7.520000pt;}
.ws2b_c00020{word-spacing:7.532800pt;}
.ws11_c00020{word-spacing:9.420800pt;}
.ws10_c00020{word-spacing:9.529600pt;}
.ws17_c00020{word-spacing:10.086400pt;}
.ws16_c00020{word-spacing:10.092800pt;}
.ws1c_c00020{word-spacing:12.947200pt;}
.ws15_c00020{word-spacing:16.755200pt;}
.ws13_c00020{word-spacing:16.876800pt;}
.ws14_c00020{word-spacing:16.947200pt;}
.ws23_c00020{word-spacing:18.713600pt;}
.ws24_c00020{word-spacing:18.739200pt;}
.ws6_c00020{word-spacing:21.952000pt;}
.ws26_c00020{word-spacing:28.524800pt;}
.ws27_c00020{word-spacing:28.691200pt;}
._0_c00020{width:1.184000pt;}
.fs0_c00020{font-size:64.000000pt;}
.y0_c00020{bottom:0.000000pt;}
.y2_c00020{bottom:41.627067pt;}
.y1_c00020{bottom:60.027067pt;}
.y24_c00020{bottom:145.627067pt;}
.y23_c00020{bottom:172.027067pt;}
.y22_c00020{bottom:190.427067pt;}
.y21_c00020{bottom:208.827067pt;}
.y20_c00020{bottom:227.227067pt;}
.y1f_c00020{bottom:245.627067pt;}
.y1e_c00020{bottom:264.027067pt;}
.y1d_c00020{bottom:282.427067pt;}
.y1c_c00020{bottom:300.827067pt;}
.y1b_c00020{bottom:336.347067pt;}
.y1a_c00020{bottom:363.947067pt;}
.y19_c00020{bottom:391.547067pt;}
.y18_c00020{bottom:419.147067pt;}
.y17_c00020{bottom:446.747067pt;}
.y16_c00020{bottom:474.347067pt;}
.y15_c00020{bottom:500.667067pt;}
.y14_c00020{bottom:527.147067pt;}
.y13_c00020{bottom:545.547067pt;}
.y12_c00020{bottom:563.947067pt;}
.y11_c00020{bottom:582.347067pt;}
.y10_c00020{bottom:617.947067pt;}
.yf_c00020{bottom:645.547067pt;}
.ye_c00020{bottom:673.147067pt;}
.yd_c00020{bottom:708.667067pt;}
.yc_c00020{bottom:736.267067pt;}
.yb_c00020{bottom:763.867067pt;}
.ya_c00020{bottom:791.547067pt;}
.y9_c00020{bottom:819.147067pt;}
.y8_c00020{bottom:846.747067pt;}
.y7_c00020{bottom:874.347067pt;}
.y6_c00020{bottom:901.947067pt;}
.y5_c00020{bottom:929.547067pt;}
.y4_c00020{bottom:957.147067pt;}
.y3_c00020{bottom:975.547067pt;}
.h1_c00020{height:56.156250pt;}
.h2_c00020{height:57.375000pt;}
.h3_c00020{height:66.750000pt;}
.h0_c00020{height:1122.666667pt;}
.w1_c00020{width:793.333333pt;}
.w0_c00020{width:793.626667pt;}
.x0_c00020{left:0.000000pt;}
.x2_c00020{left:151.200000pt;}
.x3_c00020{left:170.160000pt;}
.x1_c00020{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_87903035bc1cebabbc88be72.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.093262;font-style:normal;font-weight:normal;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_ae7ecf207a9cba202be51543.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.106934;font-style:normal;font-weight:normal;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_dcc357a4fb70120df05866a7.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls8_c00021{letter-spacing:-0.079200px;}
.lsa_c00021{letter-spacing:-0.064800px;}
.lsb_c00021{letter-spacing:-0.057600px;}
.ls9_c00021{letter-spacing:-0.050400px;}
.ls6_c00021{letter-spacing:-0.043200px;}
.ls4_c00021{letter-spacing:-0.036000px;}
.ls7_c00021{letter-spacing:-0.028800px;}
.ls1_c00021{letter-spacing:-0.021600px;}
.ls2_c00021{letter-spacing:-0.014400px;}
.ls5_c00021{letter-spacing:-0.007200px;}
.ls0_c00021{letter-spacing:0.000000px;}
.ls3_c00021{letter-spacing:0.007200px;}
.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:-3.837600px;}
.ws2_c00021{word-spacing:-3.772800px;}
.ws23_c00021{word-spacing:-2.678400px;}
.ws1e_c00021{word-spacing:-2.656800px;}
.ws9_c00021{word-spacing:-2.008800px;}
.ws8_c00021{word-spacing:-1.987200px;}
.ws31_c00021{word-spacing:-1.620000px;}
.ws32_c00021{word-spacing:-1.612800px;}
.ws2a_c00021{word-spacing:-1.238400px;}
.ws28_c00021{word-spacing:-1.224000px;}
.ws29_c00021{word-spacing:-1.123200px;}
.ws0_c00021{word-spacing:0.000000px;}
.ws20_c00021{word-spacing:0.043200px;}
.ws1a_c00021{word-spacing:0.151200px;}
.ws1f_c00021{word-spacing:0.165600px;}
.wsa_c00021{word-spacing:0.194400px;}
.ws2d_c00021{word-spacing:1.987200px;}
.ws7_c00021{word-spacing:3.052800px;}
.ws6_c00021{word-spacing:3.060000px;}
.ws34_c00021{word-spacing:3.780000px;}
.ws12_c00021{word-spacing:8.431200px;}
.ws11_c00021{word-spacing:8.467200px;}
.wsf_c00021{word-spacing:8.820000px;}
.ws10_c00021{word-spacing:8.841600px;}
.ws15_c00021{word-spacing:10.137600px;}
.ws16_c00021{word-spacing:10.202400px;}
.ws26_c00021{word-spacing:10.281600px;}
.ws27_c00021{word-spacing:10.296000px;}
.ws17_c00021{word-spacing:10.519200px;}
.ws18_c00021{word-spacing:10.677600px;}
.ws19_c00021{word-spacing:10.728000px;}
.ws14_c00021{word-spacing:11.692800px;}
.ws4_c00021{word-spacing:14.212800px;}
.ws3_c00021{word-spacing:14.227200px;}
.ws5_c00021{word-spacing:14.292000px;}
.ws25_c00021{word-spacing:16.358400px;}
.ws24_c00021{word-spacing:16.372800px;}
.ws22_c00021{word-spacing:17.712000px;}
.ws21_c00021{word-spacing:18.194400px;}
.ws30_c00021{word-spacing:18.892800px;}
.ws33_c00021{word-spacing:19.260000px;}
.ws2b_c00021{word-spacing:21.052800px;}
.ws2c_c00021{word-spacing:21.081600px;}
.ws2f_c00021{word-spacing:22.521600px;}
.ws2e_c00021{word-spacing:22.557600px;}
.ws1d_c00021{word-spacing:26.884800px;}
.ws13_c00021{word-spacing:27.180000px;}
.ws1b_c00021{word-spacing:29.332800px;}
.ws1c_c00021{word-spacing:29.354400px;}
.wse_c00021{word-spacing:34.668000px;}
.wsd_c00021{word-spacing:34.732800px;}
.wsb_c00021{word-spacing:74.685600px;}
.wsc_c00021{word-spacing:74.692800px;}
._0_c00021{margin-left:-26.640000px;}
._1_c00021{width:1.044000px;}
.fc0_c00021{color:rgb(0,0,0);}
.fs0_c00021{font-size:72.000000px;}
.y0_c00021{bottom:0.000000px;}
.y2_c00021{bottom:46.830450px;}
.y1_c00021{bottom:67.530450px;}
.y22_c00021{bottom:141.780450px;}
.y21_c00021{bottom:172.830450px;}
.y20_c00021{bottom:203.880450px;}
.y1f_c00021{bottom:234.930450px;}
.y1e_c00021{bottom:265.980450px;}
.y1d_c00021{bottom:297.030450px;}
.y1c_c00021{bottom:337.080450px;}
.y1b_c00021{bottom:368.040450px;}
.y1a_c00021{bottom:399.090450px;}
.y19_c00021{bottom:430.140450px;}
.y18_c00021{bottom:461.190450px;}
.y17_c00021{bottom:492.240450px;}
.y16_c00021{bottom:523.290450px;}
.y15_c00021{bottom:552.990450px;}
.y14_c00021{bottom:582.690450px;}
.y13_c00021{bottom:603.390450px;}
.y12_c00021{bottom:624.090450px;}
.y11_c00021{bottom:644.790450px;}
.y10_c00021{bottom:684.840450px;}
.yf_c00021{bottom:715.890450px;}
.ye_c00021{bottom:746.940450px;}
.yd_c00021{bottom:777.990450px;}
.yc_c00021{bottom:809.040450px;}
.yb_c00021{bottom:840.090450px;}
.ya_c00021{bottom:871.140450px;}
.y9_c00021{bottom:902.190450px;}
.y8_c00021{bottom:933.240450px;}
.y7_c00021{bottom:973.290450px;}
.y6_c00021{bottom:1004.340450px;}
.y5_c00021{bottom:1035.390450px;}
.y4_c00021{bottom:1066.440450px;}
.y3_c00021{bottom:1097.490450px;}
.h1_c00021{height:63.175781px;}
.h2_c00021{height:64.546875px;}
.h3_c00021{height:75.093750px;}
.h0_c00021{height:1263.000000px;}
.w1_c00021{width:892.500000px;}
.w0_c00021{width:892.830000px;}
.x0_c00021{left:0.000000px;}
.x2_c00021{left:127.620000px;}
.x3_c00021{left:148.950000px;}
.x1_c00021{left:704.880000px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls8_c00021{letter-spacing:-0.070400pt;}
.lsa_c00021{letter-spacing:-0.057600pt;}
.lsb_c00021{letter-spacing:-0.051200pt;}
.ls9_c00021{letter-spacing:-0.044800pt;}
.ls6_c00021{letter-spacing:-0.038400pt;}
.ls4_c00021{letter-spacing:-0.032000pt;}
.ls7_c00021{letter-spacing:-0.025600pt;}
.ls1_c00021{letter-spacing:-0.019200pt;}
.ls2_c00021{letter-spacing:-0.012800pt;}
.ls5_c00021{letter-spacing:-0.006400pt;}
.ls0_c00021{letter-spacing:0.000000pt;}
.ls3_c00021{letter-spacing:0.006400pt;}
.ws1_c00021{word-spacing:-3.411200pt;}
.ws2_c00021{word-spacing:-3.353600pt;}
.ws23_c00021{word-spacing:-2.380800pt;}
.ws1e_c00021{word-spacing:-2.361600pt;}
.ws9_c00021{word-spacing:-1.785600pt;}
.ws8_c00021{word-spacing:-1.766400pt;}
.ws31_c00021{word-spacing:-1.440000pt;}
.ws32_c00021{word-spacing:-1.433600pt;}
.ws2a_c00021{word-spacing:-1.100800pt;}
.ws28_c00021{word-spacing:-1.088000pt;}
.ws29_c00021{word-spacing:-0.998400pt;}
.ws0_c00021{word-spacing:0.000000pt;}
.ws20_c00021{word-spacing:0.038400pt;}
.ws1a_c00021{word-spacing:0.134400pt;}
.ws1f_c00021{word-spacing:0.147200pt;}
.wsa_c00021{word-spacing:0.172800pt;}
.ws2d_c00021{word-spacing:1.766400pt;}
.ws7_c00021{word-spacing:2.713600pt;}
.ws6_c00021{word-spacing:2.720000pt;}
.ws34_c00021{word-spacing:3.360000pt;}
.ws12_c00021{word-spacing:7.494400pt;}
.ws11_c00021{word-spacing:7.526400pt;}
.wsf_c00021{word-spacing:7.840000pt;}
.ws10_c00021{word-spacing:7.859200pt;}
.ws15_c00021{word-spacing:9.011200pt;}
.ws16_c00021{word-spacing:9.068800pt;}
.ws26_c00021{word-spacing:9.139200pt;}
.ws27_c00021{word-spacing:9.152000pt;}
.ws17_c00021{word-spacing:9.350400pt;}
.ws18_c00021{word-spacing:9.491200pt;}
.ws19_c00021{word-spacing:9.536000pt;}
.ws14_c00021{word-spacing:10.393600pt;}
.ws4_c00021{word-spacing:12.633600pt;}
.ws3_c00021{word-spacing:12.646400pt;}
.ws5_c00021{word-spacing:12.704000pt;}
.ws25_c00021{word-spacing:14.540800pt;}
.ws24_c00021{word-spacing:14.553600pt;}
.ws22_c00021{word-spacing:15.744000pt;}
.ws21_c00021{word-spacing:16.172800pt;}
.ws30_c00021{word-spacing:16.793600pt;}
.ws33_c00021{word-spacing:17.120000pt;}
.ws2b_c00021{word-spacing:18.713600pt;}
.ws2c_c00021{word-spacing:18.739200pt;}
.ws2f_c00021{word-spacing:20.019200pt;}
.ws2e_c00021{word-spacing:20.051200pt;}
.ws1d_c00021{word-spacing:23.897600pt;}
.ws13_c00021{word-spacing:24.160000pt;}
.ws1b_c00021{word-spacing:26.073600pt;}
.ws1c_c00021{word-spacing:26.092800pt;}
.wse_c00021{word-spacing:30.816000pt;}
.wsd_c00021{word-spacing:30.873600pt;}
.wsb_c00021{word-spacing:66.387200pt;}
.wsc_c00021{word-spacing:66.393600pt;}
._0_c00021{margin-left:-23.680000pt;}
._1_c00021{width:0.928000pt;}
.fs0_c00021{font-size:64.000000pt;}
.y0_c00021{bottom:0.000000pt;}
.y2_c00021{bottom:41.627067pt;}
.y1_c00021{bottom:60.027067pt;}
.y22_c00021{bottom:126.027067pt;}
.y21_c00021{bottom:153.627067pt;}
.y20_c00021{bottom:181.227067pt;}
.y1f_c00021{bottom:208.827067pt;}
.y1e_c00021{bottom:236.427067pt;}
.y1d_c00021{bottom:264.027067pt;}
.y1c_c00021{bottom:299.627067pt;}
.y1b_c00021{bottom:327.147067pt;}
.y1a_c00021{bottom:354.747067pt;}
.y19_c00021{bottom:382.347067pt;}
.y18_c00021{bottom:409.947067pt;}
.y17_c00021{bottom:437.547067pt;}
.y16_c00021{bottom:465.147067pt;}
.y15_c00021{bottom:491.547067pt;}
.y14_c00021{bottom:517.947067pt;}
.y13_c00021{bottom:536.347067pt;}
.y12_c00021{bottom:554.747067pt;}
.y11_c00021{bottom:573.147067pt;}
.y10_c00021{bottom:608.747067pt;}
.yf_c00021{bottom:636.347067pt;}
.ye_c00021{bottom:663.947067pt;}
.yd_c00021{bottom:691.547067pt;}
.yc_c00021{bottom:719.147067pt;}
.yb_c00021{bottom:746.747067pt;}
.ya_c00021{bottom:774.347067pt;}
.y9_c00021{bottom:801.947067pt;}
.y8_c00021{bottom:829.547067pt;}
.y7_c00021{bottom:865.147067pt;}
.y6_c00021{bottom:892.747067pt;}
.y5_c00021{bottom:920.347067pt;}
.y4_c00021{bottom:947.947067pt;}
.y3_c00021{bottom:975.547067pt;}
.h1_c00021{height:56.156250pt;}
.h2_c00021{height:57.375000pt;}
.h3_c00021{height:66.750000pt;}
.h0_c00021{height:1122.666667pt;}
.w1_c00021{width:793.333333pt;}
.w0_c00021{width:793.626667pt;}
.x0_c00021{left:0.000000pt;}
.x2_c00021{left:113.440000pt;}
.x3_c00021{left:132.400000pt;}
.x1_c00021{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_188ccaace393374d76db8f96.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.093262;font-style:normal;font-weight:normal;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_1b608cb52a1bfe3424352c2f.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.106934;font-style:normal;font-weight:normal;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_4cf3bc80518cdaff685b4565.woff2')format("woff");}.ff3_c00022{font-family:ff3_c00022;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls10_c00022{letter-spacing:-0.086400px;}
.ls9_c00022{letter-spacing:-0.079200px;}
.lse_c00022{letter-spacing:-0.072000px;}
.ls6_c00022{letter-spacing:-0.064800px;}
.ls4_c00022{letter-spacing:-0.057600px;}
.lsc_c00022{letter-spacing:-0.050400px;}
.ls7_c00022{letter-spacing:-0.043200px;}
.lsb_c00022{letter-spacing:-0.036000px;}
.ls3_c00022{letter-spacing:-0.028800px;}
.ls5_c00022{letter-spacing:-0.021600px;}
.ls8_c00022{letter-spacing:-0.014400px;}
.lsf_c00022{letter-spacing:-0.007200px;}
.ls2_c00022{letter-spacing:0.000000px;}
.ls1_c00022{letter-spacing:0.007200px;}
.lsa_c00022{letter-spacing:0.021600px;}
.ls0_c00022{letter-spacing:0.144000px;}
.lsd_c00022{letter-spacing:0.208800px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00022{word-spacing:-20.016000px;}
.ws3_c00022{word-spacing:-19.987200px;}
.ws4_c00022{word-spacing:-19.972800px;}
.ws1_c00022{word-spacing:-19.965600px;}
.ws2_c00022{word-spacing:-19.944000px;}
.ws25_c00022{word-spacing:-3.067200px;}
.ws26_c00022{word-spacing:-3.038400px;}
.ws2e_c00022{word-spacing:-1.267200px;}
.ws2d_c00022{word-spacing:-1.159200px;}
.wsd_c00022{word-spacing:-0.907200px;}
.wsc_c00022{word-spacing:-0.878400px;}
.ws18_c00022{word-spacing:-0.554400px;}
.ws6_c00022{word-spacing:-0.532800px;}
.ws19_c00022{word-spacing:-0.511200px;}
.ws7_c00022{word-spacing:-0.432000px;}
.ws1a_c00022{word-spacing:-0.396000px;}
.ws5_c00022{word-spacing:0.000000px;}
.ws1b_c00022{word-spacing:0.165600px;}
.ws1c_c00022{word-spacing:0.172800px;}
.ws2b_c00022{word-spacing:0.187200px;}
.ws30_c00022{word-spacing:0.907200px;}
.ws2f_c00022{word-spacing:0.993600px;}
.ws13_c00022{word-spacing:1.627200px;}
.ws12_c00022{word-spacing:2.829600px;}
.ws11_c00022{word-spacing:3.002400px;}
.ws10_c00022{word-spacing:3.081600px;}
.wsf_c00022{word-spacing:6.616800px;}
.wse_c00022{word-spacing:6.739200px;}
.ws9_c00022{word-spacing:7.740000px;}
.ws8_c00022{word-spacing:7.747200px;}
.ws2a_c00022{word-spacing:12.067200px;}
.ws27_c00022{word-spacing:12.780000px;}
.ws14_c00022{word-spacing:14.918400px;}
.ws15_c00022{word-spacing:14.954400px;}
.wsb_c00022{word-spacing:15.184800px;}
.wsa_c00022{word-spacing:15.343200px;}
.ws16_c00022{word-spacing:16.351200px;}
.ws33_c00022{word-spacing:16.372800px;}
.ws20_c00022{word-spacing:16.380000px;}
.ws34_c00022{word-spacing:16.444800px;}
.ws17_c00022{word-spacing:16.459200px;}
.ws21_c00022{word-spacing:16.466400px;}
.ws29_c00022{word-spacing:17.467200px;}
.ws28_c00022{word-spacing:17.481600px;}
.ws32_c00022{word-spacing:19.288800px;}
.ws31_c00022{word-spacing:19.396800px;}
.ws23_c00022{word-spacing:20.246400px;}
.ws22_c00022{word-spacing:20.347200px;}
.ws24_c00022{word-spacing:27.194400px;}
.ws2c_c00022{word-spacing:31.168800px;}
.ws1d_c00022{word-spacing:37.245600px;}
.ws1f_c00022{word-spacing:37.267200px;}
.ws1e_c00022{word-spacing:37.281600px;}
._0_c00022{width:1.008000px;}
.fc0_c00022{color:rgb(0,0,0);}
.fs0_c00022{font-size:72.000000px;}
.y0_c00022{bottom:0.000000px;}
.y2_c00022{bottom:46.830450px;}
.y1_c00022{bottom:67.530450px;}
.y1f_c00022{bottom:192.180450px;}
.y1e_c00022{bottom:223.230450px;}
.y1d_c00022{bottom:254.280450px;}
.y1c_c00022{bottom:285.330450px;}
.y1b_c00022{bottom:316.380450px;}
.y1a_c00022{bottom:347.430450px;}
.y19_c00022{bottom:378.390450px;}
.y18_c00022{bottom:418.440450px;}
.y17_c00022{bottom:449.490450px;}
.y16_c00022{bottom:480.540450px;}
.y15_c00022{bottom:511.590450px;}
.y14_c00022{bottom:542.640450px;}
.y13_c00022{bottom:573.690450px;}
.y12_c00022{bottom:604.740450px;}
.y11_c00022{bottom:635.790450px;}
.y10_c00022{bottom:666.840450px;}
.yf_c00022{bottom:706.890450px;}
.ye_c00022{bottom:737.940450px;}
.yd_c00022{bottom:768.990450px;}
.yc_c00022{bottom:800.040450px;}
.yb_c00022{bottom:831.090450px;}
.ya_c00022{bottom:862.140450px;}
.y9_c00022{bottom:893.190450px;}
.y8_c00022{bottom:933.240450px;}
.y7_c00022{bottom:964.290450px;}
.y6_c00022{bottom:995.340450px;}
.y5_c00022{bottom:1026.390450px;}
.y4_c00022{bottom:1066.440450px;}
.y3_c00022{bottom:1097.490450px;}
.h1_c00022{height:63.175781px;}
.h2_c00022{height:64.546875px;}
.h3_c00022{height:75.093750px;}
.h0_c00022{height:1263.000000px;}
.w1_c00022{width:892.500000px;}
.w0_c00022{width:892.830000px;}
.x0_c00022{left:0.000000px;}
.x2_c00022{left:170.100000px;}
.x1_c00022{left:747.360000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls10_c00022{letter-spacing:-0.076800pt;}
.ls9_c00022{letter-spacing:-0.070400pt;}
.lse_c00022{letter-spacing:-0.064000pt;}
.ls6_c00022{letter-spacing:-0.057600pt;}
.ls4_c00022{letter-spacing:-0.051200pt;}
.lsc_c00022{letter-spacing:-0.044800pt;}
.ls7_c00022{letter-spacing:-0.038400pt;}
.lsb_c00022{letter-spacing:-0.032000pt;}
.ls3_c00022{letter-spacing:-0.025600pt;}
.ls5_c00022{letter-spacing:-0.019200pt;}
.ls8_c00022{letter-spacing:-0.012800pt;}
.lsf_c00022{letter-spacing:-0.006400pt;}
.ls2_c00022{letter-spacing:0.000000pt;}
.ls1_c00022{letter-spacing:0.006400pt;}
.lsa_c00022{letter-spacing:0.019200pt;}
.ls0_c00022{letter-spacing:0.128000pt;}
.lsd_c00022{letter-spacing:0.185600pt;}
.ws0_c00022{word-spacing:-17.792000pt;}
.ws3_c00022{word-spacing:-17.766400pt;}
.ws4_c00022{word-spacing:-17.753600pt;}
.ws1_c00022{word-spacing:-17.747200pt;}
.ws2_c00022{word-spacing:-17.728000pt;}
.ws25_c00022{word-spacing:-2.726400pt;}
.ws26_c00022{word-spacing:-2.700800pt;}
.ws2e_c00022{word-spacing:-1.126400pt;}
.ws2d_c00022{word-spacing:-1.030400pt;}
.wsd_c00022{word-spacing:-0.806400pt;}
.wsc_c00022{word-spacing:-0.780800pt;}
.ws18_c00022{word-spacing:-0.492800pt;}
.ws6_c00022{word-spacing:-0.473600pt;}
.ws19_c00022{word-spacing:-0.454400pt;}
.ws7_c00022{word-spacing:-0.384000pt;}
.ws1a_c00022{word-spacing:-0.352000pt;}
.ws5_c00022{word-spacing:0.000000pt;}
.ws1b_c00022{word-spacing:0.147200pt;}
.ws1c_c00022{word-spacing:0.153600pt;}
.ws2b_c00022{word-spacing:0.166400pt;}
.ws30_c00022{word-spacing:0.806400pt;}
.ws2f_c00022{word-spacing:0.883200pt;}
.ws13_c00022{word-spacing:1.446400pt;}
.ws12_c00022{word-spacing:2.515200pt;}
.ws11_c00022{word-spacing:2.668800pt;}
.ws10_c00022{word-spacing:2.739200pt;}
.wsf_c00022{word-spacing:5.881600pt;}
.wse_c00022{word-spacing:5.990400pt;}
.ws9_c00022{word-spacing:6.880000pt;}
.ws8_c00022{word-spacing:6.886400pt;}
.ws2a_c00022{word-spacing:10.726400pt;}
.ws27_c00022{word-spacing:11.360000pt;}
.ws14_c00022{word-spacing:13.260800pt;}
.ws15_c00022{word-spacing:13.292800pt;}
.wsb_c00022{word-spacing:13.497600pt;}
.wsa_c00022{word-spacing:13.638400pt;}
.ws16_c00022{word-spacing:14.534400pt;}
.ws33_c00022{word-spacing:14.553600pt;}
.ws20_c00022{word-spacing:14.560000pt;}
.ws34_c00022{word-spacing:14.617600pt;}
.ws17_c00022{word-spacing:14.630400pt;}
.ws21_c00022{word-spacing:14.636800pt;}
.ws29_c00022{word-spacing:15.526400pt;}
.ws28_c00022{word-spacing:15.539200pt;}
.ws32_c00022{word-spacing:17.145600pt;}
.ws31_c00022{word-spacing:17.241600pt;}
.ws23_c00022{word-spacing:17.996800pt;}
.ws22_c00022{word-spacing:18.086400pt;}
.ws24_c00022{word-spacing:24.172800pt;}
.ws2c_c00022{word-spacing:27.705600pt;}
.ws1d_c00022{word-spacing:33.107200pt;}
.ws1f_c00022{word-spacing:33.126400pt;}
.ws1e_c00022{word-spacing:33.139200pt;}
._0_c00022{width:0.896000pt;}
.fs0_c00022{font-size:64.000000pt;}
.y0_c00022{bottom:0.000000pt;}
.y2_c00022{bottom:41.627067pt;}
.y1_c00022{bottom:60.027067pt;}
.y1f_c00022{bottom:170.827067pt;}
.y1e_c00022{bottom:198.427067pt;}
.y1d_c00022{bottom:226.027067pt;}
.y1c_c00022{bottom:253.627067pt;}
.y1b_c00022{bottom:281.227067pt;}
.y1a_c00022{bottom:308.827067pt;}
.y19_c00022{bottom:336.347067pt;}
.y18_c00022{bottom:371.947067pt;}
.y17_c00022{bottom:399.547067pt;}
.y16_c00022{bottom:427.147067pt;}
.y15_c00022{bottom:454.747067pt;}
.y14_c00022{bottom:482.347067pt;}
.y13_c00022{bottom:509.947067pt;}
.y12_c00022{bottom:537.547067pt;}
.y11_c00022{bottom:565.147067pt;}
.y10_c00022{bottom:592.747067pt;}
.yf_c00022{bottom:628.347067pt;}
.ye_c00022{bottom:655.947067pt;}
.yd_c00022{bottom:683.547067pt;}
.yc_c00022{bottom:711.147067pt;}
.yb_c00022{bottom:738.747067pt;}
.ya_c00022{bottom:766.347067pt;}
.y9_c00022{bottom:793.947067pt;}
.y8_c00022{bottom:829.547067pt;}
.y7_c00022{bottom:857.147067pt;}
.y6_c00022{bottom:884.747067pt;}
.y5_c00022{bottom:912.347067pt;}
.y4_c00022{bottom:947.947067pt;}
.y3_c00022{bottom:975.547067pt;}
.h1_c00022{height:56.156250pt;}
.h2_c00022{height:57.375000pt;}
.h3_c00022{height:66.750000pt;}
.h0_c00022{height:1122.666667pt;}
.w1_c00022{width:793.333333pt;}
.w0_c00022{width:793.626667pt;}
.x0_c00022{left:0.000000pt;}
.x2_c00022{left:151.200000pt;}
.x1_c00022{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a01e766aac10d2b2ee8daadd.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.093262;font-style:normal;font-weight:normal;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_ba4c3388a98d1372d6931aab.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.106934;font-style:normal;font-weight:normal;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_e461d8d58fef43f492b40f96.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lse_c00023{letter-spacing:-0.122400px;}
.ls8_c00023{letter-spacing:-0.100800px;}
.ls10_c00023{letter-spacing:-0.072000px;}
.lsb_c00023{letter-spacing:-0.064800px;}
.ls9_c00023{letter-spacing:-0.057600px;}
.ls6_c00023{letter-spacing:-0.050400px;}
.ls5_c00023{letter-spacing:-0.043200px;}
.ls2_c00023{letter-spacing:-0.036000px;}
.lsf_c00023{letter-spacing:-0.028800px;}
.ls7_c00023{letter-spacing:-0.021600px;}
.ls3_c00023{letter-spacing:-0.014400px;}
.lsa_c00023{letter-spacing:-0.007200px;}
.ls1_c00023{letter-spacing:0.000000px;}
.ls0_c00023{letter-spacing:0.014400px;}
.ls4_c00023{letter-spacing:0.036000px;}
.lsd_c00023{letter-spacing:0.050400px;}
.lsc_c00023{letter-spacing:0.057600px;}
.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;}
}
.ws2_c00023{word-spacing:-20.016000px;}
.ws1_c00023{word-spacing:-19.994400px;}
.ws0_c00023{word-spacing:-19.915200px;}
.ws34_c00023{word-spacing:-4.118400px;}
.ws33_c00023{word-spacing:-4.046400px;}
.ws5_c00023{word-spacing:-1.677600px;}
.ws4_c00023{word-spacing:-1.605600px;}
.ws39_c00023{word-spacing:-1.598400px;}
.ws37_c00023{word-spacing:-1.519200px;}
.ws38_c00023{word-spacing:-1.497600px;}
.ws3_c00023{word-spacing:0.000000px;}
.ws15_c00023{word-spacing:0.165600px;}
.ws21_c00023{word-spacing:0.172800px;}
.ws9_c00023{word-spacing:1.274400px;}
.ws25_c00023{word-spacing:1.288800px;}
.ws8_c00023{word-spacing:1.360800px;}
.ws2d_c00023{word-spacing:1.980000px;}
.ws2c_c00023{word-spacing:2.001600px;}
.ws2e_c00023{word-spacing:2.023200px;}
.ws1a_c00023{word-spacing:2.620800px;}
.ws19_c00023{word-spacing:2.714400px;}
.ws18_c00023{word-spacing:2.743200px;}
.ws10_c00023{word-spacing:3.441600px;}
.ws11_c00023{word-spacing:3.456000px;}
.ws17_c00023{word-spacing:3.808800px;}
.ws16_c00023{word-spacing:3.823200px;}
.ws1d_c00023{word-spacing:4.500000px;}
.ws1e_c00023{word-spacing:4.514400px;}
.ws36_c00023{word-spacing:5.608800px;}
.ws35_c00023{word-spacing:5.616000px;}
.wse_c00023{word-spacing:5.904000px;}
.wsf_c00023{word-spacing:6.040800px;}
.ws1f_c00023{word-spacing:6.314400px;}
.ws22_c00023{word-spacing:6.328800px;}
.ws20_c00023{word-spacing:6.357600px;}
.ws1c_c00023{word-spacing:6.652800px;}
.ws1b_c00023{word-spacing:6.660000px;}
.wsd_c00023{word-spacing:7.740000px;}
.wsc_c00023{word-spacing:7.747200px;}
.wsb_c00023{word-spacing:7.812000px;}
.wsa_c00023{word-spacing:7.855200px;}
.ws12_c00023{word-spacing:8.064000px;}
.ws31_c00023{word-spacing:10.576800px;}
.ws32_c00023{word-spacing:10.670400px;}
.ws27_c00023{word-spacing:11.304000px;}
.ws28_c00023{word-spacing:11.347200px;}
.ws26_c00023{word-spacing:11.440800px;}
.ws3b_c00023{word-spacing:17.784000px;}
.ws3a_c00023{word-spacing:17.820000px;}
.ws2a_c00023{word-spacing:18.432000px;}
.ws29_c00023{word-spacing:18.446400px;}
.ws2f_c00023{word-spacing:21.715200px;}
.ws30_c00023{word-spacing:21.772800px;}
.ws14_c00023{word-spacing:26.028000px;}
.ws13_c00023{word-spacing:26.056800px;}
.ws6_c00023{word-spacing:26.452800px;}
.ws7_c00023{word-spacing:26.481600px;}
.ws2b_c00023{word-spacing:33.667200px;}
.ws23_c00023{word-spacing:47.721600px;}
.ws24_c00023{word-spacing:47.736000px;}
._1_c00023{margin-left:-3.960000px;}
._0_c00023{width:1.483200px;}
.fc0_c00023{color:rgb(0,0,0);}
.fs0_c00023{font-size:72.000000px;}
.y0_c00023{bottom:0.000000px;}
.y2_c00023{bottom:46.830450px;}
.y1_c00023{bottom:67.530450px;}
.y20_c00023{bottom:143.130450px;}
.y1f_c00023{bottom:174.180450px;}
.y1e_c00023{bottom:205.230450px;}
.y1d_c00023{bottom:236.280450px;}
.y1c_c00023{bottom:267.330450px;}
.y1b_c00023{bottom:316.380450px;}
.y1a_c00023{bottom:347.340450px;}
.y19_c00023{bottom:378.390450px;}
.y18_c00023{bottom:409.440450px;}
.y17_c00023{bottom:440.490450px;}
.y16_c00023{bottom:471.540450px;}
.y15_c00023{bottom:502.590450px;}
.y14_c00023{bottom:533.640450px;}
.y13_c00023{bottom:564.690450px;}
.y12_c00023{bottom:613.740450px;}
.y11_c00023{bottom:644.790450px;}
.y10_c00023{bottom:675.840450px;}
.yf_c00023{bottom:706.890450px;}
.ye_c00023{bottom:737.940450px;}
.yd_c00023{bottom:768.990450px;}
.yc_c00023{bottom:818.040450px;}
.yb_c00023{bottom:849.090450px;}
.ya_c00023{bottom:880.140450px;}
.y9_c00023{bottom:911.190450px;}
.y8_c00023{bottom:942.240450px;}
.y7_c00023{bottom:973.290450px;}
.y6_c00023{bottom:1004.340450px;}
.y5_c00023{bottom:1035.390450px;}
.y4_c00023{bottom:1066.440450px;}
.y3_c00023{bottom:1097.490450px;}
.h1_c00023{height:63.175781px;}
.h2_c00023{height:64.546875px;}
.h3_c00023{height:75.093750px;}
.h0_c00023{height:1263.000000px;}
.w1_c00023{width:892.500000px;}
.w0_c00023{width:892.830000px;}
.x0_c00023{left:0.000000px;}
.x2_c00023{left:127.620000px;}
.x1_c00023{left:704.880000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.lse_c00023{letter-spacing:-0.108800pt;}
.ls8_c00023{letter-spacing:-0.089600pt;}
.ls10_c00023{letter-spacing:-0.064000pt;}
.lsb_c00023{letter-spacing:-0.057600pt;}
.ls9_c00023{letter-spacing:-0.051200pt;}
.ls6_c00023{letter-spacing:-0.044800pt;}
.ls5_c00023{letter-spacing:-0.038400pt;}
.ls2_c00023{letter-spacing:-0.032000pt;}
.lsf_c00023{letter-spacing:-0.025600pt;}
.ls7_c00023{letter-spacing:-0.019200pt;}
.ls3_c00023{letter-spacing:-0.012800pt;}
.lsa_c00023{letter-spacing:-0.006400pt;}
.ls1_c00023{letter-spacing:0.000000pt;}
.ls0_c00023{letter-spacing:0.012800pt;}
.ls4_c00023{letter-spacing:0.032000pt;}
.lsd_c00023{letter-spacing:0.044800pt;}
.lsc_c00023{letter-spacing:0.051200pt;}
.ws2_c00023{word-spacing:-17.792000pt;}
.ws1_c00023{word-spacing:-17.772800pt;}
.ws0_c00023{word-spacing:-17.702400pt;}
.ws34_c00023{word-spacing:-3.660800pt;}
.ws33_c00023{word-spacing:-3.596800pt;}
.ws5_c00023{word-spacing:-1.491200pt;}
.ws4_c00023{word-spacing:-1.427200pt;}
.ws39_c00023{word-spacing:-1.420800pt;}
.ws37_c00023{word-spacing:-1.350400pt;}
.ws38_c00023{word-spacing:-1.331200pt;}
.ws3_c00023{word-spacing:0.000000pt;}
.ws15_c00023{word-spacing:0.147200pt;}
.ws21_c00023{word-spacing:0.153600pt;}
.ws9_c00023{word-spacing:1.132800pt;}
.ws25_c00023{word-spacing:1.145600pt;}
.ws8_c00023{word-spacing:1.209600pt;}
.ws2d_c00023{word-spacing:1.760000pt;}
.ws2c_c00023{word-spacing:1.779200pt;}
.ws2e_c00023{word-spacing:1.798400pt;}
.ws1a_c00023{word-spacing:2.329600pt;}
.ws19_c00023{word-spacing:2.412800pt;}
.ws18_c00023{word-spacing:2.438400pt;}
.ws10_c00023{word-spacing:3.059200pt;}
.ws11_c00023{word-spacing:3.072000pt;}
.ws17_c00023{word-spacing:3.385600pt;}
.ws16_c00023{word-spacing:3.398400pt;}
.ws1d_c00023{word-spacing:4.000000pt;}
.ws1e_c00023{word-spacing:4.012800pt;}
.ws36_c00023{word-spacing:4.985600pt;}
.ws35_c00023{word-spacing:4.992000pt;}
.wse_c00023{word-spacing:5.248000pt;}
.wsf_c00023{word-spacing:5.369600pt;}
.ws1f_c00023{word-spacing:5.612800pt;}
.ws22_c00023{word-spacing:5.625600pt;}
.ws20_c00023{word-spacing:5.651200pt;}
.ws1c_c00023{word-spacing:5.913600pt;}
.ws1b_c00023{word-spacing:5.920000pt;}
.wsd_c00023{word-spacing:6.880000pt;}
.wsc_c00023{word-spacing:6.886400pt;}
.wsb_c00023{word-spacing:6.944000pt;}
.wsa_c00023{word-spacing:6.982400pt;}
.ws12_c00023{word-spacing:7.168000pt;}
.ws31_c00023{word-spacing:9.401600pt;}
.ws32_c00023{word-spacing:9.484800pt;}
.ws27_c00023{word-spacing:10.048000pt;}
.ws28_c00023{word-spacing:10.086400pt;}
.ws26_c00023{word-spacing:10.169600pt;}
.ws3b_c00023{word-spacing:15.808000pt;}
.ws3a_c00023{word-spacing:15.840000pt;}
.ws2a_c00023{word-spacing:16.384000pt;}
.ws29_c00023{word-spacing:16.396800pt;}
.ws2f_c00023{word-spacing:19.302400pt;}
.ws30_c00023{word-spacing:19.353600pt;}
.ws14_c00023{word-spacing:23.136000pt;}
.ws13_c00023{word-spacing:23.161600pt;}
.ws6_c00023{word-spacing:23.513600pt;}
.ws7_c00023{word-spacing:23.539200pt;}
.ws2b_c00023{word-spacing:29.926400pt;}
.ws23_c00023{word-spacing:42.419200pt;}
.ws24_c00023{word-spacing:42.432000pt;}
._1_c00023{margin-left:-3.520000pt;}
._0_c00023{width:1.318400pt;}
.fs0_c00023{font-size:64.000000pt;}
.y0_c00023{bottom:0.000000pt;}
.y2_c00023{bottom:41.627067pt;}
.y1_c00023{bottom:60.027067pt;}
.y20_c00023{bottom:127.227067pt;}
.y1f_c00023{bottom:154.827067pt;}
.y1e_c00023{bottom:182.427067pt;}
.y1d_c00023{bottom:210.027067pt;}
.y1c_c00023{bottom:237.627067pt;}
.y1b_c00023{bottom:281.227067pt;}
.y1a_c00023{bottom:308.747067pt;}
.y19_c00023{bottom:336.347067pt;}
.y18_c00023{bottom:363.947067pt;}
.y17_c00023{bottom:391.547067pt;}
.y16_c00023{bottom:419.147067pt;}
.y15_c00023{bottom:446.747067pt;}
.y14_c00023{bottom:474.347067pt;}
.y13_c00023{bottom:501.947067pt;}
.y12_c00023{bottom:545.547067pt;}
.y11_c00023{bottom:573.147067pt;}
.y10_c00023{bottom:600.747067pt;}
.yf_c00023{bottom:628.347067pt;}
.ye_c00023{bottom:655.947067pt;}
.yd_c00023{bottom:683.547067pt;}
.yc_c00023{bottom:727.147067pt;}
.yb_c00023{bottom:754.747067pt;}
.ya_c00023{bottom:782.347067pt;}
.y9_c00023{bottom:809.947067pt;}
.y8_c00023{bottom:837.547067pt;}
.y7_c00023{bottom:865.147067pt;}
.y6_c00023{bottom:892.747067pt;}
.y5_c00023{bottom:920.347067pt;}
.y4_c00023{bottom:947.947067pt;}
.y3_c00023{bottom:975.547067pt;}
.h1_c00023{height:56.156250pt;}
.h2_c00023{height:57.375000pt;}
.h3_c00023{height:66.750000pt;}
.h0_c00023{height:1122.666667pt;}
.w1_c00023{width:793.333333pt;}
.w0_c00023{width:793.626667pt;}
.x0_c00023{left:0.000000pt;}
.x2_c00023{left:113.440000pt;}
.x1_c00023{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8e45ef0e19c2e9bddcd10569.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.093262;font-style:normal;font-weight:normal;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_0c2b7c9b54ca85e29ff79a45.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.106934;font-style:normal;font-weight:normal;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_8239e93b3847059d6a74dfd6.woff2')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00024{letter-spacing:-0.093600px;}
.lsc_c00024{letter-spacing:-0.086400px;}
.ls5_c00024{letter-spacing:-0.072000px;}
.ls7_c00024{letter-spacing:-0.064800px;}
.lsb_c00024{letter-spacing:-0.057600px;}
.ls9_c00024{letter-spacing:-0.050400px;}
.ls2_c00024{letter-spacing:-0.043200px;}
.ls6_c00024{letter-spacing:-0.036000px;}
.ls4_c00024{letter-spacing:-0.028800px;}
.lsa_c00024{letter-spacing:-0.021600px;}
.ls3_c00024{letter-spacing:-0.014400px;}
.ls8_c00024{letter-spacing:-0.007200px;}
.ls1_c00024{letter-spacing:0.000000px;}
.ls0_c00024{letter-spacing:0.007200px;}
.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;}
}
.wsd_c00024{word-spacing:-2.707200px;}
.wsc_c00024{word-spacing:-2.671200px;}
.ws39_c00024{word-spacing:-2.361600px;}
.ws15_c00024{word-spacing:-2.347200px;}
.ws14_c00024{word-spacing:-2.340000px;}
.ws38_c00024{word-spacing:-2.325600px;}
.ws1a_c00024{word-spacing:-1.958400px;}
.ws16_c00024{word-spacing:-1.360800px;}
.ws17_c00024{word-spacing:-1.188000px;}
.ws28_c00024{word-spacing:-0.900000px;}
.ws29_c00024{word-spacing:-0.885600px;}
.ws0_c00024{word-spacing:0.000000px;}
.ws2d_c00024{word-spacing:0.165600px;}
.ws11_c00024{word-spacing:0.172800px;}
.ws10_c00024{word-spacing:0.252000px;}
.wsb_c00024{word-spacing:1.958400px;}
.wse_c00024{word-spacing:1.994400px;}
.wsa_c00024{word-spacing:2.008800px;}
.ws1f_c00024{word-spacing:2.109600px;}
.ws20_c00024{word-spacing:2.124000px;}
.ws18_c00024{word-spacing:2.167200px;}
.ws21_c00024{word-spacing:2.188800px;}
.ws19_c00024{word-spacing:2.311200px;}
.ws25_c00024{word-spacing:2.671200px;}
.ws26_c00024{word-spacing:2.721600px;}
.ws27_c00024{word-spacing:2.772000px;}
.ws5_c00024{word-spacing:3.794400px;}
.ws4_c00024{word-spacing:3.830400px;}
.ws34_c00024{word-spacing:6.228000px;}
.ws35_c00024{word-spacing:6.336000px;}
.ws2a_c00024{word-spacing:7.682400px;}
.ws2b_c00024{word-spacing:7.747200px;}
.ws24_c00024{word-spacing:8.107200px;}
.ws23_c00024{word-spacing:8.791200px;}
.ws22_c00024{word-spacing:8.856000px;}
.ws2f_c00024{word-spacing:9.396000px;}
.ws2e_c00024{word-spacing:9.568800px;}
.ws12_c00024{word-spacing:12.722400px;}
.ws13_c00024{word-spacing:12.808800px;}
.ws1b_c00024{word-spacing:13.161600px;}
.wsf_c00024{word-spacing:14.932800px;}
.ws1d_c00024{word-spacing:15.645600px;}
.ws1e_c00024{word-spacing:15.652800px;}
.ws1c_c00024{word-spacing:15.667200px;}
.ws33_c00024{word-spacing:19.951200px;}
.ws32_c00024{word-spacing:19.972800px;}
.ws2c_c00024{word-spacing:20.728800px;}
.ws8_c00024{word-spacing:22.485600px;}
.ws9_c00024{word-spacing:22.492800px;}
.ws7_c00024{word-spacing:23.536800px;}
.ws6_c00024{word-spacing:23.623200px;}
.ws30_c00024{word-spacing:32.572800px;}
.ws31_c00024{word-spacing:32.587200px;}
.ws37_c00024{word-spacing:40.514400px;}
.ws36_c00024{word-spacing:40.694400px;}
.ws2_c00024{word-spacing:41.090400px;}
.ws3_c00024{word-spacing:41.227200px;}
.ws1_c00024{word-spacing:41.241600px;}
._2_c00024{margin-left:-12.528000px;}
._1_c00024{margin-left:-2.606400px;}
._0_c00024{width:1.137600px;}
.fc0_c00024{color:rgb(0,0,0);}
.fs0_c00024{font-size:72.000000px;}
.y0_c00024{bottom:0.000000px;}
.y2_c00024{bottom:46.830450px;}
.y1_c00024{bottom:67.530450px;}
.y20_c00024{bottom:143.130450px;}
.y1f_c00024{bottom:174.180450px;}
.y1e_c00024{bottom:205.230450px;}
.y1d_c00024{bottom:236.280450px;}
.y1c_c00024{bottom:267.330450px;}
.y1b_c00024{bottom:298.380450px;}
.y1a_c00024{bottom:347.430450px;}
.y19_c00024{bottom:378.390450px;}
.y18_c00024{bottom:409.440450px;}
.y17_c00024{bottom:440.490450px;}
.y16_c00024{bottom:471.540450px;}
.y15_c00024{bottom:502.590450px;}
.y14_c00024{bottom:533.640450px;}
.y13_c00024{bottom:564.690450px;}
.y12_c00024{bottom:595.740450px;}
.y11_c00024{bottom:626.790450px;}
.y10_c00024{bottom:675.840450px;}
.yf_c00024{bottom:706.890450px;}
.ye_c00024{bottom:737.940450px;}
.yd_c00024{bottom:768.990450px;}
.yc_c00024{bottom:800.040450px;}
.yb_c00024{bottom:849.090450px;}
.ya_c00024{bottom:880.140450px;}
.y9_c00024{bottom:911.190450px;}
.y8_c00024{bottom:942.240450px;}
.y7_c00024{bottom:973.290450px;}
.y6_c00024{bottom:1004.340450px;}
.y5_c00024{bottom:1035.390450px;}
.y4_c00024{bottom:1066.440450px;}
.y3_c00024{bottom:1097.490450px;}
.h1_c00024{height:63.175781px;}
.h2_c00024{height:64.546875px;}
.h3_c00024{height:75.093750px;}
.h0_c00024{height:1263.000000px;}
.w1_c00024{width:892.500000px;}
.w0_c00024{width:892.830000px;}
.x0_c00024{left:0.000000px;}
.x2_c00024{left:170.100000px;}
.x1_c00024{left:747.360000px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.lsd_c00024{letter-spacing:-0.083200pt;}
.lsc_c00024{letter-spacing:-0.076800pt;}
.ls5_c00024{letter-spacing:-0.064000pt;}
.ls7_c00024{letter-spacing:-0.057600pt;}
.lsb_c00024{letter-spacing:-0.051200pt;}
.ls9_c00024{letter-spacing:-0.044800pt;}
.ls2_c00024{letter-spacing:-0.038400pt;}
.ls6_c00024{letter-spacing:-0.032000pt;}
.ls4_c00024{letter-spacing:-0.025600pt;}
.lsa_c00024{letter-spacing:-0.019200pt;}
.ls3_c00024{letter-spacing:-0.012800pt;}
.ls8_c00024{letter-spacing:-0.006400pt;}
.ls1_c00024{letter-spacing:0.000000pt;}
.ls0_c00024{letter-spacing:0.006400pt;}
.wsd_c00024{word-spacing:-2.406400pt;}
.wsc_c00024{word-spacing:-2.374400pt;}
.ws39_c00024{word-spacing:-2.099200pt;}
.ws15_c00024{word-spacing:-2.086400pt;}
.ws14_c00024{word-spacing:-2.080000pt;}
.ws38_c00024{word-spacing:-2.067200pt;}
.ws1a_c00024{word-spacing:-1.740800pt;}
.ws16_c00024{word-spacing:-1.209600pt;}
.ws17_c00024{word-spacing:-1.056000pt;}
.ws28_c00024{word-spacing:-0.800000pt;}
.ws29_c00024{word-spacing:-0.787200pt;}
.ws0_c00024{word-spacing:0.000000pt;}
.ws2d_c00024{word-spacing:0.147200pt;}
.ws11_c00024{word-spacing:0.153600pt;}
.ws10_c00024{word-spacing:0.224000pt;}
.wsb_c00024{word-spacing:1.740800pt;}
.wse_c00024{word-spacing:1.772800pt;}
.wsa_c00024{word-spacing:1.785600pt;}
.ws1f_c00024{word-spacing:1.875200pt;}
.ws20_c00024{word-spacing:1.888000pt;}
.ws18_c00024{word-spacing:1.926400pt;}
.ws21_c00024{word-spacing:1.945600pt;}
.ws19_c00024{word-spacing:2.054400pt;}
.ws25_c00024{word-spacing:2.374400pt;}
.ws26_c00024{word-spacing:2.419200pt;}
.ws27_c00024{word-spacing:2.464000pt;}
.ws5_c00024{word-spacing:3.372800pt;}
.ws4_c00024{word-spacing:3.404800pt;}
.ws34_c00024{word-spacing:5.536000pt;}
.ws35_c00024{word-spacing:5.632000pt;}
.ws2a_c00024{word-spacing:6.828800pt;}
.ws2b_c00024{word-spacing:6.886400pt;}
.ws24_c00024{word-spacing:7.206400pt;}
.ws23_c00024{word-spacing:7.814400pt;}
.ws22_c00024{word-spacing:7.872000pt;}
.ws2f_c00024{word-spacing:8.352000pt;}
.ws2e_c00024{word-spacing:8.505600pt;}
.ws12_c00024{word-spacing:11.308800pt;}
.ws13_c00024{word-spacing:11.385600pt;}
.ws1b_c00024{word-spacing:11.699200pt;}
.wsf_c00024{word-spacing:13.273600pt;}
.ws1d_c00024{word-spacing:13.907200pt;}
.ws1e_c00024{word-spacing:13.913600pt;}
.ws1c_c00024{word-spacing:13.926400pt;}
.ws33_c00024{word-spacing:17.734400pt;}
.ws32_c00024{word-spacing:17.753600pt;}
.ws2c_c00024{word-spacing:18.425600pt;}
.ws8_c00024{word-spacing:19.987200pt;}
.ws9_c00024{word-spacing:19.993600pt;}
.ws7_c00024{word-spacing:20.921600pt;}
.ws6_c00024{word-spacing:20.998400pt;}
.ws30_c00024{word-spacing:28.953600pt;}
.ws31_c00024{word-spacing:28.966400pt;}
.ws37_c00024{word-spacing:36.012800pt;}
.ws36_c00024{word-spacing:36.172800pt;}
.ws2_c00024{word-spacing:36.524800pt;}
.ws3_c00024{word-spacing:36.646400pt;}
.ws1_c00024{word-spacing:36.659200pt;}
._2_c00024{margin-left:-11.136000pt;}
._1_c00024{margin-left:-2.316800pt;}
._0_c00024{width:1.011200pt;}
.fs0_c00024{font-size:64.000000pt;}
.y0_c00024{bottom:0.000000pt;}
.y2_c00024{bottom:41.627067pt;}
.y1_c00024{bottom:60.027067pt;}
.y20_c00024{bottom:127.227067pt;}
.y1f_c00024{bottom:154.827067pt;}
.y1e_c00024{bottom:182.427067pt;}
.y1d_c00024{bottom:210.027067pt;}
.y1c_c00024{bottom:237.627067pt;}
.y1b_c00024{bottom:265.227067pt;}
.y1a_c00024{bottom:308.827067pt;}
.y19_c00024{bottom:336.347067pt;}
.y18_c00024{bottom:363.947067pt;}
.y17_c00024{bottom:391.547067pt;}
.y16_c00024{bottom:419.147067pt;}
.y15_c00024{bottom:446.747067pt;}
.y14_c00024{bottom:474.347067pt;}
.y13_c00024{bottom:501.947067pt;}
.y12_c00024{bottom:529.547067pt;}
.y11_c00024{bottom:557.147067pt;}
.y10_c00024{bottom:600.747067pt;}
.yf_c00024{bottom:628.347067pt;}
.ye_c00024{bottom:655.947067pt;}
.yd_c00024{bottom:683.547067pt;}
.yc_c00024{bottom:711.147067pt;}
.yb_c00024{bottom:754.747067pt;}
.ya_c00024{bottom:782.347067pt;}
.y9_c00024{bottom:809.947067pt;}
.y8_c00024{bottom:837.547067pt;}
.y7_c00024{bottom:865.147067pt;}
.y6_c00024{bottom:892.747067pt;}
.y5_c00024{bottom:920.347067pt;}
.y4_c00024{bottom:947.947067pt;}
.y3_c00024{bottom:975.547067pt;}
.h1_c00024{height:56.156250pt;}
.h2_c00024{height:57.375000pt;}
.h3_c00024{height:66.750000pt;}
.h0_c00024{height:1122.666667pt;}
.w1_c00024{width:793.333333pt;}
.w0_c00024{width:793.626667pt;}
.x0_c00024{left:0.000000pt;}
.x2_c00024{left:151.200000pt;}
.x1_c00024{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_042e6384f52f3042db6b7fff.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.093262;font-style:normal;font-weight:normal;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_642f36801d59c384bdbe84f7.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:1.106934;font-style: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;}
.ls8_c00025{letter-spacing:-0.079200px;}
.ls7_c00025{letter-spacing:-0.064800px;}
.ls6_c00025{letter-spacing:-0.057600px;}
.ls9_c00025{letter-spacing:-0.050400px;}
.lsa_c00025{letter-spacing:-0.043200px;}
.ls2_c00025{letter-spacing:-0.036000px;}
.ls1_c00025{letter-spacing:-0.028800px;}
.ls5_c00025{letter-spacing:-0.021600px;}
.ls3_c00025{letter-spacing:-0.014400px;}
.ls4_c00025{letter-spacing:-0.007200px;}
.ls0_c00025{letter-spacing:0.000000px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00025{word-spacing:-4.788000px;}
.ws6_c00025{word-spacing:-4.766400px;}
.ws1a_c00025{word-spacing:-4.183200px;}
.ws1b_c00025{word-spacing:-4.132800px;}
.ws2a_c00025{word-spacing:-2.656800px;}
.ws21_c00025{word-spacing:-2.340000px;}
.ws2e_c00025{word-spacing:-0.540000px;}
.ws17_c00025{word-spacing:-0.532800px;}
.ws2f_c00025{word-spacing:-0.504000px;}
.ws16_c00025{word-spacing:-0.446400px;}
.ws0_c00025{word-spacing:0.000000px;}
.ws9_c00025{word-spacing:0.129600px;}
.ws15_c00025{word-spacing:0.165600px;}
.ws29_c00025{word-spacing:0.180000px;}
.wsf_c00025{word-spacing:0.187200px;}
.wsa_c00025{word-spacing:0.216000px;}
.ws28_c00025{word-spacing:0.273600px;}
.ws1c_c00025{word-spacing:0.518400px;}
.ws1d_c00025{word-spacing:0.540000px;}
.ws10_c00025{word-spacing:1.605600px;}
.ws2_c00025{word-spacing:3.398400px;}
.ws1_c00025{word-spacing:3.427200px;}
.ws3_c00025{word-spacing:3.434400px;}
.ws2b_c00025{word-spacing:3.830400px;}
.ws27_c00025{word-spacing:5.601600px;}
.ws26_c00025{word-spacing:5.623200px;}
.ws25_c00025{word-spacing:7.329600px;}
.ws24_c00025{word-spacing:7.401600px;}
.ws8_c00025{word-spacing:8.114400px;}
.ws2c_c00025{word-spacing:9.108000px;}
.ws2d_c00025{word-spacing:9.266400px;}
.ws4_c00025{word-spacing:10.900800px;}
.ws5_c00025{word-spacing:10.965600px;}
.ws19_c00025{word-spacing:10.987200px;}
.ws18_c00025{word-spacing:11.008800px;}
.ws1e_c00025{word-spacing:13.500000px;}
.ws12_c00025{word-spacing:15.300000px;}
.ws11_c00025{word-spacing:15.343200px;}
.wsc_c00025{word-spacing:16.012800px;}
.wsb_c00025{word-spacing:16.027200px;}
.wse_c00025{word-spacing:16.048800px;}
.wsd_c00025{word-spacing:16.214400px;}
.ws22_c00025{word-spacing:19.627200px;}
.ws23_c00025{word-spacing:19.720800px;}
.ws14_c00025{word-spacing:24.566400px;}
.ws13_c00025{word-spacing:24.660000px;}
.ws1f_c00025{word-spacing:39.787200px;}
.ws20_c00025{word-spacing:39.808800px;}
._0_c00025{width:1.224000px;}
.fc0_c00025{color:rgb(0,0,0);}
.fs0_c00025{font-size:72.000000px;}
.y0_c00025{bottom:0.000000px;}
.y2_c00025{bottom:46.830450px;}
.y1_c00025{bottom:67.530450px;}
.y20_c00025{bottom:148.530450px;}
.y1f_c00025{bottom:169.230450px;}
.y1e_c00025{bottom:189.930450px;}
.y1d_c00025{bottom:210.630450px;}
.y1c_c00025{bottom:231.330450px;}
.y1b_c00025{bottom:280.380450px;}
.y1a_c00025{bottom:329.430450px;}
.y19_c00025{bottom:360.390450px;}
.y18_c00025{bottom:391.440450px;}
.y17_c00025{bottom:422.490450px;}
.y16_c00025{bottom:453.540450px;}
.y15_c00025{bottom:484.590450px;}
.y14_c00025{bottom:515.640450px;}
.y13_c00025{bottom:546.690450px;}
.y12_c00025{bottom:577.740450px;}
.y11_c00025{bottom:608.790450px;}
.y10_c00025{bottom:639.840450px;}
.yf_c00025{bottom:688.890450px;}
.ye_c00025{bottom:719.940450px;}
.yd_c00025{bottom:750.990450px;}
.yc_c00025{bottom:782.040450px;}
.yb_c00025{bottom:813.090450px;}
.ya_c00025{bottom:862.140450px;}
.y9_c00025{bottom:893.190450px;}
.y8_c00025{bottom:924.240450px;}
.y7_c00025{bottom:973.290450px;}
.y6_c00025{bottom:1004.340450px;}
.y5_c00025{bottom:1035.390450px;}
.y4_c00025{bottom:1066.440450px;}
.y3_c00025{bottom:1097.490450px;}
.h1_c00025{height:63.175781px;}
.h2_c00025{height:64.546875px;}
.h0_c00025{height:1263.000000px;}
.w1_c00025{width:892.500000px;}
.w0_c00025{width:892.830000px;}
.x0_c00025{left:0.000000px;}
.x2_c00025{left:127.620000px;}
.x3_c00025{left:148.950000px;}
.x1_c00025{left:704.880000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls8_c00025{letter-spacing:-0.070400pt;}
.ls7_c00025{letter-spacing:-0.057600pt;}
.ls6_c00025{letter-spacing:-0.051200pt;}
.ls9_c00025{letter-spacing:-0.044800pt;}
.lsa_c00025{letter-spacing:-0.038400pt;}
.ls2_c00025{letter-spacing:-0.032000pt;}
.ls1_c00025{letter-spacing:-0.025600pt;}
.ls5_c00025{letter-spacing:-0.019200pt;}
.ls3_c00025{letter-spacing:-0.012800pt;}
.ls4_c00025{letter-spacing:-0.006400pt;}
.ls0_c00025{letter-spacing:0.000000pt;}
.ws7_c00025{word-spacing:-4.256000pt;}
.ws6_c00025{word-spacing:-4.236800pt;}
.ws1a_c00025{word-spacing:-3.718400pt;}
.ws1b_c00025{word-spacing:-3.673600pt;}
.ws2a_c00025{word-spacing:-2.361600pt;}
.ws21_c00025{word-spacing:-2.080000pt;}
.ws2e_c00025{word-spacing:-0.480000pt;}
.ws17_c00025{word-spacing:-0.473600pt;}
.ws2f_c00025{word-spacing:-0.448000pt;}
.ws16_c00025{word-spacing:-0.396800pt;}
.ws0_c00025{word-spacing:0.000000pt;}
.ws9_c00025{word-spacing:0.115200pt;}
.ws15_c00025{word-spacing:0.147200pt;}
.ws29_c00025{word-spacing:0.160000pt;}
.wsf_c00025{word-spacing:0.166400pt;}
.wsa_c00025{word-spacing:0.192000pt;}
.ws28_c00025{word-spacing:0.243200pt;}
.ws1c_c00025{word-spacing:0.460800pt;}
.ws1d_c00025{word-spacing:0.480000pt;}
.ws10_c00025{word-spacing:1.427200pt;}
.ws2_c00025{word-spacing:3.020800pt;}
.ws1_c00025{word-spacing:3.046400pt;}
.ws3_c00025{word-spacing:3.052800pt;}
.ws2b_c00025{word-spacing:3.404800pt;}
.ws27_c00025{word-spacing:4.979200pt;}
.ws26_c00025{word-spacing:4.998400pt;}
.ws25_c00025{word-spacing:6.515200pt;}
.ws24_c00025{word-spacing:6.579200pt;}
.ws8_c00025{word-spacing:7.212800pt;}
.ws2c_c00025{word-spacing:8.096000pt;}
.ws2d_c00025{word-spacing:8.236800pt;}
.ws4_c00025{word-spacing:9.689600pt;}
.ws5_c00025{word-spacing:9.747200pt;}
.ws19_c00025{word-spacing:9.766400pt;}
.ws18_c00025{word-spacing:9.785600pt;}
.ws1e_c00025{word-spacing:12.000000pt;}
.ws12_c00025{word-spacing:13.600000pt;}
.ws11_c00025{word-spacing:13.638400pt;}
.wsc_c00025{word-spacing:14.233600pt;}
.wsb_c00025{word-spacing:14.246400pt;}
.wse_c00025{word-spacing:14.265600pt;}
.wsd_c00025{word-spacing:14.412800pt;}
.ws22_c00025{word-spacing:17.446400pt;}
.ws23_c00025{word-spacing:17.529600pt;}
.ws14_c00025{word-spacing:21.836800pt;}
.ws13_c00025{word-spacing:21.920000pt;}
.ws1f_c00025{word-spacing:35.366400pt;}
.ws20_c00025{word-spacing:35.385600pt;}
._0_c00025{width:1.088000pt;}
.fs0_c00025{font-size:64.000000pt;}
.y0_c00025{bottom:0.000000pt;}
.y2_c00025{bottom:41.627067pt;}
.y1_c00025{bottom:60.027067pt;}
.y20_c00025{bottom:132.027067pt;}
.y1f_c00025{bottom:150.427067pt;}
.y1e_c00025{bottom:168.827067pt;}
.y1d_c00025{bottom:187.227067pt;}
.y1c_c00025{bottom:205.627067pt;}
.y1b_c00025{bottom:249.227067pt;}
.y1a_c00025{bottom:292.827067pt;}
.y19_c00025{bottom:320.347067pt;}
.y18_c00025{bottom:347.947067pt;}
.y17_c00025{bottom:375.547067pt;}
.y16_c00025{bottom:403.147067pt;}
.y15_c00025{bottom:430.747067pt;}
.y14_c00025{bottom:458.347067pt;}
.y13_c00025{bottom:485.947067pt;}
.y12_c00025{bottom:513.547067pt;}
.y11_c00025{bottom:541.147067pt;}
.y10_c00025{bottom:568.747067pt;}
.yf_c00025{bottom:612.347067pt;}
.ye_c00025{bottom:639.947067pt;}
.yd_c00025{bottom:667.547067pt;}
.yc_c00025{bottom:695.147067pt;}
.yb_c00025{bottom:722.747067pt;}
.ya_c00025{bottom:766.347067pt;}
.y9_c00025{bottom:793.947067pt;}
.y8_c00025{bottom:821.547067pt;}
.y7_c00025{bottom:865.147067pt;}
.y6_c00025{bottom:892.747067pt;}
.y5_c00025{bottom:920.347067pt;}
.y4_c00025{bottom:947.947067pt;}
.y3_c00025{bottom:975.547067pt;}
.h1_c00025{height:56.156250pt;}
.h2_c00025{height:57.375000pt;}
.h0_c00025{height:1122.666667pt;}
.w1_c00025{width:793.333333pt;}
.w0_c00025{width:793.626667pt;}
.x0_c00025{left:0.000000pt;}
.x2_c00025{left:113.440000pt;}
.x3_c00025{left:132.400000pt;}
.x1_c00025{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b9e47771cf9126c303523440.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.093262;font-style:normal;font-weight:normal;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_9b029076f9935b4b82c12b82.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.106934;font-style:normal;font-weight:normal;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_4283059c3c92a754ce775fe2.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsa_c00026{letter-spacing:-0.201600px;}
.ls6_c00026{letter-spacing:-0.072000px;}
.lsb_c00026{letter-spacing:-0.064800px;}
.lsc_c00026{letter-spacing:-0.057600px;}
.ls9_c00026{letter-spacing:-0.050400px;}
.ls4_c00026{letter-spacing:-0.043200px;}
.ls5_c00026{letter-spacing:-0.036000px;}
.ls2_c00026{letter-spacing:-0.028800px;}
.ls8_c00026{letter-spacing:-0.021600px;}
.ls3_c00026{letter-spacing:-0.014400px;}
.ls7_c00026{letter-spacing:-0.007200px;}
.ls1_c00026{letter-spacing:0.000000px;}
.lsd_c00026{letter-spacing:0.007200px;}
.ls0_c00026{letter-spacing:0.014400px;}
.lse_c00026{letter-spacing:0.144000px;}
.sc__c00026{text-shadow:none;}
.sc0_c00026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00026{-webkit-text-stroke:0px transparent;}
.sc0_c00026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00026{word-spacing:-19.994400px;}
.ws1a_c00026{word-spacing:-4.111200px;}
.ws22_c00026{word-spacing:-2.152800px;}
.ws21_c00026{word-spacing:-2.016000px;}
.ws20_c00026{word-spacing:-1.980000px;}
.ws1_c00026{word-spacing:0.000000px;}
.ws23_c00026{word-spacing:0.093600px;}
.ws2a_c00026{word-spacing:0.151200px;}
.ws33_c00026{word-spacing:0.180000px;}
.ws19_c00026{word-spacing:0.194400px;}
.ws29_c00026{word-spacing:0.302400px;}
.ws15_c00026{word-spacing:0.540000px;}
.ws16_c00026{word-spacing:0.568800px;}
.ws2c_c00026{word-spacing:0.892800px;}
.ws2b_c00026{word-spacing:0.986400px;}
.ws10_c00026{word-spacing:2.001600px;}
.ws2_c00026{word-spacing:2.613600px;}
.ws3_c00026{word-spacing:2.793600px;}
.ws1e_c00026{word-spacing:3.434400px;}
.ws1f_c00026{word-spacing:3.456000px;}
.wsc_c00026{word-spacing:6.660000px;}
.wsd_c00026{word-spacing:6.760800px;}
.ws32_c00026{word-spacing:7.545600px;}
.ws31_c00026{word-spacing:7.754400px;}
.ws17_c00026{word-spacing:8.755200px;}
.ws2f_c00026{word-spacing:8.812800px;}
.ws18_c00026{word-spacing:8.834400px;}
.ws30_c00026{word-spacing:8.899200px;}
.ws4_c00026{word-spacing:9.172800px;}
.ws5_c00026{word-spacing:9.201600px;}
.ws6_c00026{word-spacing:9.273600px;}
.ws1c_c00026{word-spacing:9.885600px;}
.ws1b_c00026{word-spacing:9.907200px;}
.ws25_c00026{word-spacing:10.137600px;}
.ws24_c00026{word-spacing:10.209600px;}
.ws7_c00026{word-spacing:12.801600px;}
.ws1d_c00026{word-spacing:13.183200px;}
.wse_c00026{word-spacing:13.521600px;}
.wsf_c00026{word-spacing:13.694400px;}
.ws8_c00026{word-spacing:16.682400px;}
.ws9_c00026{word-spacing:16.790400px;}
.wsa_c00026{word-spacing:18.547200px;}
.wsb_c00026{word-spacing:18.612000px;}
.ws28_c00026{word-spacing:18.914400px;}
.ws27_c00026{word-spacing:18.943200px;}
.ws14_c00026{word-spacing:24.256800px;}
.ws13_c00026{word-spacing:24.321600px;}
.ws2d_c00026{word-spacing:24.652800px;}
.ws2e_c00026{word-spacing:24.667200px;}
.ws12_c00026{word-spacing:28.612800px;}
.ws11_c00026{word-spacing:28.641600px;}
.ws26_c00026{word-spacing:49.176000px;}
._0_c00026{width:1.008000px;}
.fc0_c00026{color:rgb(0,0,0);}
.fs0_c00026{font-size:72.000000px;}
.y0_c00026{bottom:0.000000px;}
.y2_c00026{bottom:46.830450px;}
.y1_c00026{bottom:67.530450px;}
.y21_c00026{bottom:184.530450px;}
.y20_c00026{bottom:215.580450px;}
.y1f_c00026{bottom:246.630450px;}
.y1e_c00026{bottom:277.680450px;}
.y1d_c00026{bottom:308.730450px;}
.y1c_c00026{bottom:338.430450px;}
.y1b_c00026{bottom:368.040450px;}
.y1a_c00026{bottom:397.740450px;}
.y19_c00026{bottom:418.440450px;}
.y18_c00026{bottom:439.140450px;}
.y17_c00026{bottom:459.840450px;}
.y16_c00026{bottom:499.890450px;}
.y15_c00026{bottom:530.940450px;}
.y14_c00026{bottom:561.990450px;}
.y13_c00026{bottom:593.040450px;}
.y12_c00026{bottom:624.090450px;}
.y11_c00026{bottom:655.140450px;}
.y10_c00026{bottom:695.190450px;}
.yf_c00026{bottom:726.240450px;}
.ye_c00026{bottom:757.290450px;}
.yd_c00026{bottom:788.340450px;}
.yc_c00026{bottom:819.390450px;}
.yb_c00026{bottom:850.440450px;}
.ya_c00026{bottom:881.490450px;}
.y9_c00026{bottom:912.540450px;}
.y8_c00026{bottom:943.590450px;}
.y7_c00026{bottom:974.640450px;}
.y6_c00026{bottom:1005.690450px;}
.y5_c00026{bottom:1036.740450px;}
.y4_c00026{bottom:1067.790450px;}
.y3_c00026{bottom:1097.490450px;}
.h1_c00026{height:63.175781px;}
.h2_c00026{height:64.546875px;}
.h3_c00026{height:75.093750px;}
.h0_c00026{height:1263.000000px;}
.w1_c00026{width:892.500000px;}
.w0_c00026{width:892.830000px;}
.x0_c00026{left:0.000000px;}
.x2_c00026{left:170.100000px;}
.x3_c00026{left:191.430000px;}
.x1_c00026{left:747.360000px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.lsa_c00026{letter-spacing:-0.179200pt;}
.ls6_c00026{letter-spacing:-0.064000pt;}
.lsb_c00026{letter-spacing:-0.057600pt;}
.lsc_c00026{letter-spacing:-0.051200pt;}
.ls9_c00026{letter-spacing:-0.044800pt;}
.ls4_c00026{letter-spacing:-0.038400pt;}
.ls5_c00026{letter-spacing:-0.032000pt;}
.ls2_c00026{letter-spacing:-0.025600pt;}
.ls8_c00026{letter-spacing:-0.019200pt;}
.ls3_c00026{letter-spacing:-0.012800pt;}
.ls7_c00026{letter-spacing:-0.006400pt;}
.ls1_c00026{letter-spacing:0.000000pt;}
.lsd_c00026{letter-spacing:0.006400pt;}
.ls0_c00026{letter-spacing:0.012800pt;}
.lse_c00026{letter-spacing:0.128000pt;}
.ws0_c00026{word-spacing:-17.772800pt;}
.ws1a_c00026{word-spacing:-3.654400pt;}
.ws22_c00026{word-spacing:-1.913600pt;}
.ws21_c00026{word-spacing:-1.792000pt;}
.ws20_c00026{word-spacing:-1.760000pt;}
.ws1_c00026{word-spacing:0.000000pt;}
.ws23_c00026{word-spacing:0.083200pt;}
.ws2a_c00026{word-spacing:0.134400pt;}
.ws33_c00026{word-spacing:0.160000pt;}
.ws19_c00026{word-spacing:0.172800pt;}
.ws29_c00026{word-spacing:0.268800pt;}
.ws15_c00026{word-spacing:0.480000pt;}
.ws16_c00026{word-spacing:0.505600pt;}
.ws2c_c00026{word-spacing:0.793600pt;}
.ws2b_c00026{word-spacing:0.876800pt;}
.ws10_c00026{word-spacing:1.779200pt;}
.ws2_c00026{word-spacing:2.323200pt;}
.ws3_c00026{word-spacing:2.483200pt;}
.ws1e_c00026{word-spacing:3.052800pt;}
.ws1f_c00026{word-spacing:3.072000pt;}
.wsc_c00026{word-spacing:5.920000pt;}
.wsd_c00026{word-spacing:6.009600pt;}
.ws32_c00026{word-spacing:6.707200pt;}
.ws31_c00026{word-spacing:6.892800pt;}
.ws17_c00026{word-spacing:7.782400pt;}
.ws2f_c00026{word-spacing:7.833600pt;}
.ws18_c00026{word-spacing:7.852800pt;}
.ws30_c00026{word-spacing:7.910400pt;}
.ws4_c00026{word-spacing:8.153600pt;}
.ws5_c00026{word-spacing:8.179200pt;}
.ws6_c00026{word-spacing:8.243200pt;}
.ws1c_c00026{word-spacing:8.787200pt;}
.ws1b_c00026{word-spacing:8.806400pt;}
.ws25_c00026{word-spacing:9.011200pt;}
.ws24_c00026{word-spacing:9.075200pt;}
.ws7_c00026{word-spacing:11.379200pt;}
.ws1d_c00026{word-spacing:11.718400pt;}
.wse_c00026{word-spacing:12.019200pt;}
.wsf_c00026{word-spacing:12.172800pt;}
.ws8_c00026{word-spacing:14.828800pt;}
.ws9_c00026{word-spacing:14.924800pt;}
.wsa_c00026{word-spacing:16.486400pt;}
.wsb_c00026{word-spacing:16.544000pt;}
.ws28_c00026{word-spacing:16.812800pt;}
.ws27_c00026{word-spacing:16.838400pt;}
.ws14_c00026{word-spacing:21.561600pt;}
.ws13_c00026{word-spacing:21.619200pt;}
.ws2d_c00026{word-spacing:21.913600pt;}
.ws2e_c00026{word-spacing:21.926400pt;}
.ws12_c00026{word-spacing:25.433600pt;}
.ws11_c00026{word-spacing:25.459200pt;}
.ws26_c00026{word-spacing:43.712000pt;}
._0_c00026{width:0.896000pt;}
.fs0_c00026{font-size:64.000000pt;}
.y0_c00026{bottom:0.000000pt;}
.y2_c00026{bottom:41.627067pt;}
.y1_c00026{bottom:60.027067pt;}
.y21_c00026{bottom:164.027067pt;}
.y20_c00026{bottom:191.627067pt;}
.y1f_c00026{bottom:219.227067pt;}
.y1e_c00026{bottom:246.827067pt;}
.y1d_c00026{bottom:274.427067pt;}
.y1c_c00026{bottom:300.827067pt;}
.y1b_c00026{bottom:327.147067pt;}
.y1a_c00026{bottom:353.547067pt;}
.y19_c00026{bottom:371.947067pt;}
.y18_c00026{bottom:390.347067pt;}
.y17_c00026{bottom:408.747067pt;}
.y16_c00026{bottom:444.347067pt;}
.y15_c00026{bottom:471.947067pt;}
.y14_c00026{bottom:499.547067pt;}
.y13_c00026{bottom:527.147067pt;}
.y12_c00026{bottom:554.747067pt;}
.y11_c00026{bottom:582.347067pt;}
.y10_c00026{bottom:617.947067pt;}
.yf_c00026{bottom:645.547067pt;}
.ye_c00026{bottom:673.147067pt;}
.yd_c00026{bottom:700.747067pt;}
.yc_c00026{bottom:728.347067pt;}
.yb_c00026{bottom:755.947067pt;}
.ya_c00026{bottom:783.547067pt;}
.y9_c00026{bottom:811.147067pt;}
.y8_c00026{bottom:838.747067pt;}
.y7_c00026{bottom:866.347067pt;}
.y6_c00026{bottom:893.947067pt;}
.y5_c00026{bottom:921.547067pt;}
.y4_c00026{bottom:949.147067pt;}
.y3_c00026{bottom:975.547067pt;}
.h1_c00026{height:56.156250pt;}
.h2_c00026{height:57.375000pt;}
.h3_c00026{height:66.750000pt;}
.h0_c00026{height:1122.666667pt;}
.w1_c00026{width:793.333333pt;}
.w0_c00026{width:793.626667pt;}
.x0_c00026{left:0.000000pt;}
.x2_c00026{left:151.200000pt;}
.x3_c00026{left:170.160000pt;}
.x1_c00026{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a04d97c1253ff93f5c0f65e2.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.093262;font-style:normal;font-weight:normal;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_1be078b913a9d5129f85e403.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.106934;font-style: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;}
.lsb_c00027{letter-spacing:-0.093600px;}
.lsa_c00027{letter-spacing:-0.072000px;}
.lsc_c00027{letter-spacing:-0.064800px;}
.ls9_c00027{letter-spacing:-0.057600px;}
.ls2_c00027{letter-spacing:-0.050400px;}
.ls7_c00027{letter-spacing:-0.043200px;}
.ls4_c00027{letter-spacing:-0.036000px;}
.ls6_c00027{letter-spacing:-0.028800px;}
.ls5_c00027{letter-spacing:-0.021600px;}
.ls3_c00027{letter-spacing:-0.014400px;}
.ls8_c00027{letter-spacing:-0.007200px;}
.ls1_c00027{letter-spacing:0.000000px;}
.ls0_c00027{letter-spacing:0.007200px;}
.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;}
}
.ws10_c00027{word-spacing:-4.154400px;}
.ws11_c00027{word-spacing:-3.952800px;}
.wsa_c00027{word-spacing:-3.427200px;}
.ws1d_c00027{word-spacing:-3.412800px;}
.wsb_c00027{word-spacing:-3.398400px;}
.ws1e_c00027{word-spacing:-3.348000px;}
.ws15_c00027{word-spacing:-2.001600px;}
.ws14_c00027{word-spacing:-1.965600px;}
.ws26_c00027{word-spacing:-0.878400px;}
.ws27_c00027{word-spacing:-0.849600px;}
.ws0_c00027{word-spacing:0.000000px;}
.ws25_c00027{word-spacing:0.093600px;}
.wse_c00027{word-spacing:0.108000px;}
.ws37_c00027{word-spacing:0.165600px;}
.ws1c_c00027{word-spacing:0.172800px;}
.ws24_c00027{word-spacing:0.201600px;}
.ws2f_c00027{word-spacing:0.223200px;}
.ws2e_c00027{word-spacing:0.280800px;}
.wsf_c00027{word-spacing:1.274400px;}
.ws35_c00027{word-spacing:1.620000px;}
.wsc_c00027{word-spacing:3.434400px;}
.wsd_c00027{word-spacing:3.441600px;}
.ws19_c00027{word-spacing:3.477600px;}
.ws18_c00027{word-spacing:3.499200px;}
.ws8_c00027{word-spacing:3.787200px;}
.ws7_c00027{word-spacing:3.808800px;}
.ws5_c00027{word-spacing:4.471200px;}
.ws6_c00027{word-spacing:4.500000px;}
.ws2_c00027{word-spacing:4.917600px;}
.ws4_c00027{word-spacing:5.234400px;}
.ws3_c00027{word-spacing:5.270400px;}
.ws13_c00027{word-spacing:11.253600px;}
.ws30_c00027{word-spacing:11.347200px;}
.ws31_c00027{word-spacing:11.368800px;}
.ws12_c00027{word-spacing:11.376000px;}
.ws36_c00027{word-spacing:11.750400px;}
.ws32_c00027{word-spacing:13.010400px;}
.ws33_c00027{word-spacing:13.161600px;}
.ws9_c00027{word-spacing:15.703200px;}
.ws1_c00027{word-spacing:15.998400px;}
.ws2c_c00027{word-spacing:20.260800px;}
.ws2d_c00027{word-spacing:20.304000px;}
.ws1a_c00027{word-spacing:21.081600px;}
.ws1b_c00027{word-spacing:21.110400px;}
.ws29_c00027{word-spacing:21.765600px;}
.ws28_c00027{word-spacing:21.780000px;}
.ws17_c00027{word-spacing:26.431200px;}
.ws16_c00027{word-spacing:26.474400px;}
.ws21_c00027{word-spacing:29.692800px;}
.ws1f_c00027{word-spacing:32.954400px;}
.ws20_c00027{word-spacing:33.112800px;}
.ws2a_c00027{word-spacing:40.888800px;}
.ws2b_c00027{word-spacing:40.903200px;}
.ws34_c00027{word-spacing:48.787200px;}
.ws23_c00027{word-spacing:66.988800px;}
.ws22_c00027{word-spacing:67.132800px;}
._0_c00027{width:1.080000px;}
.fc0_c00027{color:rgb(0,0,0);}
.fs0_c00027{font-size:72.000000px;}
.y0_c00027{bottom:0.000000px;}
.y2_c00027{bottom:46.830450px;}
.y1_c00027{bottom:67.530450px;}
.y24_c00027{bottom:172.830450px;}
.y23_c00027{bottom:203.880450px;}
.y22_c00027{bottom:234.930450px;}
.y21_c00027{bottom:265.980450px;}
.y20_c00027{bottom:297.030450px;}
.y1f_c00027{bottom:328.080450px;}
.y1e_c00027{bottom:368.040450px;}
.y1d_c00027{bottom:399.090450px;}
.y1c_c00027{bottom:430.140450px;}
.y1b_c00027{bottom:461.190450px;}
.y1a_c00027{bottom:492.240450px;}
.y19_c00027{bottom:521.940450px;}
.y18_c00027{bottom:551.640450px;}
.y17_c00027{bottom:572.340450px;}
.y16_c00027{bottom:593.040450px;}
.y15_c00027{bottom:613.740450px;}
.y14_c00027{bottom:634.440450px;}
.y13_c00027{bottom:655.140450px;}
.y12_c00027{bottom:675.840450px;}
.y11_c00027{bottom:696.540450px;}
.y10_c00027{bottom:717.240450px;}
.yf_c00027{bottom:737.940450px;}
.ye_c00027{bottom:758.640450px;}
.yd_c00027{bottom:779.340450px;}
.yc_c00027{bottom:800.040450px;}
.yb_c00027{bottom:840.090450px;}
.ya_c00027{bottom:871.140450px;}
.y9_c00027{bottom:911.190450px;}
.y8_c00027{bottom:942.240450px;}
.y7_c00027{bottom:973.290450px;}
.y6_c00027{bottom:1004.340450px;}
.y5_c00027{bottom:1035.390450px;}
.y4_c00027{bottom:1066.440450px;}
.y3_c00027{bottom:1097.490450px;}
.h1_c00027{height:63.175781px;}
.h2_c00027{height:64.546875px;}
.h0_c00027{height:1263.000000px;}
.w1_c00027{width:892.500000px;}
.w0_c00027{width:892.830000px;}
.x0_c00027{left:0.000000px;}
.x2_c00027{left:127.620000px;}
.x3_c00027{left:148.950000px;}
.x1_c00027{left:704.880000px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.lsb_c00027{letter-spacing:-0.083200pt;}
.lsa_c00027{letter-spacing:-0.064000pt;}
.lsc_c00027{letter-spacing:-0.057600pt;}
.ls9_c00027{letter-spacing:-0.051200pt;}
.ls2_c00027{letter-spacing:-0.044800pt;}
.ls7_c00027{letter-spacing:-0.038400pt;}
.ls4_c00027{letter-spacing:-0.032000pt;}
.ls6_c00027{letter-spacing:-0.025600pt;}
.ls5_c00027{letter-spacing:-0.019200pt;}
.ls3_c00027{letter-spacing:-0.012800pt;}
.ls8_c00027{letter-spacing:-0.006400pt;}
.ls1_c00027{letter-spacing:0.000000pt;}
.ls0_c00027{letter-spacing:0.006400pt;}
.ws10_c00027{word-spacing:-3.692800pt;}
.ws11_c00027{word-spacing:-3.513600pt;}
.wsa_c00027{word-spacing:-3.046400pt;}
.ws1d_c00027{word-spacing:-3.033600pt;}
.wsb_c00027{word-spacing:-3.020800pt;}
.ws1e_c00027{word-spacing:-2.976000pt;}
.ws15_c00027{word-spacing:-1.779200pt;}
.ws14_c00027{word-spacing:-1.747200pt;}
.ws26_c00027{word-spacing:-0.780800pt;}
.ws27_c00027{word-spacing:-0.755200pt;}
.ws0_c00027{word-spacing:0.000000pt;}
.ws25_c00027{word-spacing:0.083200pt;}
.wse_c00027{word-spacing:0.096000pt;}
.ws37_c00027{word-spacing:0.147200pt;}
.ws1c_c00027{word-spacing:0.153600pt;}
.ws24_c00027{word-spacing:0.179200pt;}
.ws2f_c00027{word-spacing:0.198400pt;}
.ws2e_c00027{word-spacing:0.249600pt;}
.wsf_c00027{word-spacing:1.132800pt;}
.ws35_c00027{word-spacing:1.440000pt;}
.wsc_c00027{word-spacing:3.052800pt;}
.wsd_c00027{word-spacing:3.059200pt;}
.ws19_c00027{word-spacing:3.091200pt;}
.ws18_c00027{word-spacing:3.110400pt;}
.ws8_c00027{word-spacing:3.366400pt;}
.ws7_c00027{word-spacing:3.385600pt;}
.ws5_c00027{word-spacing:3.974400pt;}
.ws6_c00027{word-spacing:4.000000pt;}
.ws2_c00027{word-spacing:4.371200pt;}
.ws4_c00027{word-spacing:4.652800pt;}
.ws3_c00027{word-spacing:4.684800pt;}
.ws13_c00027{word-spacing:10.003200pt;}
.ws30_c00027{word-spacing:10.086400pt;}
.ws31_c00027{word-spacing:10.105600pt;}
.ws12_c00027{word-spacing:10.112000pt;}
.ws36_c00027{word-spacing:10.444800pt;}
.ws32_c00027{word-spacing:11.564800pt;}
.ws33_c00027{word-spacing:11.699200pt;}
.ws9_c00027{word-spacing:13.958400pt;}
.ws1_c00027{word-spacing:14.220800pt;}
.ws2c_c00027{word-spacing:18.009600pt;}
.ws2d_c00027{word-spacing:18.048000pt;}
.ws1a_c00027{word-spacing:18.739200pt;}
.ws1b_c00027{word-spacing:18.764800pt;}
.ws29_c00027{word-spacing:19.347200pt;}
.ws28_c00027{word-spacing:19.360000pt;}
.ws17_c00027{word-spacing:23.494400pt;}
.ws16_c00027{word-spacing:23.532800pt;}
.ws21_c00027{word-spacing:26.393600pt;}
.ws1f_c00027{word-spacing:29.292800pt;}
.ws20_c00027{word-spacing:29.433600pt;}
.ws2a_c00027{word-spacing:36.345600pt;}
.ws2b_c00027{word-spacing:36.358400pt;}
.ws34_c00027{word-spacing:43.366400pt;}
.ws23_c00027{word-spacing:59.545600pt;}
.ws22_c00027{word-spacing:59.673600pt;}
._0_c00027{width:0.960000pt;}
.fs0_c00027{font-size:64.000000pt;}
.y0_c00027{bottom:0.000000pt;}
.y2_c00027{bottom:41.627067pt;}
.y1_c00027{bottom:60.027067pt;}
.y24_c00027{bottom:153.627067pt;}
.y23_c00027{bottom:181.227067pt;}
.y22_c00027{bottom:208.827067pt;}
.y21_c00027{bottom:236.427067pt;}
.y20_c00027{bottom:264.027067pt;}
.y1f_c00027{bottom:291.627067pt;}
.y1e_c00027{bottom:327.147067pt;}
.y1d_c00027{bottom:354.747067pt;}
.y1c_c00027{bottom:382.347067pt;}
.y1b_c00027{bottom:409.947067pt;}
.y1a_c00027{bottom:437.547067pt;}
.y19_c00027{bottom:463.947067pt;}
.y18_c00027{bottom:490.347067pt;}
.y17_c00027{bottom:508.747067pt;}
.y16_c00027{bottom:527.147067pt;}
.y15_c00027{bottom:545.547067pt;}
.y14_c00027{bottom:563.947067pt;}
.y13_c00027{bottom:582.347067pt;}
.y12_c00027{bottom:600.747067pt;}
.y11_c00027{bottom:619.147067pt;}
.y10_c00027{bottom:637.547067pt;}
.yf_c00027{bottom:655.947067pt;}
.ye_c00027{bottom:674.347067pt;}
.yd_c00027{bottom:692.747067pt;}
.yc_c00027{bottom:711.147067pt;}
.yb_c00027{bottom:746.747067pt;}
.ya_c00027{bottom:774.347067pt;}
.y9_c00027{bottom:809.947067pt;}
.y8_c00027{bottom:837.547067pt;}
.y7_c00027{bottom:865.147067pt;}
.y6_c00027{bottom:892.747067pt;}
.y5_c00027{bottom:920.347067pt;}
.y4_c00027{bottom:947.947067pt;}
.y3_c00027{bottom:975.547067pt;}
.h1_c00027{height:56.156250pt;}
.h2_c00027{height:57.375000pt;}
.h0_c00027{height:1122.666667pt;}
.w1_c00027{width:793.333333pt;}
.w0_c00027{width:793.626667pt;}
.x0_c00027{left:0.000000pt;}
.x2_c00027{left:113.440000pt;}
.x3_c00027{left:132.400000pt;}
.x1_c00027{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2fa2b86a0003f6ddf2c8cd37.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.093262;font-style:normal;font-weight:normal;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_671f89e5f0bb9fc5cb178e97.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.106934;font-style:normal;font-weight:normal;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_f61b415006c5dc5dade8d905.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00028;src:url('chunks/assets/font_165960963b057a07c70b6806.woff2')format("woff");}.ff4_c00028{font-family:ff4_c00028;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsf_c00028{letter-spacing:-0.100800px;}
.lsb_c00028{letter-spacing:-0.079200px;}
.lsd_c00028{letter-spacing:-0.072000px;}
.ls4_c00028{letter-spacing:-0.064800px;}
.lsc_c00028{letter-spacing:-0.057600px;}
.ls9_c00028{letter-spacing:-0.050400px;}
.ls3_c00028{letter-spacing:-0.043200px;}
.ls7_c00028{letter-spacing:-0.036000px;}
.ls5_c00028{letter-spacing:-0.028800px;}
.ls8_c00028{letter-spacing:-0.021600px;}
.ls6_c00028{letter-spacing:-0.014400px;}
.lsa_c00028{letter-spacing:-0.007200px;}
.ls2_c00028{letter-spacing:0.000000px;}
.ls0_c00028{letter-spacing:0.050400px;}
.ls1_c00028{letter-spacing:0.144000px;}
.ls10_c00028{letter-spacing:0.151200px;}
.lse_c00028{letter-spacing:0.504000px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00028{word-spacing:-19.944000px;}
.ws1_c00028{word-spacing:-19.915200px;}
.ws19_c00028{word-spacing:-3.412800px;}
.ws18_c00028{word-spacing:-3.398400px;}
.ws11_c00028{word-spacing:-0.525600px;}
.ws16_c00028{word-spacing:-0.158400px;}
.ws17_c00028{word-spacing:-0.151200px;}
.wsa_c00028{word-spacing:-0.007200px;}
.ws2_c00028{word-spacing:0.000000px;}
.wsb_c00028{word-spacing:0.100800px;}
.ws9_c00028{word-spacing:0.158400px;}
.ws33_c00028{word-spacing:0.172800px;}
.ws15_c00028{word-spacing:0.180000px;}
.wsc_c00028{word-spacing:0.187200px;}
.ws2f_c00028{word-spacing:0.259200px;}
.ws2a_c00028{word-spacing:0.547200px;}
.ws29_c00028{word-spacing:0.576000px;}
.ws30_c00028{word-spacing:1.281600px;}
.ws24_c00028{word-spacing:1.699200px;}
.ws14_c00028{word-spacing:2.685600px;}
.ws13_c00028{word-spacing:2.772000px;}
.ws2d_c00028{word-spacing:3.398400px;}
.ws6_c00028{word-spacing:3.412800px;}
.ws5_c00028{word-spacing:3.427200px;}
.ws2e_c00028{word-spacing:3.434400px;}
.ws31_c00028{word-spacing:4.867200px;}
.ws12_c00028{word-spacing:4.903200px;}
.ws32_c00028{word-spacing:4.946400px;}
.ws28_c00028{word-spacing:6.645600px;}
.ws27_c00028{word-spacing:6.688800px;}
.ws37_c00028{word-spacing:7.725600px;}
.ws36_c00028{word-spacing:7.855200px;}
.ws3_c00028{word-spacing:10.641600px;}
.ws4_c00028{word-spacing:10.663200px;}
.ws1b_c00028{word-spacing:11.685600px;}
.ws1a_c00028{word-spacing:11.757600px;}
.ws1c_c00028{word-spacing:14.227200px;}
.ws34_c00028{word-spacing:18.892800px;}
.ws35_c00028{word-spacing:18.914400px;}
.ws7_c00028{word-spacing:19.627200px;}
.ws8_c00028{word-spacing:19.634400px;}
.ws21_c00028{word-spacing:20.304000px;}
.ws20_c00028{word-spacing:20.397600px;}
.ws39_c00028{word-spacing:22.125600px;}
.ws38_c00028{word-spacing:22.168800px;}
.ws22_c00028{word-spacing:22.881600px;}
.ws23_c00028{word-spacing:22.932000px;}
.ws10_c00028{word-spacing:24.163200px;}
.wsf_c00028{word-spacing:24.256800px;}
.ws2c_c00028{word-spacing:24.667200px;}
.ws2b_c00028{word-spacing:24.724800px;}
.ws1f_c00028{word-spacing:28.908000px;}
.ws1d_c00028{word-spacing:28.994400px;}
.ws1e_c00028{word-spacing:29.073600px;}
.wsd_c00028{word-spacing:33.638400px;}
.wse_c00028{word-spacing:33.660000px;}
.ws26_c00028{word-spacing:37.627200px;}
.ws25_c00028{word-spacing:37.648800px;}
._1_c00028{margin-left:-1.245600px;}
._0_c00028{width:1.108800px;}
.fc0_c00028{color:rgb(0,0,0);}
.fs0_c00028{font-size:72.000000px;}
.y0_c00028{bottom:0.000000px;}
.y2_c00028{bottom:46.830450px;}
.y1_c00028{bottom:67.530450px;}
.y21_c00028{bottom:162.480450px;}
.y20_c00028{bottom:193.530450px;}
.y1f_c00028{bottom:224.580450px;}
.y1e_c00028{bottom:264.630450px;}
.y1d_c00028{bottom:295.680450px;}
.y1c_c00028{bottom:326.730450px;}
.y1b_c00028{bottom:366.690450px;}
.y1a_c00028{bottom:397.740450px;}
.y19_c00028{bottom:428.790450px;}
.y18_c00028{bottom:459.840450px;}
.y17_c00028{bottom:490.890450px;}
.y16_c00028{bottom:521.940450px;}
.y15_c00028{bottom:552.990450px;}
.y14_c00028{bottom:584.040450px;}
.y13_c00028{bottom:615.090450px;}
.y12_c00028{bottom:646.140450px;}
.y11_c00028{bottom:677.190450px;}
.y10_c00028{bottom:708.240450px;}
.yf_c00028{bottom:739.290450px;}
.ye_c00028{bottom:770.340450px;}
.yd_c00028{bottom:810.390450px;}
.yc_c00028{bottom:841.440450px;}
.yb_c00028{bottom:872.490450px;}
.ya_c00028{bottom:903.540450px;}
.y9_c00028{bottom:934.590450px;}
.y8_c00028{bottom:965.640450px;}
.y7_c00028{bottom:996.690450px;}
.y6_c00028{bottom:1035.390450px;}
.y5_c00028{bottom:1056.090450px;}
.y4_c00028{bottom:1076.790450px;}
.y3_c00028{bottom:1097.490450px;}
.h1_c00028{height:63.175781px;}
.h2_c00028{height:64.546875px;}
.h3_c00028{height:75.093750px;}
.h0_c00028{height:1263.000000px;}
.w1_c00028{width:892.500000px;}
.w0_c00028{width:892.830000px;}
.x0_c00028{left:0.000000px;}
.x2_c00028{left:170.100000px;}
.x3_c00028{left:191.430000px;}
.x1_c00028{left:747.360000px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.lsf_c00028{letter-spacing:-0.089600pt;}
.lsb_c00028{letter-spacing:-0.070400pt;}
.lsd_c00028{letter-spacing:-0.064000pt;}
.ls4_c00028{letter-spacing:-0.057600pt;}
.lsc_c00028{letter-spacing:-0.051200pt;}
.ls9_c00028{letter-spacing:-0.044800pt;}
.ls3_c00028{letter-spacing:-0.038400pt;}
.ls7_c00028{letter-spacing:-0.032000pt;}
.ls5_c00028{letter-spacing:-0.025600pt;}
.ls8_c00028{letter-spacing:-0.019200pt;}
.ls6_c00028{letter-spacing:-0.012800pt;}
.lsa_c00028{letter-spacing:-0.006400pt;}
.ls2_c00028{letter-spacing:0.000000pt;}
.ls0_c00028{letter-spacing:0.044800pt;}
.ls1_c00028{letter-spacing:0.128000pt;}
.ls10_c00028{letter-spacing:0.134400pt;}
.lse_c00028{letter-spacing:0.448000pt;}
.ws0_c00028{word-spacing:-17.728000pt;}
.ws1_c00028{word-spacing:-17.702400pt;}
.ws19_c00028{word-spacing:-3.033600pt;}
.ws18_c00028{word-spacing:-3.020800pt;}
.ws11_c00028{word-spacing:-0.467200pt;}
.ws16_c00028{word-spacing:-0.140800pt;}
.ws17_c00028{word-spacing:-0.134400pt;}
.wsa_c00028{word-spacing:-0.006400pt;}
.ws2_c00028{word-spacing:0.000000pt;}
.wsb_c00028{word-spacing:0.089600pt;}
.ws9_c00028{word-spacing:0.140800pt;}
.ws33_c00028{word-spacing:0.153600pt;}
.ws15_c00028{word-spacing:0.160000pt;}
.wsc_c00028{word-spacing:0.166400pt;}
.ws2f_c00028{word-spacing:0.230400pt;}
.ws2a_c00028{word-spacing:0.486400pt;}
.ws29_c00028{word-spacing:0.512000pt;}
.ws30_c00028{word-spacing:1.139200pt;}
.ws24_c00028{word-spacing:1.510400pt;}
.ws14_c00028{word-spacing:2.387200pt;}
.ws13_c00028{word-spacing:2.464000pt;}
.ws2d_c00028{word-spacing:3.020800pt;}
.ws6_c00028{word-spacing:3.033600pt;}
.ws5_c00028{word-spacing:3.046400pt;}
.ws2e_c00028{word-spacing:3.052800pt;}
.ws31_c00028{word-spacing:4.326400pt;}
.ws12_c00028{word-spacing:4.358400pt;}
.ws32_c00028{word-spacing:4.396800pt;}
.ws28_c00028{word-spacing:5.907200pt;}
.ws27_c00028{word-spacing:5.945600pt;}
.ws37_c00028{word-spacing:6.867200pt;}
.ws36_c00028{word-spacing:6.982400pt;}
.ws3_c00028{word-spacing:9.459200pt;}
.ws4_c00028{word-spacing:9.478400pt;}
.ws1b_c00028{word-spacing:10.387200pt;}
.ws1a_c00028{word-spacing:10.451200pt;}
.ws1c_c00028{word-spacing:12.646400pt;}
.ws34_c00028{word-spacing:16.793600pt;}
.ws35_c00028{word-spacing:16.812800pt;}
.ws7_c00028{word-spacing:17.446400pt;}
.ws8_c00028{word-spacing:17.452800pt;}
.ws21_c00028{word-spacing:18.048000pt;}
.ws20_c00028{word-spacing:18.131200pt;}
.ws39_c00028{word-spacing:19.667200pt;}
.ws38_c00028{word-spacing:19.705600pt;}
.ws22_c00028{word-spacing:20.339200pt;}
.ws23_c00028{word-spacing:20.384000pt;}
.ws10_c00028{word-spacing:21.478400pt;}
.wsf_c00028{word-spacing:21.561600pt;}
.ws2c_c00028{word-spacing:21.926400pt;}
.ws2b_c00028{word-spacing:21.977600pt;}
.ws1f_c00028{word-spacing:25.696000pt;}
.ws1d_c00028{word-spacing:25.772800pt;}
.ws1e_c00028{word-spacing:25.843200pt;}
.wsd_c00028{word-spacing:29.900800pt;}
.wse_c00028{word-spacing:29.920000pt;}
.ws26_c00028{word-spacing:33.446400pt;}
.ws25_c00028{word-spacing:33.465600pt;}
._1_c00028{margin-left:-1.107200pt;}
._0_c00028{width:0.985600pt;}
.fs0_c00028{font-size:64.000000pt;}
.y0_c00028{bottom:0.000000pt;}
.y2_c00028{bottom:41.627067pt;}
.y1_c00028{bottom:60.027067pt;}
.y21_c00028{bottom:144.427067pt;}
.y20_c00028{bottom:172.027067pt;}
.y1f_c00028{bottom:199.627067pt;}
.y1e_c00028{bottom:235.227067pt;}
.y1d_c00028{bottom:262.827067pt;}
.y1c_c00028{bottom:290.427067pt;}
.y1b_c00028{bottom:325.947067pt;}
.y1a_c00028{bottom:353.547067pt;}
.y19_c00028{bottom:381.147067pt;}
.y18_c00028{bottom:408.747067pt;}
.y17_c00028{bottom:436.347067pt;}
.y16_c00028{bottom:463.947067pt;}
.y15_c00028{bottom:491.547067pt;}
.y14_c00028{bottom:519.147067pt;}
.y13_c00028{bottom:546.747067pt;}
.y12_c00028{bottom:574.347067pt;}
.y11_c00028{bottom:601.947067pt;}
.y10_c00028{bottom:629.547067pt;}
.yf_c00028{bottom:657.147067pt;}
.ye_c00028{bottom:684.747067pt;}
.yd_c00028{bottom:720.347067pt;}
.yc_c00028{bottom:747.947067pt;}
.yb_c00028{bottom:775.547067pt;}
.ya_c00028{bottom:803.147067pt;}
.y9_c00028{bottom:830.747067pt;}
.y8_c00028{bottom:858.347067pt;}
.y7_c00028{bottom:885.947067pt;}
.y6_c00028{bottom:920.347067pt;}
.y5_c00028{bottom:938.747067pt;}
.y4_c00028{bottom:957.147067pt;}
.y3_c00028{bottom:975.547067pt;}
.h1_c00028{height:56.156250pt;}
.h2_c00028{height:57.375000pt;}
.h3_c00028{height:66.750000pt;}
.h0_c00028{height:1122.666667pt;}
.w1_c00028{width:793.333333pt;}
.w0_c00028{width:793.626667pt;}
.x0_c00028{left:0.000000pt;}
.x2_c00028{left:151.200000pt;}
.x3_c00028{left:170.160000pt;}
.x1_c00028{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e58b3aef61f80cd8dc2ef10b.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.093262;font-style:normal;font-weight:normal;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_d71e52b8ada26ee76527aa80.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.106934;font-style: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;}
.ls7_c00029{letter-spacing:-0.072000px;}
.ls8_c00029{letter-spacing:-0.050400px;}
.ls6_c00029{letter-spacing:-0.043200px;}
.ls4_c00029{letter-spacing:-0.036000px;}
.ls3_c00029{letter-spacing:-0.028800px;}
.ls1_c00029{letter-spacing:-0.021600px;}
.ls5_c00029{letter-spacing:-0.014400px;}
.ls2_c00029{letter-spacing:-0.007200px;}
.ls0_c00029{letter-spacing:0.000000px;}
.sc__c00029{text-shadow:none;}
.sc0_c00029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00029{-webkit-text-stroke:0px transparent;}
.sc0_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00029{word-spacing:-3.765600px;}
.ws7_c00029{word-spacing:-1.994400px;}
.ws6_c00029{word-spacing:-1.958400px;}
.ws16_c00029{word-spacing:-1.641600px;}
.ws17_c00029{word-spacing:-1.620000px;}
.ws0_c00029{word-spacing:0.000000px;}
.wsd_c00029{word-spacing:0.158400px;}
.ws3_c00029{word-spacing:0.187200px;}
.ws18_c00029{word-spacing:0.194400px;}
.ws5_c00029{word-spacing:5.212800px;}
.ws4_c00029{word-spacing:5.234400px;}
.ws13_c00029{word-spacing:7.005600px;}
.ws12_c00029{word-spacing:7.207200px;}
.wsb_c00029{word-spacing:8.553600px;}
.wsc_c00029{word-spacing:8.604000px;}
.ws11_c00029{word-spacing:9.914400px;}
.ws2_c00029{word-spacing:14.205600px;}
.ws1_c00029{word-spacing:14.220000px;}
.ws15_c00029{word-spacing:16.005600px;}
.ws14_c00029{word-spacing:16.041600px;}
.wse_c00029{word-spacing:22.161600px;}
.ws9_c00029{word-spacing:31.888800px;}
.ws8_c00029{word-spacing:31.910400px;}
.wsf_c00029{word-spacing:64.260000px;}
.ws10_c00029{word-spacing:64.281600px;}
._0_c00029{width:1.224000px;}
.fc0_c00029{color:rgb(0,0,0);}
.fs0_c00029{font-size:72.000000px;}
.y0_c00029{bottom:0.000000px;}
.y2_c00029{bottom:46.830450px;}
.y1_c00029{bottom:67.530450px;}
.y11_c00029{bottom:653.790450px;}
.y10_c00029{bottom:684.840450px;}
.yf_c00029{bottom:715.890450px;}
.ye_c00029{bottom:746.940450px;}
.yd_c00029{bottom:777.990450px;}
.yc_c00029{bottom:809.040450px;}
.yb_c00029{bottom:840.090450px;}
.ya_c00029{bottom:880.140450px;}
.y9_c00029{bottom:911.190450px;}
.y8_c00029{bottom:942.240450px;}
.y7_c00029{bottom:973.290450px;}
.y6_c00029{bottom:1004.340450px;}
.y5_c00029{bottom:1035.390450px;}
.y4_c00029{bottom:1066.440450px;}
.y3_c00029{bottom:1097.490450px;}
.h1_c00029{height:63.175781px;}
.h2_c00029{height:64.546875px;}
.h0_c00029{height:1263.000000px;}
.w1_c00029{width:892.500000px;}
.w0_c00029{width:892.830000px;}
.x0_c00029{left:0.000000px;}
.x2_c00029{left:127.620000px;}
.x1_c00029{left:704.880000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls7_c00029{letter-spacing:-0.064000pt;}
.ls8_c00029{letter-spacing:-0.044800pt;}
.ls6_c00029{letter-spacing:-0.038400pt;}
.ls4_c00029{letter-spacing:-0.032000pt;}
.ls3_c00029{letter-spacing:-0.025600pt;}
.ls1_c00029{letter-spacing:-0.019200pt;}
.ls5_c00029{letter-spacing:-0.012800pt;}
.ls2_c00029{letter-spacing:-0.006400pt;}
.ls0_c00029{letter-spacing:0.000000pt;}
.wsa_c00029{word-spacing:-3.347200pt;}
.ws7_c00029{word-spacing:-1.772800pt;}
.ws6_c00029{word-spacing:-1.740800pt;}
.ws16_c00029{word-spacing:-1.459200pt;}
.ws17_c00029{word-spacing:-1.440000pt;}
.ws0_c00029{word-spacing:0.000000pt;}
.wsd_c00029{word-spacing:0.140800pt;}
.ws3_c00029{word-spacing:0.166400pt;}
.ws18_c00029{word-spacing:0.172800pt;}
.ws5_c00029{word-spacing:4.633600pt;}
.ws4_c00029{word-spacing:4.652800pt;}
.ws13_c00029{word-spacing:6.227200pt;}
.ws12_c00029{word-spacing:6.406400pt;}
.wsb_c00029{word-spacing:7.603200pt;}
.wsc_c00029{word-spacing:7.648000pt;}
.ws11_c00029{word-spacing:8.812800pt;}
.ws2_c00029{word-spacing:12.627200pt;}
.ws1_c00029{word-spacing:12.640000pt;}
.ws15_c00029{word-spacing:14.227200pt;}
.ws14_c00029{word-spacing:14.259200pt;}
.wse_c00029{word-spacing:19.699200pt;}
.ws9_c00029{word-spacing:28.345600pt;}
.ws8_c00029{word-spacing:28.364800pt;}
.wsf_c00029{word-spacing:57.120000pt;}
.ws10_c00029{word-spacing:57.139200pt;}
._0_c00029{width:1.088000pt;}
.fs0_c00029{font-size:64.000000pt;}
.y0_c00029{bottom:0.000000pt;}
.y2_c00029{bottom:41.627067pt;}
.y1_c00029{bottom:60.027067pt;}
.y11_c00029{bottom:581.147067pt;}
.y10_c00029{bottom:608.747067pt;}
.yf_c00029{bottom:636.347067pt;}
.ye_c00029{bottom:663.947067pt;}
.yd_c00029{bottom:691.547067pt;}
.yc_c00029{bottom:719.147067pt;}
.yb_c00029{bottom:746.747067pt;}
.ya_c00029{bottom:782.347067pt;}
.y9_c00029{bottom:809.947067pt;}
.y8_c00029{bottom:837.547067pt;}
.y7_c00029{bottom:865.147067pt;}
.y6_c00029{bottom:892.747067pt;}
.y5_c00029{bottom:920.347067pt;}
.y4_c00029{bottom:947.947067pt;}
.y3_c00029{bottom:975.547067pt;}
.h1_c00029{height:56.156250pt;}
.h2_c00029{height:57.375000pt;}
.h0_c00029{height:1122.666667pt;}
.w1_c00029{width:793.333333pt;}
.w0_c00029{width:793.626667pt;}
.x0_c00029{left:0.000000pt;}
.x2_c00029{left:113.440000pt;}
.x1_c00029{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bf2c5b642a66d5e6b9e265bc.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.093262;font-style:normal;font-weight:normal;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_ea2e4c76ea74c8de39f9371e.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00030;src:url('chunks/assets/font_4d31502b72de0e50be68c59a.woff2')format("woff");}.ff3_c00030{font-family:ff3_c00030;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00030;src:url('chunks/assets/font_be54457e4939fcb3501b17b7.woff2')format("woff");}.ff4_c00030{font-family:ff4_c00030;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00030{vertical-align:0.000000px;}
.lsd_c00030{letter-spacing:-0.086400px;}
.ls10_c00030{letter-spacing:-0.079200px;}
.lsa_c00030{letter-spacing:-0.072000px;}
.ls5_c00030{letter-spacing:-0.064800px;}
.ls6_c00030{letter-spacing:-0.057600px;}
.lsc_c00030{letter-spacing:-0.050400px;}
.ls8_c00030{letter-spacing:-0.043200px;}
.ls9_c00030{letter-spacing:-0.036000px;}
.lse_c00030{letter-spacing:-0.028800px;}
.ls4_c00030{letter-spacing:-0.021600px;}
.ls7_c00030{letter-spacing:-0.014400px;}
.lsb_c00030{letter-spacing:-0.007200px;}
.ls3_c00030{letter-spacing:0.000000px;}
.ls2_c00030{letter-spacing:0.007200px;}
.ls11_c00030{letter-spacing:0.021600px;}
.ls0_c00030{letter-spacing:0.033552px;}
.ls1_c00030{letter-spacing:0.050328px;}
.lsf_c00030{letter-spacing:0.057600px;}
.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;}
}
.ws1a_c00030{word-spacing:-3.124800px;}
.ws31_c00030{word-spacing:-3.074400px;}
.ws19_c00030{word-spacing:-3.052800px;}
.ws32_c00030{word-spacing:-3.031200px;}
.ws7_c00030{word-spacing:-2.325600px;}
.ws8_c00030{word-spacing:-2.296800px;}
.ws1d_c00030{word-spacing:-1.972800px;}
.ws28_c00030{word-spacing:-0.921600px;}
.ws29_c00030{word-spacing:-0.892800px;}
.ws1e_c00030{word-spacing:-0.518400px;}
.ws0_c00030{word-spacing:0.000000px;}
.ws1_c00030{word-spacing:0.041940px;}
.wsf_c00030{word-spacing:0.158400px;}
.ws10_c00030{word-spacing:0.172800px;}
.ws11_c00030{word-spacing:0.561600px;}
.wsa_c00030{word-spacing:1.612800px;}
.ws9_c00030{word-spacing:1.620000px;}
.ws23_c00030{word-spacing:1.771200px;}
.ws24_c00030{word-spacing:1.994400px;}
.ws2a_c00030{word-spacing:2.354400px;}
.ws22_c00030{word-spacing:3.045600px;}
.ws21_c00030{word-spacing:3.153600px;}
.ws2_c00030{word-spacing:3.348000px;}
.ws3_c00030{word-spacing:3.535200px;}
.ws15_c00030{word-spacing:3.736800px;}
.ws16_c00030{word-spacing:3.830400px;}
.ws17_c00030{word-spacing:5.220000px;}
.ws30_c00030{word-spacing:5.241600px;}
.ws18_c00030{word-spacing:5.313600px;}
.ws12_c00030{word-spacing:7.408800px;}
.ws1b_c00030{word-spacing:9.151200px;}
.ws1c_c00030{word-spacing:9.172800px;}
.ws13_c00030{word-spacing:9.561600px;}
.ws14_c00030{word-spacing:9.576000px;}
.ws1f_c00030{word-spacing:12.067200px;}
.ws20_c00030{word-spacing:12.153600px;}
.wse_c00030{word-spacing:12.765600px;}
.wsd_c00030{word-spacing:12.888000px;}
.ws2e_c00030{word-spacing:13.032000px;}
.ws2d_c00030{word-spacing:13.118400px;}
.ws2f_c00030{word-spacing:13.197600px;}
.ws2b_c00030{word-spacing:16.632000px;}
.ws2c_c00030{word-spacing:16.740000px;}
.ws5_c00030{word-spacing:23.090400px;}
.ws4_c00030{word-spacing:23.256000px;}
.wsb_c00030{word-spacing:23.911200px;}
.wsc_c00030{word-spacing:23.990400px;}
.ws26_c00030{word-spacing:32.133600px;}
.ws25_c00030{word-spacing:32.227200px;}
.ws27_c00030{word-spacing:32.284800px;}
.ws6_c00030{word-spacing:35.841600px;}
._1_c00030{width:1.252800px;}
._0_c00030{width:153.416520px;}
.fc0_c00030{color:rgb(0,0,0);}
.fs0_c00030{font-size:72.000000px;}
.fs1_c00030{font-size:83.880000px;}
.y0_c00030{bottom:0.000000px;}
.y2_c00030{bottom:46.830450px;}
.y1_c00030{bottom:67.530450px;}
.y22_c00030{bottom:154.020450px;}
.y21_c00030{bottom:185.070450px;}
.y20_c00030{bottom:225.120450px;}
.y1f_c00030{bottom:256.170450px;}
.y1e_c00030{bottom:287.220450px;}
.y1d_c00030{bottom:318.270450px;}
.y1c_c00030{bottom:349.320450px;}
.y1b_c00030{bottom:380.370450px;}
.y1a_c00030{bottom:411.420450px;}
.y19_c00030{bottom:442.470450px;}
.y18_c00030{bottom:473.520450px;}
.y17_c00030{bottom:504.570450px;}
.y16_c00030{bottom:535.620450px;}
.y15_c00030{bottom:574.320450px;}
.y14_c00030{bottom:613.020450px;}
.y13_c00030{bottom:633.720450px;}
.y12_c00030{bottom:654.420450px;}
.y11_c00030{bottom:675.120450px;}
.y10_c00030{bottom:695.820450px;}
.yf_c00030{bottom:716.520450px;}
.ye_c00030{bottom:737.220450px;}
.yd_c00030{bottom:757.920450px;}
.yc_c00030{bottom:806.970450px;}
.yb_c00030{bottom:838.020450px;}
.ya_c00030{bottom:869.070450px;}
.y9_c00030{bottom:900.120450px;}
.y8_c00030{bottom:931.170450px;}
.y7_c00030{bottom:962.220450px;}
.y6_c00030{bottom:993.270450px;}
.y5_c00030{bottom:1024.320450px;}
.y4_c00030{bottom:1064.370450px;}
.y3_c00030{bottom:1094.520450px;}
.h1_c00030{height:63.175781px;}
.h3_c00030{height:64.546875px;}
.h2_c00030{height:87.484219px;}
.h0_c00030{height:1263.000000px;}
.w1_c00030{width:892.500000px;}
.w0_c00030{width:892.830000px;}
.x0_c00030{left:0.000000px;}
.x2_c00030{left:170.100000px;}
.x4_c00030{left:191.430000px;}
.x3_c00030{left:197.100000px;}
.x1_c00030{left:747.360000px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.lsd_c00030{letter-spacing:-0.076800pt;}
.ls10_c00030{letter-spacing:-0.070400pt;}
.lsa_c00030{letter-spacing:-0.064000pt;}
.ls5_c00030{letter-spacing:-0.057600pt;}
.ls6_c00030{letter-spacing:-0.051200pt;}
.lsc_c00030{letter-spacing:-0.044800pt;}
.ls8_c00030{letter-spacing:-0.038400pt;}
.ls9_c00030{letter-spacing:-0.032000pt;}
.lse_c00030{letter-spacing:-0.025600pt;}
.ls4_c00030{letter-spacing:-0.019200pt;}
.ls7_c00030{letter-spacing:-0.012800pt;}
.lsb_c00030{letter-spacing:-0.006400pt;}
.ls3_c00030{letter-spacing:0.000000pt;}
.ls2_c00030{letter-spacing:0.006400pt;}
.ls11_c00030{letter-spacing:0.019200pt;}
.ls0_c00030{letter-spacing:0.029824pt;}
.ls1_c00030{letter-spacing:0.044736pt;}
.lsf_c00030{letter-spacing:0.051200pt;}
.ws1a_c00030{word-spacing:-2.777600pt;}
.ws31_c00030{word-spacing:-2.732800pt;}
.ws19_c00030{word-spacing:-2.713600pt;}
.ws32_c00030{word-spacing:-2.694400pt;}
.ws7_c00030{word-spacing:-2.067200pt;}
.ws8_c00030{word-spacing:-2.041600pt;}
.ws1d_c00030{word-spacing:-1.753600pt;}
.ws28_c00030{word-spacing:-0.819200pt;}
.ws29_c00030{word-spacing:-0.793600pt;}
.ws1e_c00030{word-spacing:-0.460800pt;}
.ws0_c00030{word-spacing:0.000000pt;}
.ws1_c00030{word-spacing:0.037280pt;}
.wsf_c00030{word-spacing:0.140800pt;}
.ws10_c00030{word-spacing:0.153600pt;}
.ws11_c00030{word-spacing:0.499200pt;}
.wsa_c00030{word-spacing:1.433600pt;}
.ws9_c00030{word-spacing:1.440000pt;}
.ws23_c00030{word-spacing:1.574400pt;}
.ws24_c00030{word-spacing:1.772800pt;}
.ws2a_c00030{word-spacing:2.092800pt;}
.ws22_c00030{word-spacing:2.707200pt;}
.ws21_c00030{word-spacing:2.803200pt;}
.ws2_c00030{word-spacing:2.976000pt;}
.ws3_c00030{word-spacing:3.142400pt;}
.ws15_c00030{word-spacing:3.321600pt;}
.ws16_c00030{word-spacing:3.404800pt;}
.ws17_c00030{word-spacing:4.640000pt;}
.ws30_c00030{word-spacing:4.659200pt;}
.ws18_c00030{word-spacing:4.723200pt;}
.ws12_c00030{word-spacing:6.585600pt;}
.ws1b_c00030{word-spacing:8.134400pt;}
.ws1c_c00030{word-spacing:8.153600pt;}
.ws13_c00030{word-spacing:8.499200pt;}
.ws14_c00030{word-spacing:8.512000pt;}
.ws1f_c00030{word-spacing:10.726400pt;}
.ws20_c00030{word-spacing:10.803200pt;}
.wse_c00030{word-spacing:11.347200pt;}
.wsd_c00030{word-spacing:11.456000pt;}
.ws2e_c00030{word-spacing:11.584000pt;}
.ws2d_c00030{word-spacing:11.660800pt;}
.ws2f_c00030{word-spacing:11.731200pt;}
.ws2b_c00030{word-spacing:14.784000pt;}
.ws2c_c00030{word-spacing:14.880000pt;}
.ws5_c00030{word-spacing:20.524800pt;}
.ws4_c00030{word-spacing:20.672000pt;}
.wsb_c00030{word-spacing:21.254400pt;}
.wsc_c00030{word-spacing:21.324800pt;}
.ws26_c00030{word-spacing:28.563200pt;}
.ws25_c00030{word-spacing:28.646400pt;}
.ws27_c00030{word-spacing:28.697600pt;}
.ws6_c00030{word-spacing:31.859200pt;}
._1_c00030{width:1.113600pt;}
._0_c00030{width:136.370240pt;}
.fs0_c00030{font-size:64.000000pt;}
.fs1_c00030{font-size:74.560000pt;}
.y0_c00030{bottom:0.000000pt;}
.y2_c00030{bottom:41.627067pt;}
.y1_c00030{bottom:60.027067pt;}
.y22_c00030{bottom:136.907067pt;}
.y21_c00030{bottom:164.507067pt;}
.y20_c00030{bottom:200.107067pt;}
.y1f_c00030{bottom:227.707067pt;}
.y1e_c00030{bottom:255.307067pt;}
.y1d_c00030{bottom:282.907067pt;}
.y1c_c00030{bottom:310.507067pt;}
.y1b_c00030{bottom:338.107067pt;}
.y1a_c00030{bottom:365.707067pt;}
.y19_c00030{bottom:393.307067pt;}
.y18_c00030{bottom:420.907067pt;}
.y17_c00030{bottom:448.507067pt;}
.y16_c00030{bottom:476.107067pt;}
.y15_c00030{bottom:510.507067pt;}
.y14_c00030{bottom:544.907067pt;}
.y13_c00030{bottom:563.307067pt;}
.y12_c00030{bottom:581.707067pt;}
.y11_c00030{bottom:600.107067pt;}
.y10_c00030{bottom:618.507067pt;}
.yf_c00030{bottom:636.907067pt;}
.ye_c00030{bottom:655.307067pt;}
.yd_c00030{bottom:673.707067pt;}
.yc_c00030{bottom:717.307067pt;}
.yb_c00030{bottom:744.907067pt;}
.ya_c00030{bottom:772.507067pt;}
.y9_c00030{bottom:800.107067pt;}
.y8_c00030{bottom:827.707067pt;}
.y7_c00030{bottom:855.307067pt;}
.y6_c00030{bottom:882.907067pt;}
.y5_c00030{bottom:910.507067pt;}
.y4_c00030{bottom:946.107067pt;}
.y3_c00030{bottom:972.907067pt;}
.h1_c00030{height:56.156250pt;}
.h3_c00030{height:57.375000pt;}
.h2_c00030{height:77.763750pt;}
.h0_c00030{height:1122.666667pt;}
.w1_c00030{width:793.333333pt;}
.w0_c00030{width:793.626667pt;}
.x0_c00030{left:0.000000pt;}
.x2_c00030{left:151.200000pt;}
.x4_c00030{left:170.160000pt;}
.x3_c00030{left:175.200000pt;}
.x1_c00030{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_188ccaace393374d76db8f96.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.093262;font-style:normal;font-weight:normal;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_7fedab88295e2fa3c13dcb2e.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.106934;font-style:normal;font-weight:normal;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_c260348f1096254a28d58b12.woff2')format("woff");}.ff3_c00031{font-family:ff3_c00031;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls2_c00031{letter-spacing:-0.086400px;}
.lsa_c00031{letter-spacing:-0.072000px;}
.ls3_c00031{letter-spacing:-0.057600px;}
.ls1_c00031{letter-spacing:-0.050400px;}
.lsb_c00031{letter-spacing:-0.043200px;}
.ls9_c00031{letter-spacing:-0.036000px;}
.ls7_c00031{letter-spacing:-0.028800px;}
.ls5_c00031{letter-spacing:-0.021600px;}
.ls8_c00031{letter-spacing:-0.014400px;}
.ls6_c00031{letter-spacing:-0.007200px;}
.ls0_c00031{letter-spacing:0.000000px;}
.ls4_c00031{letter-spacing:0.036000px;}
.lsc_c00031{letter-spacing:0.158400px;}
.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;}
}
.ws13_c00031{word-spacing:-3.866400px;}
.ws36_c00031{word-spacing:-3.772800px;}
.ws14_c00031{word-spacing:-3.765600px;}
.ws21_c00031{word-spacing:-3.412800px;}
.ws20_c00031{word-spacing:-3.391200px;}
.ws22_c00031{word-spacing:-2.757600px;}
.ws23_c00031{word-spacing:-2.664000px;}
.ws1_c00031{word-spacing:-2.311200px;}
.ws2_c00031{word-spacing:-2.275200px;}
.ws1f_c00031{word-spacing:-1.965600px;}
.ws1e_c00031{word-spacing:-1.951200px;}
.ws11_c00031{word-spacing:-0.986400px;}
.ws12_c00031{word-spacing:-0.885600px;}
.ws18_c00031{word-spacing:-0.489600px;}
.ws19_c00031{word-spacing:-0.273600px;}
.ws1a_c00031{word-spacing:-0.180000px;}
.ws0_c00031{word-spacing:0.000000px;}
.ws4_c00031{word-spacing:0.122400px;}
.wsd_c00031{word-spacing:0.172800px;}
.ws17_c00031{word-spacing:0.180000px;}
.wsc_c00031{word-spacing:0.187200px;}
.ws31_c00031{word-spacing:0.194400px;}
.ws3_c00031{word-spacing:0.216000px;}
.ws7_c00031{word-spacing:0.900000px;}
.ws5_c00031{word-spacing:0.928800px;}
.ws6_c00031{word-spacing:1.015200px;}
.ws29_c00031{word-spacing:1.598400px;}
.ws2a_c00031{word-spacing:1.627200px;}
.ws2d_c00031{word-spacing:1.972800px;}
.ws2e_c00031{word-spacing:2.138400px;}
.ws8_c00031{word-spacing:3.765600px;}
.ws9_c00031{word-spacing:3.808800px;}
.ws16_c00031{word-spacing:4.089600px;}
.ws15_c00031{word-spacing:4.154400px;}
.ws1c_c00031{word-spacing:6.278400px;}
.ws1b_c00031{word-spacing:6.300000px;}
.ws1d_c00031{word-spacing:6.307200px;}
.ws25_c00031{word-spacing:7.639200px;}
.ws24_c00031{word-spacing:7.747200px;}
.wsb_c00031{word-spacing:9.403200px;}
.wsa_c00031{word-spacing:9.561600px;}
.ws2f_c00031{word-spacing:11.692800px;}
.ws30_c00031{word-spacing:11.764800px;}
.ws35_c00031{word-spacing:12.708000px;}
.ws34_c00031{word-spacing:12.808800px;}
.ws2b_c00031{word-spacing:13.507200px;}
.ws2c_c00031{word-spacing:13.514400px;}
.ws27_c00031{word-spacing:13.860000px;}
.ws26_c00031{word-spacing:13.910400px;}
.wse_c00031{word-spacing:18.532800px;}
.ws10_c00031{word-spacing:24.566400px;}
.wsf_c00031{word-spacing:24.667200px;}
.ws28_c00031{word-spacing:25.761600px;}
.ws32_c00031{word-spacing:30.780000px;}
.ws33_c00031{word-spacing:30.844800px;}
._0_c00031{width:1.130400px;}
.fc0_c00031{color:rgb(0,0,0);}
.fs0_c00031{font-size:72.000000px;}
.y0_c00031{bottom:0.000000px;}
.y2_c00031{bottom:46.830450px;}
.y1_c00031{bottom:67.530450px;}
.y21_c00031{bottom:136.830450px;}
.y20_c00031{bottom:167.880450px;}
.y1f_c00031{bottom:198.930450px;}
.y1e_c00031{bottom:238.980450px;}
.y1d_c00031{bottom:270.030450px;}
.y1c_c00031{bottom:301.080450px;}
.y1b_c00031{bottom:332.040450px;}
.y1a_c00031{bottom:363.090450px;}
.y19_c00031{bottom:394.140450px;}
.y18_c00031{bottom:425.190450px;}
.y17_c00031{bottom:456.240450px;}
.y16_c00031{bottom:487.290450px;}
.y15_c00031{bottom:518.340450px;}
.y14_c00031{bottom:549.390450px;}
.y13_c00031{bottom:588.090450px;}
.y12_c00031{bottom:626.790450px;}
.y11_c00031{bottom:647.490450px;}
.y10_c00031{bottom:668.190450px;}
.yf_c00031{bottom:688.890450px;}
.ye_c00031{bottom:737.940450px;}
.yd_c00031{bottom:768.990450px;}
.yc_c00031{bottom:800.040450px;}
.yb_c00031{bottom:831.090450px;}
.ya_c00031{bottom:862.140450px;}
.y9_c00031{bottom:893.190450px;}
.y8_c00031{bottom:933.240450px;}
.y7_c00031{bottom:964.290450px;}
.y6_c00031{bottom:995.340450px;}
.y5_c00031{bottom:1026.390450px;}
.y4_c00031{bottom:1066.440450px;}
.y3_c00031{bottom:1097.490450px;}
.h1_c00031{height:63.175781px;}
.h3_c00031{height:64.546875px;}
.h2_c00031{height:75.093750px;}
.h0_c00031{height:1263.000000px;}
.w1_c00031{width:892.500000px;}
.w0_c00031{width:892.830000px;}
.x0_c00031{left:0.000000px;}
.x2_c00031{left:127.620000px;}
.x3_c00031{left:148.950000px;}
.x1_c00031{left:704.880000px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls2_c00031{letter-spacing:-0.076800pt;}
.lsa_c00031{letter-spacing:-0.064000pt;}
.ls3_c00031{letter-spacing:-0.051200pt;}
.ls1_c00031{letter-spacing:-0.044800pt;}
.lsb_c00031{letter-spacing:-0.038400pt;}
.ls9_c00031{letter-spacing:-0.032000pt;}
.ls7_c00031{letter-spacing:-0.025600pt;}
.ls5_c00031{letter-spacing:-0.019200pt;}
.ls8_c00031{letter-spacing:-0.012800pt;}
.ls6_c00031{letter-spacing:-0.006400pt;}
.ls0_c00031{letter-spacing:0.000000pt;}
.ls4_c00031{letter-spacing:0.032000pt;}
.lsc_c00031{letter-spacing:0.140800pt;}
.ws13_c00031{word-spacing:-3.436800pt;}
.ws36_c00031{word-spacing:-3.353600pt;}
.ws14_c00031{word-spacing:-3.347200pt;}
.ws21_c00031{word-spacing:-3.033600pt;}
.ws20_c00031{word-spacing:-3.014400pt;}
.ws22_c00031{word-spacing:-2.451200pt;}
.ws23_c00031{word-spacing:-2.368000pt;}
.ws1_c00031{word-spacing:-2.054400pt;}
.ws2_c00031{word-spacing:-2.022400pt;}
.ws1f_c00031{word-spacing:-1.747200pt;}
.ws1e_c00031{word-spacing:-1.734400pt;}
.ws11_c00031{word-spacing:-0.876800pt;}
.ws12_c00031{word-spacing:-0.787200pt;}
.ws18_c00031{word-spacing:-0.435200pt;}
.ws19_c00031{word-spacing:-0.243200pt;}
.ws1a_c00031{word-spacing:-0.160000pt;}
.ws0_c00031{word-spacing:0.000000pt;}
.ws4_c00031{word-spacing:0.108800pt;}
.wsd_c00031{word-spacing:0.153600pt;}
.ws17_c00031{word-spacing:0.160000pt;}
.wsc_c00031{word-spacing:0.166400pt;}
.ws31_c00031{word-spacing:0.172800pt;}
.ws3_c00031{word-spacing:0.192000pt;}
.ws7_c00031{word-spacing:0.800000pt;}
.ws5_c00031{word-spacing:0.825600pt;}
.ws6_c00031{word-spacing:0.902400pt;}
.ws29_c00031{word-spacing:1.420800pt;}
.ws2a_c00031{word-spacing:1.446400pt;}
.ws2d_c00031{word-spacing:1.753600pt;}
.ws2e_c00031{word-spacing:1.900800pt;}
.ws8_c00031{word-spacing:3.347200pt;}
.ws9_c00031{word-spacing:3.385600pt;}
.ws16_c00031{word-spacing:3.635200pt;}
.ws15_c00031{word-spacing:3.692800pt;}
.ws1c_c00031{word-spacing:5.580800pt;}
.ws1b_c00031{word-spacing:5.600000pt;}
.ws1d_c00031{word-spacing:5.606400pt;}
.ws25_c00031{word-spacing:6.790400pt;}
.ws24_c00031{word-spacing:6.886400pt;}
.wsb_c00031{word-spacing:8.358400pt;}
.wsa_c00031{word-spacing:8.499200pt;}
.ws2f_c00031{word-spacing:10.393600pt;}
.ws30_c00031{word-spacing:10.457600pt;}
.ws35_c00031{word-spacing:11.296000pt;}
.ws34_c00031{word-spacing:11.385600pt;}
.ws2b_c00031{word-spacing:12.006400pt;}
.ws2c_c00031{word-spacing:12.012800pt;}
.ws27_c00031{word-spacing:12.320000pt;}
.ws26_c00031{word-spacing:12.364800pt;}
.wse_c00031{word-spacing:16.473600pt;}
.ws10_c00031{word-spacing:21.836800pt;}
.wsf_c00031{word-spacing:21.926400pt;}
.ws28_c00031{word-spacing:22.899200pt;}
.ws32_c00031{word-spacing:27.360000pt;}
.ws33_c00031{word-spacing:27.417600pt;}
._0_c00031{width:1.004800pt;}
.fs0_c00031{font-size:64.000000pt;}
.y0_c00031{bottom:0.000000pt;}
.y2_c00031{bottom:41.627067pt;}
.y1_c00031{bottom:60.027067pt;}
.y21_c00031{bottom:121.627067pt;}
.y20_c00031{bottom:149.227067pt;}
.y1f_c00031{bottom:176.827067pt;}
.y1e_c00031{bottom:212.427067pt;}
.y1d_c00031{bottom:240.027067pt;}
.y1c_c00031{bottom:267.627067pt;}
.y1b_c00031{bottom:295.147067pt;}
.y1a_c00031{bottom:322.747067pt;}
.y19_c00031{bottom:350.347067pt;}
.y18_c00031{bottom:377.947067pt;}
.y17_c00031{bottom:405.547067pt;}
.y16_c00031{bottom:433.147067pt;}
.y15_c00031{bottom:460.747067pt;}
.y14_c00031{bottom:488.347067pt;}
.y13_c00031{bottom:522.747067pt;}
.y12_c00031{bottom:557.147067pt;}
.y11_c00031{bottom:575.547067pt;}
.y10_c00031{bottom:593.947067pt;}
.yf_c00031{bottom:612.347067pt;}
.ye_c00031{bottom:655.947067pt;}
.yd_c00031{bottom:683.547067pt;}
.yc_c00031{bottom:711.147067pt;}
.yb_c00031{bottom:738.747067pt;}
.ya_c00031{bottom:766.347067pt;}
.y9_c00031{bottom:793.947067pt;}
.y8_c00031{bottom:829.547067pt;}
.y7_c00031{bottom:857.147067pt;}
.y6_c00031{bottom:884.747067pt;}
.y5_c00031{bottom:912.347067pt;}
.y4_c00031{bottom:947.947067pt;}
.y3_c00031{bottom:975.547067pt;}
.h1_c00031{height:56.156250pt;}
.h3_c00031{height:57.375000pt;}
.h2_c00031{height:66.750000pt;}
.h0_c00031{height:1122.666667pt;}
.w1_c00031{width:793.333333pt;}
.w0_c00031{width:793.626667pt;}
.x0_c00031{left:0.000000pt;}
.x2_c00031{left:113.440000pt;}
.x3_c00031{left:132.400000pt;}
.x1_c00031{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b346ca62cd5fd2a41cdb0cad.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.093262;font-style:normal;font-weight:normal;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_a31be8e1b597c0a13f203e1e.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.106934;font-style:normal;font-weight:normal;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_21d72c0e14708bfb20ce8bd4.woff2')format("woff");}.ff3_c00032{font-family:ff3_c00032;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00032{letter-spacing:-0.072000px;}
.ls4_c00032{letter-spacing:-0.064800px;}
.ls6_c00032{letter-spacing:-0.057600px;}
.ls5_c00032{letter-spacing:-0.050400px;}
.ls8_c00032{letter-spacing:-0.043200px;}
.ls3_c00032{letter-spacing:-0.036000px;}
.ls2_c00032{letter-spacing:-0.028800px;}
.ls9_c00032{letter-spacing:-0.021600px;}
.ls7_c00032{letter-spacing:-0.014400px;}
.lsa_c00032{letter-spacing:-0.007200px;}
.ls1_c00032{letter-spacing:0.000000px;}
.ls0_c00032{letter-spacing:0.007200px;}
.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;}
}
.ws2f_c00032{word-spacing:-3.758400px;}
.ws27_c00032{word-spacing:-3.060000px;}
.ws26_c00032{word-spacing:-3.052800px;}
.wsb_c00032{word-spacing:-2.066400px;}
.wsc_c00032{word-spacing:-1.965600px;}
.ws2b_c00032{word-spacing:-1.260000px;}
.ws2a_c00032{word-spacing:-1.238400px;}
.ws39_c00032{word-spacing:-0.194400px;}
.ws0_c00032{word-spacing:0.000000px;}
.ws20_c00032{word-spacing:0.050400px;}
.ws19_c00032{word-spacing:0.115200px;}
.ws3a_c00032{word-spacing:0.172800px;}
.ws14_c00032{word-spacing:0.180000px;}
.ws1a_c00032{word-spacing:0.187200px;}
.ws15_c00032{word-spacing:0.194400px;}
.ws38_c00032{word-spacing:0.201600px;}
.ws1e_c00032{word-spacing:2.973600px;}
.ws1d_c00032{word-spacing:3.074400px;}
.ws1f_c00032{word-spacing:3.175200px;}
.ws9_c00032{word-spacing:3.801600px;}
.wsa_c00032{word-spacing:4.140000px;}
.ws10_c00032{word-spacing:4.737600px;}
.ws11_c00032{word-spacing:4.960800px;}
.wsf_c00032{word-spacing:4.996800px;}
.ws34_c00032{word-spacing:5.205600px;}
.ws33_c00032{word-spacing:5.227200px;}
.wse_c00032{word-spacing:5.580000px;}
.wsd_c00032{word-spacing:5.601600px;}
.ws1c_c00032{word-spacing:5.925600px;}
.ws1b_c00032{word-spacing:6.026400px;}
.ws5_c00032{word-spacing:6.242400px;}
.ws6_c00032{word-spacing:6.343200px;}
.ws8_c00032{word-spacing:9.892800px;}
.ws2c_c00032{word-spacing:9.921600px;}
.ws7_c00032{word-spacing:9.928800px;}
.ws2d_c00032{word-spacing:9.950400px;}
.ws24_c00032{word-spacing:11.685600px;}
.ws25_c00032{word-spacing:11.692800px;}
.ws23_c00032{word-spacing:11.714400px;}
.ws30_c00032{word-spacing:13.860000px;}
.ws1_c00032{word-spacing:15.667200px;}
.ws2_c00032{word-spacing:15.674400px;}
.ws13_c00032{word-spacing:18.165600px;}
.ws12_c00032{word-spacing:18.252000px;}
.ws16_c00032{word-spacing:19.620000px;}
.ws22_c00032{word-spacing:20.923200px;}
.ws21_c00032{word-spacing:21.096000px;}
.ws4_c00032{word-spacing:21.448800px;}
.ws3_c00032{word-spacing:21.463200px;}
.ws2e_c00032{word-spacing:23.220000px;}
.ws37_c00032{word-spacing:23.932800px;}
.ws28_c00032{word-spacing:27.871200px;}
.ws29_c00032{word-spacing:27.928800px;}
.ws18_c00032{word-spacing:42.163200px;}
.ws17_c00032{word-spacing:42.199200px;}
.ws32_c00032{word-spacing:45.518400px;}
.ws31_c00032{word-spacing:45.525600px;}
.ws36_c00032{word-spacing:65.080800px;}
.ws35_c00032{word-spacing:65.268000px;}
._0_c00032{width:1.000800px;}
.fc0_c00032{color:rgb(0,0,0);}
.fs0_c00032{font-size:72.000000px;}
.y0_c00032{bottom:0.000000px;}
.y2_c00032{bottom:46.830450px;}
.y1_c00032{bottom:67.530450px;}
.y22_c00032{bottom:150.780450px;}
.y21_c00032{bottom:171.480450px;}
.y20_c00032{bottom:192.180450px;}
.y1f_c00032{bottom:212.880450px;}
.y1e_c00032{bottom:233.580450px;}
.y1d_c00032{bottom:254.280450px;}
.y1c_c00032{bottom:303.330450px;}
.y1b_c00032{bottom:334.380450px;}
.y1a_c00032{bottom:365.430450px;}
.y19_c00032{bottom:396.390450px;}
.y18_c00032{bottom:427.440450px;}
.y17_c00032{bottom:458.490450px;}
.y16_c00032{bottom:489.540450px;}
.y15_c00032{bottom:520.590450px;}
.y14_c00032{bottom:551.640450px;}
.y13_c00032{bottom:591.690450px;}
.y12_c00032{bottom:622.740450px;}
.y11_c00032{bottom:653.790450px;}
.y10_c00032{bottom:684.840450px;}
.yf_c00032{bottom:715.890450px;}
.ye_c00032{bottom:746.940450px;}
.yd_c00032{bottom:786.990450px;}
.yc_c00032{bottom:818.040450px;}
.yb_c00032{bottom:849.090450px;}
.ya_c00032{bottom:880.140450px;}
.y9_c00032{bottom:911.190450px;}
.y8_c00032{bottom:942.240450px;}
.y7_c00032{bottom:973.290450px;}
.y6_c00032{bottom:1004.340450px;}
.y5_c00032{bottom:1035.390450px;}
.y4_c00032{bottom:1066.440450px;}
.y3_c00032{bottom:1097.490450px;}
.h1_c00032{height:63.175781px;}
.h2_c00032{height:64.546875px;}
.h3_c00032{height:75.093750px;}
.h0_c00032{height:1263.000000px;}
.w1_c00032{width:892.500000px;}
.w0_c00032{width:892.830000px;}
.x0_c00032{left:0.000000px;}
.x2_c00032{left:170.100000px;}
.x3_c00032{left:191.430000px;}
.x1_c00032{left:747.360000px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.lsb_c00032{letter-spacing:-0.064000pt;}
.ls4_c00032{letter-spacing:-0.057600pt;}
.ls6_c00032{letter-spacing:-0.051200pt;}
.ls5_c00032{letter-spacing:-0.044800pt;}
.ls8_c00032{letter-spacing:-0.038400pt;}
.ls3_c00032{letter-spacing:-0.032000pt;}
.ls2_c00032{letter-spacing:-0.025600pt;}
.ls9_c00032{letter-spacing:-0.019200pt;}
.ls7_c00032{letter-spacing:-0.012800pt;}
.lsa_c00032{letter-spacing:-0.006400pt;}
.ls1_c00032{letter-spacing:0.000000pt;}
.ls0_c00032{letter-spacing:0.006400pt;}
.ws2f_c00032{word-spacing:-3.340800pt;}
.ws27_c00032{word-spacing:-2.720000pt;}
.ws26_c00032{word-spacing:-2.713600pt;}
.wsb_c00032{word-spacing:-1.836800pt;}
.wsc_c00032{word-spacing:-1.747200pt;}
.ws2b_c00032{word-spacing:-1.120000pt;}
.ws2a_c00032{word-spacing:-1.100800pt;}
.ws39_c00032{word-spacing:-0.172800pt;}
.ws0_c00032{word-spacing:0.000000pt;}
.ws20_c00032{word-spacing:0.044800pt;}
.ws19_c00032{word-spacing:0.102400pt;}
.ws3a_c00032{word-spacing:0.153600pt;}
.ws14_c00032{word-spacing:0.160000pt;}
.ws1a_c00032{word-spacing:0.166400pt;}
.ws15_c00032{word-spacing:0.172800pt;}
.ws38_c00032{word-spacing:0.179200pt;}
.ws1e_c00032{word-spacing:2.643200pt;}
.ws1d_c00032{word-spacing:2.732800pt;}
.ws1f_c00032{word-spacing:2.822400pt;}
.ws9_c00032{word-spacing:3.379200pt;}
.wsa_c00032{word-spacing:3.680000pt;}
.ws10_c00032{word-spacing:4.211200pt;}
.ws11_c00032{word-spacing:4.409600pt;}
.wsf_c00032{word-spacing:4.441600pt;}
.ws34_c00032{word-spacing:4.627200pt;}
.ws33_c00032{word-spacing:4.646400pt;}
.wse_c00032{word-spacing:4.960000pt;}
.wsd_c00032{word-spacing:4.979200pt;}
.ws1c_c00032{word-spacing:5.267200pt;}
.ws1b_c00032{word-spacing:5.356800pt;}
.ws5_c00032{word-spacing:5.548800pt;}
.ws6_c00032{word-spacing:5.638400pt;}
.ws8_c00032{word-spacing:8.793600pt;}
.ws2c_c00032{word-spacing:8.819200pt;}
.ws7_c00032{word-spacing:8.825600pt;}
.ws2d_c00032{word-spacing:8.844800pt;}
.ws24_c00032{word-spacing:10.387200pt;}
.ws25_c00032{word-spacing:10.393600pt;}
.ws23_c00032{word-spacing:10.412800pt;}
.ws30_c00032{word-spacing:12.320000pt;}
.ws1_c00032{word-spacing:13.926400pt;}
.ws2_c00032{word-spacing:13.932800pt;}
.ws13_c00032{word-spacing:16.147200pt;}
.ws12_c00032{word-spacing:16.224000pt;}
.ws16_c00032{word-spacing:17.440000pt;}
.ws22_c00032{word-spacing:18.598400pt;}
.ws21_c00032{word-spacing:18.752000pt;}
.ws4_c00032{word-spacing:19.065600pt;}
.ws3_c00032{word-spacing:19.078400pt;}
.ws2e_c00032{word-spacing:20.640000pt;}
.ws37_c00032{word-spacing:21.273600pt;}
.ws28_c00032{word-spacing:24.774400pt;}
.ws29_c00032{word-spacing:24.825600pt;}
.ws18_c00032{word-spacing:37.478400pt;}
.ws17_c00032{word-spacing:37.510400pt;}
.ws32_c00032{word-spacing:40.460800pt;}
.ws31_c00032{word-spacing:40.467200pt;}
.ws36_c00032{word-spacing:57.849600pt;}
.ws35_c00032{word-spacing:58.016000pt;}
._0_c00032{width:0.889600pt;}
.fs0_c00032{font-size:64.000000pt;}
.y0_c00032{bottom:0.000000pt;}
.y2_c00032{bottom:41.627067pt;}
.y1_c00032{bottom:60.027067pt;}
.y22_c00032{bottom:134.027067pt;}
.y21_c00032{bottom:152.427067pt;}
.y20_c00032{bottom:170.827067pt;}
.y1f_c00032{bottom:189.227067pt;}
.y1e_c00032{bottom:207.627067pt;}
.y1d_c00032{bottom:226.027067pt;}
.y1c_c00032{bottom:269.627067pt;}
.y1b_c00032{bottom:297.227067pt;}
.y1a_c00032{bottom:324.827067pt;}
.y19_c00032{bottom:352.347067pt;}
.y18_c00032{bottom:379.947067pt;}
.y17_c00032{bottom:407.547067pt;}
.y16_c00032{bottom:435.147067pt;}
.y15_c00032{bottom:462.747067pt;}
.y14_c00032{bottom:490.347067pt;}
.y13_c00032{bottom:525.947067pt;}
.y12_c00032{bottom:553.547067pt;}
.y11_c00032{bottom:581.147067pt;}
.y10_c00032{bottom:608.747067pt;}
.yf_c00032{bottom:636.347067pt;}
.ye_c00032{bottom:663.947067pt;}
.yd_c00032{bottom:699.547067pt;}
.yc_c00032{bottom:727.147067pt;}
.yb_c00032{bottom:754.747067pt;}
.ya_c00032{bottom:782.347067pt;}
.y9_c00032{bottom:809.947067pt;}
.y8_c00032{bottom:837.547067pt;}
.y7_c00032{bottom:865.147067pt;}
.y6_c00032{bottom:892.747067pt;}
.y5_c00032{bottom:920.347067pt;}
.y4_c00032{bottom:947.947067pt;}
.y3_c00032{bottom:975.547067pt;}
.h1_c00032{height:56.156250pt;}
.h2_c00032{height:57.375000pt;}
.h3_c00032{height:66.750000pt;}
.h0_c00032{height:1122.666667pt;}
.w1_c00032{width:793.333333pt;}
.w0_c00032{width:793.626667pt;}
.x0_c00032{left:0.000000pt;}
.x2_c00032{left:151.200000pt;}
.x3_c00032{left:170.160000pt;}
.x1_c00032{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5e1c5f61476dc25a6d2d29f6.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.093262;font-style:normal;font-weight:normal;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_e309585217340f6ef7e0dd65.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.106934;font-style: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;}
.ls4_c00033{letter-spacing:-0.072000px;}
.ls5_c00033{letter-spacing:-0.064800px;}
.lsa_c00033{letter-spacing:-0.057600px;}
.ls8_c00033{letter-spacing:-0.050400px;}
.ls2_c00033{letter-spacing:-0.043200px;}
.ls9_c00033{letter-spacing:-0.036000px;}
.ls3_c00033{letter-spacing:-0.028800px;}
.ls6_c00033{letter-spacing:-0.021600px;}
.ls7_c00033{letter-spacing:-0.014400px;}
.lsb_c00033{letter-spacing:-0.007200px;}
.ls1_c00033{letter-spacing:0.000000px;}
.ls0_c00033{letter-spacing:0.007200px;}
.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;}
}
.ws18_c00033{word-spacing:-2.376000px;}
.ws17_c00033{word-spacing:-2.318400px;}
.ws0_c00033{word-spacing:0.000000px;}
.ws6_c00033{word-spacing:0.180000px;}
.ws3_c00033{word-spacing:0.187200px;}
.ws2a_c00033{word-spacing:0.194400px;}
.wse_c00033{word-spacing:0.208800px;}
.ws16_c00033{word-spacing:2.714400px;}
.ws1f_c00033{word-spacing:4.867200px;}
.wsa_c00033{word-spacing:6.235200px;}
.wsb_c00033{word-spacing:6.256800px;}
.ws1c_c00033{word-spacing:6.631200px;}
.ws1b_c00033{word-spacing:6.674400px;}
.ws1e_c00033{word-spacing:8.107200px;}
.ws1d_c00033{word-spacing:8.121600px;}
.ws19_c00033{word-spacing:8.834400px;}
.ws21_c00033{word-spacing:9.165600px;}
.ws20_c00033{word-spacing:9.244800px;}
.ws9_c00033{word-spacing:9.568800px;}
.wsc_c00033{word-spacing:10.260000px;}
.wsd_c00033{word-spacing:10.389600px;}
.ws27_c00033{word-spacing:12.535200px;}
.ws28_c00033{word-spacing:12.816000px;}
.ws25_c00033{word-spacing:13.838400px;}
.ws26_c00033{word-spacing:13.881600px;}
.ws1a_c00033{word-spacing:15.307200px;}
.ws7_c00033{word-spacing:16.732800px;}
.ws8_c00033{word-spacing:16.740000px;}
.ws4_c00033{word-spacing:21.758400px;}
.ws5_c00033{word-spacing:21.823200px;}
.wsf_c00033{word-spacing:24.609600px;}
.ws10_c00033{word-spacing:24.703200px;}
.ws13_c00033{word-spacing:25.660800px;}
.ws14_c00033{word-spacing:25.747200px;}
.ws22_c00033{word-spacing:28.620000px;}
.ws1_c00033{word-spacing:29.361600px;}
.ws2_c00033{word-spacing:29.368800px;}
.ws12_c00033{word-spacing:30.722400px;}
.ws11_c00033{word-spacing:30.808800px;}
.ws23_c00033{word-spacing:33.220800px;}
.ws24_c00033{word-spacing:33.321600px;}
.ws15_c00033{word-spacing:40.874400px;}
.ws29_c00033{word-spacing:46.980000px;}
._1_c00033{margin-left:-6.004800px;}
._0_c00033{width:1.080000px;}
.fc0_c00033{color:rgb(0,0,0);}
.fs0_c00033{font-size:72.000000px;}
.y0_c00033{bottom:0.000000px;}
.y2_c00033{bottom:46.830450px;}
.y1_c00033{bottom:67.530450px;}
.y20_c00033{bottom:153.480450px;}
.y1f_c00033{bottom:184.530450px;}
.y1e_c00033{bottom:215.580450px;}
.y1d_c00033{bottom:246.630450px;}
.y1c_c00033{bottom:277.680450px;}
.y1b_c00033{bottom:308.730450px;}
.y1a_c00033{bottom:339.690450px;}
.y19_c00033{bottom:379.740450px;}
.y18_c00033{bottom:410.790450px;}
.y17_c00033{bottom:441.840450px;}
.y16_c00033{bottom:481.890450px;}
.y15_c00033{bottom:512.940450px;}
.y14_c00033{bottom:543.990450px;}
.y13_c00033{bottom:575.040450px;}
.y12_c00033{bottom:606.090450px;}
.y11_c00033{bottom:637.140450px;}
.y10_c00033{bottom:668.190450px;}
.yf_c00033{bottom:699.240450px;}
.ye_c00033{bottom:730.290450px;}
.yd_c00033{bottom:761.340450px;}
.yc_c00033{bottom:801.390450px;}
.yb_c00033{bottom:832.440450px;}
.ya_c00033{bottom:863.490450px;}
.y9_c00033{bottom:894.540450px;}
.y8_c00033{bottom:925.590450px;}
.y7_c00033{bottom:965.640450px;}
.y6_c00033{bottom:996.690450px;}
.y5_c00033{bottom:1027.740450px;}
.y4_c00033{bottom:1058.790450px;}
.y3_c00033{bottom:1097.490450px;}
.h1_c00033{height:63.175781px;}
.h2_c00033{height:64.546875px;}
.h0_c00033{height:1263.000000px;}
.w1_c00033{width:892.500000px;}
.w0_c00033{width:892.830000px;}
.x0_c00033{left:0.000000px;}
.x2_c00033{left:127.620000px;}
.x3_c00033{left:148.950000px;}
.x1_c00033{left:704.880000px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls4_c00033{letter-spacing:-0.064000pt;}
.ls5_c00033{letter-spacing:-0.057600pt;}
.lsa_c00033{letter-spacing:-0.051200pt;}
.ls8_c00033{letter-spacing:-0.044800pt;}
.ls2_c00033{letter-spacing:-0.038400pt;}
.ls9_c00033{letter-spacing:-0.032000pt;}
.ls3_c00033{letter-spacing:-0.025600pt;}
.ls6_c00033{letter-spacing:-0.019200pt;}
.ls7_c00033{letter-spacing:-0.012800pt;}
.lsb_c00033{letter-spacing:-0.006400pt;}
.ls1_c00033{letter-spacing:0.000000pt;}
.ls0_c00033{letter-spacing:0.006400pt;}
.ws18_c00033{word-spacing:-2.112000pt;}
.ws17_c00033{word-spacing:-2.060800pt;}
.ws0_c00033{word-spacing:0.000000pt;}
.ws6_c00033{word-spacing:0.160000pt;}
.ws3_c00033{word-spacing:0.166400pt;}
.ws2a_c00033{word-spacing:0.172800pt;}
.wse_c00033{word-spacing:0.185600pt;}
.ws16_c00033{word-spacing:2.412800pt;}
.ws1f_c00033{word-spacing:4.326400pt;}
.wsa_c00033{word-spacing:5.542400pt;}
.wsb_c00033{word-spacing:5.561600pt;}
.ws1c_c00033{word-spacing:5.894400pt;}
.ws1b_c00033{word-spacing:5.932800pt;}
.ws1e_c00033{word-spacing:7.206400pt;}
.ws1d_c00033{word-spacing:7.219200pt;}
.ws19_c00033{word-spacing:7.852800pt;}
.ws21_c00033{word-spacing:8.147200pt;}
.ws20_c00033{word-spacing:8.217600pt;}
.ws9_c00033{word-spacing:8.505600pt;}
.wsc_c00033{word-spacing:9.120000pt;}
.wsd_c00033{word-spacing:9.235200pt;}
.ws27_c00033{word-spacing:11.142400pt;}
.ws28_c00033{word-spacing:11.392000pt;}
.ws25_c00033{word-spacing:12.300800pt;}
.ws26_c00033{word-spacing:12.339200pt;}
.ws1a_c00033{word-spacing:13.606400pt;}
.ws7_c00033{word-spacing:14.873600pt;}
.ws8_c00033{word-spacing:14.880000pt;}
.ws4_c00033{word-spacing:19.340800pt;}
.ws5_c00033{word-spacing:19.398400pt;}
.wsf_c00033{word-spacing:21.875200pt;}
.ws10_c00033{word-spacing:21.958400pt;}
.ws13_c00033{word-spacing:22.809600pt;}
.ws14_c00033{word-spacing:22.886400pt;}
.ws22_c00033{word-spacing:25.440000pt;}
.ws1_c00033{word-spacing:26.099200pt;}
.ws2_c00033{word-spacing:26.105600pt;}
.ws12_c00033{word-spacing:27.308800pt;}
.ws11_c00033{word-spacing:27.385600pt;}
.ws23_c00033{word-spacing:29.529600pt;}
.ws24_c00033{word-spacing:29.619200pt;}
.ws15_c00033{word-spacing:36.332800pt;}
.ws29_c00033{word-spacing:41.760000pt;}
._1_c00033{margin-left:-5.337600pt;}
._0_c00033{width:0.960000pt;}
.fs0_c00033{font-size:64.000000pt;}
.y0_c00033{bottom:0.000000pt;}
.y2_c00033{bottom:41.627067pt;}
.y1_c00033{bottom:60.027067pt;}
.y20_c00033{bottom:136.427067pt;}
.y1f_c00033{bottom:164.027067pt;}
.y1e_c00033{bottom:191.627067pt;}
.y1d_c00033{bottom:219.227067pt;}
.y1c_c00033{bottom:246.827067pt;}
.y1b_c00033{bottom:274.427067pt;}
.y1a_c00033{bottom:301.947067pt;}
.y19_c00033{bottom:337.547067pt;}
.y18_c00033{bottom:365.147067pt;}
.y17_c00033{bottom:392.747067pt;}
.y16_c00033{bottom:428.347067pt;}
.y15_c00033{bottom:455.947067pt;}
.y14_c00033{bottom:483.547067pt;}
.y13_c00033{bottom:511.147067pt;}
.y12_c00033{bottom:538.747067pt;}
.y11_c00033{bottom:566.347067pt;}
.y10_c00033{bottom:593.947067pt;}
.yf_c00033{bottom:621.547067pt;}
.ye_c00033{bottom:649.147067pt;}
.yd_c00033{bottom:676.747067pt;}
.yc_c00033{bottom:712.347067pt;}
.yb_c00033{bottom:739.947067pt;}
.ya_c00033{bottom:767.547067pt;}
.y9_c00033{bottom:795.147067pt;}
.y8_c00033{bottom:822.747067pt;}
.y7_c00033{bottom:858.347067pt;}
.y6_c00033{bottom:885.947067pt;}
.y5_c00033{bottom:913.547067pt;}
.y4_c00033{bottom:941.147067pt;}
.y3_c00033{bottom:975.547067pt;}
.h1_c00033{height:56.156250pt;}
.h2_c00033{height:57.375000pt;}
.h0_c00033{height:1122.666667pt;}
.w1_c00033{width:793.333333pt;}
.w0_c00033{width:793.626667pt;}
.x0_c00033{left:0.000000pt;}
.x2_c00033{left:113.440000pt;}
.x3_c00033{left:132.400000pt;}
.x1_c00033{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4bca870a8ea913c43c2f49c8.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.093262;font-style:normal;font-weight:normal;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_b3e8c9f5717656225352c24e.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.106934;font-style:normal;font-weight:normal;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_a9896f0c536f3d0e4602e9c6.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00034;src:url('chunks/assets/font_61d4cfbfa044bdddee7b47bc.woff2')format("woff");}.ff4_c00034{font-family:ff4_c00034;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.ls4_c00034{letter-spacing:-0.064800px;}
.ls1_c00034{letter-spacing:-0.057600px;}
.ls7_c00034{letter-spacing:-0.050400px;}
.ls3_c00034{letter-spacing:-0.043200px;}
.lsa_c00034{letter-spacing:-0.036000px;}
.ls2_c00034{letter-spacing:-0.028800px;}
.ls5_c00034{letter-spacing:-0.021600px;}
.ls6_c00034{letter-spacing:-0.014400px;}
.ls8_c00034{letter-spacing:-0.007200px;}
.ls0_c00034{letter-spacing:0.000000px;}
.lsb_c00034{letter-spacing:0.014400px;}
.lsc_c00034{letter-spacing:0.021600px;}
.ls9_c00034{letter-spacing:0.036000px;}
.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;}
}
.ws13_c00034{word-spacing:-2.325600px;}
.wsc_c00034{word-spacing:-2.311200px;}
.ws12_c00034{word-spacing:-2.296800px;}
.ws0_c00034{word-spacing:0.000000px;}
.ws1b_c00034{word-spacing:0.036000px;}
.wsf_c00034{word-spacing:0.144000px;}
.ws25_c00034{word-spacing:0.158400px;}
.ws1d_c00034{word-spacing:0.172800px;}
.ws1a_c00034{word-spacing:0.180000px;}
.ws14_c00034{word-spacing:0.187200px;}
.ws20_c00034{word-spacing:0.194400px;}
.ws19_c00034{word-spacing:0.208800px;}
.wsb_c00034{word-spacing:0.302400px;}
.ws2c_c00034{word-spacing:0.316800px;}
.ws9_c00034{word-spacing:0.568800px;}
.wsa_c00034{word-spacing:0.612000px;}
.ws1_c00034{word-spacing:0.936000px;}
.ws18_c00034{word-spacing:5.220000px;}
.ws17_c00034{word-spacing:5.234400px;}
.ws27_c00034{word-spacing:5.313600px;}
.ws26_c00034{word-spacing:5.371200px;}
.ws7_c00034{word-spacing:5.572800px;}
.ws8_c00034{word-spacing:5.673600px;}
.ws29_c00034{word-spacing:7.387200px;}
.ws28_c00034{word-spacing:7.394400px;}
.ws23_c00034{word-spacing:9.914400px;}
.ws24_c00034{word-spacing:9.957600px;}
.ws11_c00034{word-spacing:12.052800px;}
.ws10_c00034{word-spacing:12.060000px;}
.ws5_c00034{word-spacing:12.636000px;}
.ws6_c00034{word-spacing:12.780000px;}
.ws4_c00034{word-spacing:12.823200px;}
.ws1e_c00034{word-spacing:13.168800px;}
.ws1f_c00034{word-spacing:13.262400px;}
.ws16_c00034{word-spacing:15.674400px;}
.ws15_c00034{word-spacing:15.696000px;}
.ws2_c00034{word-spacing:17.827200px;}
.ws3_c00034{word-spacing:17.899200px;}
.ws1c_c00034{word-spacing:21.081600px;}
.ws2a_c00034{word-spacing:21.693600px;}
.ws2b_c00034{word-spacing:21.801600px;}
.wse_c00034{word-spacing:37.180800px;}
.wsd_c00034{word-spacing:37.260000px;}
.ws22_c00034{word-spacing:126.136800px;}
.ws21_c00034{word-spacing:126.194400px;}
._6_c00034{margin-left:-71.280000px;}
._0_c00034{width:1.195200px;}
._4_c00034{width:33.840000px;}
._2_c00034{width:39.240000px;}
._5_c00034{width:41.760000px;}
._7_c00034{width:45.000000px;}
._9_c00034{width:47.520000px;}
._8_c00034{width:49.536000px;}
._3_c00034{width:54.720000px;}
._1_c00034{width:57.240000px;}
.fc0_c00034{color:rgb(0,0,0);}
.fs0_c00034{font-size:72.000000px;}
.y0_c00034{bottom:0.000000px;}
.y2_c00034{bottom:46.830450px;}
.y1_c00034{bottom:67.530450px;}
.y21_c00034{bottom:134.670450px;}
.y20_c00034{bottom:166.980450px;}
.y1f_c00034{bottom:198.030450px;}
.y1e_c00034{bottom:228.990450px;}
.y1d_c00034{bottom:261.300450px;}
.y1c_c00034{bottom:292.350450px;}
.y1b_c00034{bottom:324.660450px;}
.y1a_c00034{bottom:355.620450px;}
.y19_c00034{bottom:387.930450px;}
.y18_c00034{bottom:418.980450px;}
.y17_c00034{bottom:451.290450px;}
.y16_c00034{bottom:482.250450px;}
.y15_c00034{bottom:514.470450px;}
.y14_c00034{bottom:546.780450px;}
.y13_c00034{bottom:577.830450px;}
.y12_c00034{bottom:610.050450px;}
.y11_c00034{bottom:642.360450px;}
.y10_c00034{bottom:673.410450px;}
.yf_c00034{bottom:704.460450px;}
.ye_c00034{bottom:736.770450px;}
.yd_c00034{bottom:767.730450px;}
.yc_c00034{bottom:809.040450px;}
.yb_c00034{bottom:840.090450px;}
.ya_c00034{bottom:880.140450px;}
.y9_c00034{bottom:911.190450px;}
.y8_c00034{bottom:942.240450px;}
.y7_c00034{bottom:973.290450px;}
.y6_c00034{bottom:1004.250450px;}
.y5_c00034{bottom:1035.390450px;}
.y4_c00034{bottom:1066.440450px;}
.y3_c00034{bottom:1097.490450px;}
.h1_c00034{height:63.175781px;}
.h2_c00034{height:64.546875px;}
.h3_c00034{height:75.093750px;}
.h0_c00034{height:1263.000000px;}
.w1_c00034{width:892.500000px;}
.w0_c00034{width:892.830000px;}
.x0_c00034{left:0.000000px;}
.x2_c00034{left:170.100000px;}
.x3_c00034{left:197.100000px;}
.x4_c00034{left:224.100000px;}
.x1_c00034{left:747.360000px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls4_c00034{letter-spacing:-0.057600pt;}
.ls1_c00034{letter-spacing:-0.051200pt;}
.ls7_c00034{letter-spacing:-0.044800pt;}
.ls3_c00034{letter-spacing:-0.038400pt;}
.lsa_c00034{letter-spacing:-0.032000pt;}
.ls2_c00034{letter-spacing:-0.025600pt;}
.ls5_c00034{letter-spacing:-0.019200pt;}
.ls6_c00034{letter-spacing:-0.012800pt;}
.ls8_c00034{letter-spacing:-0.006400pt;}
.ls0_c00034{letter-spacing:0.000000pt;}
.lsb_c00034{letter-spacing:0.012800pt;}
.lsc_c00034{letter-spacing:0.019200pt;}
.ls9_c00034{letter-spacing:0.032000pt;}
.ws13_c00034{word-spacing:-2.067200pt;}
.wsc_c00034{word-spacing:-2.054400pt;}
.ws12_c00034{word-spacing:-2.041600pt;}
.ws0_c00034{word-spacing:0.000000pt;}
.ws1b_c00034{word-spacing:0.032000pt;}
.wsf_c00034{word-spacing:0.128000pt;}
.ws25_c00034{word-spacing:0.140800pt;}
.ws1d_c00034{word-spacing:0.153600pt;}
.ws1a_c00034{word-spacing:0.160000pt;}
.ws14_c00034{word-spacing:0.166400pt;}
.ws20_c00034{word-spacing:0.172800pt;}
.ws19_c00034{word-spacing:0.185600pt;}
.wsb_c00034{word-spacing:0.268800pt;}
.ws2c_c00034{word-spacing:0.281600pt;}
.ws9_c00034{word-spacing:0.505600pt;}
.wsa_c00034{word-spacing:0.544000pt;}
.ws1_c00034{word-spacing:0.832000pt;}
.ws18_c00034{word-spacing:4.640000pt;}
.ws17_c00034{word-spacing:4.652800pt;}
.ws27_c00034{word-spacing:4.723200pt;}
.ws26_c00034{word-spacing:4.774400pt;}
.ws7_c00034{word-spacing:4.953600pt;}
.ws8_c00034{word-spacing:5.043200pt;}
.ws29_c00034{word-spacing:6.566400pt;}
.ws28_c00034{word-spacing:6.572800pt;}
.ws23_c00034{word-spacing:8.812800pt;}
.ws24_c00034{word-spacing:8.851200pt;}
.ws11_c00034{word-spacing:10.713600pt;}
.ws10_c00034{word-spacing:10.720000pt;}
.ws5_c00034{word-spacing:11.232000pt;}
.ws6_c00034{word-spacing:11.360000pt;}
.ws4_c00034{word-spacing:11.398400pt;}
.ws1e_c00034{word-spacing:11.705600pt;}
.ws1f_c00034{word-spacing:11.788800pt;}
.ws16_c00034{word-spacing:13.932800pt;}
.ws15_c00034{word-spacing:13.952000pt;}
.ws2_c00034{word-spacing:15.846400pt;}
.ws3_c00034{word-spacing:15.910400pt;}
.ws1c_c00034{word-spacing:18.739200pt;}
.ws2a_c00034{word-spacing:19.283200pt;}
.ws2b_c00034{word-spacing:19.379200pt;}
.wse_c00034{word-spacing:33.049600pt;}
.wsd_c00034{word-spacing:33.120000pt;}
.ws22_c00034{word-spacing:112.121600pt;}
.ws21_c00034{word-spacing:112.172800pt;}
._6_c00034{margin-left:-63.360000pt;}
._0_c00034{width:1.062400pt;}
._4_c00034{width:30.080000pt;}
._2_c00034{width:34.880000pt;}
._5_c00034{width:37.120000pt;}
._7_c00034{width:40.000000pt;}
._9_c00034{width:42.240000pt;}
._8_c00034{width:44.032000pt;}
._3_c00034{width:48.640000pt;}
._1_c00034{width:50.880000pt;}
.fs0_c00034{font-size:64.000000pt;}
.y0_c00034{bottom:0.000000pt;}
.y2_c00034{bottom:41.627067pt;}
.y1_c00034{bottom:60.027067pt;}
.y21_c00034{bottom:119.707067pt;}
.y20_c00034{bottom:148.427067pt;}
.y1f_c00034{bottom:176.027067pt;}
.y1e_c00034{bottom:203.547067pt;}
.y1d_c00034{bottom:232.267067pt;}
.y1c_c00034{bottom:259.867067pt;}
.y1b_c00034{bottom:288.587067pt;}
.y1a_c00034{bottom:316.107067pt;}
.y19_c00034{bottom:344.827067pt;}
.y18_c00034{bottom:372.427067pt;}
.y17_c00034{bottom:401.147067pt;}
.y16_c00034{bottom:428.667067pt;}
.y15_c00034{bottom:457.307067pt;}
.y14_c00034{bottom:486.027067pt;}
.y13_c00034{bottom:513.627067pt;}
.y12_c00034{bottom:542.267067pt;}
.y11_c00034{bottom:570.987067pt;}
.y10_c00034{bottom:598.587067pt;}
.yf_c00034{bottom:626.187067pt;}
.ye_c00034{bottom:654.907067pt;}
.yd_c00034{bottom:682.427067pt;}
.yc_c00034{bottom:719.147067pt;}
.yb_c00034{bottom:746.747067pt;}
.ya_c00034{bottom:782.347067pt;}
.y9_c00034{bottom:809.947067pt;}
.y8_c00034{bottom:837.547067pt;}
.y7_c00034{bottom:865.147067pt;}
.y6_c00034{bottom:892.667067pt;}
.y5_c00034{bottom:920.347067pt;}
.y4_c00034{bottom:947.947067pt;}
.y3_c00034{bottom:975.547067pt;}
.h1_c00034{height:56.156250pt;}
.h2_c00034{height:57.375000pt;}
.h3_c00034{height:66.750000pt;}
.h0_c00034{height:1122.666667pt;}
.w1_c00034{width:793.333333pt;}
.w0_c00034{width:793.626667pt;}
.x0_c00034{left:0.000000pt;}
.x2_c00034{left:151.200000pt;}
.x3_c00034{left:175.200000pt;}
.x4_c00034{left:199.200000pt;}
.x1_c00034{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cf5a0d503ca1b88499e301a0.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.093262;font-style:normal;font-weight:normal;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_c11fb212b703496987698c7f.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.106934;font-style:normal;font-weight:normal;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_8805f4d0150f807968860f4d.woff2')format("woff");}.ff3_c00035{font-family:ff3_c00035;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsd_c00035{letter-spacing:-0.086400px;}
.lsc_c00035{letter-spacing:-0.079200px;}
.ls6_c00035{letter-spacing:-0.072000px;}
.lsa_c00035{letter-spacing:-0.064800px;}
.ls5_c00035{letter-spacing:-0.057600px;}
.ls9_c00035{letter-spacing:-0.050400px;}
.ls3_c00035{letter-spacing:-0.043200px;}
.ls4_c00035{letter-spacing:-0.036000px;}
.ls7_c00035{letter-spacing:-0.028800px;}
.lsb_c00035{letter-spacing:-0.021600px;}
.ls8_c00035{letter-spacing:-0.014400px;}
.lse_c00035{letter-spacing:-0.007200px;}
.ls2_c00035{letter-spacing:0.000000px;}
.ls0_c00035{letter-spacing:0.007200px;}
.ls1_c00035{letter-spacing:0.144000px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00035{word-spacing:-20.001600px;}
.ws2e_c00035{word-spacing:-4.867200px;}
.ws2f_c00035{word-spacing:-4.773600px;}
.ws1e_c00035{word-spacing:-2.347200px;}
.ws24_c00035{word-spacing:-2.332800px;}
.ws25_c00035{word-spacing:-2.282400px;}
.ws1f_c00035{word-spacing:-2.260800px;}
.ws16_c00035{word-spacing:-1.972800px;}
.ws31_c00035{word-spacing:-1.620000px;}
.ws30_c00035{word-spacing:-1.612800px;}
.ws10_c00035{word-spacing:-1.591200px;}
.ws11_c00035{word-spacing:-1.576800px;}
.ws2b_c00035{word-spacing:-0.252000px;}
.ws12_c00035{word-spacing:-0.136800px;}
.ws13_c00035{word-spacing:-0.043200px;}
.ws1_c00035{word-spacing:0.000000px;}
.ws1d_c00035{word-spacing:0.093600px;}
.ws8_c00035{word-spacing:0.172800px;}
.ws35_c00035{word-spacing:0.180000px;}
.ws27_c00035{word-spacing:0.194400px;}
.ws7_c00035{word-spacing:0.273600px;}
.ws28_c00035{word-spacing:0.525600px;}
.ws3_c00035{word-spacing:0.554400px;}
.ws4_c00035{word-spacing:0.576000px;}
.ws32_c00035{word-spacing:1.260000px;}
.ws21_c00035{word-spacing:5.162400px;}
.ws20_c00035{word-spacing:5.169600px;}
.wsf_c00035{word-spacing:7.293600px;}
.wse_c00035{word-spacing:7.408800px;}
.wsb_c00035{word-spacing:10.591200px;}
.ws9_c00035{word-spacing:10.612800px;}
.wsa_c00035{word-spacing:10.634400px;}
.wsc_c00035{word-spacing:13.780800px;}
.wsd_c00035{word-spacing:13.881600px;}
.ws26_c00035{word-spacing:15.667200px;}
.ws34_c00035{word-spacing:17.812800px;}
.ws33_c00035{word-spacing:17.877600px;}
.ws23_c00035{word-spacing:21.405600px;}
.ws22_c00035{word-spacing:21.427200px;}
.ws2_c00035{word-spacing:28.281600px;}
.ws1c_c00035{word-spacing:28.310400px;}
.ws6_c00035{word-spacing:28.987200px;}
.ws5_c00035{word-spacing:29.030400px;}
.ws17_c00035{word-spacing:33.660000px;}
.ws19_c00035{word-spacing:33.674400px;}
.ws18_c00035{word-spacing:33.832800px;}
.ws29_c00035{word-spacing:37.260000px;}
.ws2a_c00035{word-spacing:37.267200px;}
.ws15_c00035{word-spacing:45.900000px;}
.ws14_c00035{word-spacing:45.914400px;}
.ws1a_c00035{word-spacing:48.060000px;}
.ws1b_c00035{word-spacing:48.074400px;}
.ws2d_c00035{word-spacing:71.445600px;}
.ws2c_c00035{word-spacing:71.467200px;}
._1_c00035{margin-left:-17.755200px;}
._0_c00035{width:1.152000px;}
.fc0_c00035{color:rgb(0,0,0);}
.fs0_c00035{font-size:72.000000px;}
.y0_c00035{bottom:0.000000px;}
.y2_c00035{bottom:46.830450px;}
.y1_c00035{bottom:67.530450px;}
.y20_c00035{bottom:170.130450px;}
.y1f_c00035{bottom:201.180450px;}
.y1e_c00035{bottom:232.230450px;}
.y1d_c00035{bottom:263.280450px;}
.y1c_c00035{bottom:294.330450px;}
.y1b_c00035{bottom:325.380450px;}
.y1a_c00035{bottom:356.430450px;}
.y19_c00035{bottom:387.390450px;}
.y18_c00035{bottom:418.440450px;}
.y17_c00035{bottom:458.490450px;}
.y16_c00035{bottom:489.540450px;}
.y15_c00035{bottom:520.590450px;}
.y14_c00035{bottom:551.640450px;}
.y13_c00035{bottom:582.690450px;}
.y12_c00035{bottom:613.740450px;}
.y11_c00035{bottom:653.790450px;}
.y10_c00035{bottom:684.840450px;}
.yf_c00035{bottom:715.890450px;}
.ye_c00035{bottom:746.940450px;}
.yd_c00035{bottom:777.990450px;}
.yc_c00035{bottom:809.040450px;}
.yb_c00035{bottom:840.090450px;}
.ya_c00035{bottom:871.140450px;}
.y9_c00035{bottom:902.190450px;}
.y8_c00035{bottom:933.240450px;}
.y7_c00035{bottom:964.290450px;}
.y6_c00035{bottom:1004.340450px;}
.y5_c00035{bottom:1035.390450px;}
.y4_c00035{bottom:1066.440450px;}
.y3_c00035{bottom:1097.490450px;}
.h1_c00035{height:63.175781px;}
.h2_c00035{height:64.546875px;}
.h3_c00035{height:75.093750px;}
.h0_c00035{height:1263.000000px;}
.w1_c00035{width:892.500000px;}
.w0_c00035{width:892.830000px;}
.x0_c00035{left:0.000000px;}
.x2_c00035{left:127.620000px;}
.x1_c00035{left:704.880000px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.lsd_c00035{letter-spacing:-0.076800pt;}
.lsc_c00035{letter-spacing:-0.070400pt;}
.ls6_c00035{letter-spacing:-0.064000pt;}
.lsa_c00035{letter-spacing:-0.057600pt;}
.ls5_c00035{letter-spacing:-0.051200pt;}
.ls9_c00035{letter-spacing:-0.044800pt;}
.ls3_c00035{letter-spacing:-0.038400pt;}
.ls4_c00035{letter-spacing:-0.032000pt;}
.ls7_c00035{letter-spacing:-0.025600pt;}
.lsb_c00035{letter-spacing:-0.019200pt;}
.ls8_c00035{letter-spacing:-0.012800pt;}
.lse_c00035{letter-spacing:-0.006400pt;}
.ls2_c00035{letter-spacing:0.000000pt;}
.ls0_c00035{letter-spacing:0.006400pt;}
.ls1_c00035{letter-spacing:0.128000pt;}
.ws0_c00035{word-spacing:-17.779200pt;}
.ws2e_c00035{word-spacing:-4.326400pt;}
.ws2f_c00035{word-spacing:-4.243200pt;}
.ws1e_c00035{word-spacing:-2.086400pt;}
.ws24_c00035{word-spacing:-2.073600pt;}
.ws25_c00035{word-spacing:-2.028800pt;}
.ws1f_c00035{word-spacing:-2.009600pt;}
.ws16_c00035{word-spacing:-1.753600pt;}
.ws31_c00035{word-spacing:-1.440000pt;}
.ws30_c00035{word-spacing:-1.433600pt;}
.ws10_c00035{word-spacing:-1.414400pt;}
.ws11_c00035{word-spacing:-1.401600pt;}
.ws2b_c00035{word-spacing:-0.224000pt;}
.ws12_c00035{word-spacing:-0.121600pt;}
.ws13_c00035{word-spacing:-0.038400pt;}
.ws1_c00035{word-spacing:0.000000pt;}
.ws1d_c00035{word-spacing:0.083200pt;}
.ws8_c00035{word-spacing:0.153600pt;}
.ws35_c00035{word-spacing:0.160000pt;}
.ws27_c00035{word-spacing:0.172800pt;}
.ws7_c00035{word-spacing:0.243200pt;}
.ws28_c00035{word-spacing:0.467200pt;}
.ws3_c00035{word-spacing:0.492800pt;}
.ws4_c00035{word-spacing:0.512000pt;}
.ws32_c00035{word-spacing:1.120000pt;}
.ws21_c00035{word-spacing:4.588800pt;}
.ws20_c00035{word-spacing:4.595200pt;}
.wsf_c00035{word-spacing:6.483200pt;}
.wse_c00035{word-spacing:6.585600pt;}
.wsb_c00035{word-spacing:9.414400pt;}
.ws9_c00035{word-spacing:9.433600pt;}
.wsa_c00035{word-spacing:9.452800pt;}
.wsc_c00035{word-spacing:12.249600pt;}
.wsd_c00035{word-spacing:12.339200pt;}
.ws26_c00035{word-spacing:13.926400pt;}
.ws34_c00035{word-spacing:15.833600pt;}
.ws33_c00035{word-spacing:15.891200pt;}
.ws23_c00035{word-spacing:19.027200pt;}
.ws22_c00035{word-spacing:19.046400pt;}
.ws2_c00035{word-spacing:25.139200pt;}
.ws1c_c00035{word-spacing:25.164800pt;}
.ws6_c00035{word-spacing:25.766400pt;}
.ws5_c00035{word-spacing:25.804800pt;}
.ws17_c00035{word-spacing:29.920000pt;}
.ws19_c00035{word-spacing:29.932800pt;}
.ws18_c00035{word-spacing:30.073600pt;}
.ws29_c00035{word-spacing:33.120000pt;}
.ws2a_c00035{word-spacing:33.126400pt;}
.ws15_c00035{word-spacing:40.800000pt;}
.ws14_c00035{word-spacing:40.812800pt;}
.ws1a_c00035{word-spacing:42.720000pt;}
.ws1b_c00035{word-spacing:42.732800pt;}
.ws2d_c00035{word-spacing:63.507200pt;}
.ws2c_c00035{word-spacing:63.526400pt;}
._1_c00035{margin-left:-15.782400pt;}
._0_c00035{width:1.024000pt;}
.fs0_c00035{font-size:64.000000pt;}
.y0_c00035{bottom:0.000000pt;}
.y2_c00035{bottom:41.627067pt;}
.y1_c00035{bottom:60.027067pt;}
.y20_c00035{bottom:151.227067pt;}
.y1f_c00035{bottom:178.827067pt;}
.y1e_c00035{bottom:206.427067pt;}
.y1d_c00035{bottom:234.027067pt;}
.y1c_c00035{bottom:261.627067pt;}
.y1b_c00035{bottom:289.227067pt;}
.y1a_c00035{bottom:316.827067pt;}
.y19_c00035{bottom:344.347067pt;}
.y18_c00035{bottom:371.947067pt;}
.y17_c00035{bottom:407.547067pt;}
.y16_c00035{bottom:435.147067pt;}
.y15_c00035{bottom:462.747067pt;}
.y14_c00035{bottom:490.347067pt;}
.y13_c00035{bottom:517.947067pt;}
.y12_c00035{bottom:545.547067pt;}
.y11_c00035{bottom:581.147067pt;}
.y10_c00035{bottom:608.747067pt;}
.yf_c00035{bottom:636.347067pt;}
.ye_c00035{bottom:663.947067pt;}
.yd_c00035{bottom:691.547067pt;}
.yc_c00035{bottom:719.147067pt;}
.yb_c00035{bottom:746.747067pt;}
.ya_c00035{bottom:774.347067pt;}
.y9_c00035{bottom:801.947067pt;}
.y8_c00035{bottom:829.547067pt;}
.y7_c00035{bottom:857.147067pt;}
.y6_c00035{bottom:892.747067pt;}
.y5_c00035{bottom:920.347067pt;}
.y4_c00035{bottom:947.947067pt;}
.y3_c00035{bottom:975.547067pt;}
.h1_c00035{height:56.156250pt;}
.h2_c00035{height:57.375000pt;}
.h3_c00035{height:66.750000pt;}
.h0_c00035{height:1122.666667pt;}
.w1_c00035{width:793.333333pt;}
.w0_c00035{width:793.626667pt;}
.x0_c00035{left:0.000000pt;}
.x2_c00035{left:113.440000pt;}
.x1_c00035{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_00d2ebeb8c27022bab0c8e8f.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.093262;font-style:normal;font-weight:normal;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_2f661940c0c3f9b53f890503.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.106934;font-style:normal;font-weight:normal;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_f377c9fffd6d5b7cbd5227bd.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsa_c00036{letter-spacing:-0.079200px;}
.lse_c00036{letter-spacing:-0.072000px;}
.ls3_c00036{letter-spacing:-0.064800px;}
.ls8_c00036{letter-spacing:-0.057600px;}
.ls7_c00036{letter-spacing:-0.050400px;}
.ls4_c00036{letter-spacing:-0.043200px;}
.ls6_c00036{letter-spacing:-0.036000px;}
.ls5_c00036{letter-spacing:-0.028800px;}
.ls2_c00036{letter-spacing:-0.021600px;}
.ls9_c00036{letter-spacing:-0.014400px;}
.lsb_c00036{letter-spacing:-0.007200px;}
.ls1_c00036{letter-spacing:0.000000px;}
.ls0_c00036{letter-spacing:0.007200px;}
.lsd_c00036{letter-spacing:0.036000px;}
.lsc_c00036{letter-spacing:0.151200px;}
.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;}
}
.ws33_c00036{word-spacing:-3.391200px;}
.ws38_c00036{word-spacing:-2.347200px;}
.ws39_c00036{word-spacing:-2.340000px;}
.ws17_c00036{word-spacing:-1.987200px;}
.ws16_c00036{word-spacing:-1.886400px;}
.ws36_c00036{word-spacing:-1.231200px;}
.ws35_c00036{word-spacing:-0.885600px;}
.ws34_c00036{word-spacing:-0.849600px;}
.ws15_c00036{word-spacing:-0.237600px;}
.ws2_c00036{word-spacing:-0.172800px;}
.ws3_c00036{word-spacing:-0.136800px;}
.ws1c_c00036{word-spacing:-0.028800px;}
.ws0_c00036{word-spacing:0.000000px;}
.ws26_c00036{word-spacing:0.108000px;}
.ws14_c00036{word-spacing:0.172800px;}
.ws25_c00036{word-spacing:0.187200px;}
.wse_c00036{word-spacing:0.252000px;}
.ws1b_c00036{word-spacing:0.288000px;}
.ws31_c00036{word-spacing:1.202400px;}
.ws32_c00036{word-spacing:1.288800px;}
.wsc_c00036{word-spacing:2.692800px;}
.wsd_c00036{word-spacing:2.757600px;}
.ws11_c00036{word-spacing:3.060000px;}
.wsf_c00036{word-spacing:3.067200px;}
.ws10_c00036{word-spacing:3.074400px;}
.ws28_c00036{word-spacing:3.096000px;}
.ws27_c00036{word-spacing:3.110400px;}
.ws6_c00036{word-spacing:4.867200px;}
.ws7_c00036{word-spacing:4.960800px;}
.ws1f_c00036{word-spacing:5.940000px;}
.ws20_c00036{word-spacing:5.961600px;}
.ws24_c00036{word-spacing:6.271200px;}
.ws23_c00036{word-spacing:6.292800px;}
.ws1_c00036{word-spacing:6.300000px;}
.ws2e_c00036{word-spacing:6.307200px;}
.ws30_c00036{word-spacing:6.314400px;}
.ws2f_c00036{word-spacing:6.400800px;}
.ws5_c00036{word-spacing:6.681600px;}
.ws4_c00036{word-spacing:6.732000px;}
.ws2d_c00036{word-spacing:6.998400px;}
.ws13_c00036{word-spacing:8.020800px;}
.ws12_c00036{word-spacing:8.100000px;}
.wsa_c00036{word-spacing:8.431200px;}
.wsb_c00036{word-spacing:8.438400px;}
.ws2a_c00036{word-spacing:9.151200px;}
.ws29_c00036{word-spacing:9.180000px;}
.ws37_c00036{word-spacing:9.201600px;}
.ws18_c00036{word-spacing:10.605600px;}
.ws19_c00036{word-spacing:10.627200px;}
.ws1a_c00036{word-spacing:10.720800px;}
.ws2b_c00036{word-spacing:13.024800px;}
.ws2c_c00036{word-spacing:13.125600px;}
.ws22_c00036{word-spacing:15.271200px;}
.ws21_c00036{word-spacing:15.350400px;}
.ws1e_c00036{word-spacing:30.751200px;}
.ws1d_c00036{word-spacing:30.837600px;}
.ws8_c00036{word-spacing:33.328800px;}
.ws9_c00036{word-spacing:33.422400px;}
._0_c00036{width:1.152000px;}
.fc0_c00036{color:rgb(0,0,0);}
.fs0_c00036{font-size:72.000000px;}
.y0_c00036{bottom:0.000000px;}
.y2_c00036{bottom:46.830450px;}
.y1_c00036{bottom:67.530450px;}
.y20_c00036{bottom:143.130450px;}
.y1f_c00036{bottom:174.180450px;}
.y1e_c00036{bottom:205.230450px;}
.y1d_c00036{bottom:245.280450px;}
.y1c_c00036{bottom:276.330450px;}
.y1b_c00036{bottom:307.380450px;}
.y1a_c00036{bottom:338.430450px;}
.y19_c00036{bottom:378.390450px;}
.y18_c00036{bottom:409.440450px;}
.y17_c00036{bottom:440.490450px;}
.y16_c00036{bottom:471.540450px;}
.y15_c00036{bottom:511.590450px;}
.y14_c00036{bottom:542.640450px;}
.y13_c00036{bottom:573.690450px;}
.y12_c00036{bottom:604.740450px;}
.y11_c00036{bottom:635.790450px;}
.y10_c00036{bottom:675.840450px;}
.yf_c00036{bottom:706.890450px;}
.ye_c00036{bottom:737.940450px;}
.yd_c00036{bottom:777.990450px;}
.yc_c00036{bottom:808.950450px;}
.yb_c00036{bottom:840.090450px;}
.ya_c00036{bottom:880.140450px;}
.y9_c00036{bottom:911.190450px;}
.y8_c00036{bottom:942.240450px;}
.y7_c00036{bottom:973.290450px;}
.y6_c00036{bottom:1004.340450px;}
.y5_c00036{bottom:1035.390450px;}
.y4_c00036{bottom:1066.440450px;}
.y3_c00036{bottom:1097.490450px;}
.h1_c00036{height:63.175781px;}
.h2_c00036{height:64.546875px;}
.h3_c00036{height:75.093750px;}
.h0_c00036{height:1263.000000px;}
.w1_c00036{width:892.500000px;}
.w0_c00036{width:892.830000px;}
.x0_c00036{left:0.000000px;}
.x2_c00036{left:170.100000px;}
.x1_c00036{left:747.360000px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.lsa_c00036{letter-spacing:-0.070400pt;}
.lse_c00036{letter-spacing:-0.064000pt;}
.ls3_c00036{letter-spacing:-0.057600pt;}
.ls8_c00036{letter-spacing:-0.051200pt;}
.ls7_c00036{letter-spacing:-0.044800pt;}
.ls4_c00036{letter-spacing:-0.038400pt;}
.ls6_c00036{letter-spacing:-0.032000pt;}
.ls5_c00036{letter-spacing:-0.025600pt;}
.ls2_c00036{letter-spacing:-0.019200pt;}
.ls9_c00036{letter-spacing:-0.012800pt;}
.lsb_c00036{letter-spacing:-0.006400pt;}
.ls1_c00036{letter-spacing:0.000000pt;}
.ls0_c00036{letter-spacing:0.006400pt;}
.lsd_c00036{letter-spacing:0.032000pt;}
.lsc_c00036{letter-spacing:0.134400pt;}
.ws33_c00036{word-spacing:-3.014400pt;}
.ws38_c00036{word-spacing:-2.086400pt;}
.ws39_c00036{word-spacing:-2.080000pt;}
.ws17_c00036{word-spacing:-1.766400pt;}
.ws16_c00036{word-spacing:-1.676800pt;}
.ws36_c00036{word-spacing:-1.094400pt;}
.ws35_c00036{word-spacing:-0.787200pt;}
.ws34_c00036{word-spacing:-0.755200pt;}
.ws15_c00036{word-spacing:-0.211200pt;}
.ws2_c00036{word-spacing:-0.153600pt;}
.ws3_c00036{word-spacing:-0.121600pt;}
.ws1c_c00036{word-spacing:-0.025600pt;}
.ws0_c00036{word-spacing:0.000000pt;}
.ws26_c00036{word-spacing:0.096000pt;}
.ws14_c00036{word-spacing:0.153600pt;}
.ws25_c00036{word-spacing:0.166400pt;}
.wse_c00036{word-spacing:0.224000pt;}
.ws1b_c00036{word-spacing:0.256000pt;}
.ws31_c00036{word-spacing:1.068800pt;}
.ws32_c00036{word-spacing:1.145600pt;}
.wsc_c00036{word-spacing:2.393600pt;}
.wsd_c00036{word-spacing:2.451200pt;}
.ws11_c00036{word-spacing:2.720000pt;}
.wsf_c00036{word-spacing:2.726400pt;}
.ws10_c00036{word-spacing:2.732800pt;}
.ws28_c00036{word-spacing:2.752000pt;}
.ws27_c00036{word-spacing:2.764800pt;}
.ws6_c00036{word-spacing:4.326400pt;}
.ws7_c00036{word-spacing:4.409600pt;}
.ws1f_c00036{word-spacing:5.280000pt;}
.ws20_c00036{word-spacing:5.299200pt;}
.ws24_c00036{word-spacing:5.574400pt;}
.ws23_c00036{word-spacing:5.593600pt;}
.ws1_c00036{word-spacing:5.600000pt;}
.ws2e_c00036{word-spacing:5.606400pt;}
.ws30_c00036{word-spacing:5.612800pt;}
.ws2f_c00036{word-spacing:5.689600pt;}
.ws5_c00036{word-spacing:5.939200pt;}
.ws4_c00036{word-spacing:5.984000pt;}
.ws2d_c00036{word-spacing:6.220800pt;}
.ws13_c00036{word-spacing:7.129600pt;}
.ws12_c00036{word-spacing:7.200000pt;}
.wsa_c00036{word-spacing:7.494400pt;}
.wsb_c00036{word-spacing:7.500800pt;}
.ws2a_c00036{word-spacing:8.134400pt;}
.ws29_c00036{word-spacing:8.160000pt;}
.ws37_c00036{word-spacing:8.179200pt;}
.ws18_c00036{word-spacing:9.427200pt;}
.ws19_c00036{word-spacing:9.446400pt;}
.ws1a_c00036{word-spacing:9.529600pt;}
.ws2b_c00036{word-spacing:11.577600pt;}
.ws2c_c00036{word-spacing:11.667200pt;}
.ws22_c00036{word-spacing:13.574400pt;}
.ws21_c00036{word-spacing:13.644800pt;}
.ws1e_c00036{word-spacing:27.334400pt;}
.ws1d_c00036{word-spacing:27.411200pt;}
.ws8_c00036{word-spacing:29.625600pt;}
.ws9_c00036{word-spacing:29.708800pt;}
._0_c00036{width:1.024000pt;}
.fs0_c00036{font-size:64.000000pt;}
.y0_c00036{bottom:0.000000pt;}
.y2_c00036{bottom:41.627067pt;}
.y1_c00036{bottom:60.027067pt;}
.y20_c00036{bottom:127.227067pt;}
.y1f_c00036{bottom:154.827067pt;}
.y1e_c00036{bottom:182.427067pt;}
.y1d_c00036{bottom:218.027067pt;}
.y1c_c00036{bottom:245.627067pt;}
.y1b_c00036{bottom:273.227067pt;}
.y1a_c00036{bottom:300.827067pt;}
.y19_c00036{bottom:336.347067pt;}
.y18_c00036{bottom:363.947067pt;}
.y17_c00036{bottom:391.547067pt;}
.y16_c00036{bottom:419.147067pt;}
.y15_c00036{bottom:454.747067pt;}
.y14_c00036{bottom:482.347067pt;}
.y13_c00036{bottom:509.947067pt;}
.y12_c00036{bottom:537.547067pt;}
.y11_c00036{bottom:565.147067pt;}
.y10_c00036{bottom:600.747067pt;}
.yf_c00036{bottom:628.347067pt;}
.ye_c00036{bottom:655.947067pt;}
.yd_c00036{bottom:691.547067pt;}
.yc_c00036{bottom:719.067067pt;}
.yb_c00036{bottom:746.747067pt;}
.ya_c00036{bottom:782.347067pt;}
.y9_c00036{bottom:809.947067pt;}
.y8_c00036{bottom:837.547067pt;}
.y7_c00036{bottom:865.147067pt;}
.y6_c00036{bottom:892.747067pt;}
.y5_c00036{bottom:920.347067pt;}
.y4_c00036{bottom:947.947067pt;}
.y3_c00036{bottom:975.547067pt;}
.h1_c00036{height:56.156250pt;}
.h2_c00036{height:57.375000pt;}
.h3_c00036{height:66.750000pt;}
.h0_c00036{height:1122.666667pt;}
.w1_c00036{width:793.333333pt;}
.w0_c00036{width:793.626667pt;}
.x0_c00036{left:0.000000pt;}
.x2_c00036{left:151.200000pt;}
.x1_c00036{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0d160adb929cb9b6bcf1c5b0.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.093262;font-style:normal;font-weight:normal;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_494726f321cd2bb2ad174846.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.106934;font-style: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;}
.lsb_c00037{letter-spacing:-0.079200px;}
.lsc_c00037{letter-spacing:-0.072000px;}
.ls4_c00037{letter-spacing:-0.064800px;}
.ls8_c00037{letter-spacing:-0.057600px;}
.ls2_c00037{letter-spacing:-0.050400px;}
.ls6_c00037{letter-spacing:-0.043200px;}
.ls5_c00037{letter-spacing:-0.036000px;}
.ls3_c00037{letter-spacing:-0.028800px;}
.ls9_c00037{letter-spacing:-0.021600px;}
.lsa_c00037{letter-spacing:-0.014400px;}
.ls7_c00037{letter-spacing:-0.007200px;}
.ls1_c00037{letter-spacing:0.000000px;}
.lsd_c00037{letter-spacing:0.007200px;}
.ls0_c00037{letter-spacing:0.021600px;}
.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;}
}
.ws11_c00037{word-spacing:-4.860000px;}
.ws10_c00037{word-spacing:-4.831200px;}
.wsb_c00037{word-spacing:-4.183200px;}
.wsc_c00037{word-spacing:-4.104000px;}
.ws2_c00037{word-spacing:-3.484800px;}
.ws1f_c00037{word-spacing:-3.427200px;}
.ws31_c00037{word-spacing:-3.405600px;}
.ws1_c00037{word-spacing:-3.391200px;}
.ws30_c00037{word-spacing:-3.376800px;}
.ws7_c00037{word-spacing:-2.736000px;}
.ws8_c00037{word-spacing:-2.714400px;}
.ws12_c00037{word-spacing:-1.936800px;}
.ws27_c00037{word-spacing:-1.922400px;}
.ws26_c00037{word-spacing:-1.879200px;}
.ws1d_c00037{word-spacing:-1.317600px;}
.ws6_c00037{word-spacing:-1.245600px;}
.ws16_c00037{word-spacing:-0.900000px;}
.ws1c_c00037{word-spacing:-0.554400px;}
.ws1b_c00037{word-spacing:-0.532800px;}
.ws9_c00037{word-spacing:-0.223200px;}
.wsa_c00037{word-spacing:-0.216000px;}
.ws0_c00037{word-spacing:0.000000px;}
.ws19_c00037{word-spacing:0.172800px;}
.ws1e_c00037{word-spacing:0.187200px;}
.wsd_c00037{word-spacing:0.194400px;}
.ws28_c00037{word-spacing:0.201600px;}
.ws23_c00037{word-spacing:0.928800px;}
.ws33_c00037{word-spacing:1.216800px;}
.ws36_c00037{word-spacing:1.245600px;}
.ws32_c00037{word-spacing:1.303200px;}
.ws35_c00037{word-spacing:1.317600px;}
.ws2e_c00037{word-spacing:2.016000px;}
.ws2f_c00037{word-spacing:2.030400px;}
.ws17_c00037{word-spacing:3.067200px;}
.ws18_c00037{word-spacing:3.088800px;}
.ws13_c00037{word-spacing:3.153600px;}
.ws14_c00037{word-spacing:3.326400px;}
.ws20_c00037{word-spacing:3.780000px;}
.ws34_c00037{word-spacing:3.787200px;}
.ws2b_c00037{word-spacing:4.528800px;}
.ws25_c00037{word-spacing:8.092800px;}
.ws24_c00037{word-spacing:8.107200px;}
.ws15_c00037{word-spacing:8.474400px;}
.ws2a_c00037{word-spacing:10.915200px;}
.ws29_c00037{word-spacing:10.987200px;}
.ws4_c00037{word-spacing:14.896800px;}
.ws3_c00037{word-spacing:14.983200px;}
.ws5_c00037{word-spacing:15.098400px;}
.ws22_c00037{word-spacing:21.513600px;}
.ws21_c00037{word-spacing:21.520800px;}
.ws2d_c00037{word-spacing:23.594400px;}
.ws2c_c00037{word-spacing:23.608800px;}
.ws1a_c00037{word-spacing:24.357600px;}
.wsf_c00037{word-spacing:37.267200px;}
.wse_c00037{word-spacing:37.274400px;}
._1_c00037{margin-left:-1.368000px;}
._0_c00037{width:1.152000px;}
.fc0_c00037{color:rgb(0,0,0);}
.fs0_c00037{font-size:72.000000px;}
.y0_c00037{bottom:0.000000px;}
.y2_c00037{bottom:46.830450px;}
.y1_c00037{bottom:67.530450px;}
.y25_c00037{bottom:134.130450px;}
.y24_c00037{bottom:165.180450px;}
.y23_c00037{bottom:205.230450px;}
.y22_c00037{bottom:236.280450px;}
.y21_c00037{bottom:267.330450px;}
.y20_c00037{bottom:298.380450px;}
.y1f_c00037{bottom:329.430450px;}
.y1e_c00037{bottom:360.390450px;}
.y1d_c00037{bottom:391.440450px;}
.y1c_c00037{bottom:431.490450px;}
.y1b_c00037{bottom:462.540450px;}
.y1a_c00037{bottom:493.590450px;}
.y19_c00037{bottom:524.640450px;}
.y18_c00037{bottom:555.690450px;}
.y17_c00037{bottom:586.740450px;}
.y16_c00037{bottom:617.790450px;}
.y15_c00037{bottom:657.840450px;}
.y14_c00037{bottom:688.890450px;}
.y13_c00037{bottom:719.940450px;}
.y12_c00037{bottom:750.990450px;}
.y11_c00037{bottom:789.690450px;}
.y10_c00037{bottom:810.390450px;}
.yf_c00037{bottom:831.090450px;}
.ye_c00037{bottom:851.790450px;}
.yd_c00037{bottom:872.490450px;}
.yc_c00037{bottom:893.190450px;}
.yb_c00037{bottom:913.890450px;}
.ya_c00037{bottom:934.590450px;}
.y9_c00037{bottom:973.290450px;}
.y8_c00037{bottom:993.990450px;}
.y7_c00037{bottom:1014.690450px;}
.y6_c00037{bottom:1035.390450px;}
.y5_c00037{bottom:1056.090450px;}
.y4_c00037{bottom:1076.790450px;}
.y3_c00037{bottom:1097.490450px;}
.h1_c00037{height:63.175781px;}
.h2_c00037{height:64.546875px;}
.h0_c00037{height:1263.000000px;}
.w1_c00037{width:892.500000px;}
.w0_c00037{width:892.830000px;}
.x0_c00037{left:0.000000px;}
.x2_c00037{left:127.620000px;}
.x3_c00037{left:148.950000px;}
.x1_c00037{left:704.880000px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.lsb_c00037{letter-spacing:-0.070400pt;}
.lsc_c00037{letter-spacing:-0.064000pt;}
.ls4_c00037{letter-spacing:-0.057600pt;}
.ls8_c00037{letter-spacing:-0.051200pt;}
.ls2_c00037{letter-spacing:-0.044800pt;}
.ls6_c00037{letter-spacing:-0.038400pt;}
.ls5_c00037{letter-spacing:-0.032000pt;}
.ls3_c00037{letter-spacing:-0.025600pt;}
.ls9_c00037{letter-spacing:-0.019200pt;}
.lsa_c00037{letter-spacing:-0.012800pt;}
.ls7_c00037{letter-spacing:-0.006400pt;}
.ls1_c00037{letter-spacing:0.000000pt;}
.lsd_c00037{letter-spacing:0.006400pt;}
.ls0_c00037{letter-spacing:0.019200pt;}
.ws11_c00037{word-spacing:-4.320000pt;}
.ws10_c00037{word-spacing:-4.294400pt;}
.wsb_c00037{word-spacing:-3.718400pt;}
.wsc_c00037{word-spacing:-3.648000pt;}
.ws2_c00037{word-spacing:-3.097600pt;}
.ws1f_c00037{word-spacing:-3.046400pt;}
.ws31_c00037{word-spacing:-3.027200pt;}
.ws1_c00037{word-spacing:-3.014400pt;}
.ws30_c00037{word-spacing:-3.001600pt;}
.ws7_c00037{word-spacing:-2.432000pt;}
.ws8_c00037{word-spacing:-2.412800pt;}
.ws12_c00037{word-spacing:-1.721600pt;}
.ws27_c00037{word-spacing:-1.708800pt;}
.ws26_c00037{word-spacing:-1.670400pt;}
.ws1d_c00037{word-spacing:-1.171200pt;}
.ws6_c00037{word-spacing:-1.107200pt;}
.ws16_c00037{word-spacing:-0.800000pt;}
.ws1c_c00037{word-spacing:-0.492800pt;}
.ws1b_c00037{word-spacing:-0.473600pt;}
.ws9_c00037{word-spacing:-0.198400pt;}
.wsa_c00037{word-spacing:-0.192000pt;}
.ws0_c00037{word-spacing:0.000000pt;}
.ws19_c00037{word-spacing:0.153600pt;}
.ws1e_c00037{word-spacing:0.166400pt;}
.wsd_c00037{word-spacing:0.172800pt;}
.ws28_c00037{word-spacing:0.179200pt;}
.ws23_c00037{word-spacing:0.825600pt;}
.ws33_c00037{word-spacing:1.081600pt;}
.ws36_c00037{word-spacing:1.107200pt;}
.ws32_c00037{word-spacing:1.158400pt;}
.ws35_c00037{word-spacing:1.171200pt;}
.ws2e_c00037{word-spacing:1.792000pt;}
.ws2f_c00037{word-spacing:1.804800pt;}
.ws17_c00037{word-spacing:2.726400pt;}
.ws18_c00037{word-spacing:2.745600pt;}
.ws13_c00037{word-spacing:2.803200pt;}
.ws14_c00037{word-spacing:2.956800pt;}
.ws20_c00037{word-spacing:3.360000pt;}
.ws34_c00037{word-spacing:3.366400pt;}
.ws2b_c00037{word-spacing:4.025600pt;}
.ws25_c00037{word-spacing:7.193600pt;}
.ws24_c00037{word-spacing:7.206400pt;}
.ws15_c00037{word-spacing:7.532800pt;}
.ws2a_c00037{word-spacing:9.702400pt;}
.ws29_c00037{word-spacing:9.766400pt;}
.ws4_c00037{word-spacing:13.241600pt;}
.ws3_c00037{word-spacing:13.318400pt;}
.ws5_c00037{word-spacing:13.420800pt;}
.ws22_c00037{word-spacing:19.123200pt;}
.ws21_c00037{word-spacing:19.129600pt;}
.ws2d_c00037{word-spacing:20.972800pt;}
.ws2c_c00037{word-spacing:20.985600pt;}
.ws1a_c00037{word-spacing:21.651200pt;}
.wsf_c00037{word-spacing:33.126400pt;}
.wse_c00037{word-spacing:33.132800pt;}
._1_c00037{margin-left:-1.216000pt;}
._0_c00037{width:1.024000pt;}
.fs0_c00037{font-size:64.000000pt;}
.y0_c00037{bottom:0.000000pt;}
.y2_c00037{bottom:41.627067pt;}
.y1_c00037{bottom:60.027067pt;}
.y25_c00037{bottom:119.227067pt;}
.y24_c00037{bottom:146.827067pt;}
.y23_c00037{bottom:182.427067pt;}
.y22_c00037{bottom:210.027067pt;}
.y21_c00037{bottom:237.627067pt;}
.y20_c00037{bottom:265.227067pt;}
.y1f_c00037{bottom:292.827067pt;}
.y1e_c00037{bottom:320.347067pt;}
.y1d_c00037{bottom:347.947067pt;}
.y1c_c00037{bottom:383.547067pt;}
.y1b_c00037{bottom:411.147067pt;}
.y1a_c00037{bottom:438.747067pt;}
.y19_c00037{bottom:466.347067pt;}
.y18_c00037{bottom:493.947067pt;}
.y17_c00037{bottom:521.547067pt;}
.y16_c00037{bottom:549.147067pt;}
.y15_c00037{bottom:584.747067pt;}
.y14_c00037{bottom:612.347067pt;}
.y13_c00037{bottom:639.947067pt;}
.y12_c00037{bottom:667.547067pt;}
.y11_c00037{bottom:701.947067pt;}
.y10_c00037{bottom:720.347067pt;}
.yf_c00037{bottom:738.747067pt;}
.ye_c00037{bottom:757.147067pt;}
.yd_c00037{bottom:775.547067pt;}
.yc_c00037{bottom:793.947067pt;}
.yb_c00037{bottom:812.347067pt;}
.ya_c00037{bottom:830.747067pt;}
.y9_c00037{bottom:865.147067pt;}
.y8_c00037{bottom:883.547067pt;}
.y7_c00037{bottom:901.947067pt;}
.y6_c00037{bottom:920.347067pt;}
.y5_c00037{bottom:938.747067pt;}
.y4_c00037{bottom:957.147067pt;}
.y3_c00037{bottom:975.547067pt;}
.h1_c00037{height:56.156250pt;}
.h2_c00037{height:57.375000pt;}
.h0_c00037{height:1122.666667pt;}
.w1_c00037{width:793.333333pt;}
.w0_c00037{width:793.626667pt;}
.x0_c00037{left:0.000000pt;}
.x2_c00037{left:113.440000pt;}
.x3_c00037{left:132.400000pt;}
.x1_c00037{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_87bec4f13dbd43a9f36e7e01.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.093262;font-style:normal;font-weight:normal;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_3651c3da999c21f0a1d04732.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00038{vertical-align:0.000000px;}
.ls6_c00038{letter-spacing:-0.086400px;}
.ls7_c00038{letter-spacing:-0.072000px;}
.ls5_c00038{letter-spacing:-0.064800px;}
.lsa_c00038{letter-spacing:-0.057600px;}
.ls1_c00038{letter-spacing:-0.050400px;}
.lsd_c00038{letter-spacing:-0.043200px;}
.ls3_c00038{letter-spacing:-0.036000px;}
.lsb_c00038{letter-spacing:-0.028800px;}
.ls4_c00038{letter-spacing:-0.021600px;}
.lsc_c00038{letter-spacing:-0.014400px;}
.ls2_c00038{letter-spacing:-0.007200px;}
.ls0_c00038{letter-spacing:0.000000px;}
.ls8_c00038{letter-spacing:0.007200px;}
.ls9_c00038{letter-spacing:0.014400px;}
.lse_c00038{letter-spacing:843.998400px;}
.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;}
}
.ws1c_c00038{word-spacing:-4.636800px;}
.ws1d_c00038{word-spacing:-4.471200px;}
.ws15_c00038{word-spacing:-2.714400px;}
.ws14_c00038{word-spacing:-2.685600px;}
.ws6_c00038{word-spacing:-1.591200px;}
.ws16_c00038{word-spacing:-0.892800px;}
.ws10_c00038{word-spacing:-0.554400px;}
.ws7_c00038{word-spacing:-0.540000px;}
.ws3_c00038{word-spacing:-0.511200px;}
.wse_c00038{word-spacing:-0.504000px;}
.ws8_c00038{word-spacing:-0.475200px;}
.wsf_c00038{word-spacing:-0.439200px;}
.ws0_c00038{word-spacing:0.000000px;}
.ws18_c00038{word-spacing:0.172800px;}
.ws17_c00038{word-spacing:0.187200px;}
.ws13_c00038{word-spacing:3.412800px;}
.wsb_c00038{word-spacing:5.191200px;}
.wsc_c00038{word-spacing:5.234400px;}
.ws20_c00038{word-spacing:5.947200px;}
.ws1f_c00038{word-spacing:5.961600px;}
.ws2_c00038{word-spacing:8.445600px;}
.ws1_c00038{word-spacing:8.488800px;}
.ws11_c00038{word-spacing:8.834400px;}
.ws12_c00038{word-spacing:8.848800px;}
.wsd_c00038{word-spacing:9.568800px;}
.ws1e_c00038{word-spacing:10.260000px;}
.ws5_c00038{word-spacing:13.118400px;}
.ws4_c00038{word-spacing:13.212000px;}
.ws1a_c00038{word-spacing:13.492800px;}
.ws19_c00038{word-spacing:13.500000px;}
.ws1b_c00038{word-spacing:31.838400px;}
.ws9_c00038{word-spacing:39.348000px;}
.wsa_c00038{word-spacing:39.448800px;}
._0_c00038{width:1.008000px;}
.fc0_c00038{color:rgb(0,0,0);}
.fs0_c00038{font-size:72.000000px;}
.y0_c00038{bottom:0.000000px;}
.y2_c00038{bottom:46.830450px;}
.y1_c00038{bottom:67.530450px;}
.y1b_c00038{bottom:298.380450px;}
.y1a_c00038{bottom:338.430450px;}
.y19_c00038{bottom:378.390450px;}
.y18_c00038{bottom:418.440450px;}
.y17_c00038{bottom:449.490450px;}
.y16_c00038{bottom:480.540450px;}
.y15_c00038{bottom:511.590450px;}
.y14_c00038{bottom:542.640450px;}
.y13_c00038{bottom:573.690450px;}
.y12_c00038{bottom:613.740450px;}
.y11_c00038{bottom:644.790450px;}
.y10_c00038{bottom:675.840450px;}
.yf_c00038{bottom:706.890450px;}
.ye_c00038{bottom:737.940450px;}
.yd_c00038{bottom:768.990450px;}
.yc_c00038{bottom:809.040450px;}
.yb_c00038{bottom:840.090450px;}
.ya_c00038{bottom:871.140450px;}
.y9_c00038{bottom:902.190450px;}
.y8_c00038{bottom:933.240450px;}
.y7_c00038{bottom:964.290450px;}
.y6_c00038{bottom:1004.340450px;}
.y5_c00038{bottom:1035.390450px;}
.y4_c00038{bottom:1066.440450px;}
.y3_c00038{bottom:1097.490450px;}
.h1_c00038{height:63.175781px;}
.h2_c00038{height:64.546875px;}
.h0_c00038{height:1263.000000px;}
.w1_c00038{width:892.500000px;}
.w0_c00038{width:892.830000px;}
.x0_c00038{left:0.000000px;}
.x2_c00038{left:170.100000px;}
.x1_c00038{left:747.360000px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls6_c00038{letter-spacing:-0.076800pt;}
.ls7_c00038{letter-spacing:-0.064000pt;}
.ls5_c00038{letter-spacing:-0.057600pt;}
.lsa_c00038{letter-spacing:-0.051200pt;}
.ls1_c00038{letter-spacing:-0.044800pt;}
.lsd_c00038{letter-spacing:-0.038400pt;}
.ls3_c00038{letter-spacing:-0.032000pt;}
.lsb_c00038{letter-spacing:-0.025600pt;}
.ls4_c00038{letter-spacing:-0.019200pt;}
.lsc_c00038{letter-spacing:-0.012800pt;}
.ls2_c00038{letter-spacing:-0.006400pt;}
.ls0_c00038{letter-spacing:0.000000pt;}
.ls8_c00038{letter-spacing:0.006400pt;}
.ls9_c00038{letter-spacing:0.012800pt;}
.lse_c00038{letter-spacing:750.220800pt;}
.ws1c_c00038{word-spacing:-4.121600pt;}
.ws1d_c00038{word-spacing:-3.974400pt;}
.ws15_c00038{word-spacing:-2.412800pt;}
.ws14_c00038{word-spacing:-2.387200pt;}
.ws6_c00038{word-spacing:-1.414400pt;}
.ws16_c00038{word-spacing:-0.793600pt;}
.ws10_c00038{word-spacing:-0.492800pt;}
.ws7_c00038{word-spacing:-0.480000pt;}
.ws3_c00038{word-spacing:-0.454400pt;}
.wse_c00038{word-spacing:-0.448000pt;}
.ws8_c00038{word-spacing:-0.422400pt;}
.wsf_c00038{word-spacing:-0.390400pt;}
.ws0_c00038{word-spacing:0.000000pt;}
.ws18_c00038{word-spacing:0.153600pt;}
.ws17_c00038{word-spacing:0.166400pt;}
.ws13_c00038{word-spacing:3.033600pt;}
.wsb_c00038{word-spacing:4.614400pt;}
.wsc_c00038{word-spacing:4.652800pt;}
.ws20_c00038{word-spacing:5.286400pt;}
.ws1f_c00038{word-spacing:5.299200pt;}
.ws2_c00038{word-spacing:7.507200pt;}
.ws1_c00038{word-spacing:7.545600pt;}
.ws11_c00038{word-spacing:7.852800pt;}
.ws12_c00038{word-spacing:7.865600pt;}
.wsd_c00038{word-spacing:8.505600pt;}
.ws1e_c00038{word-spacing:9.120000pt;}
.ws5_c00038{word-spacing:11.660800pt;}
.ws4_c00038{word-spacing:11.744000pt;}
.ws1a_c00038{word-spacing:11.993600pt;}
.ws19_c00038{word-spacing:12.000000pt;}
.ws1b_c00038{word-spacing:28.300800pt;}
.ws9_c00038{word-spacing:34.976000pt;}
.wsa_c00038{word-spacing:35.065600pt;}
._0_c00038{width:0.896000pt;}
.fs0_c00038{font-size:64.000000pt;}
.y0_c00038{bottom:0.000000pt;}
.y2_c00038{bottom:41.627067pt;}
.y1_c00038{bottom:60.027067pt;}
.y1b_c00038{bottom:265.227067pt;}
.y1a_c00038{bottom:300.827067pt;}
.y19_c00038{bottom:336.347067pt;}
.y18_c00038{bottom:371.947067pt;}
.y17_c00038{bottom:399.547067pt;}
.y16_c00038{bottom:427.147067pt;}
.y15_c00038{bottom:454.747067pt;}
.y14_c00038{bottom:482.347067pt;}
.y13_c00038{bottom:509.947067pt;}
.y12_c00038{bottom:545.547067pt;}
.y11_c00038{bottom:573.147067pt;}
.y10_c00038{bottom:600.747067pt;}
.yf_c00038{bottom:628.347067pt;}
.ye_c00038{bottom:655.947067pt;}
.yd_c00038{bottom:683.547067pt;}
.yc_c00038{bottom:719.147067pt;}
.yb_c00038{bottom:746.747067pt;}
.ya_c00038{bottom:774.347067pt;}
.y9_c00038{bottom:801.947067pt;}
.y8_c00038{bottom:829.547067pt;}
.y7_c00038{bottom:857.147067pt;}
.y6_c00038{bottom:892.747067pt;}
.y5_c00038{bottom:920.347067pt;}
.y4_c00038{bottom:947.947067pt;}
.y3_c00038{bottom:975.547067pt;}
.h1_c00038{height:56.156250pt;}
.h2_c00038{height:57.375000pt;}
.h0_c00038{height:1122.666667pt;}
.w1_c00038{width:793.333333pt;}
.w0_c00038{width:793.626667pt;}
.x0_c00038{left:0.000000pt;}
.x2_c00038{left:151.200000pt;}
.x1_c00038{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_432b5673e411595ae2859e39.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.106934;font-style: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;}
.ls0_c00039{letter-spacing:0.000000px;}
.ls1_c00039{letter-spacing:843.998400px;}
.sc__c00039{text-shadow:none;}
.sc0_c00039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
.sc0_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00039{word-spacing:0.000000px;}
.fc0_c00039{color:rgb(0,0,0);}
.fs0_c00039{font-size:72.000000px;}
.y0_c00039{bottom:0.000000px;}
.y2_c00039{bottom:46.830450px;}
.y1_c00039{bottom:67.530450px;}
.y4_c00039{bottom:1057.440450px;}
.y3_c00039{bottom:1097.490450px;}
.h1_c00039{height:63.175781px;}
.h2_c00039{height:64.546875px;}
.h0_c00039{height:1263.000000px;}
.w1_c00039{width:892.500000px;}
.w0_c00039{width:892.830000px;}
.x0_c00039{left:0.000000px;}
.x2_c00039{left:127.620000px;}
.x1_c00039{left:704.880000px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls0_c00039{letter-spacing:0.000000pt;}
.ls1_c00039{letter-spacing:750.220800pt;}
.ws0_c00039{word-spacing:0.000000pt;}
.fs0_c00039{font-size:64.000000pt;}
.y0_c00039{bottom:0.000000pt;}
.y2_c00039{bottom:41.627067pt;}
.y1_c00039{bottom:60.027067pt;}
.y4_c00039{bottom:939.947067pt;}
.y3_c00039{bottom:975.547067pt;}
.h1_c00039{height:56.156250pt;}
.h2_c00039{height:57.375000pt;}
.h0_c00039{height:1122.666667pt;}
.w1_c00039{width:793.333333pt;}
.w0_c00039{width:793.626667pt;}
.x0_c00039{left:0.000000pt;}
.x2_c00039{left:113.440000pt;}
.x1_c00039{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_894502163021d0ff90c5d0f9.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.093262;font-style:normal;font-weight:normal;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_087362d64be548fa20eb5b86.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00040;src:url('chunks/assets/font_73c982f7550d2c5fd57e4440.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.ls3_c00040{letter-spacing:-0.093600px;}
.ls6_c00040{letter-spacing:-0.079200px;}
.lsb_c00040{letter-spacing:-0.072000px;}
.lsa_c00040{letter-spacing:-0.064800px;}
.ls4_c00040{letter-spacing:-0.057600px;}
.ls5_c00040{letter-spacing:-0.050400px;}
.lsd_c00040{letter-spacing:-0.043200px;}
.ls7_c00040{letter-spacing:-0.036000px;}
.ls9_c00040{letter-spacing:-0.028800px;}
.ls2_c00040{letter-spacing:-0.021600px;}
.ls8_c00040{letter-spacing:-0.014400px;}
.lsc_c00040{letter-spacing:-0.007200px;}
.ls1_c00040{letter-spacing:0.000000px;}
.ls0_c00040{letter-spacing:0.050328px;}
.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;}
}
.ws14_c00040{word-spacing:-1.994400px;}
.ws13_c00040{word-spacing:-1.965600px;}
.wsc_c00040{word-spacing:-1.576800px;}
.wsd_c00040{word-spacing:-1.540800px;}
.wse_c00040{word-spacing:-0.892800px;}
.wsf_c00040{word-spacing:-0.799200px;}
.ws18_c00040{word-spacing:-0.180000px;}
.ws30_c00040{word-spacing:-0.158400px;}
.ws31_c00040{word-spacing:-0.144000px;}
.ws0_c00040{word-spacing:0.000000px;}
.ws1_c00040{word-spacing:0.041940px;}
.ws2a_c00040{word-spacing:0.180000px;}
.wsb_c00040{word-spacing:0.187200px;}
.ws29_c00040{word-spacing:0.194400px;}
.ws17_c00040{word-spacing:0.540000px;}
.ws1a_c00040{word-spacing:1.252800px;}
.ws19_c00040{word-spacing:1.267200px;}
.ws1b_c00040{word-spacing:1.288800px;}
.ws2_c00040{word-spacing:1.497600px;}
.ws3_c00040{word-spacing:1.598400px;}
.ws4_c00040{word-spacing:1.656000px;}
.ws9_c00040{word-spacing:2.692800px;}
.wsa_c00040{word-spacing:2.793600px;}
.ws24_c00040{word-spacing:5.558400px;}
.ws23_c00040{word-spacing:5.731200px;}
.ws2d_c00040{word-spacing:5.968800px;}
.ws2c_c00040{word-spacing:5.990400px;}
.ws20_c00040{word-spacing:7.372800px;}
.ws1f_c00040{word-spacing:7.394400px;}
.ws16_c00040{word-spacing:8.092800px;}
.ws12_c00040{word-spacing:8.100000px;}
.ws15_c00040{word-spacing:8.186400px;}
.ws26_c00040{word-spacing:9.136800px;}
.ws2b_c00040{word-spacing:9.180000px;}
.ws25_c00040{word-spacing:9.208800px;}
.ws11_c00040{word-spacing:10.965600px;}
.ws10_c00040{word-spacing:11.016000px;}
.ws2e_c00040{word-spacing:11.347200px;}
.ws2f_c00040{word-spacing:11.397600px;}
.ws22_c00040{word-spacing:11.966400px;}
.ws21_c00040{word-spacing:12.052800px;}
.ws1c_c00040{word-spacing:13.240800px;}
.ws1e_c00040{word-spacing:13.291200px;}
.ws1d_c00040{word-spacing:13.320000px;}
.ws6_c00040{word-spacing:13.860000px;}
.ws7_c00040{word-spacing:13.917600px;}
.ws28_c00040{word-spacing:15.645600px;}
.ws27_c00040{word-spacing:15.696000px;}
.ws33_c00040{word-spacing:28.288800px;}
.ws32_c00040{word-spacing:28.296000px;}
.ws5_c00040{word-spacing:35.452800px;}
.ws8_c00040{word-spacing:36.554400px;}
._1_c00040{width:1.015200px;}
._0_c00040{width:153.332640px;}
.fc0_c00040{color:rgb(0,0,0);}
.fs0_c00040{font-size:72.000000px;}
.fs1_c00040{font-size:83.880000px;}
.y0_c00040{bottom:0.000000px;}
.y2_c00040{bottom:46.830450px;}
.y1_c00040{bottom:67.530450px;}
.y20_c00040{bottom:158.970450px;}
.y1f_c00040{bottom:190.020450px;}
.y1e_c00040{bottom:221.070450px;}
.y1d_c00040{bottom:252.120450px;}
.y1c_c00040{bottom:283.170450px;}
.y1b_c00040{bottom:323.220450px;}
.y1a_c00040{bottom:354.270450px;}
.y19_c00040{bottom:385.320450px;}
.y18_c00040{bottom:416.370450px;}
.y17_c00040{bottom:447.420450px;}
.y16_c00040{bottom:478.470450px;}
.y15_c00040{bottom:509.520450px;}
.y14_c00040{bottom:540.570450px;}
.y13_c00040{bottom:571.620450px;}
.y12_c00040{bottom:611.670450px;}
.y11_c00040{bottom:642.720450px;}
.y10_c00040{bottom:673.770450px;}
.yf_c00040{bottom:704.820450px;}
.ye_c00040{bottom:735.870450px;}
.yd_c00040{bottom:766.920450px;}
.yc_c00040{bottom:797.970450px;}
.yb_c00040{bottom:829.020450px;}
.ya_c00040{bottom:869.070450px;}
.y9_c00040{bottom:900.120450px;}
.y8_c00040{bottom:931.170450px;}
.y7_c00040{bottom:962.220450px;}
.y6_c00040{bottom:993.270450px;}
.y5_c00040{bottom:1024.320450px;}
.y4_c00040{bottom:1064.370450px;}
.y3_c00040{bottom:1094.520450px;}
.h1_c00040{height:63.175781px;}
.h3_c00040{height:64.546875px;}
.h2_c00040{height:87.484219px;}
.h0_c00040{height:1263.000000px;}
.w1_c00040{width:892.500000px;}
.w0_c00040{width:892.830000px;}
.x0_c00040{left:0.000000px;}
.x2_c00040{left:170.100000px;}
.x3_c00040{left:197.100000px;}
.x1_c00040{left:747.360000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls3_c00040{letter-spacing:-0.083200pt;}
.ls6_c00040{letter-spacing:-0.070400pt;}
.lsb_c00040{letter-spacing:-0.064000pt;}
.lsa_c00040{letter-spacing:-0.057600pt;}
.ls4_c00040{letter-spacing:-0.051200pt;}
.ls5_c00040{letter-spacing:-0.044800pt;}
.lsd_c00040{letter-spacing:-0.038400pt;}
.ls7_c00040{letter-spacing:-0.032000pt;}
.ls9_c00040{letter-spacing:-0.025600pt;}
.ls2_c00040{letter-spacing:-0.019200pt;}
.ls8_c00040{letter-spacing:-0.012800pt;}
.lsc_c00040{letter-spacing:-0.006400pt;}
.ls1_c00040{letter-spacing:0.000000pt;}
.ls0_c00040{letter-spacing:0.044736pt;}
.ws14_c00040{word-spacing:-1.772800pt;}
.ws13_c00040{word-spacing:-1.747200pt;}
.wsc_c00040{word-spacing:-1.401600pt;}
.wsd_c00040{word-spacing:-1.369600pt;}
.wse_c00040{word-spacing:-0.793600pt;}
.wsf_c00040{word-spacing:-0.710400pt;}
.ws18_c00040{word-spacing:-0.160000pt;}
.ws30_c00040{word-spacing:-0.140800pt;}
.ws31_c00040{word-spacing:-0.128000pt;}
.ws0_c00040{word-spacing:0.000000pt;}
.ws1_c00040{word-spacing:0.037280pt;}
.ws2a_c00040{word-spacing:0.160000pt;}
.wsb_c00040{word-spacing:0.166400pt;}
.ws29_c00040{word-spacing:0.172800pt;}
.ws17_c00040{word-spacing:0.480000pt;}
.ws1a_c00040{word-spacing:1.113600pt;}
.ws19_c00040{word-spacing:1.126400pt;}
.ws1b_c00040{word-spacing:1.145600pt;}
.ws2_c00040{word-spacing:1.331200pt;}
.ws3_c00040{word-spacing:1.420800pt;}
.ws4_c00040{word-spacing:1.472000pt;}
.ws9_c00040{word-spacing:2.393600pt;}
.wsa_c00040{word-spacing:2.483200pt;}
.ws24_c00040{word-spacing:4.940800pt;}
.ws23_c00040{word-spacing:5.094400pt;}
.ws2d_c00040{word-spacing:5.305600pt;}
.ws2c_c00040{word-spacing:5.324800pt;}
.ws20_c00040{word-spacing:6.553600pt;}
.ws1f_c00040{word-spacing:6.572800pt;}
.ws16_c00040{word-spacing:7.193600pt;}
.ws12_c00040{word-spacing:7.200000pt;}
.ws15_c00040{word-spacing:7.276800pt;}
.ws26_c00040{word-spacing:8.121600pt;}
.ws2b_c00040{word-spacing:8.160000pt;}
.ws25_c00040{word-spacing:8.185600pt;}
.ws11_c00040{word-spacing:9.747200pt;}
.ws10_c00040{word-spacing:9.792000pt;}
.ws2e_c00040{word-spacing:10.086400pt;}
.ws2f_c00040{word-spacing:10.131200pt;}
.ws22_c00040{word-spacing:10.636800pt;}
.ws21_c00040{word-spacing:10.713600pt;}
.ws1c_c00040{word-spacing:11.769600pt;}
.ws1e_c00040{word-spacing:11.814400pt;}
.ws1d_c00040{word-spacing:11.840000pt;}
.ws6_c00040{word-spacing:12.320000pt;}
.ws7_c00040{word-spacing:12.371200pt;}
.ws28_c00040{word-spacing:13.907200pt;}
.ws27_c00040{word-spacing:13.952000pt;}
.ws33_c00040{word-spacing:25.145600pt;}
.ws32_c00040{word-spacing:25.152000pt;}
.ws5_c00040{word-spacing:31.513600pt;}
.ws8_c00040{word-spacing:32.492800pt;}
._1_c00040{width:0.902400pt;}
._0_c00040{width:136.295680pt;}
.fs0_c00040{font-size:64.000000pt;}
.fs1_c00040{font-size:74.560000pt;}
.y0_c00040{bottom:0.000000pt;}
.y2_c00040{bottom:41.627067pt;}
.y1_c00040{bottom:60.027067pt;}
.y20_c00040{bottom:141.307067pt;}
.y1f_c00040{bottom:168.907067pt;}
.y1e_c00040{bottom:196.507067pt;}
.y1d_c00040{bottom:224.107067pt;}
.y1c_c00040{bottom:251.707067pt;}
.y1b_c00040{bottom:287.307067pt;}
.y1a_c00040{bottom:314.907067pt;}
.y19_c00040{bottom:342.507067pt;}
.y18_c00040{bottom:370.107067pt;}
.y17_c00040{bottom:397.707067pt;}
.y16_c00040{bottom:425.307067pt;}
.y15_c00040{bottom:452.907067pt;}
.y14_c00040{bottom:480.507067pt;}
.y13_c00040{bottom:508.107067pt;}
.y12_c00040{bottom:543.707067pt;}
.y11_c00040{bottom:571.307067pt;}
.y10_c00040{bottom:598.907067pt;}
.yf_c00040{bottom:626.507067pt;}
.ye_c00040{bottom:654.107067pt;}
.yd_c00040{bottom:681.707067pt;}
.yc_c00040{bottom:709.307067pt;}
.yb_c00040{bottom:736.907067pt;}
.ya_c00040{bottom:772.507067pt;}
.y9_c00040{bottom:800.107067pt;}
.y8_c00040{bottom:827.707067pt;}
.y7_c00040{bottom:855.307067pt;}
.y6_c00040{bottom:882.907067pt;}
.y5_c00040{bottom:910.507067pt;}
.y4_c00040{bottom:946.107067pt;}
.y3_c00040{bottom:972.907067pt;}
.h1_c00040{height:56.156250pt;}
.h3_c00040{height:57.375000pt;}
.h2_c00040{height:77.763750pt;}
.h0_c00040{height:1122.666667pt;}
.w1_c00040{width:793.333333pt;}
.w0_c00040{width:793.626667pt;}
.x0_c00040{left:0.000000pt;}
.x2_c00040{left:151.200000pt;}
.x3_c00040{left:175.200000pt;}
.x1_c00040{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a01e766aac10d2b2ee8daadd.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.093262;font-style:normal;font-weight:normal;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_e6e8c2ba1c198c8f8ee18ed7.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.106934;font-style: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;}
.ls7_c00041{letter-spacing:-0.064800px;}
.ls3_c00041{letter-spacing:-0.057600px;}
.ls2_c00041{letter-spacing:-0.043200px;}
.ls5_c00041{letter-spacing:-0.036000px;}
.ls1_c00041{letter-spacing:-0.028800px;}
.ls4_c00041{letter-spacing:-0.014400px;}
.ls6_c00041{letter-spacing:-0.007200px;}
.ls0_c00041{letter-spacing:0.000000px;}
.ls8_c00041{letter-spacing:843.998400px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00041{word-spacing:-0.532800px;}
.ws2_c00041{word-spacing:-0.460800px;}
.ws0_c00041{word-spacing:0.000000px;}
.wsd_c00041{word-spacing:0.158400px;}
.wsc_c00041{word-spacing:0.194400px;}
.ws5_c00041{word-spacing:3.794400px;}
.ws7_c00041{word-spacing:4.125600px;}
.ws6_c00041{word-spacing:4.154400px;}
.ws8_c00041{word-spacing:5.623200px;}
.ws3_c00041{word-spacing:5.911200px;}
.ws4_c00041{word-spacing:5.932800px;}
.wsa_c00041{word-spacing:8.172000px;}
.ws9_c00041{word-spacing:8.208000px;}
.wsb_c00041{word-spacing:12.031200px;}
._0_c00041{width:1.008000px;}
.fc0_c00041{color:rgb(0,0,0);}
.fs0_c00041{font-size:72.000000px;}
.y0_c00041{bottom:0.000000px;}
.y2_c00041{bottom:46.830450px;}
.y1_c00041{bottom:67.530450px;}
.yc_c00041{bottom:800.040450px;}
.yb_c00041{bottom:840.090450px;}
.ya_c00041{bottom:880.140450px;}
.y9_c00041{bottom:911.190450px;}
.y8_c00041{bottom:942.240450px;}
.y7_c00041{bottom:973.290450px;}
.y6_c00041{bottom:1004.340450px;}
.y5_c00041{bottom:1035.390450px;}
.y4_c00041{bottom:1066.440450px;}
.y3_c00041{bottom:1097.490450px;}
.h1_c00041{height:63.175781px;}
.h2_c00041{height:64.546875px;}
.h0_c00041{height:1263.000000px;}
.w1_c00041{width:892.500000px;}
.w0_c00041{width:892.830000px;}
.x0_c00041{left:0.000000px;}
.x2_c00041{left:127.620000px;}
.x1_c00041{left:704.880000px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls7_c00041{letter-spacing:-0.057600pt;}
.ls3_c00041{letter-spacing:-0.051200pt;}
.ls2_c00041{letter-spacing:-0.038400pt;}
.ls5_c00041{letter-spacing:-0.032000pt;}
.ls1_c00041{letter-spacing:-0.025600pt;}
.ls4_c00041{letter-spacing:-0.012800pt;}
.ls6_c00041{letter-spacing:-0.006400pt;}
.ls0_c00041{letter-spacing:0.000000pt;}
.ls8_c00041{letter-spacing:750.220800pt;}
.ws1_c00041{word-spacing:-0.473600pt;}
.ws2_c00041{word-spacing:-0.409600pt;}
.ws0_c00041{word-spacing:0.000000pt;}
.wsd_c00041{word-spacing:0.140800pt;}
.wsc_c00041{word-spacing:0.172800pt;}
.ws5_c00041{word-spacing:3.372800pt;}
.ws7_c00041{word-spacing:3.667200pt;}
.ws6_c00041{word-spacing:3.692800pt;}
.ws8_c00041{word-spacing:4.998400pt;}
.ws3_c00041{word-spacing:5.254400pt;}
.ws4_c00041{word-spacing:5.273600pt;}
.wsa_c00041{word-spacing:7.264000pt;}
.ws9_c00041{word-spacing:7.296000pt;}
.wsb_c00041{word-spacing:10.694400pt;}
._0_c00041{width:0.896000pt;}
.fs0_c00041{font-size:64.000000pt;}
.y0_c00041{bottom:0.000000pt;}
.y2_c00041{bottom:41.627067pt;}
.y1_c00041{bottom:60.027067pt;}
.yc_c00041{bottom:711.147067pt;}
.yb_c00041{bottom:746.747067pt;}
.ya_c00041{bottom:782.347067pt;}
.y9_c00041{bottom:809.947067pt;}
.y8_c00041{bottom:837.547067pt;}
.y7_c00041{bottom:865.147067pt;}
.y6_c00041{bottom:892.747067pt;}
.y5_c00041{bottom:920.347067pt;}
.y4_c00041{bottom:947.947067pt;}
.y3_c00041{bottom:975.547067pt;}
.h1_c00041{height:56.156250pt;}
.h2_c00041{height:57.375000pt;}
.h0_c00041{height:1122.666667pt;}
.w1_c00041{width:793.333333pt;}
.w0_c00041{width:793.626667pt;}
.x0_c00041{left:0.000000pt;}
.x2_c00041{left:113.440000pt;}
.x1_c00041{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5e1c5f61476dc25a6d2d29f6.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.093262;font-style:normal;font-weight:normal;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_85b6c6884658e6d168ea0ea8.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00042;src:url('chunks/assets/font_3b4d5ef4a0db30d908944c4b.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:1.106934;font-style:normal;font-weight:normal;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_fab2fe374a1f5639022f4ee9.woff2')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00042{letter-spacing:-0.072000px;}
.ls4_c00042{letter-spacing:-0.064800px;}
.lsb_c00042{letter-spacing:-0.057600px;}
.ls9_c00042{letter-spacing:-0.050400px;}
.ls6_c00042{letter-spacing:-0.043200px;}
.ls7_c00042{letter-spacing:-0.036000px;}
.ls5_c00042{letter-spacing:-0.028800px;}
.ls3_c00042{letter-spacing:-0.021600px;}
.lsa_c00042{letter-spacing:-0.014400px;}
.ls2_c00042{letter-spacing:0.000000px;}
.lsc_c00042{letter-spacing:0.014400px;}
.lsd_c00042{letter-spacing:0.028800px;}
.ls0_c00042{letter-spacing:0.058716px;}
.ls1_c00042{letter-spacing:0.086400px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00042{word-spacing:-20.102400px;}
.ws18_c00042{word-spacing:-4.881600px;}
.ws16_c00042{word-spacing:-4.809600px;}
.ws17_c00042{word-spacing:-4.780800px;}
.ws26_c00042{word-spacing:-1.778400px;}
.ws27_c00042{word-spacing:-1.670400px;}
.ws5_c00042{word-spacing:-1.663200px;}
.ws25_c00042{word-spacing:-1.591200px;}
.ws4_c00042{word-spacing:-1.576800px;}
.ws3_c00042{word-spacing:-1.260000px;}
.ws1_c00042{word-spacing:0.000000px;}
.ws2_c00042{word-spacing:0.033552px;}
.ws24_c00042{word-spacing:0.050400px;}
.ws23_c00042{word-spacing:0.172800px;}
.ws2f_c00042{word-spacing:0.180000px;}
.wsb_c00042{word-spacing:0.201600px;}
.ws29_c00042{word-spacing:0.388800px;}
.ws28_c00042{word-spacing:0.568800px;}
.ws1a_c00042{word-spacing:3.441600px;}
.ws19_c00042{word-spacing:3.571200px;}
.ws1f_c00042{word-spacing:4.010400px;}
.ws2a_c00042{word-spacing:4.118400px;}
.ws20_c00042{word-spacing:4.183200px;}
.ws6_c00042{word-spacing:4.507200px;}
.ws13_c00042{word-spacing:5.234400px;}
.ws12_c00042{word-spacing:5.241600px;}
.ws2d_c00042{word-spacing:6.638400px;}
.ws2e_c00042{word-spacing:6.652800px;}
.ws1b_c00042{word-spacing:13.816800px;}
.ws1c_c00042{word-spacing:13.888800px;}
.ws1e_c00042{word-spacing:14.148000px;}
.ws1d_c00042{word-spacing:14.248800px;}
.wsd_c00042{word-spacing:14.601600px;}
.wsc_c00042{word-spacing:14.608800px;}
.ws8_c00042{word-spacing:15.256800px;}
.ws10_c00042{word-spacing:15.292800px;}
.ws7_c00042{word-spacing:15.321600px;}
.ws9_c00042{word-spacing:17.028000px;}
.wsa_c00042{word-spacing:17.114400px;}
.ws14_c00042{word-spacing:19.569600px;}
.ws15_c00042{word-spacing:19.598400px;}
.wsf_c00042{word-spacing:20.728800px;}
.wse_c00042{word-spacing:20.750400px;}
.ws11_c00042{word-spacing:26.143200px;}
.ws21_c00042{word-spacing:28.648800px;}
.ws22_c00042{word-spacing:28.656000px;}
.ws2b_c00042{word-spacing:37.627200px;}
.ws2c_c00042{word-spacing:37.641600px;}
._1_c00042{width:1.152000px;}
._0_c00042{width:14.427360px;}
.fc0_c00042{color:rgb(0,0,0);}
.fs0_c00042{font-size:72.000000px;}
.fs1_c00042{font-size:83.880000px;}
.y0_c00042{bottom:0.000000px;}
.y2_c00042{bottom:46.830450px;}
.y1_c00042{bottom:67.530450px;}
.y20_c00042{bottom:185.070450px;}
.y1f_c00042{bottom:216.120450px;}
.y1e_c00042{bottom:247.170450px;}
.y1d_c00042{bottom:278.220450px;}
.y1c_c00042{bottom:309.270450px;}
.y1b_c00042{bottom:340.320450px;}
.y1a_c00042{bottom:380.370450px;}
.y19_c00042{bottom:419.070450px;}
.y18_c00042{bottom:439.770450px;}
.y17_c00042{bottom:460.470450px;}
.y16_c00042{bottom:481.170450px;}
.y15_c00042{bottom:501.870450px;}
.y14_c00042{bottom:522.570450px;}
.y13_c00042{bottom:571.620450px;}
.y12_c00042{bottom:602.670450px;}
.y11_c00042{bottom:633.720450px;}
.y10_c00042{bottom:673.770450px;}
.yf_c00042{bottom:704.820450px;}
.ye_c00042{bottom:735.870450px;}
.yd_c00042{bottom:766.920450px;}
.yc_c00042{bottom:797.970450px;}
.yb_c00042{bottom:829.020450px;}
.ya_c00042{bottom:869.070450px;}
.y9_c00042{bottom:900.120450px;}
.y8_c00042{bottom:931.170450px;}
.y7_c00042{bottom:962.220450px;}
.y6_c00042{bottom:993.270450px;}
.y5_c00042{bottom:1024.320450px;}
.y4_c00042{bottom:1064.370450px;}
.y3_c00042{bottom:1094.520450px;}
.h1_c00042{height:63.175781px;}
.h3_c00042{height:64.546875px;}
.h4_c00042{height:75.093750px;}
.h2_c00042{height:87.484219px;}
.h0_c00042{height:1263.000000px;}
.w1_c00042{width:892.500000px;}
.w0_c00042{width:892.830000px;}
.x0_c00042{left:0.000000px;}
.x2_c00042{left:170.100000px;}
.x3_c00042{left:191.430000px;}
.x1_c00042{left:747.360000px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls8_c00042{letter-spacing:-0.064000pt;}
.ls4_c00042{letter-spacing:-0.057600pt;}
.lsb_c00042{letter-spacing:-0.051200pt;}
.ls9_c00042{letter-spacing:-0.044800pt;}
.ls6_c00042{letter-spacing:-0.038400pt;}
.ls7_c00042{letter-spacing:-0.032000pt;}
.ls5_c00042{letter-spacing:-0.025600pt;}
.ls3_c00042{letter-spacing:-0.019200pt;}
.lsa_c00042{letter-spacing:-0.012800pt;}
.ls2_c00042{letter-spacing:0.000000pt;}
.lsc_c00042{letter-spacing:0.012800pt;}
.lsd_c00042{letter-spacing:0.025600pt;}
.ls0_c00042{letter-spacing:0.052192pt;}
.ls1_c00042{letter-spacing:0.076800pt;}
.ws0_c00042{word-spacing:-17.868800pt;}
.ws18_c00042{word-spacing:-4.339200pt;}
.ws16_c00042{word-spacing:-4.275200pt;}
.ws17_c00042{word-spacing:-4.249600pt;}
.ws26_c00042{word-spacing:-1.580800pt;}
.ws27_c00042{word-spacing:-1.484800pt;}
.ws5_c00042{word-spacing:-1.478400pt;}
.ws25_c00042{word-spacing:-1.414400pt;}
.ws4_c00042{word-spacing:-1.401600pt;}
.ws3_c00042{word-spacing:-1.120000pt;}
.ws1_c00042{word-spacing:0.000000pt;}
.ws2_c00042{word-spacing:0.029824pt;}
.ws24_c00042{word-spacing:0.044800pt;}
.ws23_c00042{word-spacing:0.153600pt;}
.ws2f_c00042{word-spacing:0.160000pt;}
.wsb_c00042{word-spacing:0.179200pt;}
.ws29_c00042{word-spacing:0.345600pt;}
.ws28_c00042{word-spacing:0.505600pt;}
.ws1a_c00042{word-spacing:3.059200pt;}
.ws19_c00042{word-spacing:3.174400pt;}
.ws1f_c00042{word-spacing:3.564800pt;}
.ws2a_c00042{word-spacing:3.660800pt;}
.ws20_c00042{word-spacing:3.718400pt;}
.ws6_c00042{word-spacing:4.006400pt;}
.ws13_c00042{word-spacing:4.652800pt;}
.ws12_c00042{word-spacing:4.659200pt;}
.ws2d_c00042{word-spacing:5.900800pt;}
.ws2e_c00042{word-spacing:5.913600pt;}
.ws1b_c00042{word-spacing:12.281600pt;}
.ws1c_c00042{word-spacing:12.345600pt;}
.ws1e_c00042{word-spacing:12.576000pt;}
.ws1d_c00042{word-spacing:12.665600pt;}
.wsd_c00042{word-spacing:12.979200pt;}
.wsc_c00042{word-spacing:12.985600pt;}
.ws8_c00042{word-spacing:13.561600pt;}
.ws10_c00042{word-spacing:13.593600pt;}
.ws7_c00042{word-spacing:13.619200pt;}
.ws9_c00042{word-spacing:15.136000pt;}
.wsa_c00042{word-spacing:15.212800pt;}
.ws14_c00042{word-spacing:17.395200pt;}
.ws15_c00042{word-spacing:17.420800pt;}
.wsf_c00042{word-spacing:18.425600pt;}
.wse_c00042{word-spacing:18.444800pt;}
.ws11_c00042{word-spacing:23.238400pt;}
.ws21_c00042{word-spacing:25.465600pt;}
.ws22_c00042{word-spacing:25.472000pt;}
.ws2b_c00042{word-spacing:33.446400pt;}
.ws2c_c00042{word-spacing:33.459200pt;}
._1_c00042{width:1.024000pt;}
._0_c00042{width:12.824320pt;}
.fs0_c00042{font-size:64.000000pt;}
.fs1_c00042{font-size:74.560000pt;}
.y0_c00042{bottom:0.000000pt;}
.y2_c00042{bottom:41.627067pt;}
.y1_c00042{bottom:60.027067pt;}
.y20_c00042{bottom:164.507067pt;}
.y1f_c00042{bottom:192.107067pt;}
.y1e_c00042{bottom:219.707067pt;}
.y1d_c00042{bottom:247.307067pt;}
.y1c_c00042{bottom:274.907067pt;}
.y1b_c00042{bottom:302.507067pt;}
.y1a_c00042{bottom:338.107067pt;}
.y19_c00042{bottom:372.507067pt;}
.y18_c00042{bottom:390.907067pt;}
.y17_c00042{bottom:409.307067pt;}
.y16_c00042{bottom:427.707067pt;}
.y15_c00042{bottom:446.107067pt;}
.y14_c00042{bottom:464.507067pt;}
.y13_c00042{bottom:508.107067pt;}
.y12_c00042{bottom:535.707067pt;}
.y11_c00042{bottom:563.307067pt;}
.y10_c00042{bottom:598.907067pt;}
.yf_c00042{bottom:626.507067pt;}
.ye_c00042{bottom:654.107067pt;}
.yd_c00042{bottom:681.707067pt;}
.yc_c00042{bottom:709.307067pt;}
.yb_c00042{bottom:736.907067pt;}
.ya_c00042{bottom:772.507067pt;}
.y9_c00042{bottom:800.107067pt;}
.y8_c00042{bottom:827.707067pt;}
.y7_c00042{bottom:855.307067pt;}
.y6_c00042{bottom:882.907067pt;}
.y5_c00042{bottom:910.507067pt;}
.y4_c00042{bottom:946.107067pt;}
.y3_c00042{bottom:972.907067pt;}
.h1_c00042{height:56.156250pt;}
.h3_c00042{height:57.375000pt;}
.h4_c00042{height:66.750000pt;}
.h2_c00042{height:77.763750pt;}
.h0_c00042{height:1122.666667pt;}
.w1_c00042{width:793.333333pt;}
.w0_c00042{width:793.626667pt;}
.x0_c00042{left:0.000000pt;}
.x2_c00042{left:151.200000pt;}
.x3_c00042{left:170.160000pt;}
.x1_c00042{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e88b769613618b7f67d9c81f.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.093262;font-style:normal;font-weight:normal;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_c7037b143f400d862811c88d.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.106934;font-style: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;}
.ls4_c00043{letter-spacing:-0.050400px;}
.ls5_c00043{letter-spacing:-0.043200px;}
.ls2_c00043{letter-spacing:-0.036000px;}
.ls7_c00043{letter-spacing:-0.028800px;}
.ls6_c00043{letter-spacing:-0.021600px;}
.ls3_c00043{letter-spacing:-0.014400px;}
.ls1_c00043{letter-spacing:0.000000px;}
.ls8_c00043{letter-spacing:0.014400px;}
.ls0_c00043{letter-spacing:0.158400px;}
.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;}
}
.ws6_c00043{word-spacing:-3.427200px;}
.ws5_c00043{word-spacing:-3.405600px;}
.wsc_c00043{word-spacing:-3.376800px;}
.wsb_c00043{word-spacing:-3.355200px;}
.ws7_c00043{word-spacing:-0.547200px;}
.ws8_c00043{word-spacing:-0.518400px;}
.ws0_c00043{word-spacing:0.000000px;}
.wsa_c00043{word-spacing:0.151200px;}
.wsd_c00043{word-spacing:4.147200px;}
.ws9_c00043{word-spacing:4.874400px;}
.ws1_c00043{word-spacing:5.594400px;}
.ws2_c00043{word-spacing:5.630400px;}
.ws3_c00043{word-spacing:25.012800px;}
.ws4_c00043{word-spacing:25.048800px;}
._0_c00043{width:1.468800px;}
._1_c00043{width:843.840000px;}
.fc0_c00043{color:rgb(0,0,0);}
.fs0_c00043{font-size:72.000000px;}
.y0_c00043{bottom:0.000000px;}
.y2_c00043{bottom:46.830450px;}
.y1_c00043{bottom:67.530450px;}
.yd_c00043{bottom:759.990450px;}
.yc_c00043{bottom:800.040450px;}
.yb_c00043{bottom:840.090450px;}
.ya_c00043{bottom:871.140450px;}
.y9_c00043{bottom:902.190450px;}
.y8_c00043{bottom:942.240450px;}
.y7_c00043{bottom:973.290450px;}
.y6_c00043{bottom:1004.340450px;}
.y5_c00043{bottom:1035.390450px;}
.y4_c00043{bottom:1066.440450px;}
.y3_c00043{bottom:1097.490450px;}
.h1_c00043{height:63.175781px;}
.h2_c00043{height:64.546875px;}
.h0_c00043{height:1263.000000px;}
.w1_c00043{width:892.500000px;}
.w0_c00043{width:892.830000px;}
.x0_c00043{left:0.000000px;}
.x2_c00043{left:127.620000px;}
.x1_c00043{left:704.880000px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls4_c00043{letter-spacing:-0.044800pt;}
.ls5_c00043{letter-spacing:-0.038400pt;}
.ls2_c00043{letter-spacing:-0.032000pt;}
.ls7_c00043{letter-spacing:-0.025600pt;}
.ls6_c00043{letter-spacing:-0.019200pt;}
.ls3_c00043{letter-spacing:-0.012800pt;}
.ls1_c00043{letter-spacing:0.000000pt;}
.ls8_c00043{letter-spacing:0.012800pt;}
.ls0_c00043{letter-spacing:0.140800pt;}
.ws6_c00043{word-spacing:-3.046400pt;}
.ws5_c00043{word-spacing:-3.027200pt;}
.wsc_c00043{word-spacing:-3.001600pt;}
.wsb_c00043{word-spacing:-2.982400pt;}
.ws7_c00043{word-spacing:-0.486400pt;}
.ws8_c00043{word-spacing:-0.460800pt;}
.ws0_c00043{word-spacing:0.000000pt;}
.wsa_c00043{word-spacing:0.134400pt;}
.wsd_c00043{word-spacing:3.686400pt;}
.ws9_c00043{word-spacing:4.332800pt;}
.ws1_c00043{word-spacing:4.972800pt;}
.ws2_c00043{word-spacing:5.004800pt;}
.ws3_c00043{word-spacing:22.233600pt;}
.ws4_c00043{word-spacing:22.265600pt;}
._0_c00043{width:1.305600pt;}
._1_c00043{width:750.080000pt;}
.fs0_c00043{font-size:64.000000pt;}
.y0_c00043{bottom:0.000000pt;}
.y2_c00043{bottom:41.627067pt;}
.y1_c00043{bottom:60.027067pt;}
.yd_c00043{bottom:675.547067pt;}
.yc_c00043{bottom:711.147067pt;}
.yb_c00043{bottom:746.747067pt;}
.ya_c00043{bottom:774.347067pt;}
.y9_c00043{bottom:801.947067pt;}
.y8_c00043{bottom:837.547067pt;}
.y7_c00043{bottom:865.147067pt;}
.y6_c00043{bottom:892.747067pt;}
.y5_c00043{bottom:920.347067pt;}
.y4_c00043{bottom:947.947067pt;}
.y3_c00043{bottom:975.547067pt;}
.h1_c00043{height:56.156250pt;}
.h2_c00043{height:57.375000pt;}
.h0_c00043{height:1122.666667pt;}
.w1_c00043{width:793.333333pt;}
.w0_c00043{width:793.626667pt;}
.x0_c00043{left:0.000000pt;}
.x2_c00043{left:113.440000pt;}
.x1_c00043{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_03726848d7821000fb85a7b3.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.093262;font-style:normal;font-weight:normal;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_61184db238d7d2d20797ede8.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00044;src:url('chunks/assets/font_23201f56ec17264f5b7d484c.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:1.106934;font-style:normal;font-weight:normal;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_c0a80bdfcf88552389ca0933.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsb_c00044{letter-spacing:-0.122400px;}
.lsa_c00044{letter-spacing:-0.072000px;}
.ls5_c00044{letter-spacing:-0.064800px;}
.ls2_c00044{letter-spacing:-0.057600px;}
.ls7_c00044{letter-spacing:-0.050400px;}
.ls9_c00044{letter-spacing:-0.043200px;}
.ls4_c00044{letter-spacing:-0.036000px;}
.ls6_c00044{letter-spacing:-0.028800px;}
.ls3_c00044{letter-spacing:-0.021600px;}
.ls8_c00044{letter-spacing:-0.014400px;}
.lsd_c00044{letter-spacing:-0.007200px;}
.ls1_c00044{letter-spacing:0.000000px;}
.lsc_c00044{letter-spacing:0.007200px;}
.ls0_c00044{letter-spacing:0.050328px;}
.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;}
}
.ws32_c00044{word-spacing:-3.052800px;}
.ws33_c00044{word-spacing:-3.016800px;}
.ws8_c00044{word-spacing:-2.332800px;}
.wsc_c00044{word-spacing:-1.310400px;}
.wsd_c00044{word-spacing:-1.252800px;}
.ws14_c00044{word-spacing:-0.950400px;}
.ws13_c00044{word-spacing:-0.936000px;}
.ws2a_c00044{word-spacing:-0.892800px;}
.ws29_c00044{word-spacing:-0.885600px;}
.wse_c00044{word-spacing:-0.590400px;}
.wsf_c00044{word-spacing:-0.540000px;}
.ws0_c00044{word-spacing:0.000000px;}
.ws20_c00044{word-spacing:0.028800px;}
.ws1_c00044{word-spacing:0.041940px;}
.ws3_c00044{word-spacing:0.158400px;}
.wsb_c00044{word-spacing:0.172800px;}
.ws28_c00044{word-spacing:0.180000px;}
.ws16_c00044{word-spacing:0.208800px;}
.ws15_c00044{word-spacing:0.288000px;}
.ws21_c00044{word-spacing:0.568800px;}
.ws1b_c00044{word-spacing:2.282400px;}
.ws1a_c00044{word-spacing:2.361600px;}
.ws30_c00044{word-spacing:3.434400px;}
.ws31_c00044{word-spacing:3.441600px;}
.ws2f_c00044{word-spacing:4.485600px;}
.ws2d_c00044{word-spacing:4.500000px;}
.ws12_c00044{word-spacing:4.507200px;}
.ws2e_c00044{word-spacing:4.521600px;}
.ws19_c00044{word-spacing:5.227200px;}
.ws17_c00044{word-spacing:5.234400px;}
.ws18_c00044{word-spacing:5.248800px;}
.ws7_c00044{word-spacing:6.336000px;}
.ws6_c00044{word-spacing:7.711200px;}
.ws5_c00044{word-spacing:7.754400px;}
.ws1d_c00044{word-spacing:9.871200px;}
.ws4_c00044{word-spacing:9.900000px;}
.ws1c_c00044{word-spacing:9.907200px;}
.ws24_c00044{word-spacing:10.245600px;}
.ws25_c00044{word-spacing:10.296000px;}
.ws11_c00044{word-spacing:13.478400px;}
.ws10_c00044{word-spacing:13.593600px;}
.ws2_c00044{word-spacing:13.896000px;}
.ws26_c00044{word-spacing:16.826400px;}
.ws27_c00044{word-spacing:16.963200px;}
.ws2c_c00044{word-spacing:22.132800px;}
.ws2b_c00044{word-spacing:22.154400px;}
.ws22_c00044{word-spacing:30.448800px;}
.ws23_c00044{word-spacing:30.456000px;}
.ws1f_c00044{word-spacing:36.518400px;}
.ws1e_c00044{word-spacing:36.532800px;}
.ws9_c00044{word-spacing:40.147200px;}
.wsa_c00044{word-spacing:40.168800px;}
._1_c00044{width:1.296000px;}
._0_c00044{width:153.332640px;}
.fc0_c00044{color:rgb(0,0,0);}
.fs0_c00044{font-size:72.000000px;}
.fs1_c00044{font-size:83.880000px;}
.y0_c00044{bottom:0.000000px;}
.y2_c00044{bottom:46.830450px;}
.y1_c00044{bottom:67.530450px;}
.y22_c00044{bottom:145.920450px;}
.y21_c00044{bottom:176.970450px;}
.y20_c00044{bottom:208.020450px;}
.y1f_c00044{bottom:239.070450px;}
.y1e_c00044{bottom:270.120450px;}
.y1d_c00044{bottom:308.820450px;}
.y1c_c00044{bottom:347.520450px;}
.y1b_c00044{bottom:368.220450px;}
.y1a_c00044{bottom:388.920450px;}
.y19_c00044{bottom:409.620450px;}
.y18_c00044{bottom:458.670450px;}
.y17_c00044{bottom:489.720450px;}
.y16_c00044{bottom:520.770450px;}
.y15_c00044{bottom:551.820450px;}
.y14_c00044{bottom:582.870450px;}
.y13_c00044{bottom:622.920450px;}
.y12_c00044{bottom:653.970450px;}
.y11_c00044{bottom:685.020450px;}
.y10_c00044{bottom:716.070450px;}
.yf_c00044{bottom:747.120450px;}
.ye_c00044{bottom:778.170450px;}
.yd_c00044{bottom:816.870450px;}
.yc_c00044{bottom:855.570450px;}
.yb_c00044{bottom:876.270450px;}
.ya_c00044{bottom:896.970450px;}
.y9_c00044{bottom:917.670450px;}
.y8_c00044{bottom:938.370450px;}
.y7_c00044{bottom:959.070450px;}
.y6_c00044{bottom:1008.120450px;}
.y5_c00044{bottom:1039.170450px;}
.y4_c00044{bottom:1068.870450px;}
.y3_c00044{bottom:1094.520450px;}
.h1_c00044{height:63.175781px;}
.h3_c00044{height:64.546875px;}
.h4_c00044{height:75.093750px;}
.h2_c00044{height:87.484219px;}
.h0_c00044{height:1263.000000px;}
.w1_c00044{width:892.500000px;}
.w0_c00044{width:892.830000px;}
.x0_c00044{left:0.000000px;}
.x2_c00044{left:170.100000px;}
.x4_c00044{left:191.430000px;}
.x3_c00044{left:197.100000px;}
.x1_c00044{left:747.360000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.lsb_c00044{letter-spacing:-0.108800pt;}
.lsa_c00044{letter-spacing:-0.064000pt;}
.ls5_c00044{letter-spacing:-0.057600pt;}
.ls2_c00044{letter-spacing:-0.051200pt;}
.ls7_c00044{letter-spacing:-0.044800pt;}
.ls9_c00044{letter-spacing:-0.038400pt;}
.ls4_c00044{letter-spacing:-0.032000pt;}
.ls6_c00044{letter-spacing:-0.025600pt;}
.ls3_c00044{letter-spacing:-0.019200pt;}
.ls8_c00044{letter-spacing:-0.012800pt;}
.lsd_c00044{letter-spacing:-0.006400pt;}
.ls1_c00044{letter-spacing:0.000000pt;}
.lsc_c00044{letter-spacing:0.006400pt;}
.ls0_c00044{letter-spacing:0.044736pt;}
.ws32_c00044{word-spacing:-2.713600pt;}
.ws33_c00044{word-spacing:-2.681600pt;}
.ws8_c00044{word-spacing:-2.073600pt;}
.wsc_c00044{word-spacing:-1.164800pt;}
.wsd_c00044{word-spacing:-1.113600pt;}
.ws14_c00044{word-spacing:-0.844800pt;}
.ws13_c00044{word-spacing:-0.832000pt;}
.ws2a_c00044{word-spacing:-0.793600pt;}
.ws29_c00044{word-spacing:-0.787200pt;}
.wse_c00044{word-spacing:-0.524800pt;}
.wsf_c00044{word-spacing:-0.480000pt;}
.ws0_c00044{word-spacing:0.000000pt;}
.ws20_c00044{word-spacing:0.025600pt;}
.ws1_c00044{word-spacing:0.037280pt;}
.ws3_c00044{word-spacing:0.140800pt;}
.wsb_c00044{word-spacing:0.153600pt;}
.ws28_c00044{word-spacing:0.160000pt;}
.ws16_c00044{word-spacing:0.185600pt;}
.ws15_c00044{word-spacing:0.256000pt;}
.ws21_c00044{word-spacing:0.505600pt;}
.ws1b_c00044{word-spacing:2.028800pt;}
.ws1a_c00044{word-spacing:2.099200pt;}
.ws30_c00044{word-spacing:3.052800pt;}
.ws31_c00044{word-spacing:3.059200pt;}
.ws2f_c00044{word-spacing:3.987200pt;}
.ws2d_c00044{word-spacing:4.000000pt;}
.ws12_c00044{word-spacing:4.006400pt;}
.ws2e_c00044{word-spacing:4.019200pt;}
.ws19_c00044{word-spacing:4.646400pt;}
.ws17_c00044{word-spacing:4.652800pt;}
.ws18_c00044{word-spacing:4.665600pt;}
.ws7_c00044{word-spacing:5.632000pt;}
.ws6_c00044{word-spacing:6.854400pt;}
.ws5_c00044{word-spacing:6.892800pt;}
.ws1d_c00044{word-spacing:8.774400pt;}
.ws4_c00044{word-spacing:8.800000pt;}
.ws1c_c00044{word-spacing:8.806400pt;}
.ws24_c00044{word-spacing:9.107200pt;}
.ws25_c00044{word-spacing:9.152000pt;}
.ws11_c00044{word-spacing:11.980800pt;}
.ws10_c00044{word-spacing:12.083200pt;}
.ws2_c00044{word-spacing:12.352000pt;}
.ws26_c00044{word-spacing:14.956800pt;}
.ws27_c00044{word-spacing:15.078400pt;}
.ws2c_c00044{word-spacing:19.673600pt;}
.ws2b_c00044{word-spacing:19.692800pt;}
.ws22_c00044{word-spacing:27.065600pt;}
.ws23_c00044{word-spacing:27.072000pt;}
.ws1f_c00044{word-spacing:32.460800pt;}
.ws1e_c00044{word-spacing:32.473600pt;}
.ws9_c00044{word-spacing:35.686400pt;}
.wsa_c00044{word-spacing:35.705600pt;}
._1_c00044{width:1.152000pt;}
._0_c00044{width:136.295680pt;}
.fs0_c00044{font-size:64.000000pt;}
.fs1_c00044{font-size:74.560000pt;}
.y0_c00044{bottom:0.000000pt;}
.y2_c00044{bottom:41.627067pt;}
.y1_c00044{bottom:60.027067pt;}
.y22_c00044{bottom:129.707067pt;}
.y21_c00044{bottom:157.307067pt;}
.y20_c00044{bottom:184.907067pt;}
.y1f_c00044{bottom:212.507067pt;}
.y1e_c00044{bottom:240.107067pt;}
.y1d_c00044{bottom:274.507067pt;}
.y1c_c00044{bottom:308.907067pt;}
.y1b_c00044{bottom:327.307067pt;}
.y1a_c00044{bottom:345.707067pt;}
.y19_c00044{bottom:364.107067pt;}
.y18_c00044{bottom:407.707067pt;}
.y17_c00044{bottom:435.307067pt;}
.y16_c00044{bottom:462.907067pt;}
.y15_c00044{bottom:490.507067pt;}
.y14_c00044{bottom:518.107067pt;}
.y13_c00044{bottom:553.707067pt;}
.y12_c00044{bottom:581.307067pt;}
.y11_c00044{bottom:608.907067pt;}
.y10_c00044{bottom:636.507067pt;}
.yf_c00044{bottom:664.107067pt;}
.ye_c00044{bottom:691.707067pt;}
.yd_c00044{bottom:726.107067pt;}
.yc_c00044{bottom:760.507067pt;}
.yb_c00044{bottom:778.907067pt;}
.ya_c00044{bottom:797.307067pt;}
.y9_c00044{bottom:815.707067pt;}
.y8_c00044{bottom:834.107067pt;}
.y7_c00044{bottom:852.507067pt;}
.y6_c00044{bottom:896.107067pt;}
.y5_c00044{bottom:923.707067pt;}
.y4_c00044{bottom:950.107067pt;}
.y3_c00044{bottom:972.907067pt;}
.h1_c00044{height:56.156250pt;}
.h3_c00044{height:57.375000pt;}
.h4_c00044{height:66.750000pt;}
.h2_c00044{height:77.763750pt;}
.h0_c00044{height:1122.666667pt;}
.w1_c00044{width:793.333333pt;}
.w0_c00044{width:793.626667pt;}
.x0_c00044{left:0.000000pt;}
.x2_c00044{left:151.200000pt;}
.x4_c00044{left:170.160000pt;}
.x3_c00044{left:175.200000pt;}
.x1_c00044{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_19423bf568ddc73215ce0ea9.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.093262;font-style:normal;font-weight:normal;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_17f3fcd96e1df21127e8d440.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.106934;font-style: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;}
.lsa_c00045{letter-spacing:-0.086400px;}
.ls2_c00045{letter-spacing:-0.064800px;}
.ls8_c00045{letter-spacing:-0.057600px;}
.ls6_c00045{letter-spacing:-0.050400px;}
.ls5_c00045{letter-spacing:-0.043200px;}
.ls4_c00045{letter-spacing:-0.036000px;}
.lsb_c00045{letter-spacing:-0.028800px;}
.ls3_c00045{letter-spacing:-0.021600px;}
.ls9_c00045{letter-spacing:-0.014400px;}
.ls7_c00045{letter-spacing:-0.007200px;}
.ls1_c00045{letter-spacing:0.000000px;}
.lsc_c00045{letter-spacing:0.007200px;}
.ls0_c00045{letter-spacing:0.064800px;}
.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;}
}
.ws23_c00045{word-spacing:-4.507200px;}
.ws22_c00045{word-spacing:-4.500000px;}
.ws17_c00045{word-spacing:-3.830400px;}
.ws30_c00045{word-spacing:-3.772800px;}
.ws16_c00045{word-spacing:-3.758400px;}
.ws18_c00045{word-spacing:-3.398400px;}
.ws36_c00045{word-spacing:-2.347200px;}
.ws2_c00045{word-spacing:-2.340000px;}
.ws3_c00045{word-spacing:-2.325600px;}
.ws1_c00045{word-spacing:-2.296800px;}
.ws37_c00045{word-spacing:-2.260800px;}
.ws35_c00045{word-spacing:-1.965600px;}
.ws34_c00045{word-spacing:-1.936800px;}
.ws31_c00045{word-spacing:-1.260000px;}
.ws32_c00045{word-spacing:-1.238400px;}
.ws8_c00045{word-spacing:-0.914400px;}
.ws9_c00045{word-spacing:-0.878400px;}
.ws2b_c00045{word-spacing:-0.208800px;}
.ws2a_c00045{word-spacing:-0.172800px;}
.ws1d_c00045{word-spacing:-0.158400px;}
.ws27_c00045{word-spacing:-0.151200px;}
.ws26_c00045{word-spacing:-0.136800px;}
.ws1e_c00045{word-spacing:-0.115200px;}
.ws0_c00045{word-spacing:0.000000px;}
.ws1f_c00045{word-spacing:0.165600px;}
.wsa_c00045{word-spacing:0.180000px;}
.ws10_c00045{word-spacing:0.194400px;}
.wsf_c00045{word-spacing:0.208800px;}
.ws2e_c00045{word-spacing:0.525600px;}
.ws2d_c00045{word-spacing:0.540000px;}
.wsc_c00045{word-spacing:1.634400px;}
.wsd_c00045{word-spacing:1.663200px;}
.wsb_c00045{word-spacing:4.168800px;}
.ws33_c00045{word-spacing:5.587200px;}
.ws19_c00045{word-spacing:5.983200px;}
.ws15_c00045{word-spacing:7.970400px;}
.ws14_c00045{word-spacing:7.977600px;}
.ws13_c00045{word-spacing:8.114400px;}
.wse_c00045{word-spacing:8.128800px;}
.ws21_c00045{word-spacing:13.140000px;}
.ws5_c00045{word-spacing:13.154400px;}
.ws4_c00045{word-spacing:13.161600px;}
.ws20_c00045{word-spacing:13.168800px;}
.ws2f_c00045{word-spacing:18.187200px;}
.ws28_c00045{word-spacing:18.511200px;}
.ws29_c00045{word-spacing:18.568800px;}
.ws24_c00045{word-spacing:19.605600px;}
.ws25_c00045{word-spacing:19.648800px;}
.ws1a_c00045{word-spacing:26.827200px;}
.ws2c_c00045{word-spacing:28.288800px;}
.ws7_c00045{word-spacing:31.089600px;}
.ws6_c00045{word-spacing:31.168800px;}
.ws1c_c00045{word-spacing:33.667200px;}
.ws1b_c00045{word-spacing:33.674400px;}
.ws11_c00045{word-spacing:38.728800px;}
.ws12_c00045{word-spacing:38.743200px;}
._0_c00045{width:1.008000px;}
.fc0_c00045{color:rgb(0,0,0);}
.fs0_c00045{font-size:72.000000px;}
.y0_c00045{bottom:0.000000px;}
.y2_c00045{bottom:46.830450px;}
.y1_c00045{bottom:67.530450px;}
.y24_c00045{bottom:154.830450px;}
.y23_c00045{bottom:185.880450px;}
.y22_c00045{bottom:216.930450px;}
.y21_c00045{bottom:247.980450px;}
.y20_c00045{bottom:279.030450px;}
.y1f_c00045{bottom:310.080450px;}
.y1e_c00045{bottom:341.040450px;}
.y1d_c00045{bottom:372.090450px;}
.y1c_c00045{bottom:403.140450px;}
.y1b_c00045{bottom:434.190450px;}
.y1a_c00045{bottom:465.240450px;}
.y19_c00045{bottom:496.290450px;}
.y18_c00045{bottom:527.340450px;}
.y17_c00045{bottom:558.390450px;}
.y16_c00045{bottom:597.090450px;}
.y15_c00045{bottom:635.790450px;}
.y14_c00045{bottom:656.490450px;}
.y13_c00045{bottom:677.190450px;}
.y12_c00045{bottom:697.890450px;}
.y11_c00045{bottom:718.590450px;}
.y10_c00045{bottom:739.290450px;}
.yf_c00045{bottom:759.990450px;}
.ye_c00045{bottom:780.690450px;}
.yd_c00045{bottom:801.390450px;}
.yc_c00045{bottom:822.090450px;}
.yb_c00045{bottom:842.790450px;}
.ya_c00045{bottom:863.490450px;}
.y9_c00045{bottom:884.190450px;}
.y8_c00045{bottom:933.240450px;}
.y7_c00045{bottom:964.290450px;}
.y6_c00045{bottom:995.340450px;}
.y5_c00045{bottom:1035.390450px;}
.y4_c00045{bottom:1066.440450px;}
.y3_c00045{bottom:1097.490450px;}
.h1_c00045{height:63.175781px;}
.h2_c00045{height:64.546875px;}
.h0_c00045{height:1263.000000px;}
.w1_c00045{width:892.500000px;}
.w0_c00045{width:892.830000px;}
.x0_c00045{left:0.000000px;}
.x2_c00045{left:127.620000px;}
.x3_c00045{left:148.950000px;}
.x1_c00045{left:704.880000px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.lsa_c00045{letter-spacing:-0.076800pt;}
.ls2_c00045{letter-spacing:-0.057600pt;}
.ls8_c00045{letter-spacing:-0.051200pt;}
.ls6_c00045{letter-spacing:-0.044800pt;}
.ls5_c00045{letter-spacing:-0.038400pt;}
.ls4_c00045{letter-spacing:-0.032000pt;}
.lsb_c00045{letter-spacing:-0.025600pt;}
.ls3_c00045{letter-spacing:-0.019200pt;}
.ls9_c00045{letter-spacing:-0.012800pt;}
.ls7_c00045{letter-spacing:-0.006400pt;}
.ls1_c00045{letter-spacing:0.000000pt;}
.lsc_c00045{letter-spacing:0.006400pt;}
.ls0_c00045{letter-spacing:0.057600pt;}
.ws23_c00045{word-spacing:-4.006400pt;}
.ws22_c00045{word-spacing:-4.000000pt;}
.ws17_c00045{word-spacing:-3.404800pt;}
.ws30_c00045{word-spacing:-3.353600pt;}
.ws16_c00045{word-spacing:-3.340800pt;}
.ws18_c00045{word-spacing:-3.020800pt;}
.ws36_c00045{word-spacing:-2.086400pt;}
.ws2_c00045{word-spacing:-2.080000pt;}
.ws3_c00045{word-spacing:-2.067200pt;}
.ws1_c00045{word-spacing:-2.041600pt;}
.ws37_c00045{word-spacing:-2.009600pt;}
.ws35_c00045{word-spacing:-1.747200pt;}
.ws34_c00045{word-spacing:-1.721600pt;}
.ws31_c00045{word-spacing:-1.120000pt;}
.ws32_c00045{word-spacing:-1.100800pt;}
.ws8_c00045{word-spacing:-0.812800pt;}
.ws9_c00045{word-spacing:-0.780800pt;}
.ws2b_c00045{word-spacing:-0.185600pt;}
.ws2a_c00045{word-spacing:-0.153600pt;}
.ws1d_c00045{word-spacing:-0.140800pt;}
.ws27_c00045{word-spacing:-0.134400pt;}
.ws26_c00045{word-spacing:-0.121600pt;}
.ws1e_c00045{word-spacing:-0.102400pt;}
.ws0_c00045{word-spacing:0.000000pt;}
.ws1f_c00045{word-spacing:0.147200pt;}
.wsa_c00045{word-spacing:0.160000pt;}
.ws10_c00045{word-spacing:0.172800pt;}
.wsf_c00045{word-spacing:0.185600pt;}
.ws2e_c00045{word-spacing:0.467200pt;}
.ws2d_c00045{word-spacing:0.480000pt;}
.wsc_c00045{word-spacing:1.452800pt;}
.wsd_c00045{word-spacing:1.478400pt;}
.wsb_c00045{word-spacing:3.705600pt;}
.ws33_c00045{word-spacing:4.966400pt;}
.ws19_c00045{word-spacing:5.318400pt;}
.ws15_c00045{word-spacing:7.084800pt;}
.ws14_c00045{word-spacing:7.091200pt;}
.ws13_c00045{word-spacing:7.212800pt;}
.wse_c00045{word-spacing:7.225600pt;}
.ws21_c00045{word-spacing:11.680000pt;}
.ws5_c00045{word-spacing:11.692800pt;}
.ws4_c00045{word-spacing:11.699200pt;}
.ws20_c00045{word-spacing:11.705600pt;}
.ws2f_c00045{word-spacing:16.166400pt;}
.ws28_c00045{word-spacing:16.454400pt;}
.ws29_c00045{word-spacing:16.505600pt;}
.ws24_c00045{word-spacing:17.427200pt;}
.ws25_c00045{word-spacing:17.465600pt;}
.ws1a_c00045{word-spacing:23.846400pt;}
.ws2c_c00045{word-spacing:25.145600pt;}
.ws7_c00045{word-spacing:27.635200pt;}
.ws6_c00045{word-spacing:27.705600pt;}
.ws1c_c00045{word-spacing:29.926400pt;}
.ws1b_c00045{word-spacing:29.932800pt;}
.ws11_c00045{word-spacing:34.425600pt;}
.ws12_c00045{word-spacing:34.438400pt;}
._0_c00045{width:0.896000pt;}
.fs0_c00045{font-size:64.000000pt;}
.y0_c00045{bottom:0.000000pt;}
.y2_c00045{bottom:41.627067pt;}
.y1_c00045{bottom:60.027067pt;}
.y24_c00045{bottom:137.627067pt;}
.y23_c00045{bottom:165.227067pt;}
.y22_c00045{bottom:192.827067pt;}
.y21_c00045{bottom:220.427067pt;}
.y20_c00045{bottom:248.027067pt;}
.y1f_c00045{bottom:275.627067pt;}
.y1e_c00045{bottom:303.147067pt;}
.y1d_c00045{bottom:330.747067pt;}
.y1c_c00045{bottom:358.347067pt;}
.y1b_c00045{bottom:385.947067pt;}
.y1a_c00045{bottom:413.547067pt;}
.y19_c00045{bottom:441.147067pt;}
.y18_c00045{bottom:468.747067pt;}
.y17_c00045{bottom:496.347067pt;}
.y16_c00045{bottom:530.747067pt;}
.y15_c00045{bottom:565.147067pt;}
.y14_c00045{bottom:583.547067pt;}
.y13_c00045{bottom:601.947067pt;}
.y12_c00045{bottom:620.347067pt;}
.y11_c00045{bottom:638.747067pt;}
.y10_c00045{bottom:657.147067pt;}
.yf_c00045{bottom:675.547067pt;}
.ye_c00045{bottom:693.947067pt;}
.yd_c00045{bottom:712.347067pt;}
.yc_c00045{bottom:730.747067pt;}
.yb_c00045{bottom:749.147067pt;}
.ya_c00045{bottom:767.547067pt;}
.y9_c00045{bottom:785.947067pt;}
.y8_c00045{bottom:829.547067pt;}
.y7_c00045{bottom:857.147067pt;}
.y6_c00045{bottom:884.747067pt;}
.y5_c00045{bottom:920.347067pt;}
.y4_c00045{bottom:947.947067pt;}
.y3_c00045{bottom:975.547067pt;}
.h1_c00045{height:56.156250pt;}
.h2_c00045{height:57.375000pt;}
.h0_c00045{height:1122.666667pt;}
.w1_c00045{width:793.333333pt;}
.w0_c00045{width:793.626667pt;}
.x0_c00045{left:0.000000pt;}
.x2_c00045{left:113.440000pt;}
.x3_c00045{left:132.400000pt;}
.x1_c00045{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_75b9a51968903c6ef7f8909f.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.093262;font-style:normal;font-weight:normal;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_7b6ea0de866ad5d980f93a24.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.106934;font-style:normal;font-weight:normal;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_f02f0a94b01a3291035239f6.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00046{letter-spacing:-0.079200px;}
.lsa_c00046{letter-spacing:-0.072000px;}
.ls5_c00046{letter-spacing:-0.050400px;}
.ls3_c00046{letter-spacing:-0.043200px;}
.ls2_c00046{letter-spacing:-0.036000px;}
.ls6_c00046{letter-spacing:-0.028800px;}
.ls7_c00046{letter-spacing:-0.021600px;}
.ls9_c00046{letter-spacing:-0.014400px;}
.ls1_c00046{letter-spacing:-0.007200px;}
.ls0_c00046{letter-spacing:0.000000px;}
.ls4_c00046{letter-spacing:0.014400px;}
.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;}
}
.ws2a_c00046{word-spacing:-1.972800px;}
.ws4_c00046{word-spacing:-1.836000px;}
.ws2_c00046{word-spacing:-1.785600px;}
.ws3_c00046{word-spacing:-1.598400px;}
.ws5_c00046{word-spacing:-0.885600px;}
.ws6_c00046{word-spacing:-0.871200px;}
.ws2f_c00046{word-spacing:-0.172800px;}
.ws2e_c00046{word-spacing:-0.129600px;}
.ws0_c00046{word-spacing:0.000000px;}
.wsa_c00046{word-spacing:0.158400px;}
.ws2b_c00046{word-spacing:0.180000px;}
.wsb_c00046{word-spacing:0.187200px;}
.ws22_c00046{word-spacing:0.799200px;}
.ws23_c00046{word-spacing:0.871200px;}
.ws21_c00046{word-spacing:2.001600px;}
.ws7_c00046{word-spacing:3.074400px;}
.ws8_c00046{word-spacing:3.088800px;}
.ws32_c00046{word-spacing:3.787200px;}
.ws33_c00046{word-spacing:3.794400px;}
.ws12_c00046{word-spacing:4.874400px;}
.ws18_c00046{word-spacing:4.881600px;}
.ws19_c00046{word-spacing:4.888800px;}
.ws11_c00046{word-spacing:4.924800px;}
.ws13_c00046{word-spacing:5.248800px;}
.ws1_c00046{word-spacing:6.645600px;}
.ws2c_c00046{word-spacing:7.725600px;}
.ws2d_c00046{word-spacing:7.754400px;}
.ws1b_c00046{word-spacing:9.115200px;}
.ws1c_c00046{word-spacing:9.180000px;}
.ws1a_c00046{word-spacing:9.194400px;}
.wsf_c00046{word-spacing:9.900000px;}
.ws10_c00046{word-spacing:9.914400px;}
.ws24_c00046{word-spacing:10.260000px;}
.ws25_c00046{word-spacing:10.375200px;}
.ws17_c00046{word-spacing:10.627200px;}
.ws26_c00046{word-spacing:12.038400px;}
.ws27_c00046{word-spacing:12.052800px;}
.ws34_c00046{word-spacing:12.780000px;}
.ws35_c00046{word-spacing:12.787200px;}
.ws28_c00046{word-spacing:12.794400px;}
.ws29_c00046{word-spacing:12.909600px;}
.ws30_c00046{word-spacing:13.449600px;}
.ws31_c00046{word-spacing:13.492800px;}
.ws15_c00046{word-spacing:14.580000px;}
.ws16_c00046{word-spacing:14.587200px;}
.ws14_c00046{word-spacing:17.481600px;}
.ws20_c00046{word-spacing:22.838400px;}
.wse_c00046{word-spacing:22.874400px;}
.ws1f_c00046{word-spacing:22.888800px;}
.ws1d_c00046{word-spacing:23.212800px;}
.ws1e_c00046{word-spacing:23.234400px;}
.wsc_c00046{word-spacing:26.380800px;}
.wsd_c00046{word-spacing:26.474400px;}
.ws9_c00046{word-spacing:54.568800px;}
._0_c00046{width:1.281600px;}
.fc0_c00046{color:rgb(0,0,0);}
.fs0_c00046{font-size:72.000000px;}
.y0_c00046{bottom:0.000000px;}
.y2_c00046{bottom:46.830450px;}
.y1_c00046{bottom:67.530450px;}
.y20_c00046{bottom:188.130450px;}
.y1f_c00046{bottom:219.180450px;}
.y1e_c00046{bottom:250.230450px;}
.y1d_c00046{bottom:281.280450px;}
.y1c_c00046{bottom:312.330450px;}
.y1b_c00046{bottom:343.380450px;}
.y1a_c00046{bottom:374.430450px;}
.y19_c00046{bottom:405.390450px;}
.y18_c00046{bottom:436.440450px;}
.y17_c00046{bottom:467.490450px;}
.y16_c00046{bottom:498.540450px;}
.y15_c00046{bottom:529.590450px;}
.y14_c00046{bottom:560.640450px;}
.y13_c00046{bottom:591.690450px;}
.y12_c00046{bottom:622.740450px;}
.y11_c00046{bottom:653.790450px;}
.y10_c00046{bottom:684.840450px;}
.yf_c00046{bottom:715.890450px;}
.ye_c00046{bottom:746.940450px;}
.yd_c00046{bottom:777.990450px;}
.yc_c00046{bottom:809.040450px;}
.yb_c00046{bottom:840.090450px;}
.ya_c00046{bottom:871.140450px;}
.y9_c00046{bottom:902.190450px;}
.y8_c00046{bottom:942.240450px;}
.y7_c00046{bottom:973.290450px;}
.y6_c00046{bottom:1004.340450px;}
.y5_c00046{bottom:1035.390450px;}
.y4_c00046{bottom:1066.440450px;}
.y3_c00046{bottom:1097.490450px;}
.h1_c00046{height:63.175781px;}
.h2_c00046{height:64.546875px;}
.h3_c00046{height:75.093750px;}
.h0_c00046{height:1263.000000px;}
.w1_c00046{width:892.500000px;}
.w0_c00046{width:892.830000px;}
.x0_c00046{left:0.000000px;}
.x2_c00046{left:170.100000px;}
.x1_c00046{left:747.360000px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls8_c00046{letter-spacing:-0.070400pt;}
.lsa_c00046{letter-spacing:-0.064000pt;}
.ls5_c00046{letter-spacing:-0.044800pt;}
.ls3_c00046{letter-spacing:-0.038400pt;}
.ls2_c00046{letter-spacing:-0.032000pt;}
.ls6_c00046{letter-spacing:-0.025600pt;}
.ls7_c00046{letter-spacing:-0.019200pt;}
.ls9_c00046{letter-spacing:-0.012800pt;}
.ls1_c00046{letter-spacing:-0.006400pt;}
.ls0_c00046{letter-spacing:0.000000pt;}
.ls4_c00046{letter-spacing:0.012800pt;}
.ws2a_c00046{word-spacing:-1.753600pt;}
.ws4_c00046{word-spacing:-1.632000pt;}
.ws2_c00046{word-spacing:-1.587200pt;}
.ws3_c00046{word-spacing:-1.420800pt;}
.ws5_c00046{word-spacing:-0.787200pt;}
.ws6_c00046{word-spacing:-0.774400pt;}
.ws2f_c00046{word-spacing:-0.153600pt;}
.ws2e_c00046{word-spacing:-0.115200pt;}
.ws0_c00046{word-spacing:0.000000pt;}
.wsa_c00046{word-spacing:0.140800pt;}
.ws2b_c00046{word-spacing:0.160000pt;}
.wsb_c00046{word-spacing:0.166400pt;}
.ws22_c00046{word-spacing:0.710400pt;}
.ws23_c00046{word-spacing:0.774400pt;}
.ws21_c00046{word-spacing:1.779200pt;}
.ws7_c00046{word-spacing:2.732800pt;}
.ws8_c00046{word-spacing:2.745600pt;}
.ws32_c00046{word-spacing:3.366400pt;}
.ws33_c00046{word-spacing:3.372800pt;}
.ws12_c00046{word-spacing:4.332800pt;}
.ws18_c00046{word-spacing:4.339200pt;}
.ws19_c00046{word-spacing:4.345600pt;}
.ws11_c00046{word-spacing:4.377600pt;}
.ws13_c00046{word-spacing:4.665600pt;}
.ws1_c00046{word-spacing:5.907200pt;}
.ws2c_c00046{word-spacing:6.867200pt;}
.ws2d_c00046{word-spacing:6.892800pt;}
.ws1b_c00046{word-spacing:8.102400pt;}
.ws1c_c00046{word-spacing:8.160000pt;}
.ws1a_c00046{word-spacing:8.172800pt;}
.wsf_c00046{word-spacing:8.800000pt;}
.ws10_c00046{word-spacing:8.812800pt;}
.ws24_c00046{word-spacing:9.120000pt;}
.ws25_c00046{word-spacing:9.222400pt;}
.ws17_c00046{word-spacing:9.446400pt;}
.ws26_c00046{word-spacing:10.700800pt;}
.ws27_c00046{word-spacing:10.713600pt;}
.ws34_c00046{word-spacing:11.360000pt;}
.ws35_c00046{word-spacing:11.366400pt;}
.ws28_c00046{word-spacing:11.372800pt;}
.ws29_c00046{word-spacing:11.475200pt;}
.ws30_c00046{word-spacing:11.955200pt;}
.ws31_c00046{word-spacing:11.993600pt;}
.ws15_c00046{word-spacing:12.960000pt;}
.ws16_c00046{word-spacing:12.966400pt;}
.ws14_c00046{word-spacing:15.539200pt;}
.ws20_c00046{word-spacing:20.300800pt;}
.wse_c00046{word-spacing:20.332800pt;}
.ws1f_c00046{word-spacing:20.345600pt;}
.ws1d_c00046{word-spacing:20.633600pt;}
.ws1e_c00046{word-spacing:20.652800pt;}
.wsc_c00046{word-spacing:23.449600pt;}
.wsd_c00046{word-spacing:23.532800pt;}
.ws9_c00046{word-spacing:48.505600pt;}
._0_c00046{width:1.139200pt;}
.fs0_c00046{font-size:64.000000pt;}
.y0_c00046{bottom:0.000000pt;}
.y2_c00046{bottom:41.627067pt;}
.y1_c00046{bottom:60.027067pt;}
.y20_c00046{bottom:167.227067pt;}
.y1f_c00046{bottom:194.827067pt;}
.y1e_c00046{bottom:222.427067pt;}
.y1d_c00046{bottom:250.027067pt;}
.y1c_c00046{bottom:277.627067pt;}
.y1b_c00046{bottom:305.227067pt;}
.y1a_c00046{bottom:332.827067pt;}
.y19_c00046{bottom:360.347067pt;}
.y18_c00046{bottom:387.947067pt;}
.y17_c00046{bottom:415.547067pt;}
.y16_c00046{bottom:443.147067pt;}
.y15_c00046{bottom:470.747067pt;}
.y14_c00046{bottom:498.347067pt;}
.y13_c00046{bottom:525.947067pt;}
.y12_c00046{bottom:553.547067pt;}
.y11_c00046{bottom:581.147067pt;}
.y10_c00046{bottom:608.747067pt;}
.yf_c00046{bottom:636.347067pt;}
.ye_c00046{bottom:663.947067pt;}
.yd_c00046{bottom:691.547067pt;}
.yc_c00046{bottom:719.147067pt;}
.yb_c00046{bottom:746.747067pt;}
.ya_c00046{bottom:774.347067pt;}
.y9_c00046{bottom:801.947067pt;}
.y8_c00046{bottom:837.547067pt;}
.y7_c00046{bottom:865.147067pt;}
.y6_c00046{bottom:892.747067pt;}
.y5_c00046{bottom:920.347067pt;}
.y4_c00046{bottom:947.947067pt;}
.y3_c00046{bottom:975.547067pt;}
.h1_c00046{height:56.156250pt;}
.h2_c00046{height:57.375000pt;}
.h3_c00046{height:66.750000pt;}
.h0_c00046{height:1122.666667pt;}
.w1_c00046{width:793.333333pt;}
.w0_c00046{width:793.626667pt;}
.x0_c00046{left:0.000000pt;}
.x2_c00046{left:151.200000pt;}
.x1_c00046{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_50fc4695d24231334a89b187.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.093262;font-style:normal;font-weight:normal;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_b135611bf515700ecc0dacc2.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.106934;font-style:normal;font-weight:normal;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_096beff7c86d77e84b41760d.woff2')format("woff");}.ff3_c00047{font-family:ff3_c00047;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00047{letter-spacing:-0.079200px;}
.lsa_c00047{letter-spacing:-0.064800px;}
.ls4_c00047{letter-spacing:-0.057600px;}
.ls7_c00047{letter-spacing:-0.050400px;}
.ls1_c00047{letter-spacing:-0.043200px;}
.ls3_c00047{letter-spacing:-0.036000px;}
.ls6_c00047{letter-spacing:-0.028800px;}
.ls5_c00047{letter-spacing:-0.021600px;}
.ls8_c00047{letter-spacing:-0.014400px;}
.lsd_c00047{letter-spacing:-0.007200px;}
.ls0_c00047{letter-spacing:0.000000px;}
.ls2_c00047{letter-spacing:0.007200px;}
.lsc_c00047{letter-spacing:0.036000px;}
.lsb_c00047{letter-spacing:0.072000px;}
.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;}
}
.ws27_c00047{word-spacing:-2.354400px;}
.ws23_c00047{word-spacing:-2.325600px;}
.ws28_c00047{word-spacing:-2.318400px;}
.wsc_c00047{word-spacing:-2.001600px;}
.ws22_c00047{word-spacing:-1.958400px;}
.wsb_c00047{word-spacing:-1.893600px;}
.ws11_c00047{word-spacing:-1.288800px;}
.wsf_c00047{word-spacing:-1.260000px;}
.ws31_c00047{word-spacing:-1.231200px;}
.ws10_c00047{word-spacing:-1.108800px;}
.ws2f_c00047{word-spacing:-0.885600px;}
.ws30_c00047{word-spacing:-0.871200px;}
.ws12_c00047{word-spacing:-0.172800px;}
.ws13_c00047{word-spacing:-0.158400px;}
.ws0_c00047{word-spacing:0.000000px;}
.ws2a_c00047{word-spacing:0.165600px;}
.ws1_c00047{word-spacing:0.561600px;}
.ws6_c00047{word-spacing:2.707200px;}
.ws5_c00047{word-spacing:2.736000px;}
.ws15_c00047{word-spacing:3.081600px;}
.ws14_c00047{word-spacing:3.096000px;}
.ws16_c00047{word-spacing:4.082400px;}
.ws17_c00047{word-spacing:4.111200px;}
.ws1e_c00047{word-spacing:6.314400px;}
.ws1f_c00047{word-spacing:6.343200px;}
.ws1c_c00047{word-spacing:6.660000px;}
.ws1d_c00047{word-spacing:6.681600px;}
.ws2b_c00047{word-spacing:7.048800px;}
.ws26_c00047{word-spacing:7.401600px;}
.ws2c_c00047{word-spacing:8.121600px;}
.ws2d_c00047{word-spacing:9.180000px;}
.ws2e_c00047{word-spacing:9.187200px;}
.wsd_c00047{word-spacing:9.900000px;}
.wse_c00047{word-spacing:9.928800px;}
.ws4_c00047{word-spacing:12.060000px;}
.ws18_c00047{word-spacing:14.954400px;}
.wsa_c00047{word-spacing:14.961600px;}
.ws19_c00047{word-spacing:15.004800px;}
.ws21_c00047{word-spacing:15.278400px;}
.ws20_c00047{word-spacing:15.321600px;}
.ws7_c00047{word-spacing:21.376800px;}
.ws8_c00047{word-spacing:21.434400px;}
.ws29_c00047{word-spacing:22.161600px;}
.ws32_c00047{word-spacing:22.838400px;}
.ws33_c00047{word-spacing:22.852800px;}
.ws9_c00047{word-spacing:23.572800px;}
.ws3_c00047{word-spacing:31.838400px;}
.ws2_c00047{word-spacing:31.874400px;}
.ws1b_c00047{word-spacing:35.092800px;}
.ws1a_c00047{word-spacing:35.107200px;}
.ws25_c00047{word-spacing:53.467200px;}
.ws24_c00047{word-spacing:53.481600px;}
._0_c00047{width:1.116000px;}
.fc0_c00047{color:rgb(0,0,0);}
.fs0_c00047{font-size:72.000000px;}
.y0_c00047{bottom:0.000000px;}
.y2_c00047{bottom:46.830450px;}
.y1_c00047{bottom:67.530450px;}
.y22_c00047{bottom:150.780450px;}
.y21_c00047{bottom:171.480450px;}
.y20_c00047{bottom:192.180450px;}
.y1f_c00047{bottom:212.880450px;}
.y1e_c00047{bottom:233.580450px;}
.y1d_c00047{bottom:254.280450px;}
.y1c_c00047{bottom:303.330450px;}
.y1b_c00047{bottom:334.380450px;}
.y1a_c00047{bottom:365.430450px;}
.y19_c00047{bottom:396.390450px;}
.y18_c00047{bottom:427.440450px;}
.y17_c00047{bottom:467.490450px;}
.y16_c00047{bottom:498.540450px;}
.y15_c00047{bottom:529.590450px;}
.y14_c00047{bottom:560.640450px;}
.y13_c00047{bottom:591.690450px;}
.y12_c00047{bottom:622.740450px;}
.y11_c00047{bottom:653.790450px;}
.y10_c00047{bottom:684.840450px;}
.yf_c00047{bottom:715.890450px;}
.ye_c00047{bottom:746.940450px;}
.yd_c00047{bottom:777.990450px;}
.yc_c00047{bottom:809.040450px;}
.yb_c00047{bottom:840.090450px;}
.ya_c00047{bottom:871.140450px;}
.y9_c00047{bottom:902.190450px;}
.y8_c00047{bottom:933.240450px;}
.y7_c00047{bottom:964.290450px;}
.y6_c00047{bottom:995.340450px;}
.y5_c00047{bottom:1026.390450px;}
.y4_c00047{bottom:1066.440450px;}
.y3_c00047{bottom:1097.490450px;}
.h1_c00047{height:63.175781px;}
.h2_c00047{height:64.546875px;}
.h3_c00047{height:75.093750px;}
.h0_c00047{height:1263.000000px;}
.w1_c00047{width:892.500000px;}
.w0_c00047{width:892.830000px;}
.x0_c00047{left:0.000000px;}
.x2_c00047{left:127.620000px;}
.x3_c00047{left:148.950000px;}
.x1_c00047{left:704.880000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls9_c00047{letter-spacing:-0.070400pt;}
.lsa_c00047{letter-spacing:-0.057600pt;}
.ls4_c00047{letter-spacing:-0.051200pt;}
.ls7_c00047{letter-spacing:-0.044800pt;}
.ls1_c00047{letter-spacing:-0.038400pt;}
.ls3_c00047{letter-spacing:-0.032000pt;}
.ls6_c00047{letter-spacing:-0.025600pt;}
.ls5_c00047{letter-spacing:-0.019200pt;}
.ls8_c00047{letter-spacing:-0.012800pt;}
.lsd_c00047{letter-spacing:-0.006400pt;}
.ls0_c00047{letter-spacing:0.000000pt;}
.ls2_c00047{letter-spacing:0.006400pt;}
.lsc_c00047{letter-spacing:0.032000pt;}
.lsb_c00047{letter-spacing:0.064000pt;}
.ws27_c00047{word-spacing:-2.092800pt;}
.ws23_c00047{word-spacing:-2.067200pt;}
.ws28_c00047{word-spacing:-2.060800pt;}
.wsc_c00047{word-spacing:-1.779200pt;}
.ws22_c00047{word-spacing:-1.740800pt;}
.wsb_c00047{word-spacing:-1.683200pt;}
.ws11_c00047{word-spacing:-1.145600pt;}
.wsf_c00047{word-spacing:-1.120000pt;}
.ws31_c00047{word-spacing:-1.094400pt;}
.ws10_c00047{word-spacing:-0.985600pt;}
.ws2f_c00047{word-spacing:-0.787200pt;}
.ws30_c00047{word-spacing:-0.774400pt;}
.ws12_c00047{word-spacing:-0.153600pt;}
.ws13_c00047{word-spacing:-0.140800pt;}
.ws0_c00047{word-spacing:0.000000pt;}
.ws2a_c00047{word-spacing:0.147200pt;}
.ws1_c00047{word-spacing:0.499200pt;}
.ws6_c00047{word-spacing:2.406400pt;}
.ws5_c00047{word-spacing:2.432000pt;}
.ws15_c00047{word-spacing:2.739200pt;}
.ws14_c00047{word-spacing:2.752000pt;}
.ws16_c00047{word-spacing:3.628800pt;}
.ws17_c00047{word-spacing:3.654400pt;}
.ws1e_c00047{word-spacing:5.612800pt;}
.ws1f_c00047{word-spacing:5.638400pt;}
.ws1c_c00047{word-spacing:5.920000pt;}
.ws1d_c00047{word-spacing:5.939200pt;}
.ws2b_c00047{word-spacing:6.265600pt;}
.ws26_c00047{word-spacing:6.579200pt;}
.ws2c_c00047{word-spacing:7.219200pt;}
.ws2d_c00047{word-spacing:8.160000pt;}
.ws2e_c00047{word-spacing:8.166400pt;}
.wsd_c00047{word-spacing:8.800000pt;}
.wse_c00047{word-spacing:8.825600pt;}
.ws4_c00047{word-spacing:10.720000pt;}
.ws18_c00047{word-spacing:13.292800pt;}
.wsa_c00047{word-spacing:13.299200pt;}
.ws19_c00047{word-spacing:13.337600pt;}
.ws21_c00047{word-spacing:13.580800pt;}
.ws20_c00047{word-spacing:13.619200pt;}
.ws7_c00047{word-spacing:19.001600pt;}
.ws8_c00047{word-spacing:19.052800pt;}
.ws29_c00047{word-spacing:19.699200pt;}
.ws32_c00047{word-spacing:20.300800pt;}
.ws33_c00047{word-spacing:20.313600pt;}
.ws9_c00047{word-spacing:20.953600pt;}
.ws3_c00047{word-spacing:28.300800pt;}
.ws2_c00047{word-spacing:28.332800pt;}
.ws1b_c00047{word-spacing:31.193600pt;}
.ws1a_c00047{word-spacing:31.206400pt;}
.ws25_c00047{word-spacing:47.526400pt;}
.ws24_c00047{word-spacing:47.539200pt;}
._0_c00047{width:0.992000pt;}
.fs0_c00047{font-size:64.000000pt;}
.y0_c00047{bottom:0.000000pt;}
.y2_c00047{bottom:41.627067pt;}
.y1_c00047{bottom:60.027067pt;}
.y22_c00047{bottom:134.027067pt;}
.y21_c00047{bottom:152.427067pt;}
.y20_c00047{bottom:170.827067pt;}
.y1f_c00047{bottom:189.227067pt;}
.y1e_c00047{bottom:207.627067pt;}
.y1d_c00047{bottom:226.027067pt;}
.y1c_c00047{bottom:269.627067pt;}
.y1b_c00047{bottom:297.227067pt;}
.y1a_c00047{bottom:324.827067pt;}
.y19_c00047{bottom:352.347067pt;}
.y18_c00047{bottom:379.947067pt;}
.y17_c00047{bottom:415.547067pt;}
.y16_c00047{bottom:443.147067pt;}
.y15_c00047{bottom:470.747067pt;}
.y14_c00047{bottom:498.347067pt;}
.y13_c00047{bottom:525.947067pt;}
.y12_c00047{bottom:553.547067pt;}
.y11_c00047{bottom:581.147067pt;}
.y10_c00047{bottom:608.747067pt;}
.yf_c00047{bottom:636.347067pt;}
.ye_c00047{bottom:663.947067pt;}
.yd_c00047{bottom:691.547067pt;}
.yc_c00047{bottom:719.147067pt;}
.yb_c00047{bottom:746.747067pt;}
.ya_c00047{bottom:774.347067pt;}
.y9_c00047{bottom:801.947067pt;}
.y8_c00047{bottom:829.547067pt;}
.y7_c00047{bottom:857.147067pt;}
.y6_c00047{bottom:884.747067pt;}
.y5_c00047{bottom:912.347067pt;}
.y4_c00047{bottom:947.947067pt;}
.y3_c00047{bottom:975.547067pt;}
.h1_c00047{height:56.156250pt;}
.h2_c00047{height:57.375000pt;}
.h3_c00047{height:66.750000pt;}
.h0_c00047{height:1122.666667pt;}
.w1_c00047{width:793.333333pt;}
.w0_c00047{width:793.626667pt;}
.x0_c00047{left:0.000000pt;}
.x2_c00047{left:113.440000pt;}
.x3_c00047{left:132.400000pt;}
.x1_c00047{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f30e541856731864b0bb57bf.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.093262;font-style:normal;font-weight:normal;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_d36a9d2735ffd14cb955cc7e.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls2_c00048{letter-spacing:-0.079200px;}
.ls1_c00048{letter-spacing:-0.064800px;}
.ls4_c00048{letter-spacing:-0.043200px;}
.ls3_c00048{letter-spacing:-0.007200px;}
.ls0_c00048{letter-spacing:0.000000px;}
.ls5_c00048{letter-spacing:843.998400px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00048{word-spacing:-2.707200px;}
.ws2_c00048{word-spacing:-2.692800px;}
.ws0_c00048{word-spacing:0.000000px;}
.ws8_c00048{word-spacing:0.064800px;}
.ws6_c00048{word-spacing:0.921600px;}
.ws7_c00048{word-spacing:0.928800px;}
.ws3_c00048{word-spacing:24.350400px;}
.ws4_c00048{word-spacing:24.372000px;}
.ws5_c00048{word-spacing:26.121600px;}
._0_c00048{width:1.015200px;}
.fc0_c00048{color:rgb(0,0,0);}
.fs0_c00048{font-size:72.000000px;}
.y0_c00048{bottom:0.000000px;}
.y2_c00048{bottom:46.830450px;}
.y1_c00048{bottom:67.530450px;}
.ya_c00048{bottom:898.590450px;}
.y9_c00048{bottom:937.290450px;}
.y8_c00048{bottom:975.990450px;}
.y7_c00048{bottom:1014.690450px;}
.y6_c00048{bottom:1035.390450px;}
.y5_c00048{bottom:1056.090450px;}
.y4_c00048{bottom:1076.790450px;}
.y3_c00048{bottom:1097.490450px;}
.h1_c00048{height:63.175781px;}
.h2_c00048{height:64.546875px;}
.h0_c00048{height:1263.000000px;}
.w1_c00048{width:892.500000px;}
.w0_c00048{width:892.830000px;}
.x0_c00048{left:0.000000px;}
.x2_c00048{left:170.100000px;}
.x3_c00048{left:191.430000px;}
.x1_c00048{left:747.360000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls2_c00048{letter-spacing:-0.070400pt;}
.ls1_c00048{letter-spacing:-0.057600pt;}
.ls4_c00048{letter-spacing:-0.038400pt;}
.ls3_c00048{letter-spacing:-0.006400pt;}
.ls0_c00048{letter-spacing:0.000000pt;}
.ls5_c00048{letter-spacing:750.220800pt;}
.ws1_c00048{word-spacing:-2.406400pt;}
.ws2_c00048{word-spacing:-2.393600pt;}
.ws0_c00048{word-spacing:0.000000pt;}
.ws8_c00048{word-spacing:0.057600pt;}
.ws6_c00048{word-spacing:0.819200pt;}
.ws7_c00048{word-spacing:0.825600pt;}
.ws3_c00048{word-spacing:21.644800pt;}
.ws4_c00048{word-spacing:21.664000pt;}
.ws5_c00048{word-spacing:23.219200pt;}
._0_c00048{width:0.902400pt;}
.fs0_c00048{font-size:64.000000pt;}
.y0_c00048{bottom:0.000000pt;}
.y2_c00048{bottom:41.627067pt;}
.y1_c00048{bottom:60.027067pt;}
.ya_c00048{bottom:798.747067pt;}
.y9_c00048{bottom:833.147067pt;}
.y8_c00048{bottom:867.547067pt;}
.y7_c00048{bottom:901.947067pt;}
.y6_c00048{bottom:920.347067pt;}
.y5_c00048{bottom:938.747067pt;}
.y4_c00048{bottom:957.147067pt;}
.y3_c00048{bottom:975.547067pt;}
.h1_c00048{height:56.156250pt;}
.h2_c00048{height:57.375000pt;}
.h0_c00048{height:1122.666667pt;}
.w1_c00048{width:793.333333pt;}
.w0_c00048{width:793.626667pt;}
.x0_c00048{left:0.000000pt;}
.x2_c00048{left:151.200000pt;}
.x3_c00048{left:170.160000pt;}
.x1_c00048{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_80ebfc20056a7151c57b1ca2.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.106934;font-style: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;}
.ls0_c00049{letter-spacing:0.000000px;}
.sc__c00049{text-shadow:none;}
.sc0_c00049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00049{-webkit-text-stroke:0px transparent;}
.sc0_c00049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00049{word-spacing:0.000000px;}
.fc0_c00049{color:rgb(0,0,0);}
.fs0_c00049{font-size:72.000000px;}
.y0_c00049{bottom:0.000000px;}
.y2_c00049{bottom:46.830450px;}
.y1_c00049{bottom:67.530450px;}
.y3_c00049{bottom:1097.490450px;}
.h1_c00049{height:63.175781px;}
.h2_c00049{height:64.546875px;}
.h0_c00049{height:1263.000000px;}
.w1_c00049{width:892.500000px;}
.w0_c00049{width:892.830000px;}
.x0_c00049{left:0.000000px;}
.x2_c00049{left:127.620000px;}
.x3_c00049{left:148.950000px;}
.x1_c00049{left:704.880000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls0_c00049{letter-spacing:0.000000pt;}
.ws0_c00049{word-spacing:0.000000pt;}
.fs0_c00049{font-size:64.000000pt;}
.y0_c00049{bottom:0.000000pt;}
.y2_c00049{bottom:41.627067pt;}
.y1_c00049{bottom:60.027067pt;}
.y3_c00049{bottom:975.547067pt;}
.h1_c00049{height:56.156250pt;}
.h2_c00049{height:57.375000pt;}
.h0_c00049{height:1122.666667pt;}
.w1_c00049{width:793.333333pt;}
.w0_c00049{width:793.626667pt;}
.x0_c00049{left:0.000000pt;}
.x2_c00049{left:113.440000pt;}
.x3_c00049{left:132.400000pt;}
.x1_c00049{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c965afe0c432912fc86f94c7.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.093262;font-style:normal;font-weight:normal;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_12fc0e2978f041436ff9610f.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00050;src:url('chunks/assets/font_3c72beb30e9c176d04ecd84d.woff2')format("woff");}.ff3_c00050{font-family:ff3_c00050;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00050{vertical-align:0.000000px;}
.lsa_c00050{letter-spacing:-0.086400px;}
.lsd_c00050{letter-spacing:-0.072000px;}
.lsc_c00050{letter-spacing:-0.064800px;}
.ls5_c00050{letter-spacing:-0.057600px;}
.ls7_c00050{letter-spacing:-0.050400px;}
.ls3_c00050{letter-spacing:-0.043200px;}
.ls8_c00050{letter-spacing:-0.036000px;}
.ls9_c00050{letter-spacing:-0.028800px;}
.ls4_c00050{letter-spacing:-0.021600px;}
.lsb_c00050{letter-spacing:-0.014400px;}
.ls6_c00050{letter-spacing:-0.007200px;}
.ls1_c00050{letter-spacing:0.000000px;}
.ls0_c00050{letter-spacing:0.007200px;}
.lse_c00050{letter-spacing:0.036000px;}
.ls2_c00050{letter-spacing:0.100656px;}
.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;}
}
.wsf_c00050{word-spacing:-3.448800px;}
.ws10_c00050{word-spacing:-3.312000px;}
.ws11_c00050{word-spacing:-0.892800px;}
.ws12_c00050{word-spacing:-0.885600px;}
.ws14_c00050{word-spacing:-0.547200px;}
.ws13_c00050{word-spacing:-0.475200px;}
.ws0_c00050{word-spacing:0.000000px;}
.ws29_c00050{word-spacing:0.165600px;}
.ws16_c00050{word-spacing:0.180000px;}
.ws2e_c00050{word-spacing:0.187200px;}
.ws1b_c00050{word-spacing:0.194400px;}
.ws21_c00050{word-spacing:0.820800px;}
.ws20_c00050{word-spacing:0.950400px;}
.ws17_c00050{word-spacing:1.612800px;}
.ws18_c00050{word-spacing:1.692000px;}
.ws1a_c00050{word-spacing:2.736000px;}
.ws19_c00050{word-spacing:2.743200px;}
.ws28_c00050{word-spacing:4.168800px;}
.wsb_c00050{word-spacing:4.831200px;}
.wsa_c00050{word-spacing:4.874400px;}
.wse_c00050{word-spacing:5.234400px;}
.ws2c_c00050{word-spacing:7.761600px;}
.ws2d_c00050{word-spacing:7.797600px;}
.ws1e_c00050{word-spacing:8.474400px;}
.ws1f_c00050{word-spacing:8.503200px;}
.ws6_c00050{word-spacing:9.936000px;}
.ws8_c00050{word-spacing:10.245600px;}
.ws9_c00050{word-spacing:10.404000px;}
.ws7_c00050{word-spacing:10.476000px;}
.ws22_c00050{word-spacing:11.008800px;}
.ws23_c00050{word-spacing:11.016000px;}
.ws2b_c00050{word-spacing:12.844800px;}
.ws2a_c00050{word-spacing:12.859200px;}
.ws4_c00050{word-spacing:13.737600px;}
.ws5_c00050{word-spacing:13.896000px;}
.ws15_c00050{word-spacing:14.198400px;}
.ws3_c00050{word-spacing:18.828000px;}
.ws2_c00050{word-spacing:18.921600px;}
.ws1d_c00050{word-spacing:20.282400px;}
.ws1c_c00050{word-spacing:20.361600px;}
.ws26_c00050{word-spacing:21.060000px;}
.ws27_c00050{word-spacing:21.067200px;}
.wsc_c00050{word-spacing:23.580000px;}
.wsd_c00050{word-spacing:23.594400px;}
.ws25_c00050{word-spacing:25.358400px;}
.ws24_c00050{word-spacing:25.632000px;}
.ws1_c00050{word-spacing:153.357804px;}
._0_c00050{width:1.008000px;}
.fc0_c00050{color:rgb(0,0,0);}
.fs0_c00050{font-size:72.000000px;}
.fs1_c00050{font-size:83.880000px;}
.y0_c00050{bottom:0.000000px;}
.y2_c00050{bottom:46.830450px;}
.y1_c00050{bottom:67.530450px;}
.y20_c00050{bottom:176.070450px;}
.y1f_c00050{bottom:207.120450px;}
.y1e_c00050{bottom:238.170450px;}
.y1d_c00050{bottom:276.870450px;}
.y1c_c00050{bottom:315.570450px;}
.y1b_c00050{bottom:336.270450px;}
.y1a_c00050{bottom:356.970450px;}
.y19_c00050{bottom:377.670450px;}
.y18_c00050{bottom:398.370450px;}
.y17_c00050{bottom:447.420450px;}
.y16_c00050{bottom:478.470450px;}
.y15_c00050{bottom:509.520450px;}
.y14_c00050{bottom:540.570450px;}
.y13_c00050{bottom:580.620450px;}
.y12_c00050{bottom:611.670450px;}
.y11_c00050{bottom:642.720450px;}
.y10_c00050{bottom:682.770450px;}
.yf_c00050{bottom:713.820450px;}
.ye_c00050{bottom:744.870450px;}
.yd_c00050{bottom:775.920450px;}
.yc_c00050{bottom:806.970450px;}
.yb_c00050{bottom:838.020450px;}
.ya_c00050{bottom:869.070450px;}
.y9_c00050{bottom:900.120450px;}
.y8_c00050{bottom:931.170450px;}
.y7_c00050{bottom:962.220450px;}
.y6_c00050{bottom:993.270450px;}
.y5_c00050{bottom:1024.320450px;}
.y4_c00050{bottom:1064.370450px;}
.y3_c00050{bottom:1094.520450px;}
.h1_c00050{height:63.175781px;}
.h3_c00050{height:64.546875px;}
.h2_c00050{height:87.484219px;}
.h0_c00050{height:1263.000000px;}
.w1_c00050{width:892.500000px;}
.w0_c00050{width:892.830000px;}
.x0_c00050{left:0.000000px;}
.x2_c00050{left:170.100000px;}
.x4_c00050{left:191.430000px;}
.x3_c00050{left:197.100000px;}
.x1_c00050{left:747.360000px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.lsa_c00050{letter-spacing:-0.076800pt;}
.lsd_c00050{letter-spacing:-0.064000pt;}
.lsc_c00050{letter-spacing:-0.057600pt;}
.ls5_c00050{letter-spacing:-0.051200pt;}
.ls7_c00050{letter-spacing:-0.044800pt;}
.ls3_c00050{letter-spacing:-0.038400pt;}
.ls8_c00050{letter-spacing:-0.032000pt;}
.ls9_c00050{letter-spacing:-0.025600pt;}
.ls4_c00050{letter-spacing:-0.019200pt;}
.lsb_c00050{letter-spacing:-0.012800pt;}
.ls6_c00050{letter-spacing:-0.006400pt;}
.ls1_c00050{letter-spacing:0.000000pt;}
.ls0_c00050{letter-spacing:0.006400pt;}
.lse_c00050{letter-spacing:0.032000pt;}
.ls2_c00050{letter-spacing:0.089472pt;}
.wsf_c00050{word-spacing:-3.065600pt;}
.ws10_c00050{word-spacing:-2.944000pt;}
.ws11_c00050{word-spacing:-0.793600pt;}
.ws12_c00050{word-spacing:-0.787200pt;}
.ws14_c00050{word-spacing:-0.486400pt;}
.ws13_c00050{word-spacing:-0.422400pt;}
.ws0_c00050{word-spacing:0.000000pt;}
.ws29_c00050{word-spacing:0.147200pt;}
.ws16_c00050{word-spacing:0.160000pt;}
.ws2e_c00050{word-spacing:0.166400pt;}
.ws1b_c00050{word-spacing:0.172800pt;}
.ws21_c00050{word-spacing:0.729600pt;}
.ws20_c00050{word-spacing:0.844800pt;}
.ws17_c00050{word-spacing:1.433600pt;}
.ws18_c00050{word-spacing:1.504000pt;}
.ws1a_c00050{word-spacing:2.432000pt;}
.ws19_c00050{word-spacing:2.438400pt;}
.ws28_c00050{word-spacing:3.705600pt;}
.wsb_c00050{word-spacing:4.294400pt;}
.wsa_c00050{word-spacing:4.332800pt;}
.wse_c00050{word-spacing:4.652800pt;}
.ws2c_c00050{word-spacing:6.899200pt;}
.ws2d_c00050{word-spacing:6.931200pt;}
.ws1e_c00050{word-spacing:7.532800pt;}
.ws1f_c00050{word-spacing:7.558400pt;}
.ws6_c00050{word-spacing:8.832000pt;}
.ws8_c00050{word-spacing:9.107200pt;}
.ws9_c00050{word-spacing:9.248000pt;}
.ws7_c00050{word-spacing:9.312000pt;}
.ws22_c00050{word-spacing:9.785600pt;}
.ws23_c00050{word-spacing:9.792000pt;}
.ws2b_c00050{word-spacing:11.417600pt;}
.ws2a_c00050{word-spacing:11.430400pt;}
.ws4_c00050{word-spacing:12.211200pt;}
.ws5_c00050{word-spacing:12.352000pt;}
.ws15_c00050{word-spacing:12.620800pt;}
.ws3_c00050{word-spacing:16.736000pt;}
.ws2_c00050{word-spacing:16.819200pt;}
.ws1d_c00050{word-spacing:18.028800pt;}
.ws1c_c00050{word-spacing:18.099200pt;}
.ws26_c00050{word-spacing:18.720000pt;}
.ws27_c00050{word-spacing:18.726400pt;}
.wsc_c00050{word-spacing:20.960000pt;}
.wsd_c00050{word-spacing:20.972800pt;}
.ws25_c00050{word-spacing:22.540800pt;}
.ws24_c00050{word-spacing:22.784000pt;}
.ws1_c00050{word-spacing:136.318048pt;}
._0_c00050{width:0.896000pt;}
.fs0_c00050{font-size:64.000000pt;}
.fs1_c00050{font-size:74.560000pt;}
.y0_c00050{bottom:0.000000pt;}
.y2_c00050{bottom:41.627067pt;}
.y1_c00050{bottom:60.027067pt;}
.y20_c00050{bottom:156.507067pt;}
.y1f_c00050{bottom:184.107067pt;}
.y1e_c00050{bottom:211.707067pt;}
.y1d_c00050{bottom:246.107067pt;}
.y1c_c00050{bottom:280.507067pt;}
.y1b_c00050{bottom:298.907067pt;}
.y1a_c00050{bottom:317.307067pt;}
.y19_c00050{bottom:335.707067pt;}
.y18_c00050{bottom:354.107067pt;}
.y17_c00050{bottom:397.707067pt;}
.y16_c00050{bottom:425.307067pt;}
.y15_c00050{bottom:452.907067pt;}
.y14_c00050{bottom:480.507067pt;}
.y13_c00050{bottom:516.107067pt;}
.y12_c00050{bottom:543.707067pt;}
.y11_c00050{bottom:571.307067pt;}
.y10_c00050{bottom:606.907067pt;}
.yf_c00050{bottom:634.507067pt;}
.ye_c00050{bottom:662.107067pt;}
.yd_c00050{bottom:689.707067pt;}
.yc_c00050{bottom:717.307067pt;}
.yb_c00050{bottom:744.907067pt;}
.ya_c00050{bottom:772.507067pt;}
.y9_c00050{bottom:800.107067pt;}
.y8_c00050{bottom:827.707067pt;}
.y7_c00050{bottom:855.307067pt;}
.y6_c00050{bottom:882.907067pt;}
.y5_c00050{bottom:910.507067pt;}
.y4_c00050{bottom:946.107067pt;}
.y3_c00050{bottom:972.907067pt;}
.h1_c00050{height:56.156250pt;}
.h3_c00050{height:57.375000pt;}
.h2_c00050{height:77.763750pt;}
.h0_c00050{height:1122.666667pt;}
.w1_c00050{width:793.333333pt;}
.w0_c00050{width:793.626667pt;}
.x0_c00050{left:0.000000pt;}
.x2_c00050{left:151.200000pt;}
.x4_c00050{left:170.160000pt;}
.x3_c00050{left:175.200000pt;}
.x1_c00050{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8e45ef0e19c2e9bddcd10569.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.093262;font-style:normal;font-weight:normal;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_c14ee0397ae5d7c29551a606.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.106934;font-style: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;}
.lsc_c00051{letter-spacing:-0.072000px;}
.ls7_c00051{letter-spacing:-0.057600px;}
.ls9_c00051{letter-spacing:-0.050400px;}
.ls8_c00051{letter-spacing:-0.043200px;}
.ls5_c00051{letter-spacing:-0.036000px;}
.ls6_c00051{letter-spacing:-0.028800px;}
.ls3_c00051{letter-spacing:-0.021600px;}
.lsb_c00051{letter-spacing:-0.014400px;}
.ls4_c00051{letter-spacing:-0.007200px;}
.ls2_c00051{letter-spacing:0.000000px;}
.lsa_c00051{letter-spacing:0.007200px;}
.ls1_c00051{letter-spacing:0.014400px;}
.ls0_c00051{letter-spacing:0.043200px;}
.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;}
}
.wse_c00051{word-spacing:-4.521600px;}
.wsf_c00051{word-spacing:-4.500000px;}
.ws32_c00051{word-spacing:-3.571200px;}
.ws31_c00051{word-spacing:-3.312000px;}
.ws33_c00051{word-spacing:-3.297600px;}
.ws23_c00051{word-spacing:-2.692800px;}
.ws22_c00051{word-spacing:-2.678400px;}
.ws0_c00051{word-spacing:0.000000px;}
.ws27_c00051{word-spacing:0.079200px;}
.ws2a_c00051{word-spacing:0.122400px;}
.ws34_c00051{word-spacing:0.144000px;}
.ws26_c00051{word-spacing:0.180000px;}
.ws18_c00051{word-spacing:0.453600px;}
.ws1a_c00051{word-spacing:0.511200px;}
.ws19_c00051{word-spacing:0.568800px;}
.ws3_c00051{word-spacing:2.613600px;}
.ws2_c00051{word-spacing:2.707200px;}
.ws20_c00051{word-spacing:3.045600px;}
.ws28_c00051{word-spacing:3.074400px;}
.ws29_c00051{word-spacing:3.081600px;}
.ws21_c00051{word-spacing:3.124800px;}
.ws1_c00051{word-spacing:3.780000px;}
.ws2d_c00051{word-spacing:3.794400px;}
.ws2e_c00051{word-spacing:3.830400px;}
.wsc_c00051{word-spacing:4.500000px;}
.wsb_c00051{word-spacing:4.636800px;}
.ws1b_c00051{word-spacing:5.961600px;}
.ws1c_c00051{word-spacing:6.336000px;}
.ws1d_c00051{word-spacing:6.386400px;}
.wsd_c00051{word-spacing:8.128800px;}
.ws35_c00051{word-spacing:8.330400px;}
.ws36_c00051{word-spacing:8.539200px;}
.wsa_c00051{word-spacing:10.922400px;}
.ws9_c00051{word-spacing:11.016000px;}
.ws1f_c00051{word-spacing:11.311200px;}
.ws1e_c00051{word-spacing:11.354400px;}
.ws14_c00051{word-spacing:11.700000px;}
.ws16_c00051{word-spacing:11.714400px;}
.ws15_c00051{word-spacing:11.721600px;}
.ws17_c00051{word-spacing:11.736000px;}
.ws11_c00051{word-spacing:12.758400px;}
.ws10_c00051{word-spacing:12.801600px;}
.ws2f_c00051{word-spacing:13.874400px;}
.ws30_c00051{word-spacing:14.032800px;}
.ws7_c00051{word-spacing:20.685600px;}
.ws8_c00051{word-spacing:20.736000px;}
.ws6_c00051{word-spacing:21.427200px;}
.ws37_c00051{word-spacing:21.434400px;}
.ws5_c00051{word-spacing:29.318400px;}
.ws4_c00051{word-spacing:29.534400px;}
.ws25_c00051{word-spacing:45.108000px;}
.ws24_c00051{word-spacing:45.172800px;}
.ws12_c00051{word-spacing:52.106400px;}
.ws13_c00051{word-spacing:52.142400px;}
.ws2b_c00051{word-spacing:52.365600px;}
.ws2c_c00051{word-spacing:52.387200px;}
._0_c00051{width:1.656000px;}
.fc0_c00051{color:rgb(0,0,0);}
.fs0_c00051{font-size:72.000000px;}
.y0_c00051{bottom:0.000000px;}
.y2_c00051{bottom:46.830450px;}
.y1_c00051{bottom:67.530450px;}
.y21_c00051{bottom:165.180450px;}
.y20_c00051{bottom:196.230450px;}
.y1f_c00051{bottom:234.930450px;}
.y1e_c00051{bottom:273.630450px;}
.y1d_c00051{bottom:294.330450px;}
.y1c_c00051{bottom:315.030450px;}
.y1b_c00051{bottom:335.730450px;}
.y1a_c00051{bottom:356.430450px;}
.y19_c00051{bottom:405.390450px;}
.y18_c00051{bottom:436.440450px;}
.y17_c00051{bottom:476.490450px;}
.y16_c00051{bottom:507.540450px;}
.y15_c00051{bottom:538.590450px;}
.y14_c00051{bottom:569.640450px;}
.y13_c00051{bottom:600.690450px;}
.y12_c00051{bottom:631.740450px;}
.y11_c00051{bottom:662.790450px;}
.y10_c00051{bottom:693.840450px;}
.yf_c00051{bottom:724.890450px;}
.ye_c00051{bottom:755.940450px;}
.yd_c00051{bottom:786.990450px;}
.yc_c00051{bottom:818.040450px;}
.yb_c00051{bottom:849.090450px;}
.ya_c00051{bottom:880.140450px;}
.y9_c00051{bottom:911.190450px;}
.y8_c00051{bottom:942.240450px;}
.y7_c00051{bottom:973.290450px;}
.y6_c00051{bottom:1004.340450px;}
.y5_c00051{bottom:1035.390450px;}
.y4_c00051{bottom:1066.440450px;}
.y3_c00051{bottom:1097.490450px;}
.h1_c00051{height:63.175781px;}
.h2_c00051{height:64.546875px;}
.h0_c00051{height:1263.000000px;}
.w1_c00051{width:892.500000px;}
.w0_c00051{width:892.830000px;}
.x0_c00051{left:0.000000px;}
.x2_c00051{left:127.620000px;}
.x3_c00051{left:148.950000px;}
.x1_c00051{left:704.880000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.lsc_c00051{letter-spacing:-0.064000pt;}
.ls7_c00051{letter-spacing:-0.051200pt;}
.ls9_c00051{letter-spacing:-0.044800pt;}
.ls8_c00051{letter-spacing:-0.038400pt;}
.ls5_c00051{letter-spacing:-0.032000pt;}
.ls6_c00051{letter-spacing:-0.025600pt;}
.ls3_c00051{letter-spacing:-0.019200pt;}
.lsb_c00051{letter-spacing:-0.012800pt;}
.ls4_c00051{letter-spacing:-0.006400pt;}
.ls2_c00051{letter-spacing:0.000000pt;}
.lsa_c00051{letter-spacing:0.006400pt;}
.ls1_c00051{letter-spacing:0.012800pt;}
.ls0_c00051{letter-spacing:0.038400pt;}
.wse_c00051{word-spacing:-4.019200pt;}
.wsf_c00051{word-spacing:-4.000000pt;}
.ws32_c00051{word-spacing:-3.174400pt;}
.ws31_c00051{word-spacing:-2.944000pt;}
.ws33_c00051{word-spacing:-2.931200pt;}
.ws23_c00051{word-spacing:-2.393600pt;}
.ws22_c00051{word-spacing:-2.380800pt;}
.ws0_c00051{word-spacing:0.000000pt;}
.ws27_c00051{word-spacing:0.070400pt;}
.ws2a_c00051{word-spacing:0.108800pt;}
.ws34_c00051{word-spacing:0.128000pt;}
.ws26_c00051{word-spacing:0.160000pt;}
.ws18_c00051{word-spacing:0.403200pt;}
.ws1a_c00051{word-spacing:0.454400pt;}
.ws19_c00051{word-spacing:0.505600pt;}
.ws3_c00051{word-spacing:2.323200pt;}
.ws2_c00051{word-spacing:2.406400pt;}
.ws20_c00051{word-spacing:2.707200pt;}
.ws28_c00051{word-spacing:2.732800pt;}
.ws29_c00051{word-spacing:2.739200pt;}
.ws21_c00051{word-spacing:2.777600pt;}
.ws1_c00051{word-spacing:3.360000pt;}
.ws2d_c00051{word-spacing:3.372800pt;}
.ws2e_c00051{word-spacing:3.404800pt;}
.wsc_c00051{word-spacing:4.000000pt;}
.wsb_c00051{word-spacing:4.121600pt;}
.ws1b_c00051{word-spacing:5.299200pt;}
.ws1c_c00051{word-spacing:5.632000pt;}
.ws1d_c00051{word-spacing:5.676800pt;}
.wsd_c00051{word-spacing:7.225600pt;}
.ws35_c00051{word-spacing:7.404800pt;}
.ws36_c00051{word-spacing:7.590400pt;}
.wsa_c00051{word-spacing:9.708800pt;}
.ws9_c00051{word-spacing:9.792000pt;}
.ws1f_c00051{word-spacing:10.054400pt;}
.ws1e_c00051{word-spacing:10.092800pt;}
.ws14_c00051{word-spacing:10.400000pt;}
.ws16_c00051{word-spacing:10.412800pt;}
.ws15_c00051{word-spacing:10.419200pt;}
.ws17_c00051{word-spacing:10.432000pt;}
.ws11_c00051{word-spacing:11.340800pt;}
.ws10_c00051{word-spacing:11.379200pt;}
.ws2f_c00051{word-spacing:12.332800pt;}
.ws30_c00051{word-spacing:12.473600pt;}
.ws7_c00051{word-spacing:18.387200pt;}
.ws8_c00051{word-spacing:18.432000pt;}
.ws6_c00051{word-spacing:19.046400pt;}
.ws37_c00051{word-spacing:19.052800pt;}
.ws5_c00051{word-spacing:26.060800pt;}
.ws4_c00051{word-spacing:26.252800pt;}
.ws25_c00051{word-spacing:40.096000pt;}
.ws24_c00051{word-spacing:40.153600pt;}
.ws12_c00051{word-spacing:46.316800pt;}
.ws13_c00051{word-spacing:46.348800pt;}
.ws2b_c00051{word-spacing:46.547200pt;}
.ws2c_c00051{word-spacing:46.566400pt;}
._0_c00051{width:1.472000pt;}
.fs0_c00051{font-size:64.000000pt;}
.y0_c00051{bottom:0.000000pt;}
.y2_c00051{bottom:41.627067pt;}
.y1_c00051{bottom:60.027067pt;}
.y21_c00051{bottom:146.827067pt;}
.y20_c00051{bottom:174.427067pt;}
.y1f_c00051{bottom:208.827067pt;}
.y1e_c00051{bottom:243.227067pt;}
.y1d_c00051{bottom:261.627067pt;}
.y1c_c00051{bottom:280.027067pt;}
.y1b_c00051{bottom:298.427067pt;}
.y1a_c00051{bottom:316.827067pt;}
.y19_c00051{bottom:360.347067pt;}
.y18_c00051{bottom:387.947067pt;}
.y17_c00051{bottom:423.547067pt;}
.y16_c00051{bottom:451.147067pt;}
.y15_c00051{bottom:478.747067pt;}
.y14_c00051{bottom:506.347067pt;}
.y13_c00051{bottom:533.947067pt;}
.y12_c00051{bottom:561.547067pt;}
.y11_c00051{bottom:589.147067pt;}
.y10_c00051{bottom:616.747067pt;}
.yf_c00051{bottom:644.347067pt;}
.ye_c00051{bottom:671.947067pt;}
.yd_c00051{bottom:699.547067pt;}
.yc_c00051{bottom:727.147067pt;}
.yb_c00051{bottom:754.747067pt;}
.ya_c00051{bottom:782.347067pt;}
.y9_c00051{bottom:809.947067pt;}
.y8_c00051{bottom:837.547067pt;}
.y7_c00051{bottom:865.147067pt;}
.y6_c00051{bottom:892.747067pt;}
.y5_c00051{bottom:920.347067pt;}
.y4_c00051{bottom:947.947067pt;}
.y3_c00051{bottom:975.547067pt;}
.h1_c00051{height:56.156250pt;}
.h2_c00051{height:57.375000pt;}
.h0_c00051{height:1122.666667pt;}
.w1_c00051{width:793.333333pt;}
.w0_c00051{width:793.626667pt;}
.x0_c00051{left:0.000000pt;}
.x2_c00051{left:113.440000pt;}
.x3_c00051{left:132.400000pt;}
.x1_c00051{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4bca870a8ea913c43c2f49c8.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.093262;font-style:normal;font-weight:normal;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_3cdc3216841ff1626356739b.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.106934;font-style:normal;font-weight:normal;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_845c59005bfd7f929a972203.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.ls6_c00052{letter-spacing:-0.079200px;}
.lsc_c00052{letter-spacing:-0.072000px;}
.ls5_c00052{letter-spacing:-0.064800px;}
.lsd_c00052{letter-spacing:-0.057600px;}
.lsa_c00052{letter-spacing:-0.050400px;}
.lsb_c00052{letter-spacing:-0.043200px;}
.ls7_c00052{letter-spacing:-0.036000px;}
.ls2_c00052{letter-spacing:-0.028800px;}
.ls4_c00052{letter-spacing:-0.021600px;}
.ls3_c00052{letter-spacing:-0.014400px;}
.ls9_c00052{letter-spacing:-0.007200px;}
.ls1_c00052{letter-spacing:0.000000px;}
.lse_c00052{letter-spacing:0.007200px;}
.ls0_c00052{letter-spacing:0.014400px;}
.ls8_c00052{letter-spacing:0.151200px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00052{word-spacing:-20.030400px;}
.wsa_c00052{word-spacing:-4.492800px;}
.ws8_c00052{word-spacing:-4.456800px;}
.ws9_c00052{word-spacing:-4.442400px;}
.ws33_c00052{word-spacing:-3.758400px;}
.ws34_c00052{word-spacing:-3.751200px;}
.ws29_c00052{word-spacing:-3.729600px;}
.ws2f_c00052{word-spacing:-3.132000px;}
.ws30_c00052{word-spacing:-3.038400px;}
.ws19_c00052{word-spacing:-2.700000px;}
.ws18_c00052{word-spacing:-2.613600px;}
.ws10_c00052{word-spacing:-1.994400px;}
.ws12_c00052{word-spacing:-1.987200px;}
.ws11_c00052{word-spacing:-1.828800px;}
.ws1_c00052{word-spacing:0.000000px;}
.ws22_c00052{word-spacing:0.158400px;}
.ws4_c00052{word-spacing:0.172800px;}
.ws2a_c00052{word-spacing:0.180000px;}
.ws25_c00052{word-spacing:0.187200px;}
.ws28_c00052{word-spacing:1.987200px;}
.ws7_c00052{word-spacing:2.224800px;}
.ws6_c00052{word-spacing:2.260800px;}
.ws2d_c00052{word-spacing:4.147200px;}
.ws2e_c00052{word-spacing:4.154400px;}
.ws21_c00052{word-spacing:4.492800px;}
.ws20_c00052{word-spacing:4.500000px;}
.wsf_c00052{word-spacing:5.616000px;}
.ws27_c00052{word-spacing:7.682400px;}
.ws26_c00052{word-spacing:7.761600px;}
.ws2b_c00052{word-spacing:8.092800px;}
.ws2c_c00052{word-spacing:8.114400px;}
.ws1e_c00052{word-spacing:8.841600px;}
.ws1f_c00052{word-spacing:8.964000px;}
.ws16_c00052{word-spacing:11.714400px;}
.ws17_c00052{word-spacing:11.750400px;}
.ws5_c00052{word-spacing:14.580000px;}
.ws1d_c00052{word-spacing:15.220800px;}
.ws1b_c00052{word-spacing:15.292800px;}
.ws1a_c00052{word-spacing:15.307200px;}
.ws1c_c00052{word-spacing:15.364800px;}
.ws3_c00052{word-spacing:27.540000px;}
.ws2_c00052{word-spacing:27.547200px;}
.ws23_c00052{word-spacing:28.260000px;}
.ws24_c00052{word-spacing:28.303200px;}
.wse_c00052{word-spacing:28.598400px;}
.wsd_c00052{word-spacing:28.634400px;}
.ws32_c00052{word-spacing:46.231200px;}
.ws31_c00052{word-spacing:46.382400px;}
.wsc_c00052{word-spacing:47.512800px;}
.wsb_c00052{word-spacing:47.714400px;}
.ws14_c00052{word-spacing:57.427200px;}
.ws13_c00052{word-spacing:57.448800px;}
.ws15_c00052{word-spacing:60.307200px;}
._0_c00052{width:1.029600px;}
._1_c00052{width:4.550400px;}
.fc0_c00052{color:rgb(0,0,0);}
.fs0_c00052{font-size:72.000000px;}
.y0_c00052{bottom:0.000000px;}
.y2_c00052{bottom:46.830450px;}
.y1_c00052{bottom:67.530450px;}
.y20_c00052{bottom:176.880450px;}
.y1f_c00052{bottom:207.930450px;}
.y1e_c00052{bottom:238.980450px;}
.y1d_c00052{bottom:270.030450px;}
.y1c_c00052{bottom:301.080450px;}
.y1b_c00052{bottom:339.690450px;}
.y1a_c00052{bottom:378.390450px;}
.y19_c00052{bottom:399.090450px;}
.y18_c00052{bottom:419.790450px;}
.y17_c00052{bottom:440.490450px;}
.y16_c00052{bottom:489.540450px;}
.y15_c00052{bottom:520.590450px;}
.y14_c00052{bottom:560.640450px;}
.y13_c00052{bottom:591.690450px;}
.y12_c00052{bottom:622.740450px;}
.y11_c00052{bottom:653.790450px;}
.y10_c00052{bottom:684.840450px;}
.yf_c00052{bottom:715.890450px;}
.ye_c00052{bottom:746.940450px;}
.yd_c00052{bottom:777.990450px;}
.yc_c00052{bottom:809.040450px;}
.yb_c00052{bottom:840.090450px;}
.ya_c00052{bottom:871.140450px;}
.y9_c00052{bottom:902.190450px;}
.y8_c00052{bottom:933.240450px;}
.y7_c00052{bottom:964.290450px;}
.y6_c00052{bottom:995.340450px;}
.y5_c00052{bottom:1026.390450px;}
.y4_c00052{bottom:1066.440450px;}
.y3_c00052{bottom:1097.490450px;}
.h1_c00052{height:63.175781px;}
.h2_c00052{height:64.546875px;}
.h3_c00052{height:75.093750px;}
.h0_c00052{height:1263.000000px;}
.w1_c00052{width:892.500000px;}
.w0_c00052{width:892.830000px;}
.x0_c00052{left:0.000000px;}
.x2_c00052{left:170.100000px;}
.x3_c00052{left:191.430000px;}
.x1_c00052{left:747.360000px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls6_c00052{letter-spacing:-0.070400pt;}
.lsc_c00052{letter-spacing:-0.064000pt;}
.ls5_c00052{letter-spacing:-0.057600pt;}
.lsd_c00052{letter-spacing:-0.051200pt;}
.lsa_c00052{letter-spacing:-0.044800pt;}
.lsb_c00052{letter-spacing:-0.038400pt;}
.ls7_c00052{letter-spacing:-0.032000pt;}
.ls2_c00052{letter-spacing:-0.025600pt;}
.ls4_c00052{letter-spacing:-0.019200pt;}
.ls3_c00052{letter-spacing:-0.012800pt;}
.ls9_c00052{letter-spacing:-0.006400pt;}
.ls1_c00052{letter-spacing:0.000000pt;}
.lse_c00052{letter-spacing:0.006400pt;}
.ls0_c00052{letter-spacing:0.012800pt;}
.ls8_c00052{letter-spacing:0.134400pt;}
.ws0_c00052{word-spacing:-17.804800pt;}
.wsa_c00052{word-spacing:-3.993600pt;}
.ws8_c00052{word-spacing:-3.961600pt;}
.ws9_c00052{word-spacing:-3.948800pt;}
.ws33_c00052{word-spacing:-3.340800pt;}
.ws34_c00052{word-spacing:-3.334400pt;}
.ws29_c00052{word-spacing:-3.315200pt;}
.ws2f_c00052{word-spacing:-2.784000pt;}
.ws30_c00052{word-spacing:-2.700800pt;}
.ws19_c00052{word-spacing:-2.400000pt;}
.ws18_c00052{word-spacing:-2.323200pt;}
.ws10_c00052{word-spacing:-1.772800pt;}
.ws12_c00052{word-spacing:-1.766400pt;}
.ws11_c00052{word-spacing:-1.625600pt;}
.ws1_c00052{word-spacing:0.000000pt;}
.ws22_c00052{word-spacing:0.140800pt;}
.ws4_c00052{word-spacing:0.153600pt;}
.ws2a_c00052{word-spacing:0.160000pt;}
.ws25_c00052{word-spacing:0.166400pt;}
.ws28_c00052{word-spacing:1.766400pt;}
.ws7_c00052{word-spacing:1.977600pt;}
.ws6_c00052{word-spacing:2.009600pt;}
.ws2d_c00052{word-spacing:3.686400pt;}
.ws2e_c00052{word-spacing:3.692800pt;}
.ws21_c00052{word-spacing:3.993600pt;}
.ws20_c00052{word-spacing:4.000000pt;}
.wsf_c00052{word-spacing:4.992000pt;}
.ws27_c00052{word-spacing:6.828800pt;}
.ws26_c00052{word-spacing:6.899200pt;}
.ws2b_c00052{word-spacing:7.193600pt;}
.ws2c_c00052{word-spacing:7.212800pt;}
.ws1e_c00052{word-spacing:7.859200pt;}
.ws1f_c00052{word-spacing:7.968000pt;}
.ws16_c00052{word-spacing:10.412800pt;}
.ws17_c00052{word-spacing:10.444800pt;}
.ws5_c00052{word-spacing:12.960000pt;}
.ws1d_c00052{word-spacing:13.529600pt;}
.ws1b_c00052{word-spacing:13.593600pt;}
.ws1a_c00052{word-spacing:13.606400pt;}
.ws1c_c00052{word-spacing:13.657600pt;}
.ws3_c00052{word-spacing:24.480000pt;}
.ws2_c00052{word-spacing:24.486400pt;}
.ws23_c00052{word-spacing:25.120000pt;}
.ws24_c00052{word-spacing:25.158400pt;}
.wse_c00052{word-spacing:25.420800pt;}
.wsd_c00052{word-spacing:25.452800pt;}
.ws32_c00052{word-spacing:41.094400pt;}
.ws31_c00052{word-spacing:41.228800pt;}
.wsc_c00052{word-spacing:42.233600pt;}
.wsb_c00052{word-spacing:42.412800pt;}
.ws14_c00052{word-spacing:51.046400pt;}
.ws13_c00052{word-spacing:51.065600pt;}
.ws15_c00052{word-spacing:53.606400pt;}
._0_c00052{width:0.915200pt;}
._1_c00052{width:4.044800pt;}
.fs0_c00052{font-size:64.000000pt;}
.y0_c00052{bottom:0.000000pt;}
.y2_c00052{bottom:41.627067pt;}
.y1_c00052{bottom:60.027067pt;}
.y20_c00052{bottom:157.227067pt;}
.y1f_c00052{bottom:184.827067pt;}
.y1e_c00052{bottom:212.427067pt;}
.y1d_c00052{bottom:240.027067pt;}
.y1c_c00052{bottom:267.627067pt;}
.y1b_c00052{bottom:301.947067pt;}
.y1a_c00052{bottom:336.347067pt;}
.y19_c00052{bottom:354.747067pt;}
.y18_c00052{bottom:373.147067pt;}
.y17_c00052{bottom:391.547067pt;}
.y16_c00052{bottom:435.147067pt;}
.y15_c00052{bottom:462.747067pt;}
.y14_c00052{bottom:498.347067pt;}
.y13_c00052{bottom:525.947067pt;}
.y12_c00052{bottom:553.547067pt;}
.y11_c00052{bottom:581.147067pt;}
.y10_c00052{bottom:608.747067pt;}
.yf_c00052{bottom:636.347067pt;}
.ye_c00052{bottom:663.947067pt;}
.yd_c00052{bottom:691.547067pt;}
.yc_c00052{bottom:719.147067pt;}
.yb_c00052{bottom:746.747067pt;}
.ya_c00052{bottom:774.347067pt;}
.y9_c00052{bottom:801.947067pt;}
.y8_c00052{bottom:829.547067pt;}
.y7_c00052{bottom:857.147067pt;}
.y6_c00052{bottom:884.747067pt;}
.y5_c00052{bottom:912.347067pt;}
.y4_c00052{bottom:947.947067pt;}
.y3_c00052{bottom:975.547067pt;}
.h1_c00052{height:56.156250pt;}
.h2_c00052{height:57.375000pt;}
.h3_c00052{height:66.750000pt;}
.h0_c00052{height:1122.666667pt;}
.w1_c00052{width:793.333333pt;}
.w0_c00052{width:793.626667pt;}
.x0_c00052{left:0.000000pt;}
.x2_c00052{left:151.200000pt;}
.x3_c00052{left:170.160000pt;}
.x1_c00052{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_03726848d7821000fb85a7b3.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.093262;font-style:normal;font-weight:normal;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_c42cdf70d6f778ac1972cd89.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.106934;font-style: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;}
.ls8_c00053{letter-spacing:-0.093600px;}
.lsb_c00053{letter-spacing:-0.079200px;}
.ls9_c00053{letter-spacing:-0.064800px;}
.lsa_c00053{letter-spacing:-0.057600px;}
.ls4_c00053{letter-spacing:-0.050400px;}
.ls2_c00053{letter-spacing:-0.043200px;}
.ls5_c00053{letter-spacing:-0.036000px;}
.ls6_c00053{letter-spacing:-0.028800px;}
.ls7_c00053{letter-spacing:-0.021600px;}
.ls3_c00053{letter-spacing:-0.014400px;}
.ls1_c00053{letter-spacing:-0.007200px;}
.ls0_c00053{letter-spacing:0.000000px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00053{word-spacing:-3.420000px;}
.ws15_c00053{word-spacing:-2.368800px;}
.ws14_c00053{word-spacing:-2.304000px;}
.wse_c00053{word-spacing:-1.627200px;}
.ws28_c00053{word-spacing:-1.548000px;}
.wsd_c00053{word-spacing:-1.533600px;}
.ws10_c00053{word-spacing:-0.554400px;}
.wsf_c00053{word-spacing:-0.511200px;}
.ws1a_c00053{word-spacing:-0.007200px;}
.ws0_c00053{word-spacing:0.000000px;}
.ws8_c00053{word-spacing:0.086400px;}
.ws11_c00053{word-spacing:0.115200px;}
.ws23_c00053{word-spacing:0.158400px;}
.ws12_c00053{word-spacing:0.172800px;}
.ws24_c00053{word-spacing:0.180000px;}
.ws7_c00053{word-spacing:0.187200px;}
.ws9_c00053{word-spacing:0.266400px;}
.ws25_c00053{word-spacing:0.928800px;}
.ws29_c00053{word-spacing:1.641600px;}
.ws2a_c00053{word-spacing:1.663200px;}
.ws2b_c00053{word-spacing:1.677600px;}
.ws1e_c00053{word-spacing:2.325600px;}
.ws1d_c00053{word-spacing:2.469600px;}
.ws1c_c00053{word-spacing:2.476800px;}
.ws30_c00053{word-spacing:2.692800px;}
.ws1_c00053{word-spacing:6.645600px;}
.ws2_c00053{word-spacing:6.681600px;}
.ws31_c00053{word-spacing:6.753600px;}
.ws16_c00053{word-spacing:7.279200px;}
.ws17_c00053{word-spacing:7.408800px;}
.ws18_c00053{word-spacing:7.437600px;}
.ws5_c00053{word-spacing:8.092800px;}
.ws6_c00053{word-spacing:8.114400px;}
.ws13_c00053{word-spacing:9.180000px;}
.ws27_c00053{word-spacing:10.980000px;}
.ws26_c00053{word-spacing:11.008800px;}
.ws19_c00053{word-spacing:11.361600px;}
.ws1b_c00053{word-spacing:11.368800px;}
.ws3_c00053{word-spacing:11.635200px;}
.wsb_c00053{word-spacing:11.714400px;}
.ws4_c00053{word-spacing:11.728800px;}
.wsc_c00053{word-spacing:11.772000px;}
.ws1f_c00053{word-spacing:14.536800px;}
.ws20_c00053{word-spacing:14.587200px;}
.ws2c_c00053{word-spacing:15.307200px;}
.ws2d_c00053{word-spacing:15.321600px;}
.ws21_c00053{word-spacing:21.794400px;}
.ws22_c00053{word-spacing:21.808800px;}
.ws2e_c00053{word-spacing:25.754400px;}
.ws2f_c00053{word-spacing:25.761600px;}
._1_c00053{margin-left:-1.008000px;}
._0_c00053{width:1.094400px;}
.fc0_c00053{color:rgb(0,0,0);}
.fs0_c00053{font-size:72.000000px;}
.y0_c00053{bottom:0.000000px;}
.y2_c00053{bottom:46.830450px;}
.y1_c00053{bottom:67.530450px;}
.y24_c00053{bottom:141.330450px;}
.y23_c00053{bottom:162.030450px;}
.y22_c00053{bottom:182.730450px;}
.y21_c00053{bottom:203.430450px;}
.y20_c00053{bottom:224.040450px;}
.y1f_c00053{bottom:244.740450px;}
.y1e_c00053{bottom:265.440450px;}
.y1d_c00053{bottom:286.140450px;}
.y1c_c00053{bottom:335.190450px;}
.y1b_c00053{bottom:373.890450px;}
.y1a_c00053{bottom:412.590450px;}
.y19_c00053{bottom:433.290450px;}
.y18_c00053{bottom:453.990450px;}
.y17_c00053{bottom:474.690450px;}
.y16_c00053{bottom:495.390450px;}
.y15_c00053{bottom:544.440450px;}
.y14_c00053{bottom:575.490450px;}
.y13_c00053{bottom:606.540450px;}
.y12_c00053{bottom:637.590450px;}
.y11_c00053{bottom:668.640450px;}
.y10_c00053{bottom:707.340450px;}
.yf_c00053{bottom:746.040450px;}
.ye_c00053{bottom:766.740450px;}
.yd_c00053{bottom:787.440450px;}
.yc_c00053{bottom:808.140450px;}
.yb_c00053{bottom:828.840450px;}
.ya_c00053{bottom:849.540450px;}
.y9_c00053{bottom:898.590450px;}
.y8_c00053{bottom:937.290450px;}
.y7_c00053{bottom:975.990450px;}
.y6_c00053{bottom:996.690450px;}
.y5_c00053{bottom:1017.390450px;}
.y4_c00053{bottom:1066.440450px;}
.y3_c00053{bottom:1097.490450px;}
.h1_c00053{height:63.175781px;}
.h2_c00053{height:64.546875px;}
.h0_c00053{height:1263.000000px;}
.w1_c00053{width:892.500000px;}
.w0_c00053{width:892.830000px;}
.x0_c00053{left:0.000000px;}
.x2_c00053{left:127.620000px;}
.x3_c00053{left:148.950000px;}
.x1_c00053{left:704.880000px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls8_c00053{letter-spacing:-0.083200pt;}
.lsb_c00053{letter-spacing:-0.070400pt;}
.ls9_c00053{letter-spacing:-0.057600pt;}
.lsa_c00053{letter-spacing:-0.051200pt;}
.ls4_c00053{letter-spacing:-0.044800pt;}
.ls2_c00053{letter-spacing:-0.038400pt;}
.ls5_c00053{letter-spacing:-0.032000pt;}
.ls6_c00053{letter-spacing:-0.025600pt;}
.ls7_c00053{letter-spacing:-0.019200pt;}
.ls3_c00053{letter-spacing:-0.012800pt;}
.ls1_c00053{letter-spacing:-0.006400pt;}
.ls0_c00053{letter-spacing:0.000000pt;}
.wsa_c00053{word-spacing:-3.040000pt;}
.ws15_c00053{word-spacing:-2.105600pt;}
.ws14_c00053{word-spacing:-2.048000pt;}
.wse_c00053{word-spacing:-1.446400pt;}
.ws28_c00053{word-spacing:-1.376000pt;}
.wsd_c00053{word-spacing:-1.363200pt;}
.ws10_c00053{word-spacing:-0.492800pt;}
.wsf_c00053{word-spacing:-0.454400pt;}
.ws1a_c00053{word-spacing:-0.006400pt;}
.ws0_c00053{word-spacing:0.000000pt;}
.ws8_c00053{word-spacing:0.076800pt;}
.ws11_c00053{word-spacing:0.102400pt;}
.ws23_c00053{word-spacing:0.140800pt;}
.ws12_c00053{word-spacing:0.153600pt;}
.ws24_c00053{word-spacing:0.160000pt;}
.ws7_c00053{word-spacing:0.166400pt;}
.ws9_c00053{word-spacing:0.236800pt;}
.ws25_c00053{word-spacing:0.825600pt;}
.ws29_c00053{word-spacing:1.459200pt;}
.ws2a_c00053{word-spacing:1.478400pt;}
.ws2b_c00053{word-spacing:1.491200pt;}
.ws1e_c00053{word-spacing:2.067200pt;}
.ws1d_c00053{word-spacing:2.195200pt;}
.ws1c_c00053{word-spacing:2.201600pt;}
.ws30_c00053{word-spacing:2.393600pt;}
.ws1_c00053{word-spacing:5.907200pt;}
.ws2_c00053{word-spacing:5.939200pt;}
.ws31_c00053{word-spacing:6.003200pt;}
.ws16_c00053{word-spacing:6.470400pt;}
.ws17_c00053{word-spacing:6.585600pt;}
.ws18_c00053{word-spacing:6.611200pt;}
.ws5_c00053{word-spacing:7.193600pt;}
.ws6_c00053{word-spacing:7.212800pt;}
.ws13_c00053{word-spacing:8.160000pt;}
.ws27_c00053{word-spacing:9.760000pt;}
.ws26_c00053{word-spacing:9.785600pt;}
.ws19_c00053{word-spacing:10.099200pt;}
.ws1b_c00053{word-spacing:10.105600pt;}
.ws3_c00053{word-spacing:10.342400pt;}
.wsb_c00053{word-spacing:10.412800pt;}
.ws4_c00053{word-spacing:10.425600pt;}
.wsc_c00053{word-spacing:10.464000pt;}
.ws1f_c00053{word-spacing:12.921600pt;}
.ws20_c00053{word-spacing:12.966400pt;}
.ws2c_c00053{word-spacing:13.606400pt;}
.ws2d_c00053{word-spacing:13.619200pt;}
.ws21_c00053{word-spacing:19.372800pt;}
.ws22_c00053{word-spacing:19.385600pt;}
.ws2e_c00053{word-spacing:22.892800pt;}
.ws2f_c00053{word-spacing:22.899200pt;}
._1_c00053{margin-left:-0.896000pt;}
._0_c00053{width:0.972800pt;}
.fs0_c00053{font-size:64.000000pt;}
.y0_c00053{bottom:0.000000pt;}
.y2_c00053{bottom:41.627067pt;}
.y1_c00053{bottom:60.027067pt;}
.y24_c00053{bottom:125.627067pt;}
.y23_c00053{bottom:144.027067pt;}
.y22_c00053{bottom:162.427067pt;}
.y21_c00053{bottom:180.827067pt;}
.y20_c00053{bottom:199.147067pt;}
.y1f_c00053{bottom:217.547067pt;}
.y1e_c00053{bottom:235.947067pt;}
.y1d_c00053{bottom:254.347067pt;}
.y1c_c00053{bottom:297.947067pt;}
.y1b_c00053{bottom:332.347067pt;}
.y1a_c00053{bottom:366.747067pt;}
.y19_c00053{bottom:385.147067pt;}
.y18_c00053{bottom:403.547067pt;}
.y17_c00053{bottom:421.947067pt;}
.y16_c00053{bottom:440.347067pt;}
.y15_c00053{bottom:483.947067pt;}
.y14_c00053{bottom:511.547067pt;}
.y13_c00053{bottom:539.147067pt;}
.y12_c00053{bottom:566.747067pt;}
.y11_c00053{bottom:594.347067pt;}
.y10_c00053{bottom:628.747067pt;}
.yf_c00053{bottom:663.147067pt;}
.ye_c00053{bottom:681.547067pt;}
.yd_c00053{bottom:699.947067pt;}
.yc_c00053{bottom:718.347067pt;}
.yb_c00053{bottom:736.747067pt;}
.ya_c00053{bottom:755.147067pt;}
.y9_c00053{bottom:798.747067pt;}
.y8_c00053{bottom:833.147067pt;}
.y7_c00053{bottom:867.547067pt;}
.y6_c00053{bottom:885.947067pt;}
.y5_c00053{bottom:904.347067pt;}
.y4_c00053{bottom:947.947067pt;}
.y3_c00053{bottom:975.547067pt;}
.h1_c00053{height:56.156250pt;}
.h2_c00053{height:57.375000pt;}
.h0_c00053{height:1122.666667pt;}
.w1_c00053{width:793.333333pt;}
.w0_c00053{width:793.626667pt;}
.x0_c00053{left:0.000000pt;}
.x2_c00053{left:113.440000pt;}
.x3_c00053{left:132.400000pt;}
.x1_c00053{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_faef6a164de7157fcd8ae8eb.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.093262;font-style:normal;font-weight:normal;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_68ff8bdae80cec57c9331d7f.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.ls5_c00054{letter-spacing:-0.072000px;}
.ls6_c00054{letter-spacing:-0.064800px;}
.ls2_c00054{letter-spacing:-0.050400px;}
.ls9_c00054{letter-spacing:-0.043200px;}
.ls3_c00054{letter-spacing:-0.036000px;}
.ls4_c00054{letter-spacing:-0.028800px;}
.ls1_c00054{letter-spacing:-0.021600px;}
.ls7_c00054{letter-spacing:-0.014400px;}
.ls8_c00054{letter-spacing:-0.007200px;}
.ls0_c00054{letter-spacing:0.000000px;}
.lsa_c00054{letter-spacing:843.998400px;}
.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;}
}
.ws10_c00054{word-spacing:-3.038400px;}
.ws11_c00054{word-spacing:-3.016800px;}
.ws1_c00054{word-spacing:-1.555200px;}
.ws2_c00054{word-spacing:-1.533600px;}
.ws0_c00054{word-spacing:0.000000px;}
.ws16_c00054{word-spacing:0.172800px;}
.ws5_c00054{word-spacing:0.194400px;}
.ws15_c00054{word-spacing:0.900000px;}
.ws14_c00054{word-spacing:0.914400px;}
.wsa_c00054{word-spacing:3.772800px;}
.ws8_c00054{word-spacing:3.830400px;}
.ws9_c00054{word-spacing:3.909600px;}
.ws12_c00054{word-spacing:4.147200px;}
.ws3_c00054{word-spacing:4.154400px;}
.ws13_c00054{word-spacing:4.161600px;}
.ws4_c00054{word-spacing:4.168800px;}
.wsd_c00054{word-spacing:10.418400px;}
.wsf_c00054{word-spacing:10.627200px;}
.wse_c00054{word-spacing:10.756800px;}
.ws6_c00054{word-spacing:29.584800px;}
.wsb_c00054{word-spacing:29.685600px;}
.ws7_c00054{word-spacing:29.707200px;}
.wsc_c00054{word-spacing:29.714400px;}
._0_c00054{width:1.101600px;}
.fc0_c00054{color:rgb(0,0,0);}
.fs0_c00054{font-size:72.000000px;}
.y0_c00054{bottom:0.000000px;}
.y2_c00054{bottom:46.830450px;}
.y1_c00054{bottom:67.530450px;}
.y10_c00054{bottom:679.890450px;}
.yf_c00054{bottom:719.940450px;}
.ye_c00054{bottom:759.990450px;}
.yd_c00054{bottom:791.040450px;}
.yc_c00054{bottom:822.090450px;}
.yb_c00054{bottom:853.140450px;}
.ya_c00054{bottom:884.190450px;}
.y9_c00054{bottom:915.240450px;}
.y8_c00054{bottom:946.290450px;}
.y7_c00054{bottom:977.340450px;}
.y6_c00054{bottom:1017.390450px;}
.y5_c00054{bottom:1056.090450px;}
.y4_c00054{bottom:1076.790450px;}
.y3_c00054{bottom:1097.490450px;}
.h1_c00054{height:63.175781px;}
.h2_c00054{height:64.546875px;}
.h0_c00054{height:1263.000000px;}
.w1_c00054{width:892.500000px;}
.w0_c00054{width:892.830000px;}
.x0_c00054{left:0.000000px;}
.x2_c00054{left:170.100000px;}
.x3_c00054{left:191.430000px;}
.x1_c00054{left:747.360000px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls5_c00054{letter-spacing:-0.064000pt;}
.ls6_c00054{letter-spacing:-0.057600pt;}
.ls2_c00054{letter-spacing:-0.044800pt;}
.ls9_c00054{letter-spacing:-0.038400pt;}
.ls3_c00054{letter-spacing:-0.032000pt;}
.ls4_c00054{letter-spacing:-0.025600pt;}
.ls1_c00054{letter-spacing:-0.019200pt;}
.ls7_c00054{letter-spacing:-0.012800pt;}
.ls8_c00054{letter-spacing:-0.006400pt;}
.ls0_c00054{letter-spacing:0.000000pt;}
.lsa_c00054{letter-spacing:750.220800pt;}
.ws10_c00054{word-spacing:-2.700800pt;}
.ws11_c00054{word-spacing:-2.681600pt;}
.ws1_c00054{word-spacing:-1.382400pt;}
.ws2_c00054{word-spacing:-1.363200pt;}
.ws0_c00054{word-spacing:0.000000pt;}
.ws16_c00054{word-spacing:0.153600pt;}
.ws5_c00054{word-spacing:0.172800pt;}
.ws15_c00054{word-spacing:0.800000pt;}
.ws14_c00054{word-spacing:0.812800pt;}
.wsa_c00054{word-spacing:3.353600pt;}
.ws8_c00054{word-spacing:3.404800pt;}
.ws9_c00054{word-spacing:3.475200pt;}
.ws12_c00054{word-spacing:3.686400pt;}
.ws3_c00054{word-spacing:3.692800pt;}
.ws13_c00054{word-spacing:3.699200pt;}
.ws4_c00054{word-spacing:3.705600pt;}
.wsd_c00054{word-spacing:9.260800pt;}
.wsf_c00054{word-spacing:9.446400pt;}
.wse_c00054{word-spacing:9.561600pt;}
.ws6_c00054{word-spacing:26.297600pt;}
.wsb_c00054{word-spacing:26.387200pt;}
.ws7_c00054{word-spacing:26.406400pt;}
.wsc_c00054{word-spacing:26.412800pt;}
._0_c00054{width:0.979200pt;}
.fs0_c00054{font-size:64.000000pt;}
.y0_c00054{bottom:0.000000pt;}
.y2_c00054{bottom:41.627067pt;}
.y1_c00054{bottom:60.027067pt;}
.y10_c00054{bottom:604.347067pt;}
.yf_c00054{bottom:639.947067pt;}
.ye_c00054{bottom:675.547067pt;}
.yd_c00054{bottom:703.147067pt;}
.yc_c00054{bottom:730.747067pt;}
.yb_c00054{bottom:758.347067pt;}
.ya_c00054{bottom:785.947067pt;}
.y9_c00054{bottom:813.547067pt;}
.y8_c00054{bottom:841.147067pt;}
.y7_c00054{bottom:868.747067pt;}
.y6_c00054{bottom:904.347067pt;}
.y5_c00054{bottom:938.747067pt;}
.y4_c00054{bottom:957.147067pt;}
.y3_c00054{bottom:975.547067pt;}
.h1_c00054{height:56.156250pt;}
.h2_c00054{height:57.375000pt;}
.h0_c00054{height:1122.666667pt;}
.w1_c00054{width:793.333333pt;}
.w0_c00054{width:793.626667pt;}
.x0_c00054{left:0.000000pt;}
.x2_c00054{left:151.200000pt;}
.x3_c00054{left:170.160000pt;}
.x1_c00054{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_591a42260aa6143fcddeac81.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.ls0_c00055{letter-spacing:0.000000px;}
.sc__c00055{text-shadow:none;}
.sc0_c00055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00055{-webkit-text-stroke:0px transparent;}
.sc0_c00055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00055{word-spacing:0.000000px;}
.fc0_c00055{color:rgb(0,0,0);}
.fs0_c00055{font-size:72.000000px;}
.y0_c00055{bottom:0.000000px;}
.y2_c00055{bottom:46.830450px;}
.y1_c00055{bottom:67.530450px;}
.y3_c00055{bottom:1097.490450px;}
.h1_c00055{height:63.175781px;}
.h2_c00055{height:64.546875px;}
.h0_c00055{height:1263.000000px;}
.w1_c00055{width:892.500000px;}
.w0_c00055{width:892.830000px;}
.x0_c00055{left:0.000000px;}
.x2_c00055{left:127.620000px;}
.x1_c00055{left:704.880000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls0_c00055{letter-spacing:0.000000pt;}
.ws0_c00055{word-spacing:0.000000pt;}
.fs0_c00055{font-size:64.000000pt;}
.y0_c00055{bottom:0.000000pt;}
.y2_c00055{bottom:41.627067pt;}
.y1_c00055{bottom:60.027067pt;}
.y3_c00055{bottom:975.547067pt;}
.h1_c00055{height:56.156250pt;}
.h2_c00055{height:57.375000pt;}
.h0_c00055{height:1122.666667pt;}
.w1_c00055{width:793.333333pt;}
.w0_c00055{width:793.626667pt;}
.x0_c00055{left:0.000000pt;}
.x2_c00055{left:113.440000pt;}
.x1_c00055{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e9716740030b70cdd69a9c40.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.093262;font-style:normal;font-weight:normal;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_74810d46c7eb0326172c80ba.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00056;src:url('chunks/assets/font_d6bcdb231e6dce446fd177b3.woff2')format("woff");}.ff3_c00056{font-family:ff3_c00056;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.lsf_c00056{letter-spacing:-0.093600px;}
.ls5_c00056{letter-spacing:-0.079200px;}
.lsd_c00056{letter-spacing:-0.072000px;}
.ls4_c00056{letter-spacing:-0.064800px;}
.lsc_c00056{letter-spacing:-0.057600px;}
.lse_c00056{letter-spacing:-0.050400px;}
.ls6_c00056{letter-spacing:-0.043200px;}
.lsb_c00056{letter-spacing:-0.036000px;}
.lsa_c00056{letter-spacing:-0.028800px;}
.ls9_c00056{letter-spacing:-0.021600px;}
.ls7_c00056{letter-spacing:-0.014400px;}
.ls8_c00056{letter-spacing:-0.007200px;}
.ls2_c00056{letter-spacing:0.000000px;}
.ls1_c00056{letter-spacing:0.007200px;}
.ls0_c00056{letter-spacing:0.050328px;}
.ls3_c00056{letter-spacing:0.083880px;}
.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;}
}
.ws30_c00056{word-spacing:-4.507200px;}
.ws31_c00056{word-spacing:-3.470400px;}
.ws32_c00056{word-spacing:-3.312000px;}
.ws25_c00056{word-spacing:-2.008800px;}
.ws24_c00056{word-spacing:-1.944000px;}
.ws1a_c00056{word-spacing:-0.144000px;}
.ws1b_c00056{word-spacing:-0.129600px;}
.ws0_c00056{word-spacing:0.000000px;}
.ws3_c00056{word-spacing:0.008388px;}
.ws2_c00056{word-spacing:0.041940px;}
.wse_c00056{word-spacing:0.187200px;}
.wsf_c00056{word-spacing:0.266400px;}
.ws35_c00056{word-spacing:0.288000px;}
.ws6_c00056{word-spacing:0.561600px;}
.ws13_c00056{word-spacing:0.727200px;}
.ws12_c00056{word-spacing:0.770400px;}
.ws14_c00056{word-spacing:0.943200px;}
.ws29_c00056{word-spacing:1.281600px;}
.wsd_c00056{word-spacing:1.627200px;}
.ws19_c00056{word-spacing:2.332800px;}
.ws18_c00056{word-spacing:2.361600px;}
.ws2e_c00056{word-spacing:3.031200px;}
.ws2d_c00056{word-spacing:3.045600px;}
.ws7_c00056{word-spacing:3.369600px;}
.ws8_c00056{word-spacing:3.412800px;}
.ws2f_c00056{word-spacing:3.708000px;}
.ws2a_c00056{word-spacing:3.787200px;}
.ws1c_c00056{word-spacing:4.176000px;}
.ws1e_c00056{word-spacing:5.925600px;}
.ws1d_c00056{word-spacing:6.019200px;}
.ws33_c00056{word-spacing:6.300000px;}
.ws34_c00056{word-spacing:6.314400px;}
.ws5_c00056{word-spacing:7.740000px;}
.ws4_c00056{word-spacing:7.783200px;}
.wsc_c00056{word-spacing:8.798400px;}
.wsb_c00056{word-spacing:8.820000px;}
.ws9_c00056{word-spacing:9.165600px;}
.wsa_c00056{word-spacing:9.316800px;}
.ws1f_c00056{word-spacing:9.928800px;}
.ws28_c00056{word-spacing:10.936800px;}
.ws2b_c00056{word-spacing:13.118400px;}
.ws2c_c00056{word-spacing:13.147200px;}
.ws26_c00056{word-spacing:13.500000px;}
.ws27_c00056{word-spacing:13.593600px;}
.ws16_c00056{word-spacing:16.365600px;}
.ws15_c00056{word-spacing:16.387200px;}
.ws23_c00056{word-spacing:17.827200px;}
.ws22_c00056{word-spacing:17.856000px;}
.ws10_c00056{word-spacing:18.547200px;}
.ws11_c00056{word-spacing:18.597600px;}
.ws17_c00056{word-spacing:18.914400px;}
.ws20_c00056{word-spacing:22.780800px;}
.ws21_c00056{word-spacing:22.917600px;}
.ws1_c00056{word-spacing:187.606008px;}
._0_c00056{margin-left:-187.220160px;}
._1_c00056{width:1.080000px;}
.fc0_c00056{color:rgb(0,0,0);}
.fs0_c00056{font-size:72.000000px;}
.fs1_c00056{font-size:83.880000px;}
.y0_c00056{bottom:0.000000px;}
.y2_c00056{bottom:46.830450px;}
.y1_c00056{bottom:67.530450px;}
.y24_c00056{bottom:149.250450px;}
.y23_c00056{bottom:180.300450px;}
.y22_c00056{bottom:211.350450px;}
.y21_c00056{bottom:242.400450px;}
.y20_c00056{bottom:273.450450px;}
.y1f_c00056{bottom:304.500450px;}
.y1e_c00056{bottom:335.550450px;}
.y1d_c00056{bottom:366.600450px;}
.y1c_c00056{bottom:397.650450px;}
.y1b_c00056{bottom:428.700450px;}
.y1a_c00056{bottom:459.750450px;}
.y19_c00056{bottom:498.450450px;}
.y18_c00056{bottom:537.150450px;}
.y17_c00056{bottom:557.850450px;}
.y16_c00056{bottom:578.550450px;}
.y15_c00056{bottom:599.250450px;}
.y14_c00056{bottom:619.950450px;}
.y13_c00056{bottom:640.650450px;}
.y12_c00056{bottom:661.350450px;}
.y11_c00056{bottom:682.050450px;}
.y10_c00056{bottom:702.750450px;}
.yf_c00056{bottom:723.360450px;}
.ye_c00056{bottom:744.060450px;}
.yd_c00056{bottom:764.760450px;}
.yc_c00056{bottom:813.810450px;}
.yb_c00056{bottom:844.860450px;}
.ya_c00056{bottom:875.910450px;}
.y9_c00056{bottom:906.960450px;}
.y8_c00056{bottom:938.010450px;}
.y7_c00056{bottom:969.060450px;}
.y6_c00056{bottom:1000.110450px;}
.y5_c00056{bottom:1040.160450px;}
.y4_c00056{bottom:1070.404950px;}
.y3_c00056{bottom:1094.520450px;}
.h1_c00056{height:63.175781px;}
.h3_c00056{height:64.546875px;}
.h2_c00056{height:87.484219px;}
.h0_c00056{height:1263.000000px;}
.w1_c00056{width:892.500000px;}
.w0_c00056{width:892.830000px;}
.x0_c00056{left:0.000000px;}
.x2_c00056{left:170.100000px;}
.x5_c00056{left:191.430000px;}
.x3_c00056{left:224.100000px;}
.x4_c00056{left:261.887940px;}
.x1_c00056{left:747.360000px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.lsf_c00056{letter-spacing:-0.083200pt;}
.ls5_c00056{letter-spacing:-0.070400pt;}
.lsd_c00056{letter-spacing:-0.064000pt;}
.ls4_c00056{letter-spacing:-0.057600pt;}
.lsc_c00056{letter-spacing:-0.051200pt;}
.lse_c00056{letter-spacing:-0.044800pt;}
.ls6_c00056{letter-spacing:-0.038400pt;}
.lsb_c00056{letter-spacing:-0.032000pt;}
.lsa_c00056{letter-spacing:-0.025600pt;}
.ls9_c00056{letter-spacing:-0.019200pt;}
.ls7_c00056{letter-spacing:-0.012800pt;}
.ls8_c00056{letter-spacing:-0.006400pt;}
.ls2_c00056{letter-spacing:0.000000pt;}
.ls1_c00056{letter-spacing:0.006400pt;}
.ls0_c00056{letter-spacing:0.044736pt;}
.ls3_c00056{letter-spacing:0.074560pt;}
.ws30_c00056{word-spacing:-4.006400pt;}
.ws31_c00056{word-spacing:-3.084800pt;}
.ws32_c00056{word-spacing:-2.944000pt;}
.ws25_c00056{word-spacing:-1.785600pt;}
.ws24_c00056{word-spacing:-1.728000pt;}
.ws1a_c00056{word-spacing:-0.128000pt;}
.ws1b_c00056{word-spacing:-0.115200pt;}
.ws0_c00056{word-spacing:0.000000pt;}
.ws3_c00056{word-spacing:0.007456pt;}
.ws2_c00056{word-spacing:0.037280pt;}
.wse_c00056{word-spacing:0.166400pt;}
.wsf_c00056{word-spacing:0.236800pt;}
.ws35_c00056{word-spacing:0.256000pt;}
.ws6_c00056{word-spacing:0.499200pt;}
.ws13_c00056{word-spacing:0.646400pt;}
.ws12_c00056{word-spacing:0.684800pt;}
.ws14_c00056{word-spacing:0.838400pt;}
.ws29_c00056{word-spacing:1.139200pt;}
.wsd_c00056{word-spacing:1.446400pt;}
.ws19_c00056{word-spacing:2.073600pt;}
.ws18_c00056{word-spacing:2.099200pt;}
.ws2e_c00056{word-spacing:2.694400pt;}
.ws2d_c00056{word-spacing:2.707200pt;}
.ws7_c00056{word-spacing:2.995200pt;}
.ws8_c00056{word-spacing:3.033600pt;}
.ws2f_c00056{word-spacing:3.296000pt;}
.ws2a_c00056{word-spacing:3.366400pt;}
.ws1c_c00056{word-spacing:3.712000pt;}
.ws1e_c00056{word-spacing:5.267200pt;}
.ws1d_c00056{word-spacing:5.350400pt;}
.ws33_c00056{word-spacing:5.600000pt;}
.ws34_c00056{word-spacing:5.612800pt;}
.ws5_c00056{word-spacing:6.880000pt;}
.ws4_c00056{word-spacing:6.918400pt;}
.wsc_c00056{word-spacing:7.820800pt;}
.wsb_c00056{word-spacing:7.840000pt;}
.ws9_c00056{word-spacing:8.147200pt;}
.wsa_c00056{word-spacing:8.281600pt;}
.ws1f_c00056{word-spacing:8.825600pt;}
.ws28_c00056{word-spacing:9.721600pt;}
.ws2b_c00056{word-spacing:11.660800pt;}
.ws2c_c00056{word-spacing:11.686400pt;}
.ws26_c00056{word-spacing:12.000000pt;}
.ws27_c00056{word-spacing:12.083200pt;}
.ws16_c00056{word-spacing:14.547200pt;}
.ws15_c00056{word-spacing:14.566400pt;}
.ws23_c00056{word-spacing:15.846400pt;}
.ws22_c00056{word-spacing:15.872000pt;}
.ws10_c00056{word-spacing:16.486400pt;}
.ws11_c00056{word-spacing:16.531200pt;}
.ws17_c00056{word-spacing:16.812800pt;}
.ws20_c00056{word-spacing:20.249600pt;}
.ws21_c00056{word-spacing:20.371200pt;}
.ws1_c00056{word-spacing:166.760896pt;}
._0_c00056{margin-left:-166.417920pt;}
._1_c00056{width:0.960000pt;}
.fs0_c00056{font-size:64.000000pt;}
.fs1_c00056{font-size:74.560000pt;}
.y0_c00056{bottom:0.000000pt;}
.y2_c00056{bottom:41.627067pt;}
.y1_c00056{bottom:60.027067pt;}
.y24_c00056{bottom:132.667067pt;}
.y23_c00056{bottom:160.267067pt;}
.y22_c00056{bottom:187.867067pt;}
.y21_c00056{bottom:215.467067pt;}
.y20_c00056{bottom:243.067067pt;}
.y1f_c00056{bottom:270.667067pt;}
.y1e_c00056{bottom:298.267067pt;}
.y1d_c00056{bottom:325.867067pt;}
.y1c_c00056{bottom:353.467067pt;}
.y1b_c00056{bottom:381.067067pt;}
.y1a_c00056{bottom:408.667067pt;}
.y19_c00056{bottom:443.067067pt;}
.y18_c00056{bottom:477.467067pt;}
.y17_c00056{bottom:495.867067pt;}
.y16_c00056{bottom:514.267067pt;}
.y15_c00056{bottom:532.667067pt;}
.y14_c00056{bottom:551.067067pt;}
.y13_c00056{bottom:569.467067pt;}
.y12_c00056{bottom:587.867067pt;}
.y11_c00056{bottom:606.267067pt;}
.y10_c00056{bottom:624.667067pt;}
.yf_c00056{bottom:642.987067pt;}
.ye_c00056{bottom:661.387067pt;}
.yd_c00056{bottom:679.787067pt;}
.yc_c00056{bottom:723.387067pt;}
.yb_c00056{bottom:750.987067pt;}
.ya_c00056{bottom:778.587067pt;}
.y9_c00056{bottom:806.187067pt;}
.y8_c00056{bottom:833.787067pt;}
.y7_c00056{bottom:861.387067pt;}
.y6_c00056{bottom:888.987067pt;}
.y5_c00056{bottom:924.587067pt;}
.y4_c00056{bottom:951.471067pt;}
.y3_c00056{bottom:972.907067pt;}
.h1_c00056{height:56.156250pt;}
.h3_c00056{height:57.375000pt;}
.h2_c00056{height:77.763750pt;}
.h0_c00056{height:1122.666667pt;}
.w1_c00056{width:793.333333pt;}
.w0_c00056{width:793.626667pt;}
.x0_c00056{left:0.000000pt;}
.x2_c00056{left:151.200000pt;}
.x5_c00056{left:170.160000pt;}
.x3_c00056{left:199.200000pt;}
.x4_c00056{left:232.789280pt;}
.x1_c00056{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a2cac1d21aa85d2f146c0af2.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.093262;font-style:normal;font-weight:normal;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_94e164addd7f95db20120a5e.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.106934;font-style: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;}
.lsa_c00057{letter-spacing:-0.108000px;}
.lsc_c00057{letter-spacing:-0.093600px;}
.ls9_c00057{letter-spacing:-0.086400px;}
.ls11_c00057{letter-spacing:-0.079200px;}
.ls10_c00057{letter-spacing:-0.072000px;}
.ls3_c00057{letter-spacing:-0.064800px;}
.ls7_c00057{letter-spacing:-0.057600px;}
.lsf_c00057{letter-spacing:-0.050400px;}
.ls6_c00057{letter-spacing:-0.043200px;}
.ls5_c00057{letter-spacing:-0.036000px;}
.lse_c00057{letter-spacing:-0.028800px;}
.ls4_c00057{letter-spacing:-0.021600px;}
.lsb_c00057{letter-spacing:-0.014400px;}
.lsd_c00057{letter-spacing:-0.007200px;}
.ls2_c00057{letter-spacing:0.000000px;}
.ls8_c00057{letter-spacing:0.007200px;}
.ls1_c00057{letter-spacing:0.014400px;}
.ls0_c00057{letter-spacing:12.960000px;}
.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;}
}
.ws25_c00057{word-spacing:-2.340000px;}
.ws16_c00057{word-spacing:-2.296800px;}
.ws14_c00057{word-spacing:-0.187200px;}
.ws0_c00057{word-spacing:0.000000px;}
.ws20_c00057{word-spacing:0.036000px;}
.ws2a_c00057{word-spacing:0.136800px;}
.ws1f_c00057{word-spacing:0.165600px;}
.ws29_c00057{word-spacing:0.216000px;}
.ws23_c00057{word-spacing:0.540000px;}
.ws24_c00057{word-spacing:0.547200px;}
.ws27_c00057{word-spacing:0.705600px;}
.ws28_c00057{word-spacing:0.957600px;}
.ws26_c00057{word-spacing:1.598400px;}
.ws1d_c00057{word-spacing:2.966400px;}
.ws1c_c00057{word-spacing:3.060000px;}
.ws1e_c00057{word-spacing:3.110400px;}
.ws17_c00057{word-spacing:3.405600px;}
.ws19_c00057{word-spacing:3.456000px;}
.ws18_c00057{word-spacing:3.506400px;}
.ws2_c00057{word-spacing:6.206400px;}
.ws1_c00057{word-spacing:6.343200px;}
.ws1b_c00057{word-spacing:6.696000px;}
.ws1a_c00057{word-spacing:6.724800px;}
.ws3_c00057{word-spacing:7.394400px;}
.wsd_c00057{word-spacing:8.452800px;}
.wsf_c00057{word-spacing:8.467200px;}
.wse_c00057{word-spacing:8.575200px;}
.ws6_c00057{word-spacing:9.194400px;}
.wsb_c00057{word-spacing:13.881600px;}
.wsc_c00057{word-spacing:13.946400px;}
.ws4_c00057{word-spacing:14.601600px;}
.ws5_c00057{word-spacing:14.616000px;}
.ws13_c00057{word-spacing:16.005600px;}
.ws12_c00057{word-spacing:16.099200px;}
.ws21_c00057{word-spacing:17.834400px;}
.ws22_c00057{word-spacing:17.863200px;}
.ws11_c00057{word-spacing:21.686400px;}
.ws8_c00057{word-spacing:21.729600px;}
.ws7_c00057{word-spacing:21.758400px;}
.ws10_c00057{word-spacing:21.852000px;}
.ws9_c00057{word-spacing:22.111200px;}
.wsa_c00057{word-spacing:22.204800px;}
.ws15_c00057{word-spacing:27.144000px;}
._1_c00057{margin-left:-1.310400px;}
._0_c00057{width:1.108800px;}
.fc0_c00057{color:rgb(0,0,0);}
.fs1_c00057{font-size:69.120000px;}
.fs0_c00057{font-size:72.000000px;}
.y0_c00057{bottom:0.000000px;}
.y2_c00057{bottom:46.830450px;}
.y1_c00057{bottom:67.530450px;}
.y1e_c00057{bottom:205.230450px;}
.y1d_c00057{bottom:245.280450px;}
.y1c_c00057{bottom:285.330450px;}
.y1b_c00057{bottom:325.380450px;}
.y1a_c00057{bottom:356.430450px;}
.y19_c00057{bottom:387.390450px;}
.y18_c00057{bottom:418.440450px;}
.y17_c00057{bottom:449.490450px;}
.y16_c00057{bottom:480.540450px;}
.y15_c00057{bottom:511.590450px;}
.y14_c00057{bottom:551.640450px;}
.y13_c00057{bottom:582.690450px;}
.y12_c00057{bottom:613.740450px;}
.y11_c00057{bottom:644.790450px;}
.y10_c00057{bottom:675.840450px;}
.yf_c00057{bottom:706.890450px;}
.ye_c00057{bottom:746.940450px;}
.yd_c00057{bottom:777.990450px;}
.yc_c00057{bottom:809.040450px;}
.yb_c00057{bottom:840.090450px;}
.ya_c00057{bottom:871.140450px;}
.y9_c00057{bottom:902.190450px;}
.y8_c00057{bottom:933.240450px;}
.y7_c00057{bottom:973.290450px;}
.y6_c00057{bottom:1004.340450px;}
.y5_c00057{bottom:1035.390450px;}
.y4_c00057{bottom:1066.440450px;}
.y3_c00057{bottom:1097.490450px;}
.h1_c00057{height:63.175781px;}
.h2_c00057{height:64.546875px;}
.h0_c00057{height:1263.000000px;}
.w1_c00057{width:892.500000px;}
.w0_c00057{width:892.830000px;}
.x0_c00057{left:0.000000px;}
.x2_c00057{left:127.620000px;}
.x1_c00057{left:704.880000px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.lsa_c00057{letter-spacing:-0.096000pt;}
.lsc_c00057{letter-spacing:-0.083200pt;}
.ls9_c00057{letter-spacing:-0.076800pt;}
.ls11_c00057{letter-spacing:-0.070400pt;}
.ls10_c00057{letter-spacing:-0.064000pt;}
.ls3_c00057{letter-spacing:-0.057600pt;}
.ls7_c00057{letter-spacing:-0.051200pt;}
.lsf_c00057{letter-spacing:-0.044800pt;}
.ls6_c00057{letter-spacing:-0.038400pt;}
.ls5_c00057{letter-spacing:-0.032000pt;}
.lse_c00057{letter-spacing:-0.025600pt;}
.ls4_c00057{letter-spacing:-0.019200pt;}
.lsb_c00057{letter-spacing:-0.012800pt;}
.lsd_c00057{letter-spacing:-0.006400pt;}
.ls2_c00057{letter-spacing:0.000000pt;}
.ls8_c00057{letter-spacing:0.006400pt;}
.ls1_c00057{letter-spacing:0.012800pt;}
.ls0_c00057{letter-spacing:11.520000pt;}
.ws25_c00057{word-spacing:-2.080000pt;}
.ws16_c00057{word-spacing:-2.041600pt;}
.ws14_c00057{word-spacing:-0.166400pt;}
.ws0_c00057{word-spacing:0.000000pt;}
.ws20_c00057{word-spacing:0.032000pt;}
.ws2a_c00057{word-spacing:0.121600pt;}
.ws1f_c00057{word-spacing:0.147200pt;}
.ws29_c00057{word-spacing:0.192000pt;}
.ws23_c00057{word-spacing:0.480000pt;}
.ws24_c00057{word-spacing:0.486400pt;}
.ws27_c00057{word-spacing:0.627200pt;}
.ws28_c00057{word-spacing:0.851200pt;}
.ws26_c00057{word-spacing:1.420800pt;}
.ws1d_c00057{word-spacing:2.636800pt;}
.ws1c_c00057{word-spacing:2.720000pt;}
.ws1e_c00057{word-spacing:2.764800pt;}
.ws17_c00057{word-spacing:3.027200pt;}
.ws19_c00057{word-spacing:3.072000pt;}
.ws18_c00057{word-spacing:3.116800pt;}
.ws2_c00057{word-spacing:5.516800pt;}
.ws1_c00057{word-spacing:5.638400pt;}
.ws1b_c00057{word-spacing:5.952000pt;}
.ws1a_c00057{word-spacing:5.977600pt;}
.ws3_c00057{word-spacing:6.572800pt;}
.wsd_c00057{word-spacing:7.513600pt;}
.wsf_c00057{word-spacing:7.526400pt;}
.wse_c00057{word-spacing:7.622400pt;}
.ws6_c00057{word-spacing:8.172800pt;}
.wsb_c00057{word-spacing:12.339200pt;}
.wsc_c00057{word-spacing:12.396800pt;}
.ws4_c00057{word-spacing:12.979200pt;}
.ws5_c00057{word-spacing:12.992000pt;}
.ws13_c00057{word-spacing:14.227200pt;}
.ws12_c00057{word-spacing:14.310400pt;}
.ws21_c00057{word-spacing:15.852800pt;}
.ws22_c00057{word-spacing:15.878400pt;}
.ws11_c00057{word-spacing:19.276800pt;}
.ws8_c00057{word-spacing:19.315200pt;}
.ws7_c00057{word-spacing:19.340800pt;}
.ws10_c00057{word-spacing:19.424000pt;}
.ws9_c00057{word-spacing:19.654400pt;}
.wsa_c00057{word-spacing:19.737600pt;}
.ws15_c00057{word-spacing:24.128000pt;}
._1_c00057{margin-left:-1.164800pt;}
._0_c00057{width:0.985600pt;}
.fs1_c00057{font-size:61.440000pt;}
.fs0_c00057{font-size:64.000000pt;}
.y0_c00057{bottom:0.000000pt;}
.y2_c00057{bottom:41.627067pt;}
.y1_c00057{bottom:60.027067pt;}
.y1e_c00057{bottom:182.427067pt;}
.y1d_c00057{bottom:218.027067pt;}
.y1c_c00057{bottom:253.627067pt;}
.y1b_c00057{bottom:289.227067pt;}
.y1a_c00057{bottom:316.827067pt;}
.y19_c00057{bottom:344.347067pt;}
.y18_c00057{bottom:371.947067pt;}
.y17_c00057{bottom:399.547067pt;}
.y16_c00057{bottom:427.147067pt;}
.y15_c00057{bottom:454.747067pt;}
.y14_c00057{bottom:490.347067pt;}
.y13_c00057{bottom:517.947067pt;}
.y12_c00057{bottom:545.547067pt;}
.y11_c00057{bottom:573.147067pt;}
.y10_c00057{bottom:600.747067pt;}
.yf_c00057{bottom:628.347067pt;}
.ye_c00057{bottom:663.947067pt;}
.yd_c00057{bottom:691.547067pt;}
.yc_c00057{bottom:719.147067pt;}
.yb_c00057{bottom:746.747067pt;}
.ya_c00057{bottom:774.347067pt;}
.y9_c00057{bottom:801.947067pt;}
.y8_c00057{bottom:829.547067pt;}
.y7_c00057{bottom:865.147067pt;}
.y6_c00057{bottom:892.747067pt;}
.y5_c00057{bottom:920.347067pt;}
.y4_c00057{bottom:947.947067pt;}
.y3_c00057{bottom:975.547067pt;}
.h1_c00057{height:56.156250pt;}
.h2_c00057{height:57.375000pt;}
.h0_c00057{height:1122.666667pt;}
.w1_c00057{width:793.333333pt;}
.w0_c00057{width:793.626667pt;}
.x0_c00057{left:0.000000pt;}
.x2_c00057{left:113.440000pt;}
.x1_c00057{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c4c711849ff0e2931445222f.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.093262;font-style:normal;font-weight:normal;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_b723a75e679f4a97aad11ca2.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.106934;font-style:normal;font-weight:normal;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_1d24fd1706da7a248b229376.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00058;src:url('chunks/assets/font_6c7eb527fb6df1e02cb828ed.woff2')format("woff");}.ff4_c00058{font-family:ff4_c00058;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:79.557120px;}
.ls9_c00058{letter-spacing:-0.122400px;}
.ls7_c00058{letter-spacing:-0.086400px;}
.lsf_c00058{letter-spacing:-0.079200px;}
.lsd_c00058{letter-spacing:-0.064800px;}
.lsa_c00058{letter-spacing:-0.057600px;}
.ls5_c00058{letter-spacing:-0.050400px;}
.ls11_c00058{letter-spacing:-0.048384px;}
.ls8_c00058{letter-spacing:-0.043200px;}
.ls3_c00058{letter-spacing:-0.036000px;}
.ls12_c00058{letter-spacing:-0.034560px;}
.ls4_c00058{letter-spacing:-0.028800px;}
.ls14_c00058{letter-spacing:-0.027648px;}
.lse_c00058{letter-spacing:-0.021600px;}
.ls10_c00058{letter-spacing:-0.020736px;}
.ls6_c00058{letter-spacing:-0.014400px;}
.ls13_c00058{letter-spacing:-0.013824px;}
.lsc_c00058{letter-spacing:-0.007200px;}
.ls2_c00058{letter-spacing:0.000000px;}
.lsb_c00058{letter-spacing:0.007200px;}
.ls0_c00058{letter-spacing:0.013824px;}
.ls1_c00058{letter-spacing:0.020736px;}
.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;}
}
.ws0_c00058{word-spacing:-20.008800px;}
.ws1_c00058{word-spacing:-19.936800px;}
.ws26_c00058{word-spacing:-3.060000px;}
.ws27_c00058{word-spacing:-3.002400px;}
.ws28_c00058{word-spacing:-2.966400px;}
.ws7_c00058{word-spacing:-0.547200px;}
.ws8_c00058{word-spacing:-0.532800px;}
.ws30_c00058{word-spacing:-0.380160px;}
.ws2a_c00058{word-spacing:-0.373248px;}
.ws29_c00058{word-spacing:-0.338688px;}
.wsb_c00058{word-spacing:-0.338400px;}
.ws6_c00058{word-spacing:-0.252000px;}
.ws5_c00058{word-spacing:-0.151200px;}
.wsa_c00058{word-spacing:-0.115200px;}
.wsc_c00058{word-spacing:-0.079200px;}
.ws2_c00058{word-spacing:0.000000px;}
.ws2d_c00058{word-spacing:0.013824px;}
.ws2e_c00058{word-spacing:0.027648px;}
.ws2c_c00058{word-spacing:0.034560px;}
.ws2b_c00058{word-spacing:0.048384px;}
.ws1d_c00058{word-spacing:0.165600px;}
.ws4_c00058{word-spacing:0.187200px;}
.ws3_c00058{word-spacing:0.194400px;}
.ws1c_c00058{word-spacing:0.201600px;}
.wsd_c00058{word-spacing:0.914400px;}
.wse_c00058{word-spacing:0.936000px;}
.ws20_c00058{word-spacing:2.347200px;}
.ws21_c00058{word-spacing:3.016800px;}
.ws22_c00058{word-spacing:3.081600px;}
.ws9_c00058{word-spacing:3.427200px;}
.ws25_c00058{word-spacing:4.831200px;}
.ws23_c00058{word-spacing:4.867200px;}
.ws24_c00058{word-spacing:4.888800px;}
.ws1e_c00058{word-spacing:5.227200px;}
.ws1f_c00058{word-spacing:5.263200px;}
.ws10_c00058{word-spacing:11.001600px;}
.wsf_c00058{word-spacing:11.131200px;}
.ws1b_c00058{word-spacing:13.766400px;}
.ws1a_c00058{word-spacing:13.867200px;}
.ws18_c00058{word-spacing:14.572800px;}
.ws19_c00058{word-spacing:14.587200px;}
.ws11_c00058{word-spacing:14.601600px;}
.ws12_c00058{word-spacing:14.644800px;}
.ws13_c00058{word-spacing:17.107200px;}
.ws16_c00058{word-spacing:21.002400px;}
.ws17_c00058{word-spacing:21.096000px;}
.ws15_c00058{word-spacing:40.039200px;}
.ws14_c00058{word-spacing:40.046400px;}
.ws2f_c00058{word-spacing:53.305344px;}
._0_c00058{width:1.281600px;}
._6_c00058{width:30.205440px;}
._3_c00058{width:72.714240px;}
._1_c00058{width:152.616960px;}
._7_c00058{width:337.305600px;}
._5_c00058{width:399.237120px;}
._8_c00058{width:412.494336px;}
._4_c00058{width:479.913984px;}
._2_c00058{width:644.398848px;}
.fc0_c00058{color:rgb(0,0,0);}
.fs1_c00058{font-size:69.120000px;}
.fs0_c00058{font-size:72.000000px;}
.y0_c00058{bottom:0.000000px;}
.y2_c00058{bottom:46.830450px;}
.y1_c00058{bottom:67.530450px;}
.y18_c00058{bottom:144.120450px;}
.y17_c00058{bottom:175.170450px;}
.y16_c00058{bottom:215.220450px;}
.y15_c00058{bottom:246.270450px;}
.y14_c00058{bottom:277.320450px;}
.y13_c00058{bottom:308.370450px;}
.y12_c00058{bottom:348.420450px;}
.y11_c00058{bottom:379.470450px;}
.y10_c00058{bottom:410.520450px;}
.yf_c00058{bottom:441.570450px;}
.ye_c00058{bottom:472.620450px;}
.yd_c00058{bottom:503.670450px;}
.yc_c00058{bottom:534.720450px;}
.yb_c00058{bottom:565.770450px;}
.ya_c00058{bottom:596.820450px;}
.y9_c00058{bottom:627.870450px;}
.y8_c00058{bottom:667.920450px;}
.y7_c00058{bottom:698.970450px;}
.y6_c00058{bottom:730.020450px;}
.y5_c00058{bottom:761.070450px;}
.y4_c00058{bottom:801.120450px;}
.y20_c00058{bottom:878.335410px;}
.y1f_c00058{bottom:898.138290px;}
.y1e_c00058{bottom:917.941170px;}
.y1d_c00058{bottom:937.830450px;}
.y1c_c00058{bottom:1003.348290px;}
.y1b_c00058{bottom:1023.237570px;}
.y1a_c00058{bottom:1043.040450px;}
.y19_c00058{bottom:1068.150450px;}
.y3_c00058{bottom:1097.490450px;}
.h1_c00058{height:63.175781px;}
.h2_c00058{height:64.546875px;}
.h4_c00058{height:67.803750px;}
.h3_c00058{height:75.093750px;}
.h5_c00058{height:147.360870px;}
.h0_c00058{height:1263.000000px;}
.w1_c00058{width:892.500000px;}
.w0_c00058{width:892.830000px;}
.x0_c00058{left:0.000000px;}
.x2_c00058{left:170.100000px;}
.x3_c00058{left:182.790000px;}
.x5_c00058{left:419.664240px;}
.x4_c00058{left:594.278640px;}
.x1_c00058{left:747.360000px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.v1_c00058{vertical-align:70.717440pt;}
.ls9_c00058{letter-spacing:-0.108800pt;}
.ls7_c00058{letter-spacing:-0.076800pt;}
.lsf_c00058{letter-spacing:-0.070400pt;}
.lsd_c00058{letter-spacing:-0.057600pt;}
.lsa_c00058{letter-spacing:-0.051200pt;}
.ls5_c00058{letter-spacing:-0.044800pt;}
.ls11_c00058{letter-spacing:-0.043008pt;}
.ls8_c00058{letter-spacing:-0.038400pt;}
.ls3_c00058{letter-spacing:-0.032000pt;}
.ls12_c00058{letter-spacing:-0.030720pt;}
.ls4_c00058{letter-spacing:-0.025600pt;}
.ls14_c00058{letter-spacing:-0.024576pt;}
.lse_c00058{letter-spacing:-0.019200pt;}
.ls10_c00058{letter-spacing:-0.018432pt;}
.ls6_c00058{letter-spacing:-0.012800pt;}
.ls13_c00058{letter-spacing:-0.012288pt;}
.lsc_c00058{letter-spacing:-0.006400pt;}
.ls2_c00058{letter-spacing:0.000000pt;}
.lsb_c00058{letter-spacing:0.006400pt;}
.ls0_c00058{letter-spacing:0.012288pt;}
.ls1_c00058{letter-spacing:0.018432pt;}
.ws0_c00058{word-spacing:-17.785600pt;}
.ws1_c00058{word-spacing:-17.721600pt;}
.ws26_c00058{word-spacing:-2.720000pt;}
.ws27_c00058{word-spacing:-2.668800pt;}
.ws28_c00058{word-spacing:-2.636800pt;}
.ws7_c00058{word-spacing:-0.486400pt;}
.ws8_c00058{word-spacing:-0.473600pt;}
.ws30_c00058{word-spacing:-0.337920pt;}
.ws2a_c00058{word-spacing:-0.331776pt;}
.ws29_c00058{word-spacing:-0.301056pt;}
.wsb_c00058{word-spacing:-0.300800pt;}
.ws6_c00058{word-spacing:-0.224000pt;}
.ws5_c00058{word-spacing:-0.134400pt;}
.wsa_c00058{word-spacing:-0.102400pt;}
.wsc_c00058{word-spacing:-0.070400pt;}
.ws2_c00058{word-spacing:0.000000pt;}
.ws2d_c00058{word-spacing:0.012288pt;}
.ws2e_c00058{word-spacing:0.024576pt;}
.ws2c_c00058{word-spacing:0.030720pt;}
.ws2b_c00058{word-spacing:0.043008pt;}
.ws1d_c00058{word-spacing:0.147200pt;}
.ws4_c00058{word-spacing:0.166400pt;}
.ws3_c00058{word-spacing:0.172800pt;}
.ws1c_c00058{word-spacing:0.179200pt;}
.wsd_c00058{word-spacing:0.812800pt;}
.wse_c00058{word-spacing:0.832000pt;}
.ws20_c00058{word-spacing:2.086400pt;}
.ws21_c00058{word-spacing:2.681600pt;}
.ws22_c00058{word-spacing:2.739200pt;}
.ws9_c00058{word-spacing:3.046400pt;}
.ws25_c00058{word-spacing:4.294400pt;}
.ws23_c00058{word-spacing:4.326400pt;}
.ws24_c00058{word-spacing:4.345600pt;}
.ws1e_c00058{word-spacing:4.646400pt;}
.ws1f_c00058{word-spacing:4.678400pt;}
.ws10_c00058{word-spacing:9.779200pt;}
.wsf_c00058{word-spacing:9.894400pt;}
.ws1b_c00058{word-spacing:12.236800pt;}
.ws1a_c00058{word-spacing:12.326400pt;}
.ws18_c00058{word-spacing:12.953600pt;}
.ws19_c00058{word-spacing:12.966400pt;}
.ws11_c00058{word-spacing:12.979200pt;}
.ws12_c00058{word-spacing:13.017600pt;}
.ws13_c00058{word-spacing:15.206400pt;}
.ws16_c00058{word-spacing:18.668800pt;}
.ws17_c00058{word-spacing:18.752000pt;}
.ws15_c00058{word-spacing:35.590400pt;}
.ws14_c00058{word-spacing:35.596800pt;}
.ws2f_c00058{word-spacing:47.382528pt;}
._0_c00058{width:1.139200pt;}
._6_c00058{width:26.849280pt;}
._3_c00058{width:64.634880pt;}
._1_c00058{width:135.659520pt;}
._7_c00058{width:299.827200pt;}
._5_c00058{width:354.877440pt;}
._8_c00058{width:366.661632pt;}
._4_c00058{width:426.590208pt;}
._2_c00058{width:572.798976pt;}
.fs1_c00058{font-size:61.440000pt;}
.fs0_c00058{font-size:64.000000pt;}
.y0_c00058{bottom:0.000000pt;}
.y2_c00058{bottom:41.627067pt;}
.y1_c00058{bottom:60.027067pt;}
.y18_c00058{bottom:128.107067pt;}
.y17_c00058{bottom:155.707067pt;}
.y16_c00058{bottom:191.307067pt;}
.y15_c00058{bottom:218.907067pt;}
.y14_c00058{bottom:246.507067pt;}
.y13_c00058{bottom:274.107067pt;}
.y12_c00058{bottom:309.707067pt;}
.y11_c00058{bottom:337.307067pt;}
.y10_c00058{bottom:364.907067pt;}
.yf_c00058{bottom:392.507067pt;}
.ye_c00058{bottom:420.107067pt;}
.yd_c00058{bottom:447.707067pt;}
.yc_c00058{bottom:475.307067pt;}
.yb_c00058{bottom:502.907067pt;}
.ya_c00058{bottom:530.507067pt;}
.y9_c00058{bottom:558.107067pt;}
.y8_c00058{bottom:593.707067pt;}
.y7_c00058{bottom:621.307067pt;}
.y6_c00058{bottom:648.907067pt;}
.y5_c00058{bottom:676.507067pt;}
.y4_c00058{bottom:712.107067pt;}
.y20_c00058{bottom:780.742587pt;}
.y1f_c00058{bottom:798.345147pt;}
.y1e_c00058{bottom:815.947707pt;}
.y1d_c00058{bottom:833.627067pt;}
.y1c_c00058{bottom:891.865147pt;}
.y1b_c00058{bottom:909.544507pt;}
.y1a_c00058{bottom:927.147067pt;}
.y19_c00058{bottom:949.467067pt;}
.y3_c00058{bottom:975.547067pt;}
.h1_c00058{height:56.156250pt;}
.h2_c00058{height:57.375000pt;}
.h4_c00058{height:60.270000pt;}
.h3_c00058{height:66.750000pt;}
.h5_c00058{height:130.987440pt;}
.h0_c00058{height:1122.666667pt;}
.w1_c00058{width:793.333333pt;}
.w0_c00058{width:793.626667pt;}
.x0_c00058{left:0.000000pt;}
.x2_c00058{left:151.200000pt;}
.x3_c00058{left:162.480000pt;}
.x5_c00058{left:373.034880pt;}
.x4_c00058{left:528.247680pt;}
.x1_c00058{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4323f22a2ec51f39567826d5.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.093262;font-style:normal;font-weight:normal;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_363fccaccc47f79fae878cdc.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.106934;font-style:normal;font-weight:normal;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_58521f843208b1e19f1b449c.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00059;src:url('chunks/assets/font_b5dea8129d291bf4622afe7b.woff2')format("woff");}.ff4_c00059{font-family:ff4_c00059;line-height:0.707031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls4_c00059{letter-spacing:-0.129600px;}
.ls3_c00059{letter-spacing:-0.108000px;}
.lsd_c00059{letter-spacing:-0.079200px;}
.ls11_c00059{letter-spacing:-0.072000px;}
.ls2_c00059{letter-spacing:-0.064800px;}
.ls9_c00059{letter-spacing:-0.057600px;}
.ls10_c00059{letter-spacing:-0.050400px;}
.ls6_c00059{letter-spacing:-0.043200px;}
.lsa_c00059{letter-spacing:-0.036000px;}
.lse_c00059{letter-spacing:-0.028800px;}
.ls7_c00059{letter-spacing:-0.021600px;}
.ls8_c00059{letter-spacing:-0.014400px;}
.ls5_c00059{letter-spacing:-0.007200px;}
.ls1_c00059{letter-spacing:0.000000px;}
.lsf_c00059{letter-spacing:0.007200px;}
.lsc_c00059{letter-spacing:0.028800px;}
.lsb_c00059{letter-spacing:0.144000px;}
.ls0_c00059{letter-spacing:0.158400px;}
.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;}
}
.ws1_c00059{word-spacing:-19.972800px;}
.ws0_c00059{word-spacing:-19.908000px;}
.ws13_c00059{word-spacing:-4.132800px;}
.wsd_c00059{word-spacing:-3.945600px;}
.wsc_c00059{word-spacing:-3.758400px;}
.wse_c00059{word-spacing:-3.722400px;}
.wsa_c00059{word-spacing:-3.405600px;}
.ws9_c00059{word-spacing:-3.376800px;}
.ws24_c00059{word-spacing:-0.979200px;}
.ws25_c00059{word-spacing:-0.892800px;}
.ws2_c00059{word-spacing:0.000000px;}
.ws15_c00059{word-spacing:0.151200px;}
.wsb_c00059{word-spacing:0.165600px;}
.ws27_c00059{word-spacing:0.180000px;}
.ws33_c00059{word-spacing:0.194400px;}
.ws14_c00059{word-spacing:0.201600px;}
.ws26_c00059{word-spacing:0.266400px;}
.ws3_c00059{word-spacing:1.303200px;}
.ws4_c00059{word-spacing:1.368000px;}
.ws17_c00059{word-spacing:1.454400px;}
.ws18_c00059{word-spacing:1.497600px;}
.ws16_c00059{word-spacing:1.533600px;}
.ws34_c00059{word-spacing:1.706400px;}
.ws2e_c00059{word-spacing:3.081600px;}
.ws23_c00059{word-spacing:3.412800px;}
.ws35_c00059{word-spacing:3.420000px;}
.ws36_c00059{word-spacing:3.441600px;}
.ws12_c00059{word-spacing:4.514400px;}
.ws11_c00059{word-spacing:4.579200px;}
.ws1b_c00059{word-spacing:4.852800px;}
.ws1c_c00059{word-spacing:4.860000px;}
.ws1d_c00059{word-spacing:5.191200px;}
.ws1e_c00059{word-spacing:5.248800px;}
.ws32_c00059{word-spacing:5.378400px;}
.ws30_c00059{word-spacing:5.587200px;}
.ws31_c00059{word-spacing:5.709600px;}
.ws20_c00059{word-spacing:5.889600px;}
.ws1f_c00059{word-spacing:5.896800px;}
.ws2f_c00059{word-spacing:6.674400px;}
.ws8_c00059{word-spacing:8.092800px;}
.ws7_c00059{word-spacing:8.193600px;}
.ws19_c00059{word-spacing:8.395200px;}
.ws1a_c00059{word-spacing:8.438400px;}
.ws21_c00059{word-spacing:9.165600px;}
.ws22_c00059{word-spacing:9.208800px;}
.ws29_c00059{word-spacing:12.758400px;}
.ws28_c00059{word-spacing:12.808800px;}
.ws2c_c00059{word-spacing:15.775200px;}
.ws2d_c00059{word-spacing:15.840000px;}
.ws2a_c00059{word-spacing:19.965600px;}
.ws2b_c00059{word-spacing:20.109600px;}
.ws10_c00059{word-spacing:25.387200px;}
.wsf_c00059{word-spacing:25.416000px;}
.ws5_c00059{word-spacing:32.205600px;}
.ws6_c00059{word-spacing:32.220000px;}
._1_c00059{margin-left:-1.224000px;}
._0_c00059{width:1.310400px;}
.fc0_c00059{color:rgb(0,0,0);}
.fs0_c00059{font-size:72.000000px;}
.y0_c00059{bottom:0.000000px;}
.y2_c00059{bottom:46.830450px;}
.y1_c00059{bottom:67.530450px;}
.y20_c00059{bottom:175.440450px;}
.y1f_c00059{bottom:206.490450px;}
.y1e_c00059{bottom:237.540450px;}
.y1d_c00059{bottom:276.240450px;}
.y1c_c00059{bottom:296.940450px;}
.y1b_c00059{bottom:317.640450px;}
.y1a_c00059{bottom:338.340450px;}
.y19_c00059{bottom:387.390450px;}
.y18_c00059{bottom:418.440450px;}
.y17_c00059{bottom:449.490450px;}
.y16_c00059{bottom:480.540450px;}
.y15_c00059{bottom:520.500450px;}
.y14_c00059{bottom:551.550450px;}
.y13_c00059{bottom:582.600450px;}
.y12_c00059{bottom:613.650450px;}
.y11_c00059{bottom:644.700450px;}
.y10_c00059{bottom:675.750450px;}
.yf_c00059{bottom:706.800450px;}
.ye_c00059{bottom:737.850450px;}
.yd_c00059{bottom:768.900450px;}
.yc_c00059{bottom:808.950450px;}
.yb_c00059{bottom:840.000450px;}
.ya_c00059{bottom:871.050450px;}
.y9_c00059{bottom:902.100450px;}
.y8_c00059{bottom:933.240450px;}
.y7_c00059{bottom:973.290450px;}
.y6_c00059{bottom:1004.340450px;}
.y5_c00059{bottom:1035.390450px;}
.y4_c00059{bottom:1066.440450px;}
.y3_c00059{bottom:1097.490450px;}
.h1_c00059{height:63.175781px;}
.h3_c00059{height:64.546875px;}
.h2_c00059{height:75.093750px;}
.h0_c00059{height:1263.000000px;}
.w1_c00059{width:892.500000px;}
.w0_c00059{width:892.830000px;}
.x0_c00059{left:0.000000px;}
.x2_c00059{left:127.620000px;}
.x3_c00059{left:148.950000px;}
.x1_c00059{left:704.880000px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls4_c00059{letter-spacing:-0.115200pt;}
.ls3_c00059{letter-spacing:-0.096000pt;}
.lsd_c00059{letter-spacing:-0.070400pt;}
.ls11_c00059{letter-spacing:-0.064000pt;}
.ls2_c00059{letter-spacing:-0.057600pt;}
.ls9_c00059{letter-spacing:-0.051200pt;}
.ls10_c00059{letter-spacing:-0.044800pt;}
.ls6_c00059{letter-spacing:-0.038400pt;}
.lsa_c00059{letter-spacing:-0.032000pt;}
.lse_c00059{letter-spacing:-0.025600pt;}
.ls7_c00059{letter-spacing:-0.019200pt;}
.ls8_c00059{letter-spacing:-0.012800pt;}
.ls5_c00059{letter-spacing:-0.006400pt;}
.ls1_c00059{letter-spacing:0.000000pt;}
.lsf_c00059{letter-spacing:0.006400pt;}
.lsc_c00059{letter-spacing:0.025600pt;}
.lsb_c00059{letter-spacing:0.128000pt;}
.ls0_c00059{letter-spacing:0.140800pt;}
.ws1_c00059{word-spacing:-17.753600pt;}
.ws0_c00059{word-spacing:-17.696000pt;}
.ws13_c00059{word-spacing:-3.673600pt;}
.wsd_c00059{word-spacing:-3.507200pt;}
.wsc_c00059{word-spacing:-3.340800pt;}
.wse_c00059{word-spacing:-3.308800pt;}
.wsa_c00059{word-spacing:-3.027200pt;}
.ws9_c00059{word-spacing:-3.001600pt;}
.ws24_c00059{word-spacing:-0.870400pt;}
.ws25_c00059{word-spacing:-0.793600pt;}
.ws2_c00059{word-spacing:0.000000pt;}
.ws15_c00059{word-spacing:0.134400pt;}
.wsb_c00059{word-spacing:0.147200pt;}
.ws27_c00059{word-spacing:0.160000pt;}
.ws33_c00059{word-spacing:0.172800pt;}
.ws14_c00059{word-spacing:0.179200pt;}
.ws26_c00059{word-spacing:0.236800pt;}
.ws3_c00059{word-spacing:1.158400pt;}
.ws4_c00059{word-spacing:1.216000pt;}
.ws17_c00059{word-spacing:1.292800pt;}
.ws18_c00059{word-spacing:1.331200pt;}
.ws16_c00059{word-spacing:1.363200pt;}
.ws34_c00059{word-spacing:1.516800pt;}
.ws2e_c00059{word-spacing:2.739200pt;}
.ws23_c00059{word-spacing:3.033600pt;}
.ws35_c00059{word-spacing:3.040000pt;}
.ws36_c00059{word-spacing:3.059200pt;}
.ws12_c00059{word-spacing:4.012800pt;}
.ws11_c00059{word-spacing:4.070400pt;}
.ws1b_c00059{word-spacing:4.313600pt;}
.ws1c_c00059{word-spacing:4.320000pt;}
.ws1d_c00059{word-spacing:4.614400pt;}
.ws1e_c00059{word-spacing:4.665600pt;}
.ws32_c00059{word-spacing:4.780800pt;}
.ws30_c00059{word-spacing:4.966400pt;}
.ws31_c00059{word-spacing:5.075200pt;}
.ws20_c00059{word-spacing:5.235200pt;}
.ws1f_c00059{word-spacing:5.241600pt;}
.ws2f_c00059{word-spacing:5.932800pt;}
.ws8_c00059{word-spacing:7.193600pt;}
.ws7_c00059{word-spacing:7.283200pt;}
.ws19_c00059{word-spacing:7.462400pt;}
.ws1a_c00059{word-spacing:7.500800pt;}
.ws21_c00059{word-spacing:8.147200pt;}
.ws22_c00059{word-spacing:8.185600pt;}
.ws29_c00059{word-spacing:11.340800pt;}
.ws28_c00059{word-spacing:11.385600pt;}
.ws2c_c00059{word-spacing:14.022400pt;}
.ws2d_c00059{word-spacing:14.080000pt;}
.ws2a_c00059{word-spacing:17.747200pt;}
.ws2b_c00059{word-spacing:17.875200pt;}
.ws10_c00059{word-spacing:22.566400pt;}
.wsf_c00059{word-spacing:22.592000pt;}
.ws5_c00059{word-spacing:28.627200pt;}
.ws6_c00059{word-spacing:28.640000pt;}
._1_c00059{margin-left:-1.088000pt;}
._0_c00059{width:1.164800pt;}
.fs0_c00059{font-size:64.000000pt;}
.y0_c00059{bottom:0.000000pt;}
.y2_c00059{bottom:41.627067pt;}
.y1_c00059{bottom:60.027067pt;}
.y20_c00059{bottom:155.947067pt;}
.y1f_c00059{bottom:183.547067pt;}
.y1e_c00059{bottom:211.147067pt;}
.y1d_c00059{bottom:245.547067pt;}
.y1c_c00059{bottom:263.947067pt;}
.y1b_c00059{bottom:282.347067pt;}
.y1a_c00059{bottom:300.747067pt;}
.y19_c00059{bottom:344.347067pt;}
.y18_c00059{bottom:371.947067pt;}
.y17_c00059{bottom:399.547067pt;}
.y16_c00059{bottom:427.147067pt;}
.y15_c00059{bottom:462.667067pt;}
.y14_c00059{bottom:490.267067pt;}
.y13_c00059{bottom:517.867067pt;}
.y12_c00059{bottom:545.467067pt;}
.y11_c00059{bottom:573.067067pt;}
.y10_c00059{bottom:600.667067pt;}
.yf_c00059{bottom:628.267067pt;}
.ye_c00059{bottom:655.867067pt;}
.yd_c00059{bottom:683.467067pt;}
.yc_c00059{bottom:719.067067pt;}
.yb_c00059{bottom:746.667067pt;}
.ya_c00059{bottom:774.267067pt;}
.y9_c00059{bottom:801.867067pt;}
.y8_c00059{bottom:829.547067pt;}
.y7_c00059{bottom:865.147067pt;}
.y6_c00059{bottom:892.747067pt;}
.y5_c00059{bottom:920.347067pt;}
.y4_c00059{bottom:947.947067pt;}
.y3_c00059{bottom:975.547067pt;}
.h1_c00059{height:56.156250pt;}
.h3_c00059{height:57.375000pt;}
.h2_c00059{height:66.750000pt;}
.h0_c00059{height:1122.666667pt;}
.w1_c00059{width:793.333333pt;}
.w0_c00059{width:793.626667pt;}
.x0_c00059{left:0.000000pt;}
.x2_c00059{left:113.440000pt;}
.x3_c00059{left:132.400000pt;}
.x1_c00059{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c14ef6021a0cbae5b883f7d1.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.093262;font-style:normal;font-weight:normal;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_918ac54c061db6034f178738.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.106934;font-style:normal;font-weight:normal;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_6631d0d59b8fb6811a140dce.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls9_c00060{letter-spacing:-0.108000px;}
.ls6_c00060{letter-spacing:-0.086400px;}
.lse_c00060{letter-spacing:-0.079200px;}
.ls7_c00060{letter-spacing:-0.064800px;}
.lsd_c00060{letter-spacing:-0.057600px;}
.ls5_c00060{letter-spacing:-0.050400px;}
.lsc_c00060{letter-spacing:-0.043200px;}
.lsa_c00060{letter-spacing:-0.036000px;}
.ls3_c00060{letter-spacing:-0.028800px;}
.ls8_c00060{letter-spacing:-0.021600px;}
.lsf_c00060{letter-spacing:-0.014400px;}
.ls4_c00060{letter-spacing:-0.007200px;}
.ls2_c00060{letter-spacing:0.000000px;}
.lsb_c00060{letter-spacing:0.079200px;}
.ls1_c00060{letter-spacing:0.144000px;}
.ls0_c00060{letter-spacing:0.504000px;}
.ls10_c00060{letter-spacing:843.998400px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00060{word-spacing:-19.965600px;}
.ws1_c00060{word-spacing:0.000000px;}
.ws14_c00060{word-spacing:0.007200px;}
.wsb_c00060{word-spacing:0.079200px;}
.ws1a_c00060{word-spacing:0.158400px;}
.wsf_c00060{word-spacing:0.165600px;}
.ws15_c00060{word-spacing:0.172800px;}
.ws2_c00060{word-spacing:0.187200px;}
.wsa_c00060{word-spacing:0.194400px;}
.ws3_c00060{word-spacing:0.446400px;}
.ws5_c00060{word-spacing:0.482400px;}
.ws4_c00060{word-spacing:0.525600px;}
.ws6_c00060{word-spacing:0.583200px;}
.wsd_c00060{word-spacing:2.664000px;}
.wse_c00060{word-spacing:2.707200px;}
.wsc_c00060{word-spacing:2.721600px;}
.ws13_c00060{word-spacing:4.478400px;}
.ws12_c00060{word-spacing:4.492800px;}
.ws19_c00060{word-spacing:8.481600px;}
.ws18_c00060{word-spacing:8.647200px;}
.ws16_c00060{word-spacing:9.554400px;}
.ws17_c00060{word-spacing:9.561600px;}
.ws11_c00060{word-spacing:36.201600px;}
.ws10_c00060{word-spacing:36.208800px;}
.ws7_c00060{word-spacing:39.780000px;}
.ws9_c00060{word-spacing:39.808800px;}
.ws8_c00060{word-spacing:39.866400px;}
._1_c00060{margin-left:-39.600000px;}
._0_c00060{width:1.072800px;}
.fc0_c00060{color:rgb(0,0,0);}
.fs0_c00060{font-size:72.000000px;}
.y0_c00060{bottom:0.000000px;}
.y2_c00060{bottom:46.830450px;}
.y1_c00060{bottom:67.530450px;}
.y12_c00060{bottom:590.790450px;}
.y11_c00060{bottom:630.840450px;}
.y10_c00060{bottom:670.890450px;}
.yf_c00060{bottom:701.940450px;}
.ye_c00060{bottom:732.990450px;}
.yd_c00060{bottom:773.040450px;}
.yc_c00060{bottom:804.090450px;}
.yb_c00060{bottom:835.140450px;}
.ya_c00060{bottom:875.100450px;}
.y9_c00060{bottom:913.890450px;}
.y8_c00060{bottom:934.590450px;}
.y7_c00060{bottom:955.290450px;}
.y6_c00060{bottom:1004.340450px;}
.y5_c00060{bottom:1035.390450px;}
.y4_c00060{bottom:1066.440450px;}
.y3_c00060{bottom:1097.490450px;}
.h1_c00060{height:63.175781px;}
.h2_c00060{height:64.546875px;}
.h3_c00060{height:75.093750px;}
.h0_c00060{height:1263.000000px;}
.w1_c00060{width:892.500000px;}
.w0_c00060{width:892.830000px;}
.x0_c00060{left:0.000000px;}
.x2_c00060{left:170.100000px;}
.x3_c00060{left:191.430000px;}
.x1_c00060{left:747.360000px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls9_c00060{letter-spacing:-0.096000pt;}
.ls6_c00060{letter-spacing:-0.076800pt;}
.lse_c00060{letter-spacing:-0.070400pt;}
.ls7_c00060{letter-spacing:-0.057600pt;}
.lsd_c00060{letter-spacing:-0.051200pt;}
.ls5_c00060{letter-spacing:-0.044800pt;}
.lsc_c00060{letter-spacing:-0.038400pt;}
.lsa_c00060{letter-spacing:-0.032000pt;}
.ls3_c00060{letter-spacing:-0.025600pt;}
.ls8_c00060{letter-spacing:-0.019200pt;}
.lsf_c00060{letter-spacing:-0.012800pt;}
.ls4_c00060{letter-spacing:-0.006400pt;}
.ls2_c00060{letter-spacing:0.000000pt;}
.lsb_c00060{letter-spacing:0.070400pt;}
.ls1_c00060{letter-spacing:0.128000pt;}
.ls0_c00060{letter-spacing:0.448000pt;}
.ls10_c00060{letter-spacing:750.220800pt;}
.ws0_c00060{word-spacing:-17.747200pt;}
.ws1_c00060{word-spacing:0.000000pt;}
.ws14_c00060{word-spacing:0.006400pt;}
.wsb_c00060{word-spacing:0.070400pt;}
.ws1a_c00060{word-spacing:0.140800pt;}
.wsf_c00060{word-spacing:0.147200pt;}
.ws15_c00060{word-spacing:0.153600pt;}
.ws2_c00060{word-spacing:0.166400pt;}
.wsa_c00060{word-spacing:0.172800pt;}
.ws3_c00060{word-spacing:0.396800pt;}
.ws5_c00060{word-spacing:0.428800pt;}
.ws4_c00060{word-spacing:0.467200pt;}
.ws6_c00060{word-spacing:0.518400pt;}
.wsd_c00060{word-spacing:2.368000pt;}
.wse_c00060{word-spacing:2.406400pt;}
.wsc_c00060{word-spacing:2.419200pt;}
.ws13_c00060{word-spacing:3.980800pt;}
.ws12_c00060{word-spacing:3.993600pt;}
.ws19_c00060{word-spacing:7.539200pt;}
.ws18_c00060{word-spacing:7.686400pt;}
.ws16_c00060{word-spacing:8.492800pt;}
.ws17_c00060{word-spacing:8.499200pt;}
.ws11_c00060{word-spacing:32.179200pt;}
.ws10_c00060{word-spacing:32.185600pt;}
.ws7_c00060{word-spacing:35.360000pt;}
.ws9_c00060{word-spacing:35.385600pt;}
.ws8_c00060{word-spacing:35.436800pt;}
._1_c00060{margin-left:-35.200000pt;}
._0_c00060{width:0.953600pt;}
.fs0_c00060{font-size:64.000000pt;}
.y0_c00060{bottom:0.000000pt;}
.y2_c00060{bottom:41.627067pt;}
.y1_c00060{bottom:60.027067pt;}
.y12_c00060{bottom:525.147067pt;}
.y11_c00060{bottom:560.747067pt;}
.y10_c00060{bottom:596.347067pt;}
.yf_c00060{bottom:623.947067pt;}
.ye_c00060{bottom:651.547067pt;}
.yd_c00060{bottom:687.147067pt;}
.yc_c00060{bottom:714.747067pt;}
.yb_c00060{bottom:742.347067pt;}
.ya_c00060{bottom:777.867067pt;}
.y9_c00060{bottom:812.347067pt;}
.y8_c00060{bottom:830.747067pt;}
.y7_c00060{bottom:849.147067pt;}
.y6_c00060{bottom:892.747067pt;}
.y5_c00060{bottom:920.347067pt;}
.y4_c00060{bottom:947.947067pt;}
.y3_c00060{bottom:975.547067pt;}
.h1_c00060{height:56.156250pt;}
.h2_c00060{height:57.375000pt;}
.h3_c00060{height:66.750000pt;}
.h0_c00060{height:1122.666667pt;}
.w1_c00060{width:793.333333pt;}
.w0_c00060{width:793.626667pt;}
.x0_c00060{left:0.000000pt;}
.x2_c00060{left:151.200000pt;}
.x3_c00060{left:170.160000pt;}
.x1_c00060{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_042e6384f52f3042db6b7fff.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:1.106934;font-style: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;}
.ls0_c00061{letter-spacing:0.000000px;}
.sc__c00061{text-shadow:none;}
.sc0_c00061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00061{-webkit-text-stroke:0px transparent;}
.sc0_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00061{word-spacing:0.000000px;}
.fc0_c00061{color:rgb(0,0,0);}
.fs0_c00061{font-size:72.000000px;}
.y0_c00061{bottom:0.000000px;}
.y2_c00061{bottom:46.830450px;}
.y1_c00061{bottom:67.530450px;}
.y3_c00061{bottom:1097.490450px;}
.h1_c00061{height:63.175781px;}
.h2_c00061{height:64.546875px;}
.h0_c00061{height:1263.000000px;}
.w1_c00061{width:892.500000px;}
.w0_c00061{width:892.830000px;}
.x0_c00061{left:0.000000px;}
.x2_c00061{left:127.620000px;}
.x1_c00061{left:704.880000px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls0_c00061{letter-spacing:0.000000pt;}
.ws0_c00061{word-spacing:0.000000pt;}
.fs0_c00061{font-size:64.000000pt;}
.y0_c00061{bottom:0.000000pt;}
.y2_c00061{bottom:41.627067pt;}
.y1_c00061{bottom:60.027067pt;}
.y3_c00061{bottom:975.547067pt;}
.h1_c00061{height:56.156250pt;}
.h2_c00061{height:57.375000pt;}
.h0_c00061{height:1122.666667pt;}
.w1_c00061{width:793.333333pt;}
.w0_c00061{width:793.626667pt;}
.x0_c00061{left:0.000000pt;}
.x2_c00061{left:113.440000pt;}
.x1_c00061{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cf5a0d503ca1b88499e301a0.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.093262;font-style:normal;font-weight:normal;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_d2d7823a4230451e5c6925e7.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00062;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00062;src:url('chunks/assets/font_d590533a8271c6aa0e5da5fc.woff2')format("woff");}.ff4_c00062{font-family:ff4_c00062;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00062;src:url('chunks/assets/font_7ea30f166241488d44527c50.woff2')format("woff");}.ff5_c00062{font-family:ff5_c00062;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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:-0.144000px;}
.lsd_c00062{letter-spacing:-0.108000px;}
.lse_c00062{letter-spacing:-0.093600px;}
.ls16_c00062{letter-spacing:-0.086400px;}
.ls13_c00062{letter-spacing:-0.072000px;}
.ls15_c00062{letter-spacing:-0.064800px;}
.ls11_c00062{letter-spacing:-0.057600px;}
.ls14_c00062{letter-spacing:-0.050400px;}
.lsa_c00062{letter-spacing:-0.043200px;}
.lsc_c00062{letter-spacing:-0.036000px;}
.lsb_c00062{letter-spacing:-0.028800px;}
.ls8_c00062{letter-spacing:-0.021600px;}
.ls10_c00062{letter-spacing:-0.014400px;}
.ls7_c00062{letter-spacing:-0.008388px;}
.lsf_c00062{letter-spacing:-0.007200px;}
.ls6_c00062{letter-spacing:0.000000px;}
.ls4_c00062{letter-spacing:0.007200px;}
.ls2_c00062{letter-spacing:0.014400px;}
.ls12_c00062{letter-spacing:0.036000px;}
.ls5_c00062{letter-spacing:0.057600px;}
.ls0_c00062{letter-spacing:0.058716px;}
.ls1_c00062{letter-spacing:0.067104px;}
.ls3_c00062{letter-spacing:0.144000px;}
.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;}
}
.ws3_c00062{word-spacing:-20.073600px;}
.ws2_c00062{word-spacing:-20.023200px;}
.ws1_c00062{word-spacing:-19.908000px;}
.ws0_c00062{word-spacing:-19.872000px;}
.ws2d_c00062{word-spacing:-1.994400px;}
.ws2c_c00062{word-spacing:-1.980000px;}
.ws26_c00062{word-spacing:-1.936800px;}
.ws25_c00062{word-spacing:-1.893600px;}
.ws12_c00062{word-spacing:-1.339200px;}
.ws13_c00062{word-spacing:-1.188000px;}
.ws28_c00062{word-spacing:-0.187200px;}
.ws27_c00062{word-spacing:-0.165600px;}
.ws4_c00062{word-spacing:0.000000px;}
.ws5_c00062{word-spacing:0.033552px;}
.ws2b_c00062{word-spacing:0.093600px;}
.ws6_c00062{word-spacing:0.100656px;}
.wsd_c00062{word-spacing:0.324000px;}
.wse_c00062{word-spacing:0.540000px;}
.ws19_c00062{word-spacing:0.547200px;}
.wsf_c00062{word-spacing:0.734400px;}
.ws18_c00062{word-spacing:0.907200px;}
.ws31_c00062{word-spacing:1.944000px;}
.ws32_c00062{word-spacing:2.088000px;}
.ws33_c00062{word-spacing:2.102400px;}
.ws15_c00062{word-spacing:4.420800px;}
.ws14_c00062{word-spacing:4.485600px;}
.ws2f_c00062{word-spacing:4.507200px;}
.ws30_c00062{word-spacing:4.579200px;}
.ws1d_c00062{word-spacing:4.867200px;}
.ws1c_c00062{word-spacing:5.018400px;}
.wsa_c00062{word-spacing:5.580000px;}
.ws9_c00062{word-spacing:5.587200px;}
.wsc_c00062{word-spacing:5.947200px;}
.wsb_c00062{word-spacing:6.012000px;}
.ws29_c00062{word-spacing:6.292800px;}
.ws2a_c00062{word-spacing:6.343200px;}
.ws8_c00062{word-spacing:6.624000px;}
.ws7_c00062{word-spacing:6.660000px;}
.ws1f_c00062{word-spacing:7.020000px;}
.ws1e_c00062{word-spacing:7.027200px;}
.ws34_c00062{word-spacing:7.653600px;}
.ws35_c00062{word-spacing:7.754400px;}
.ws2e_c00062{word-spacing:8.107200px;}
.ws16_c00062{word-spacing:9.201600px;}
.ws17_c00062{word-spacing:9.216000px;}
.ws10_c00062{word-spacing:12.420000px;}
.ws11_c00062{word-spacing:12.434400px;}
.ws1b_c00062{word-spacing:14.234400px;}
.ws1a_c00062{word-spacing:14.299200px;}
.ws21_c00062{word-spacing:17.841600px;}
.ws20_c00062{word-spacing:17.870400px;}
.ws22_c00062{word-spacing:30.427200px;}
.ws24_c00062{word-spacing:30.441600px;}
.ws23_c00062{word-spacing:30.477600px;}
._1_c00062{width:1.195200px;}
._0_c00062{width:187.555680px;}
.fc0_c00062{color:rgb(0,0,0);}
.fs0_c00062{font-size:72.000000px;}
.fs1_c00062{font-size:83.880000px;}
.y0_c00062{bottom:0.000000px;}
.y2_c00062{bottom:46.830450px;}
.y1_c00062{bottom:67.530450px;}
.y1f_c00062{bottom:193.800450px;}
.y1e_c00062{bottom:224.850450px;}
.y1d_c00062{bottom:255.900450px;}
.y1c_c00062{bottom:286.950450px;}
.y1b_c00062{bottom:318.000450px;}
.y1a_c00062{bottom:349.050450px;}
.y19_c00062{bottom:398.100450px;}
.y18_c00062{bottom:429.150450px;}
.y17_c00062{bottom:460.200450px;}
.y16_c00062{bottom:491.250450px;}
.y15_c00062{bottom:522.300450px;}
.y14_c00062{bottom:553.350450px;}
.y13_c00062{bottom:584.400450px;}
.y12_c00062{bottom:615.450450px;}
.y11_c00062{bottom:664.500450px;}
.y10_c00062{bottom:695.550450px;}
.yf_c00062{bottom:726.510450px;}
.ye_c00062{bottom:757.560450px;}
.yd_c00062{bottom:788.610450px;}
.yc_c00062{bottom:819.660450px;}
.yb_c00062{bottom:850.710450px;}
.ya_c00062{bottom:881.760450px;}
.y9_c00062{bottom:912.810450px;}
.y8_c00062{bottom:943.860450px;}
.y7_c00062{bottom:974.910450px;}
.y6_c00062{bottom:1005.960450px;}
.y5_c00062{bottom:1044.570450px;}
.y4_c00062{bottom:1070.404950px;}
.y3_c00062{bottom:1094.520450px;}
.h1_c00062{height:63.175781px;}
.h4_c00062{height:64.546875px;}
.h3_c00062{height:75.093750px;}
.h2_c00062{height:87.484219px;}
.h0_c00062{height:1263.000000px;}
.w1_c00062{width:892.500000px;}
.w0_c00062{width:892.830000px;}
.x0_c00062{left:0.000000px;}
.x2_c00062{left:170.100000px;}
.x3_c00062{left:224.100000px;}
.x4_c00062{left:261.908910px;}
.x1_c00062{left:747.360000px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls9_c00062{letter-spacing:-0.128000pt;}
.lsd_c00062{letter-spacing:-0.096000pt;}
.lse_c00062{letter-spacing:-0.083200pt;}
.ls16_c00062{letter-spacing:-0.076800pt;}
.ls13_c00062{letter-spacing:-0.064000pt;}
.ls15_c00062{letter-spacing:-0.057600pt;}
.ls11_c00062{letter-spacing:-0.051200pt;}
.ls14_c00062{letter-spacing:-0.044800pt;}
.lsa_c00062{letter-spacing:-0.038400pt;}
.lsc_c00062{letter-spacing:-0.032000pt;}
.lsb_c00062{letter-spacing:-0.025600pt;}
.ls8_c00062{letter-spacing:-0.019200pt;}
.ls10_c00062{letter-spacing:-0.012800pt;}
.ls7_c00062{letter-spacing:-0.007456pt;}
.lsf_c00062{letter-spacing:-0.006400pt;}
.ls6_c00062{letter-spacing:0.000000pt;}
.ls4_c00062{letter-spacing:0.006400pt;}
.ls2_c00062{letter-spacing:0.012800pt;}
.ls12_c00062{letter-spacing:0.032000pt;}
.ls5_c00062{letter-spacing:0.051200pt;}
.ls0_c00062{letter-spacing:0.052192pt;}
.ls1_c00062{letter-spacing:0.059648pt;}
.ls3_c00062{letter-spacing:0.128000pt;}
.ws3_c00062{word-spacing:-17.843200pt;}
.ws2_c00062{word-spacing:-17.798400pt;}
.ws1_c00062{word-spacing:-17.696000pt;}
.ws0_c00062{word-spacing:-17.664000pt;}
.ws2d_c00062{word-spacing:-1.772800pt;}
.ws2c_c00062{word-spacing:-1.760000pt;}
.ws26_c00062{word-spacing:-1.721600pt;}
.ws25_c00062{word-spacing:-1.683200pt;}
.ws12_c00062{word-spacing:-1.190400pt;}
.ws13_c00062{word-spacing:-1.056000pt;}
.ws28_c00062{word-spacing:-0.166400pt;}
.ws27_c00062{word-spacing:-0.147200pt;}
.ws4_c00062{word-spacing:0.000000pt;}
.ws5_c00062{word-spacing:0.029824pt;}
.ws2b_c00062{word-spacing:0.083200pt;}
.ws6_c00062{word-spacing:0.089472pt;}
.wsd_c00062{word-spacing:0.288000pt;}
.wse_c00062{word-spacing:0.480000pt;}
.ws19_c00062{word-spacing:0.486400pt;}
.wsf_c00062{word-spacing:0.652800pt;}
.ws18_c00062{word-spacing:0.806400pt;}
.ws31_c00062{word-spacing:1.728000pt;}
.ws32_c00062{word-spacing:1.856000pt;}
.ws33_c00062{word-spacing:1.868800pt;}
.ws15_c00062{word-spacing:3.929600pt;}
.ws14_c00062{word-spacing:3.987200pt;}
.ws2f_c00062{word-spacing:4.006400pt;}
.ws30_c00062{word-spacing:4.070400pt;}
.ws1d_c00062{word-spacing:4.326400pt;}
.ws1c_c00062{word-spacing:4.460800pt;}
.wsa_c00062{word-spacing:4.960000pt;}
.ws9_c00062{word-spacing:4.966400pt;}
.wsc_c00062{word-spacing:5.286400pt;}
.wsb_c00062{word-spacing:5.344000pt;}
.ws29_c00062{word-spacing:5.593600pt;}
.ws2a_c00062{word-spacing:5.638400pt;}
.ws8_c00062{word-spacing:5.888000pt;}
.ws7_c00062{word-spacing:5.920000pt;}
.ws1f_c00062{word-spacing:6.240000pt;}
.ws1e_c00062{word-spacing:6.246400pt;}
.ws34_c00062{word-spacing:6.803200pt;}
.ws35_c00062{word-spacing:6.892800pt;}
.ws2e_c00062{word-spacing:7.206400pt;}
.ws16_c00062{word-spacing:8.179200pt;}
.ws17_c00062{word-spacing:8.192000pt;}
.ws10_c00062{word-spacing:11.040000pt;}
.ws11_c00062{word-spacing:11.052800pt;}
.ws1b_c00062{word-spacing:12.652800pt;}
.ws1a_c00062{word-spacing:12.710400pt;}
.ws21_c00062{word-spacing:15.859200pt;}
.ws20_c00062{word-spacing:15.884800pt;}
.ws22_c00062{word-spacing:27.046400pt;}
.ws24_c00062{word-spacing:27.059200pt;}
.ws23_c00062{word-spacing:27.091200pt;}
._1_c00062{width:1.062400pt;}
._0_c00062{width:166.716160pt;}
.fs0_c00062{font-size:64.000000pt;}
.fs1_c00062{font-size:74.560000pt;}
.y0_c00062{bottom:0.000000pt;}
.y2_c00062{bottom:41.627067pt;}
.y1_c00062{bottom:60.027067pt;}
.y1f_c00062{bottom:172.267067pt;}
.y1e_c00062{bottom:199.867067pt;}
.y1d_c00062{bottom:227.467067pt;}
.y1c_c00062{bottom:255.067067pt;}
.y1b_c00062{bottom:282.667067pt;}
.y1a_c00062{bottom:310.267067pt;}
.y19_c00062{bottom:353.867067pt;}
.y18_c00062{bottom:381.467067pt;}
.y17_c00062{bottom:409.067067pt;}
.y16_c00062{bottom:436.667067pt;}
.y15_c00062{bottom:464.267067pt;}
.y14_c00062{bottom:491.867067pt;}
.y13_c00062{bottom:519.467067pt;}
.y12_c00062{bottom:547.067067pt;}
.y11_c00062{bottom:590.667067pt;}
.y10_c00062{bottom:618.267067pt;}
.yf_c00062{bottom:645.787067pt;}
.ye_c00062{bottom:673.387067pt;}
.yd_c00062{bottom:700.987067pt;}
.yc_c00062{bottom:728.587067pt;}
.yb_c00062{bottom:756.187067pt;}
.ya_c00062{bottom:783.787067pt;}
.y9_c00062{bottom:811.387067pt;}
.y8_c00062{bottom:838.987067pt;}
.y7_c00062{bottom:866.587067pt;}
.y6_c00062{bottom:894.187067pt;}
.y5_c00062{bottom:928.507067pt;}
.y4_c00062{bottom:951.471067pt;}
.y3_c00062{bottom:972.907067pt;}
.h1_c00062{height:56.156250pt;}
.h4_c00062{height:57.375000pt;}
.h3_c00062{height:66.750000pt;}
.h2_c00062{height:77.763750pt;}
.h0_c00062{height:1122.666667pt;}
.w1_c00062{width:793.333333pt;}
.w0_c00062{width:793.626667pt;}
.x0_c00062{left:0.000000pt;}
.x2_c00062{left:151.200000pt;}
.x3_c00062{left:199.200000pt;}
.x4_c00062{left:232.807920pt;}
.x1_c00062{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_19423bf568ddc73215ce0ea9.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.093262;font-style:normal;font-weight:normal;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_72b280a8c5e32d4582edb989.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.106934;font-style:normal;font-weight:normal;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_2f609040e2f1d71eb1ca7c4f.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.lsc_c00063{letter-spacing:-0.072000px;}
.lsd_c00063{letter-spacing:-0.064800px;}
.ls6_c00063{letter-spacing:-0.057600px;}
.ls9_c00063{letter-spacing:-0.050400px;}
.ls8_c00063{letter-spacing:-0.043200px;}
.ls5_c00063{letter-spacing:-0.036000px;}
.ls4_c00063{letter-spacing:-0.028800px;}
.ls7_c00063{letter-spacing:-0.021600px;}
.lsa_c00063{letter-spacing:-0.014400px;}
.lsb_c00063{letter-spacing:-0.007200px;}
.ls3_c00063{letter-spacing:0.000000px;}
.ls1_c00063{letter-spacing:0.007200px;}
.ls2_c00063{letter-spacing:0.021600px;}
.ls0_c00063{letter-spacing:0.144000px;}
.sc__c00063{text-shadow:none;}
.sc0_c00063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00063{-webkit-text-stroke:0px transparent;}
.sc0_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00063{word-spacing:-20.016000px;}
.ws1f_c00063{word-spacing:-4.125600px;}
.ws1a_c00063{word-spacing:-4.111200px;}
.ws30_c00063{word-spacing:-3.628800px;}
.ws31_c00063{word-spacing:-3.456000px;}
.ws15_c00063{word-spacing:-3.427200px;}
.ws32_c00063{word-spacing:-3.376800px;}
.ws14_c00063{word-spacing:-3.319200px;}
.ws35_c00063{word-spacing:-2.707200px;}
.ws2f_c00063{word-spacing:-2.008800px;}
.ws2e_c00063{word-spacing:-1.980000px;}
.ws2c_c00063{word-spacing:-1.620000px;}
.ws2d_c00063{word-spacing:-1.526400px;}
.ws3_c00063{word-spacing:-0.525600px;}
.ws4_c00063{word-spacing:-0.504000px;}
.ws1_c00063{word-spacing:0.000000px;}
.ws36_c00063{word-spacing:0.136800px;}
.ws20_c00063{word-spacing:0.187200px;}
.wsc_c00063{word-spacing:0.201600px;}
.ws21_c00063{word-spacing:0.223200px;}
.ws28_c00063{word-spacing:0.460800px;}
.ws27_c00063{word-spacing:0.547200px;}
.ws34_c00063{word-spacing:2.404800px;}
.ws33_c00063{word-spacing:2.793600px;}
.ws8_c00063{word-spacing:4.867200px;}
.ws18_c00063{word-spacing:5.486400px;}
.ws19_c00063{word-spacing:5.594400px;}
.wsb_c00063{word-spacing:8.820000px;}
.ws9_c00063{word-spacing:8.827200px;}
.wsa_c00063{word-spacing:8.978400px;}
.ws2a_c00063{word-spacing:10.238400px;}
.ws2b_c00063{word-spacing:10.260000px;}
.ws13_c00063{word-spacing:11.642400px;}
.ws12_c00063{word-spacing:11.692800px;}
.ws24_c00063{word-spacing:11.714400px;}
.ws17_c00063{word-spacing:12.060000px;}
.ws16_c00063{word-spacing:12.132000px;}
.ws2_c00063{word-spacing:13.147200px;}
.ws1c_c00063{word-spacing:13.838400px;}
.ws1b_c00063{word-spacing:13.896000px;}
.ws11_c00063{word-spacing:14.508000px;}
.ws10_c00063{word-spacing:14.594400px;}
.ws6_c00063{word-spacing:14.947200px;}
.ws7_c00063{word-spacing:14.990400px;}
.ws23_c00063{word-spacing:16.005600px;}
.ws22_c00063{word-spacing:16.077600px;}
.wse_c00063{word-spacing:16.646400px;}
.wsd_c00063{word-spacing:16.754400px;}
.wsf_c00063{word-spacing:16.776000px;}
.ws25_c00063{word-spacing:25.380000px;}
.ws26_c00063{word-spacing:25.459200px;}
.ws5_c00063{word-spacing:26.136000px;}
.ws29_c00063{word-spacing:26.841600px;}
.ws1d_c00063{word-spacing:41.572800px;}
.ws1e_c00063{word-spacing:41.587200px;}
._1_c00063{margin-left:-15.912000px;}
._2_c00063{margin-left:-1.152000px;}
._0_c00063{width:1.144800px;}
.fc0_c00063{color:rgb(0,0,0);}
.fs0_c00063{font-size:72.000000px;}
.y0_c00063{bottom:0.000000px;}
.y2_c00063{bottom:46.830450px;}
.y1_c00063{bottom:67.530450px;}
.y23_c00063{bottom:132.780450px;}
.y22_c00063{bottom:163.740450px;}
.y21_c00063{bottom:194.790450px;}
.y20_c00063{bottom:225.930450px;}
.y1f_c00063{bottom:256.980450px;}
.y1e_c00063{bottom:288.030450px;}
.y1d_c00063{bottom:319.080450px;}
.y1c_c00063{bottom:350.040450px;}
.y1b_c00063{bottom:381.090450px;}
.y1a_c00063{bottom:412.140450px;}
.y19_c00063{bottom:443.190450px;}
.y18_c00063{bottom:474.240450px;}
.y17_c00063{bottom:505.290450px;}
.y16_c00063{bottom:554.340450px;}
.y15_c00063{bottom:585.390450px;}
.y14_c00063{bottom:616.440450px;}
.y13_c00063{bottom:647.490450px;}
.y12_c00063{bottom:678.540450px;}
.y11_c00063{bottom:709.590450px;}
.y10_c00063{bottom:740.640450px;}
.yf_c00063{bottom:771.690450px;}
.ye_c00063{bottom:802.740450px;}
.yd_c00063{bottom:833.790450px;}
.yc_c00063{bottom:864.840450px;}
.yb_c00063{bottom:913.890450px;}
.ya_c00063{bottom:952.590450px;}
.y9_c00063{bottom:973.290450px;}
.y8_c00063{bottom:993.990450px;}
.y7_c00063{bottom:1014.690450px;}
.y6_c00063{bottom:1035.390450px;}
.y5_c00063{bottom:1056.090450px;}
.y4_c00063{bottom:1076.790450px;}
.y3_c00063{bottom:1097.490450px;}
.h1_c00063{height:63.175781px;}
.h2_c00063{height:64.546875px;}
.h3_c00063{height:75.093750px;}
.h0_c00063{height:1263.000000px;}
.w1_c00063{width:892.500000px;}
.w0_c00063{width:892.830000px;}
.x0_c00063{left:0.000000px;}
.x2_c00063{left:127.620000px;}
.x3_c00063{left:148.950000px;}
.x1_c00063{left:704.880000px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.lsc_c00063{letter-spacing:-0.064000pt;}
.lsd_c00063{letter-spacing:-0.057600pt;}
.ls6_c00063{letter-spacing:-0.051200pt;}
.ls9_c00063{letter-spacing:-0.044800pt;}
.ls8_c00063{letter-spacing:-0.038400pt;}
.ls5_c00063{letter-spacing:-0.032000pt;}
.ls4_c00063{letter-spacing:-0.025600pt;}
.ls7_c00063{letter-spacing:-0.019200pt;}
.lsa_c00063{letter-spacing:-0.012800pt;}
.lsb_c00063{letter-spacing:-0.006400pt;}
.ls3_c00063{letter-spacing:0.000000pt;}
.ls1_c00063{letter-spacing:0.006400pt;}
.ls2_c00063{letter-spacing:0.019200pt;}
.ls0_c00063{letter-spacing:0.128000pt;}
.ws0_c00063{word-spacing:-17.792000pt;}
.ws1f_c00063{word-spacing:-3.667200pt;}
.ws1a_c00063{word-spacing:-3.654400pt;}
.ws30_c00063{word-spacing:-3.225600pt;}
.ws31_c00063{word-spacing:-3.072000pt;}
.ws15_c00063{word-spacing:-3.046400pt;}
.ws32_c00063{word-spacing:-3.001600pt;}
.ws14_c00063{word-spacing:-2.950400pt;}
.ws35_c00063{word-spacing:-2.406400pt;}
.ws2f_c00063{word-spacing:-1.785600pt;}
.ws2e_c00063{word-spacing:-1.760000pt;}
.ws2c_c00063{word-spacing:-1.440000pt;}
.ws2d_c00063{word-spacing:-1.356800pt;}
.ws3_c00063{word-spacing:-0.467200pt;}
.ws4_c00063{word-spacing:-0.448000pt;}
.ws1_c00063{word-spacing:0.000000pt;}
.ws36_c00063{word-spacing:0.121600pt;}
.ws20_c00063{word-spacing:0.166400pt;}
.wsc_c00063{word-spacing:0.179200pt;}
.ws21_c00063{word-spacing:0.198400pt;}
.ws28_c00063{word-spacing:0.409600pt;}
.ws27_c00063{word-spacing:0.486400pt;}
.ws34_c00063{word-spacing:2.137600pt;}
.ws33_c00063{word-spacing:2.483200pt;}
.ws8_c00063{word-spacing:4.326400pt;}
.ws18_c00063{word-spacing:4.876800pt;}
.ws19_c00063{word-spacing:4.972800pt;}
.wsb_c00063{word-spacing:7.840000pt;}
.ws9_c00063{word-spacing:7.846400pt;}
.wsa_c00063{word-spacing:7.980800pt;}
.ws2a_c00063{word-spacing:9.100800pt;}
.ws2b_c00063{word-spacing:9.120000pt;}
.ws13_c00063{word-spacing:10.348800pt;}
.ws12_c00063{word-spacing:10.393600pt;}
.ws24_c00063{word-spacing:10.412800pt;}
.ws17_c00063{word-spacing:10.720000pt;}
.ws16_c00063{word-spacing:10.784000pt;}
.ws2_c00063{word-spacing:11.686400pt;}
.ws1c_c00063{word-spacing:12.300800pt;}
.ws1b_c00063{word-spacing:12.352000pt;}
.ws11_c00063{word-spacing:12.896000pt;}
.ws10_c00063{word-spacing:12.972800pt;}
.ws6_c00063{word-spacing:13.286400pt;}
.ws7_c00063{word-spacing:13.324800pt;}
.ws23_c00063{word-spacing:14.227200pt;}
.ws22_c00063{word-spacing:14.291200pt;}
.wse_c00063{word-spacing:14.796800pt;}
.wsd_c00063{word-spacing:14.892800pt;}
.wsf_c00063{word-spacing:14.912000pt;}
.ws25_c00063{word-spacing:22.560000pt;}
.ws26_c00063{word-spacing:22.630400pt;}
.ws5_c00063{word-spacing:23.232000pt;}
.ws29_c00063{word-spacing:23.859200pt;}
.ws1d_c00063{word-spacing:36.953600pt;}
.ws1e_c00063{word-spacing:36.966400pt;}
._1_c00063{margin-left:-14.144000pt;}
._2_c00063{margin-left:-1.024000pt;}
._0_c00063{width:1.017600pt;}
.fs0_c00063{font-size:64.000000pt;}
.y0_c00063{bottom:0.000000pt;}
.y2_c00063{bottom:41.627067pt;}
.y1_c00063{bottom:60.027067pt;}
.y23_c00063{bottom:118.027067pt;}
.y22_c00063{bottom:145.547067pt;}
.y21_c00063{bottom:173.147067pt;}
.y20_c00063{bottom:200.827067pt;}
.y1f_c00063{bottom:228.427067pt;}
.y1e_c00063{bottom:256.027067pt;}
.y1d_c00063{bottom:283.627067pt;}
.y1c_c00063{bottom:311.147067pt;}
.y1b_c00063{bottom:338.747067pt;}
.y1a_c00063{bottom:366.347067pt;}
.y19_c00063{bottom:393.947067pt;}
.y18_c00063{bottom:421.547067pt;}
.y17_c00063{bottom:449.147067pt;}
.y16_c00063{bottom:492.747067pt;}
.y15_c00063{bottom:520.347067pt;}
.y14_c00063{bottom:547.947067pt;}
.y13_c00063{bottom:575.547067pt;}
.y12_c00063{bottom:603.147067pt;}
.y11_c00063{bottom:630.747067pt;}
.y10_c00063{bottom:658.347067pt;}
.yf_c00063{bottom:685.947067pt;}
.ye_c00063{bottom:713.547067pt;}
.yd_c00063{bottom:741.147067pt;}
.yc_c00063{bottom:768.747067pt;}
.yb_c00063{bottom:812.347067pt;}
.ya_c00063{bottom:846.747067pt;}
.y9_c00063{bottom:865.147067pt;}
.y8_c00063{bottom:883.547067pt;}
.y7_c00063{bottom:901.947067pt;}
.y6_c00063{bottom:920.347067pt;}
.y5_c00063{bottom:938.747067pt;}
.y4_c00063{bottom:957.147067pt;}
.y3_c00063{bottom:975.547067pt;}
.h1_c00063{height:56.156250pt;}
.h2_c00063{height:57.375000pt;}
.h3_c00063{height:66.750000pt;}
.h0_c00063{height:1122.666667pt;}
.w1_c00063{width:793.333333pt;}
.w0_c00063{width:793.626667pt;}
.x0_c00063{left:0.000000pt;}
.x2_c00063{left:113.440000pt;}
.x3_c00063{left:132.400000pt;}
.x1_c00063{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_591a42260aa6143fcddeac81.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.093262;font-style:normal;font-weight:normal;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_ec8dd53db2224564f280c630.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00064;src:url('chunks/assets/font_456b86070a50cd400879a37f.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:1.106934;font-style:normal;font-weight:normal;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_7d08a14733b8db027f971298.woff2')format("woff");}.ff4_c00064{font-family:ff4_c00064;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls11_c00064{letter-spacing:-0.115200px;}
.lsb_c00064{letter-spacing:-0.086400px;}
.lsf_c00064{letter-spacing:-0.072000px;}
.ls10_c00064{letter-spacing:-0.064800px;}
.ls9_c00064{letter-spacing:-0.057600px;}
.lsa_c00064{letter-spacing:-0.050400px;}
.ls5_c00064{letter-spacing:-0.043200px;}
.ls6_c00064{letter-spacing:-0.036000px;}
.lse_c00064{letter-spacing:-0.028800px;}
.ls8_c00064{letter-spacing:-0.021600px;}
.ls7_c00064{letter-spacing:-0.014400px;}
.lsd_c00064{letter-spacing:-0.007200px;}
.ls4_c00064{letter-spacing:0.000000px;}
.ls2_c00064{letter-spacing:0.007200px;}
.ls0_c00064{letter-spacing:0.050328px;}
.ls1_c00064{letter-spacing:0.144000px;}
.ls3_c00064{letter-spacing:0.151200px;}
.lsc_c00064{letter-spacing:0.504000px;}
.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:-20.008800px;}
.ws1_c00064{word-spacing:-20.001600px;}
.ws5_c00064{word-spacing:-3.758400px;}
.ws14_c00064{word-spacing:-1.288800px;}
.ws23_c00064{word-spacing:-0.907200px;}
.ws24_c00064{word-spacing:-0.835200px;}
.ws2_c00064{word-spacing:0.000000px;}
.ws4_c00064{word-spacing:0.033552px;}
.ws3_c00064{word-spacing:0.041940px;}
.ws30_c00064{word-spacing:0.072000px;}
.ws2f_c00064{word-spacing:0.100800px;}
.ws39_c00064{word-spacing:0.108000px;}
.ws11_c00064{word-spacing:0.144000px;}
.ws38_c00064{word-spacing:0.165600px;}
.ws25_c00064{word-spacing:0.187200px;}
.ws7_c00064{word-spacing:0.460800px;}
.ws6_c00064{word-spacing:0.489600px;}
.ws2a_c00064{word-spacing:0.892800px;}
.ws29_c00064{word-spacing:0.950400px;}
.wsa_c00064{word-spacing:1.216800px;}
.ws16_c00064{word-spacing:1.260000px;}
.ws15_c00064{word-spacing:1.288800px;}
.wsb_c00064{word-spacing:1.296000px;}
.ws28_c00064{word-spacing:1.303200px;}
.ws10_c00064{word-spacing:2.340000px;}
.wse_c00064{word-spacing:2.368800px;}
.wsf_c00064{word-spacing:2.440800px;}
.ws8_c00064{word-spacing:3.420000px;}
.ws9_c00064{word-spacing:3.441600px;}
.ws1b_c00064{word-spacing:3.607200px;}
.ws1d_c00064{word-spacing:3.967200px;}
.ws1f_c00064{word-spacing:4.132800px;}
.ws2e_c00064{word-spacing:4.154400px;}
.ws2c_c00064{word-spacing:4.168800px;}
.ws1c_c00064{word-spacing:4.183200px;}
.ws1e_c00064{word-spacing:4.233600px;}
.ws2d_c00064{word-spacing:4.284000px;}
.ws36_c00064{word-spacing:4.348800px;}
.ws37_c00064{word-spacing:4.550400px;}
.ws31_c00064{word-spacing:5.349600px;}
.wsc_c00064{word-spacing:5.601600px;}
.wsd_c00064{word-spacing:5.616000px;}
.ws27_c00064{word-spacing:6.292800px;}
.ws26_c00064{word-spacing:6.307200px;}
.ws13_c00064{word-spacing:6.638400px;}
.ws17_c00064{word-spacing:6.724800px;}
.ws12_c00064{word-spacing:6.732000px;}
.ws1a_c00064{word-spacing:9.180000px;}
.ws19_c00064{word-spacing:9.259200px;}
.ws32_c00064{word-spacing:12.067200px;}
.ws33_c00064{word-spacing:12.081600px;}
.ws35_c00064{word-spacing:12.780000px;}
.ws34_c00064{word-spacing:12.873600px;}
.ws18_c00064{word-spacing:14.932800px;}
.ws2b_c00064{word-spacing:15.307200px;}
.ws20_c00064{word-spacing:25.041600px;}
.ws21_c00064{word-spacing:30.758400px;}
.ws22_c00064{word-spacing:30.787200px;}
._1_c00064{width:1.116000px;}
._0_c00064{width:187.555680px;}
.fc0_c00064{color:rgb(0,0,0);}
.fs0_c00064{font-size:72.000000px;}
.fs1_c00064{font-size:83.880000px;}
.y0_c00064{bottom:0.000000px;}
.y2_c00064{bottom:46.830450px;}
.y1_c00064{bottom:67.530450px;}
.y22_c00064{bottom:145.200450px;}
.y21_c00064{bottom:165.900450px;}
.y20_c00064{bottom:186.600450px;}
.y1f_c00064{bottom:207.300450px;}
.y1e_c00064{bottom:228.000450px;}
.y1d_c00064{bottom:268.050450px;}
.y1c_c00064{bottom:299.100450px;}
.y1b_c00064{bottom:330.150450px;}
.y1a_c00064{bottom:361.200450px;}
.y19_c00064{bottom:392.250450px;}
.y18_c00064{bottom:423.300450px;}
.y17_c00064{bottom:463.350450px;}
.y16_c00064{bottom:494.400450px;}
.y15_c00064{bottom:525.450450px;}
.y14_c00064{bottom:556.500450px;}
.y13_c00064{bottom:587.550450px;}
.y12_c00064{bottom:618.600450px;}
.y11_c00064{bottom:649.650450px;}
.y10_c00064{bottom:680.700450px;}
.yf_c00064{bottom:711.750450px;}
.ye_c00064{bottom:742.710450px;}
.yd_c00064{bottom:773.760450px;}
.yc_c00064{bottom:813.810450px;}
.yb_c00064{bottom:844.860450px;}
.ya_c00064{bottom:875.910450px;}
.y9_c00064{bottom:906.960450px;}
.y8_c00064{bottom:938.010450px;}
.y7_c00064{bottom:969.060450px;}
.y6_c00064{bottom:1000.110450px;}
.y5_c00064{bottom:1040.160450px;}
.y4_c00064{bottom:1070.404950px;}
.y3_c00064{bottom:1094.520450px;}
.h1_c00064{height:63.175781px;}
.h3_c00064{height:64.546875px;}
.h4_c00064{height:75.093750px;}
.h2_c00064{height:87.484219px;}
.h0_c00064{height:1263.000000px;}
.w1_c00064{width:892.500000px;}
.w0_c00064{width:892.830000px;}
.x0_c00064{left:0.000000px;}
.x2_c00064{left:170.100000px;}
.x5_c00064{left:191.430000px;}
.x3_c00064{left:224.100000px;}
.x4_c00064{left:261.908910px;}
.x1_c00064{left:747.360000px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls11_c00064{letter-spacing:-0.102400pt;}
.lsb_c00064{letter-spacing:-0.076800pt;}
.lsf_c00064{letter-spacing:-0.064000pt;}
.ls10_c00064{letter-spacing:-0.057600pt;}
.ls9_c00064{letter-spacing:-0.051200pt;}
.lsa_c00064{letter-spacing:-0.044800pt;}
.ls5_c00064{letter-spacing:-0.038400pt;}
.ls6_c00064{letter-spacing:-0.032000pt;}
.lse_c00064{letter-spacing:-0.025600pt;}
.ls8_c00064{letter-spacing:-0.019200pt;}
.ls7_c00064{letter-spacing:-0.012800pt;}
.lsd_c00064{letter-spacing:-0.006400pt;}
.ls4_c00064{letter-spacing:0.000000pt;}
.ls2_c00064{letter-spacing:0.006400pt;}
.ls0_c00064{letter-spacing:0.044736pt;}
.ls1_c00064{letter-spacing:0.128000pt;}
.ls3_c00064{letter-spacing:0.134400pt;}
.lsc_c00064{letter-spacing:0.448000pt;}
.ws0_c00064{word-spacing:-17.785600pt;}
.ws1_c00064{word-spacing:-17.779200pt;}
.ws5_c00064{word-spacing:-3.340800pt;}
.ws14_c00064{word-spacing:-1.145600pt;}
.ws23_c00064{word-spacing:-0.806400pt;}
.ws24_c00064{word-spacing:-0.742400pt;}
.ws2_c00064{word-spacing:0.000000pt;}
.ws4_c00064{word-spacing:0.029824pt;}
.ws3_c00064{word-spacing:0.037280pt;}
.ws30_c00064{word-spacing:0.064000pt;}
.ws2f_c00064{word-spacing:0.089600pt;}
.ws39_c00064{word-spacing:0.096000pt;}
.ws11_c00064{word-spacing:0.128000pt;}
.ws38_c00064{word-spacing:0.147200pt;}
.ws25_c00064{word-spacing:0.166400pt;}
.ws7_c00064{word-spacing:0.409600pt;}
.ws6_c00064{word-spacing:0.435200pt;}
.ws2a_c00064{word-spacing:0.793600pt;}
.ws29_c00064{word-spacing:0.844800pt;}
.wsa_c00064{word-spacing:1.081600pt;}
.ws16_c00064{word-spacing:1.120000pt;}
.ws15_c00064{word-spacing:1.145600pt;}
.wsb_c00064{word-spacing:1.152000pt;}
.ws28_c00064{word-spacing:1.158400pt;}
.ws10_c00064{word-spacing:2.080000pt;}
.wse_c00064{word-spacing:2.105600pt;}
.wsf_c00064{word-spacing:2.169600pt;}
.ws8_c00064{word-spacing:3.040000pt;}
.ws9_c00064{word-spacing:3.059200pt;}
.ws1b_c00064{word-spacing:3.206400pt;}
.ws1d_c00064{word-spacing:3.526400pt;}
.ws1f_c00064{word-spacing:3.673600pt;}
.ws2e_c00064{word-spacing:3.692800pt;}
.ws2c_c00064{word-spacing:3.705600pt;}
.ws1c_c00064{word-spacing:3.718400pt;}
.ws1e_c00064{word-spacing:3.763200pt;}
.ws2d_c00064{word-spacing:3.808000pt;}
.ws36_c00064{word-spacing:3.865600pt;}
.ws37_c00064{word-spacing:4.044800pt;}
.ws31_c00064{word-spacing:4.755200pt;}
.wsc_c00064{word-spacing:4.979200pt;}
.wsd_c00064{word-spacing:4.992000pt;}
.ws27_c00064{word-spacing:5.593600pt;}
.ws26_c00064{word-spacing:5.606400pt;}
.ws13_c00064{word-spacing:5.900800pt;}
.ws17_c00064{word-spacing:5.977600pt;}
.ws12_c00064{word-spacing:5.984000pt;}
.ws1a_c00064{word-spacing:8.160000pt;}
.ws19_c00064{word-spacing:8.230400pt;}
.ws32_c00064{word-spacing:10.726400pt;}
.ws33_c00064{word-spacing:10.739200pt;}
.ws35_c00064{word-spacing:11.360000pt;}
.ws34_c00064{word-spacing:11.443200pt;}
.ws18_c00064{word-spacing:13.273600pt;}
.ws2b_c00064{word-spacing:13.606400pt;}
.ws20_c00064{word-spacing:22.259200pt;}
.ws21_c00064{word-spacing:27.340800pt;}
.ws22_c00064{word-spacing:27.366400pt;}
._1_c00064{width:0.992000pt;}
._0_c00064{width:166.716160pt;}
.fs0_c00064{font-size:64.000000pt;}
.fs1_c00064{font-size:74.560000pt;}
.y0_c00064{bottom:0.000000pt;}
.y2_c00064{bottom:41.627067pt;}
.y1_c00064{bottom:60.027067pt;}
.y22_c00064{bottom:129.067067pt;}
.y21_c00064{bottom:147.467067pt;}
.y20_c00064{bottom:165.867067pt;}
.y1f_c00064{bottom:184.267067pt;}
.y1e_c00064{bottom:202.667067pt;}
.y1d_c00064{bottom:238.267067pt;}
.y1c_c00064{bottom:265.867067pt;}
.y1b_c00064{bottom:293.467067pt;}
.y1a_c00064{bottom:321.067067pt;}
.y19_c00064{bottom:348.667067pt;}
.y18_c00064{bottom:376.267067pt;}
.y17_c00064{bottom:411.867067pt;}
.y16_c00064{bottom:439.467067pt;}
.y15_c00064{bottom:467.067067pt;}
.y14_c00064{bottom:494.667067pt;}
.y13_c00064{bottom:522.267067pt;}
.y12_c00064{bottom:549.867067pt;}
.y11_c00064{bottom:577.467067pt;}
.y10_c00064{bottom:605.067067pt;}
.yf_c00064{bottom:632.667067pt;}
.ye_c00064{bottom:660.187067pt;}
.yd_c00064{bottom:687.787067pt;}
.yc_c00064{bottom:723.387067pt;}
.yb_c00064{bottom:750.987067pt;}
.ya_c00064{bottom:778.587067pt;}
.y9_c00064{bottom:806.187067pt;}
.y8_c00064{bottom:833.787067pt;}
.y7_c00064{bottom:861.387067pt;}
.y6_c00064{bottom:888.987067pt;}
.y5_c00064{bottom:924.587067pt;}
.y4_c00064{bottom:951.471067pt;}
.y3_c00064{bottom:972.907067pt;}
.h1_c00064{height:56.156250pt;}
.h3_c00064{height:57.375000pt;}
.h4_c00064{height:66.750000pt;}
.h2_c00064{height:77.763750pt;}
.h0_c00064{height:1122.666667pt;}
.w1_c00064{width:793.333333pt;}
.w0_c00064{width:793.626667pt;}
.x0_c00064{left:0.000000pt;}
.x2_c00064{left:151.200000pt;}
.x5_c00064{left:170.160000pt;}
.x3_c00064{left:199.200000pt;}
.x4_c00064{left:232.807920pt;}
.x1_c00064{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c2e06db89967a63057743762.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.093262;font-style:normal;font-weight:normal;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_4cc3b435acd7d2e99f55030a.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.106934;font-style:normal;font-weight:normal;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_a12926c207225281a226b5d2.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00065{letter-spacing:-0.086400px;}
.lsa_c00065{letter-spacing:-0.072000px;}
.ls8_c00065{letter-spacing:-0.064800px;}
.ls4_c00065{letter-spacing:-0.057600px;}
.ls3_c00065{letter-spacing:-0.050400px;}
.ls9_c00065{letter-spacing:-0.043200px;}
.ls6_c00065{letter-spacing:-0.036000px;}
.ls2_c00065{letter-spacing:-0.028800px;}
.ls7_c00065{letter-spacing:-0.021600px;}
.ls5_c00065{letter-spacing:-0.014400px;}
.ls1_c00065{letter-spacing:0.000000px;}
.ls0_c00065{letter-spacing:0.014400px;}
.lsc_c00065{letter-spacing:0.036000px;}
.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;}
}
.ws29_c00065{word-spacing:-4.521600px;}
.ws28_c00065{word-spacing:-4.500000px;}
.ws20_c00065{word-spacing:-3.787200px;}
.ws34_c00065{word-spacing:-3.758400px;}
.ws33_c00065{word-spacing:-3.736800px;}
.ws7_c00065{word-spacing:-0.900000px;}
.ws8_c00065{word-spacing:-0.871200px;}
.wsd_c00065{word-spacing:-0.518400px;}
.wsc_c00065{word-spacing:-0.496800px;}
.ws0_c00065{word-spacing:0.000000px;}
.ws17_c00065{word-spacing:0.115200px;}
.ws3e_c00065{word-spacing:0.180000px;}
.ws1d_c00065{word-spacing:0.187200px;}
.ws16_c00065{word-spacing:0.194400px;}
.ws24_c00065{word-spacing:0.201600px;}
.ws25_c00065{word-spacing:0.273600px;}
.ws3a_c00065{word-spacing:0.892800px;}
.ws39_c00065{word-spacing:0.907200px;}
.ws1c_c00065{word-spacing:0.921600px;}
.ws2c_c00065{word-spacing:0.936000px;}
.ws3b_c00065{word-spacing:1.015200px;}
.ws23_c00065{word-spacing:1.641600px;}
.ws22_c00065{word-spacing:1.663200px;}
.ws21_c00065{word-spacing:2.664000px;}
.ws2f_c00065{word-spacing:3.103200px;}
.ws30_c00065{word-spacing:3.110400px;}
.ws3d_c00065{word-spacing:3.787200px;}
.ws3c_c00065{word-spacing:3.801600px;}
.ws36_c00065{word-spacing:4.147200px;}
.ws35_c00065{word-spacing:4.176000px;}
.ws12_c00065{word-spacing:5.140800px;}
.ws13_c00065{word-spacing:5.155200px;}
.ws26_c00065{word-spacing:5.191200px;}
.ws27_c00065{word-spacing:5.284800px;}
.ws4_c00065{word-spacing:5.371200px;}
.ws5_c00065{word-spacing:5.392800px;}
.wsf_c00065{word-spacing:5.918400px;}
.wse_c00065{word-spacing:5.954400px;}
.ws2e_c00065{word-spacing:6.292800px;}
.ws2d_c00065{word-spacing:6.364800px;}
.ws6_c00065{word-spacing:6.674400px;}
.ws9_c00065{word-spacing:9.936000px;}
.ws10_c00065{word-spacing:12.427200px;}
.ws11_c00065{word-spacing:12.441600px;}
.ws1f_c00065{word-spacing:13.514400px;}
.ws1e_c00065{word-spacing:13.615200px;}
.ws14_c00065{word-spacing:13.874400px;}
.ws15_c00065{word-spacing:13.932000px;}
.wsb_c00065{word-spacing:14.500800px;}
.wsa_c00065{word-spacing:14.580000px;}
.ws32_c00065{word-spacing:14.940000px;}
.ws31_c00065{word-spacing:14.990400px;}
.ws1_c00065{word-spacing:15.278400px;}
.ws2_c00065{word-spacing:15.379200px;}
.ws2a_c00065{word-spacing:17.704800px;}
.ws2b_c00065{word-spacing:17.856000px;}
.ws38_c00065{word-spacing:20.671200px;}
.ws37_c00065{word-spacing:20.736000px;}
.ws19_c00065{word-spacing:21.441600px;}
.ws18_c00065{word-spacing:21.456000px;}
.ws1b_c00065{word-spacing:29.023200px;}
.ws1a_c00065{word-spacing:29.088000px;}
.ws3_c00065{word-spacing:34.768800px;}
._1_c00065{margin-left:-1.008000px;}
._0_c00065{width:1.108800px;}
.fc0_c00065{color:rgb(0,0,0);}
.fs0_c00065{font-size:72.000000px;}
.y0_c00065{bottom:0.000000px;}
.y2_c00065{bottom:46.830450px;}
.y1_c00065{bottom:67.530450px;}
.y2a_c00065{bottom:179.130450px;}
.y29_c00065{bottom:210.180450px;}
.y28_c00065{bottom:241.230450px;}
.y27_c00065{bottom:272.280450px;}
.y26_c00065{bottom:312.330450px;}
.y25_c00065{bottom:333.030450px;}
.y24_c00065{bottom:353.730450px;}
.y23_c00065{bottom:374.430450px;}
.y22_c00065{bottom:395.040450px;}
.y21_c00065{bottom:415.740450px;}
.y20_c00065{bottom:436.440450px;}
.y1f_c00065{bottom:457.140450px;}
.y1e_c00065{bottom:477.840450px;}
.y1d_c00065{bottom:498.540450px;}
.y1c_c00065{bottom:519.240450px;}
.y1b_c00065{bottom:539.940450px;}
.y1a_c00065{bottom:579.990450px;}
.y19_c00065{bottom:611.040450px;}
.y18_c00065{bottom:642.090450px;}
.y17_c00065{bottom:673.140450px;}
.y16_c00065{bottom:704.190450px;}
.y15_c00065{bottom:724.800450px;}
.y14_c00065{bottom:745.500450px;}
.y13_c00065{bottom:766.290450px;}
.y12_c00065{bottom:786.990450px;}
.y11_c00065{bottom:807.690450px;}
.y10_c00065{bottom:828.390450px;}
.yf_c00065{bottom:849.090450px;}
.ye_c00065{bottom:869.790450px;}
.yd_c00065{bottom:890.490450px;}
.yc_c00065{bottom:911.190450px;}
.yb_c00065{bottom:931.890450px;}
.ya_c00065{bottom:952.590450px;}
.y9_c00065{bottom:973.290450px;}
.y8_c00065{bottom:993.990450px;}
.y7_c00065{bottom:1014.690450px;}
.y6_c00065{bottom:1035.390450px;}
.y5_c00065{bottom:1056.090450px;}
.y4_c00065{bottom:1076.790450px;}
.y3_c00065{bottom:1097.490450px;}
.h1_c00065{height:63.175781px;}
.h2_c00065{height:64.546875px;}
.h3_c00065{height:75.093750px;}
.h0_c00065{height:1263.000000px;}
.w1_c00065{width:892.500000px;}
.w0_c00065{width:892.830000px;}
.x0_c00065{left:0.000000px;}
.x2_c00065{left:127.620000px;}
.x3_c00065{left:148.950000px;}
.x1_c00065{left:704.880000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.lsb_c00065{letter-spacing:-0.076800pt;}
.lsa_c00065{letter-spacing:-0.064000pt;}
.ls8_c00065{letter-spacing:-0.057600pt;}
.ls4_c00065{letter-spacing:-0.051200pt;}
.ls3_c00065{letter-spacing:-0.044800pt;}
.ls9_c00065{letter-spacing:-0.038400pt;}
.ls6_c00065{letter-spacing:-0.032000pt;}
.ls2_c00065{letter-spacing:-0.025600pt;}
.ls7_c00065{letter-spacing:-0.019200pt;}
.ls5_c00065{letter-spacing:-0.012800pt;}
.ls1_c00065{letter-spacing:0.000000pt;}
.ls0_c00065{letter-spacing:0.012800pt;}
.lsc_c00065{letter-spacing:0.032000pt;}
.ws29_c00065{word-spacing:-4.019200pt;}
.ws28_c00065{word-spacing:-4.000000pt;}
.ws20_c00065{word-spacing:-3.366400pt;}
.ws34_c00065{word-spacing:-3.340800pt;}
.ws33_c00065{word-spacing:-3.321600pt;}
.ws7_c00065{word-spacing:-0.800000pt;}
.ws8_c00065{word-spacing:-0.774400pt;}
.wsd_c00065{word-spacing:-0.460800pt;}
.wsc_c00065{word-spacing:-0.441600pt;}
.ws0_c00065{word-spacing:0.000000pt;}
.ws17_c00065{word-spacing:0.102400pt;}
.ws3e_c00065{word-spacing:0.160000pt;}
.ws1d_c00065{word-spacing:0.166400pt;}
.ws16_c00065{word-spacing:0.172800pt;}
.ws24_c00065{word-spacing:0.179200pt;}
.ws25_c00065{word-spacing:0.243200pt;}
.ws3a_c00065{word-spacing:0.793600pt;}
.ws39_c00065{word-spacing:0.806400pt;}
.ws1c_c00065{word-spacing:0.819200pt;}
.ws2c_c00065{word-spacing:0.832000pt;}
.ws3b_c00065{word-spacing:0.902400pt;}
.ws23_c00065{word-spacing:1.459200pt;}
.ws22_c00065{word-spacing:1.478400pt;}
.ws21_c00065{word-spacing:2.368000pt;}
.ws2f_c00065{word-spacing:2.758400pt;}
.ws30_c00065{word-spacing:2.764800pt;}
.ws3d_c00065{word-spacing:3.366400pt;}
.ws3c_c00065{word-spacing:3.379200pt;}
.ws36_c00065{word-spacing:3.686400pt;}
.ws35_c00065{word-spacing:3.712000pt;}
.ws12_c00065{word-spacing:4.569600pt;}
.ws13_c00065{word-spacing:4.582400pt;}
.ws26_c00065{word-spacing:4.614400pt;}
.ws27_c00065{word-spacing:4.697600pt;}
.ws4_c00065{word-spacing:4.774400pt;}
.ws5_c00065{word-spacing:4.793600pt;}
.wsf_c00065{word-spacing:5.260800pt;}
.wse_c00065{word-spacing:5.292800pt;}
.ws2e_c00065{word-spacing:5.593600pt;}
.ws2d_c00065{word-spacing:5.657600pt;}
.ws6_c00065{word-spacing:5.932800pt;}
.ws9_c00065{word-spacing:8.832000pt;}
.ws10_c00065{word-spacing:11.046400pt;}
.ws11_c00065{word-spacing:11.059200pt;}
.ws1f_c00065{word-spacing:12.012800pt;}
.ws1e_c00065{word-spacing:12.102400pt;}
.ws14_c00065{word-spacing:12.332800pt;}
.ws15_c00065{word-spacing:12.384000pt;}
.wsb_c00065{word-spacing:12.889600pt;}
.wsa_c00065{word-spacing:12.960000pt;}
.ws32_c00065{word-spacing:13.280000pt;}
.ws31_c00065{word-spacing:13.324800pt;}
.ws1_c00065{word-spacing:13.580800pt;}
.ws2_c00065{word-spacing:13.670400pt;}
.ws2a_c00065{word-spacing:15.737600pt;}
.ws2b_c00065{word-spacing:15.872000pt;}
.ws38_c00065{word-spacing:18.374400pt;}
.ws37_c00065{word-spacing:18.432000pt;}
.ws19_c00065{word-spacing:19.059200pt;}
.ws18_c00065{word-spacing:19.072000pt;}
.ws1b_c00065{word-spacing:25.798400pt;}
.ws1a_c00065{word-spacing:25.856000pt;}
.ws3_c00065{word-spacing:30.905600pt;}
._1_c00065{margin-left:-0.896000pt;}
._0_c00065{width:0.985600pt;}
.fs0_c00065{font-size:64.000000pt;}
.y0_c00065{bottom:0.000000pt;}
.y2_c00065{bottom:41.627067pt;}
.y1_c00065{bottom:60.027067pt;}
.y2a_c00065{bottom:159.227067pt;}
.y29_c00065{bottom:186.827067pt;}
.y28_c00065{bottom:214.427067pt;}
.y27_c00065{bottom:242.027067pt;}
.y26_c00065{bottom:277.627067pt;}
.y25_c00065{bottom:296.027067pt;}
.y24_c00065{bottom:314.427067pt;}
.y23_c00065{bottom:332.827067pt;}
.y22_c00065{bottom:351.147067pt;}
.y21_c00065{bottom:369.547067pt;}
.y20_c00065{bottom:387.947067pt;}
.y1f_c00065{bottom:406.347067pt;}
.y1e_c00065{bottom:424.747067pt;}
.y1d_c00065{bottom:443.147067pt;}
.y1c_c00065{bottom:461.547067pt;}
.y1b_c00065{bottom:479.947067pt;}
.y1a_c00065{bottom:515.547067pt;}
.y19_c00065{bottom:543.147067pt;}
.y18_c00065{bottom:570.747067pt;}
.y17_c00065{bottom:598.347067pt;}
.y16_c00065{bottom:625.947067pt;}
.y15_c00065{bottom:644.267067pt;}
.y14_c00065{bottom:662.667067pt;}
.y13_c00065{bottom:681.147067pt;}
.y12_c00065{bottom:699.547067pt;}
.y11_c00065{bottom:717.947067pt;}
.y10_c00065{bottom:736.347067pt;}
.yf_c00065{bottom:754.747067pt;}
.ye_c00065{bottom:773.147067pt;}
.yd_c00065{bottom:791.547067pt;}
.yc_c00065{bottom:809.947067pt;}
.yb_c00065{bottom:828.347067pt;}
.ya_c00065{bottom:846.747067pt;}
.y9_c00065{bottom:865.147067pt;}
.y8_c00065{bottom:883.547067pt;}
.y7_c00065{bottom:901.947067pt;}
.y6_c00065{bottom:920.347067pt;}
.y5_c00065{bottom:938.747067pt;}
.y4_c00065{bottom:957.147067pt;}
.y3_c00065{bottom:975.547067pt;}
.h1_c00065{height:56.156250pt;}
.h2_c00065{height:57.375000pt;}
.h3_c00065{height:66.750000pt;}
.h0_c00065{height:1122.666667pt;}
.w1_c00065{width:793.333333pt;}
.w0_c00065{width:793.626667pt;}
.x0_c00065{left:0.000000pt;}
.x2_c00065{left:113.440000pt;}
.x3_c00065{left:132.400000pt;}
.x1_c00065{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_65225b78e671f210aa62def3.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.093262;font-style:normal;font-weight:normal;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_fb970c54fe29d43abcc01f6c.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.106934;font-style:normal;font-weight:normal;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_7b0a764bc54957fea79122b8.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00066;src:url('chunks/assets/font_33bf659841dfe1ddf4ea6672.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00066;src:url('chunks/assets/font_583647e0b2320fdbcf8b9add.woff2')format("woff");}.ff5_c00066{font-family:ff5_c00066;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00066{vertical-align:-27.000000px;}
.v0_c00066{vertical-align:0.000000px;}
.v1_c00066{vertical-align:24.120000px;}
.ls13_c00066{letter-spacing:-0.086400px;}
.ls15_c00066{letter-spacing:-0.072000px;}
.ls17_c00066{letter-spacing:-0.064800px;}
.ls16_c00066{letter-spacing:-0.057600px;}
.ls12_c00066{letter-spacing:-0.050400px;}
.lse_c00066{letter-spacing:-0.043200px;}
.ls11_c00066{letter-spacing:-0.036000px;}
.ls14_c00066{letter-spacing:-0.028800px;}
.lsf_c00066{letter-spacing:-0.021600px;}
.ls10_c00066{letter-spacing:-0.014400px;}
.ls18_c00066{letter-spacing:-0.007200px;}
.lsd_c00066{letter-spacing:0.000000px;}
.ls5_c00066{letter-spacing:0.007200px;}
.ls6_c00066{letter-spacing:0.014400px;}
.ls0_c00066{letter-spacing:0.018720px;}
.lsb_c00066{letter-spacing:0.021600px;}
.ls3_c00066{letter-spacing:0.028800px;}
.ls7_c00066{letter-spacing:0.036000px;}
.ls9_c00066{letter-spacing:0.043200px;}
.ls8_c00066{letter-spacing:0.050400px;}
.lsa_c00066{letter-spacing:0.064800px;}
.lsc_c00066{letter-spacing:0.072000px;}
.ls4_c00066{letter-spacing:0.093600px;}
.ls2_c00066{letter-spacing:0.180000px;}
.ls1_c00066{letter-spacing:7.920000px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00066{word-spacing:-19.980000px;}
.ws4_c00066{word-spacing:-18.072000px;}
.ws1_c00066{word-spacing:-18.028800px;}
.ws2_c00066{word-spacing:-18.014400px;}
.ws3_c00066{word-spacing:-17.964000px;}
.ws2a_c00066{word-spacing:-4.413600px;}
.ws29_c00066{word-spacing:-4.406400px;}
.ws14_c00066{word-spacing:-4.161600px;}
.ws11_c00066{word-spacing:-3.153600px;}
.ws12_c00066{word-spacing:-2.995200px;}
.wsf_c00066{word-spacing:-2.361600px;}
.ws10_c00066{word-spacing:-2.311200px;}
.ws24_c00066{word-spacing:-1.612800px;}
.ws30_c00066{word-spacing:-1.483200px;}
.wsb_c00066{word-spacing:-0.540000px;}
.wsc_c00066{word-spacing:-0.504000px;}
.ws38_c00066{word-spacing:-0.180000px;}
.ws36_c00066{word-spacing:-0.172800px;}
.ws40_c00066{word-spacing:-0.158400px;}
.ws37_c00066{word-spacing:-0.093600px;}
.ws34_c00066{word-spacing:-0.036000px;}
.ws35_c00066{word-spacing:-0.007200px;}
.ws5_c00066{word-spacing:0.000000px;}
.ws2f_c00066{word-spacing:0.144000px;}
.ws25_c00066{word-spacing:0.187200px;}
.ws13_c00066{word-spacing:0.252000px;}
.ws2e_c00066{word-spacing:0.309600px;}
.ws2d_c00066{word-spacing:0.324000px;}
.ws20_c00066{word-spacing:0.907200px;}
.ws21_c00066{word-spacing:0.979200px;}
.ws3a_c00066{word-spacing:2.167200px;}
.ws3b_c00066{word-spacing:2.188800px;}
.ws39_c00066{word-spacing:2.210400px;}
.ws8_c00066{word-spacing:2.707200px;}
.ws9_c00066{word-spacing:2.750400px;}
.ws31_c00066{word-spacing:2.988000px;}
.ws32_c00066{word-spacing:3.196800px;}
.ws15_c00066{word-spacing:3.427200px;}
.ws1e_c00066{word-spacing:3.715200px;}
.ws1f_c00066{word-spacing:3.787200px;}
.ws28_c00066{word-spacing:4.485600px;}
.ws26_c00066{word-spacing:4.500000px;}
.ws27_c00066{word-spacing:4.593600px;}
.ws33_c00066{word-spacing:6.739200px;}
.ws2c_c00066{word-spacing:6.811200px;}
.ws2b_c00066{word-spacing:6.832800px;}
.ws1d_c00066{word-spacing:7.408800px;}
.ws1c_c00066{word-spacing:7.416000px;}
.ws7_c00066{word-spacing:8.460000px;}
.ws6_c00066{word-spacing:8.481600px;}
.wsd_c00066{word-spacing:8.798400px;}
.wse_c00066{word-spacing:8.834400px;}
.ws23_c00066{word-spacing:8.856000px;}
.ws22_c00066{word-spacing:8.863200px;}
.ws3e_c00066{word-spacing:11.109600px;}
.ws3f_c00066{word-spacing:11.138400px;}
.ws1b_c00066{word-spacing:17.820000px;}
.ws18_c00066{word-spacing:18.518400px;}
.ws17_c00066{word-spacing:18.547200px;}
.ws19_c00066{word-spacing:18.936000px;}
.ws1a_c00066{word-spacing:18.943200px;}
.ws3d_c00066{word-spacing:19.944000px;}
.ws3c_c00066{word-spacing:20.001600px;}
.wsa_c00066{word-spacing:37.274400px;}
.ws16_c00066{word-spacing:42.674400px;}
._1_c00066{margin-left:-1.411200px;}
._0_c00066{width:1.310400px;}
.fc0_c00066{color:rgb(0,0,0);}
.fs1_c00066{font-size:47.880000px;}
.fs0_c00066{font-size:72.000000px;}
.y0_c00066{bottom:0.000000px;}
.y2_c00066{bottom:46.830450px;}
.y1_c00066{bottom:67.530450px;}
.y26_c00066{bottom:152.760450px;}
.y25_c00066{bottom:173.550450px;}
.y24_c00066{bottom:194.250450px;}
.y23_c00066{bottom:214.950450px;}
.y22_c00066{bottom:256.530450px;}
.y21_c00066{bottom:298.290450px;}
.y20_c00066{bottom:319.080450px;}
.y1f_c00066{bottom:339.780450px;}
.y1e_c00066{bottom:360.480450px;}
.y1d_c00066{bottom:381.180450px;}
.y1c_c00066{bottom:401.880450px;}
.y1b_c00066{bottom:429.330450px;}
.y1a_c00066{bottom:443.280450px;}
.y19_c00066{bottom:498.540450px;}
.y18_c00066{bottom:529.590450px;}
.y17_c00066{bottom:560.640450px;}
.y16_c00066{bottom:591.690450px;}
.y15_c00066{bottom:622.740450px;}
.y14_c00066{bottom:653.790450px;}
.y13_c00066{bottom:684.840450px;}
.y12_c00066{bottom:715.890450px;}
.y11_c00066{bottom:746.940450px;}
.y10_c00066{bottom:777.990450px;}
.yf_c00066{bottom:809.040450px;}
.ye_c00066{bottom:840.090450px;}
.yd_c00066{bottom:871.140450px;}
.yc_c00066{bottom:911.190450px;}
.yb_c00066{bottom:931.890450px;}
.ya_c00066{bottom:952.590450px;}
.y9_c00066{bottom:973.290450px;}
.y8_c00066{bottom:993.990450px;}
.y7_c00066{bottom:1014.690450px;}
.y6_c00066{bottom:1035.390450px;}
.y5_c00066{bottom:1056.090450px;}
.y4_c00066{bottom:1076.790450px;}
.y3_c00066{bottom:1097.490450px;}
.h4_c00066{height:43.628906px;}
.h1_c00066{height:63.175781px;}
.h2_c00066{height:64.546875px;}
.h5_c00066{height:70.628906px;}
.h3_c00066{height:75.093750px;}
.h0_c00066{height:1263.000000px;}
.w1_c00066{width:892.500000px;}
.w0_c00066{width:892.830000px;}
.x0_c00066{left:0.000000px;}
.x2_c00066{left:170.100000px;}
.x3_c00066{left:191.430000px;}
.x1_c00066{left:747.360000px;}
@media print{
.v2_c00066{vertical-align:-24.000000pt;}
.v0_c00066{vertical-align:0.000000pt;}
.v1_c00066{vertical-align:21.440000pt;}
.ls13_c00066{letter-spacing:-0.076800pt;}
.ls15_c00066{letter-spacing:-0.064000pt;}
.ls17_c00066{letter-spacing:-0.057600pt;}
.ls16_c00066{letter-spacing:-0.051200pt;}
.ls12_c00066{letter-spacing:-0.044800pt;}
.lse_c00066{letter-spacing:-0.038400pt;}
.ls11_c00066{letter-spacing:-0.032000pt;}
.ls14_c00066{letter-spacing:-0.025600pt;}
.lsf_c00066{letter-spacing:-0.019200pt;}
.ls10_c00066{letter-spacing:-0.012800pt;}
.ls18_c00066{letter-spacing:-0.006400pt;}
.lsd_c00066{letter-spacing:0.000000pt;}
.ls5_c00066{letter-spacing:0.006400pt;}
.ls6_c00066{letter-spacing:0.012800pt;}
.ls0_c00066{letter-spacing:0.016640pt;}
.lsb_c00066{letter-spacing:0.019200pt;}
.ls3_c00066{letter-spacing:0.025600pt;}
.ls7_c00066{letter-spacing:0.032000pt;}
.ls9_c00066{letter-spacing:0.038400pt;}
.ls8_c00066{letter-spacing:0.044800pt;}
.lsa_c00066{letter-spacing:0.057600pt;}
.lsc_c00066{letter-spacing:0.064000pt;}
.ls4_c00066{letter-spacing:0.083200pt;}
.ls2_c00066{letter-spacing:0.160000pt;}
.ls1_c00066{letter-spacing:7.040000pt;}
.ws0_c00066{word-spacing:-17.760000pt;}
.ws4_c00066{word-spacing:-16.064000pt;}
.ws1_c00066{word-spacing:-16.025600pt;}
.ws2_c00066{word-spacing:-16.012800pt;}
.ws3_c00066{word-spacing:-15.968000pt;}
.ws2a_c00066{word-spacing:-3.923200pt;}
.ws29_c00066{word-spacing:-3.916800pt;}
.ws14_c00066{word-spacing:-3.699200pt;}
.ws11_c00066{word-spacing:-2.803200pt;}
.ws12_c00066{word-spacing:-2.662400pt;}
.wsf_c00066{word-spacing:-2.099200pt;}
.ws10_c00066{word-spacing:-2.054400pt;}
.ws24_c00066{word-spacing:-1.433600pt;}
.ws30_c00066{word-spacing:-1.318400pt;}
.wsb_c00066{word-spacing:-0.480000pt;}
.wsc_c00066{word-spacing:-0.448000pt;}
.ws38_c00066{word-spacing:-0.160000pt;}
.ws36_c00066{word-spacing:-0.153600pt;}
.ws40_c00066{word-spacing:-0.140800pt;}
.ws37_c00066{word-spacing:-0.083200pt;}
.ws34_c00066{word-spacing:-0.032000pt;}
.ws35_c00066{word-spacing:-0.006400pt;}
.ws5_c00066{word-spacing:0.000000pt;}
.ws2f_c00066{word-spacing:0.128000pt;}
.ws25_c00066{word-spacing:0.166400pt;}
.ws13_c00066{word-spacing:0.224000pt;}
.ws2e_c00066{word-spacing:0.275200pt;}
.ws2d_c00066{word-spacing:0.288000pt;}
.ws20_c00066{word-spacing:0.806400pt;}
.ws21_c00066{word-spacing:0.870400pt;}
.ws3a_c00066{word-spacing:1.926400pt;}
.ws3b_c00066{word-spacing:1.945600pt;}
.ws39_c00066{word-spacing:1.964800pt;}
.ws8_c00066{word-spacing:2.406400pt;}
.ws9_c00066{word-spacing:2.444800pt;}
.ws31_c00066{word-spacing:2.656000pt;}
.ws32_c00066{word-spacing:2.841600pt;}
.ws15_c00066{word-spacing:3.046400pt;}
.ws1e_c00066{word-spacing:3.302400pt;}
.ws1f_c00066{word-spacing:3.366400pt;}
.ws28_c00066{word-spacing:3.987200pt;}
.ws26_c00066{word-spacing:4.000000pt;}
.ws27_c00066{word-spacing:4.083200pt;}
.ws33_c00066{word-spacing:5.990400pt;}
.ws2c_c00066{word-spacing:6.054400pt;}
.ws2b_c00066{word-spacing:6.073600pt;}
.ws1d_c00066{word-spacing:6.585600pt;}
.ws1c_c00066{word-spacing:6.592000pt;}
.ws7_c00066{word-spacing:7.520000pt;}
.ws6_c00066{word-spacing:7.539200pt;}
.wsd_c00066{word-spacing:7.820800pt;}
.wse_c00066{word-spacing:7.852800pt;}
.ws23_c00066{word-spacing:7.872000pt;}
.ws22_c00066{word-spacing:7.878400pt;}
.ws3e_c00066{word-spacing:9.875200pt;}
.ws3f_c00066{word-spacing:9.900800pt;}
.ws1b_c00066{word-spacing:15.840000pt;}
.ws18_c00066{word-spacing:16.460800pt;}
.ws17_c00066{word-spacing:16.486400pt;}
.ws19_c00066{word-spacing:16.832000pt;}
.ws1a_c00066{word-spacing:16.838400pt;}
.ws3d_c00066{word-spacing:17.728000pt;}
.ws3c_c00066{word-spacing:17.779200pt;}
.wsa_c00066{word-spacing:33.132800pt;}
.ws16_c00066{word-spacing:37.932800pt;}
._1_c00066{margin-left:-1.254400pt;}
._0_c00066{width:1.164800pt;}
.fs1_c00066{font-size:42.560000pt;}
.fs0_c00066{font-size:64.000000pt;}
.y0_c00066{bottom:0.000000pt;}
.y2_c00066{bottom:41.627067pt;}
.y1_c00066{bottom:60.027067pt;}
.y26_c00066{bottom:135.787067pt;}
.y25_c00066{bottom:154.267067pt;}
.y24_c00066{bottom:172.667067pt;}
.y23_c00066{bottom:191.067067pt;}
.y22_c00066{bottom:228.027067pt;}
.y21_c00066{bottom:265.147067pt;}
.y20_c00066{bottom:283.627067pt;}
.y1f_c00066{bottom:302.027067pt;}
.y1e_c00066{bottom:320.427067pt;}
.y1d_c00066{bottom:338.827067pt;}
.y1c_c00066{bottom:357.227067pt;}
.y1b_c00066{bottom:381.627067pt;}
.y1a_c00066{bottom:394.027067pt;}
.y19_c00066{bottom:443.147067pt;}
.y18_c00066{bottom:470.747067pt;}
.y17_c00066{bottom:498.347067pt;}
.y16_c00066{bottom:525.947067pt;}
.y15_c00066{bottom:553.547067pt;}
.y14_c00066{bottom:581.147067pt;}
.y13_c00066{bottom:608.747067pt;}
.y12_c00066{bottom:636.347067pt;}
.y11_c00066{bottom:663.947067pt;}
.y10_c00066{bottom:691.547067pt;}
.yf_c00066{bottom:719.147067pt;}
.ye_c00066{bottom:746.747067pt;}
.yd_c00066{bottom:774.347067pt;}
.yc_c00066{bottom:809.947067pt;}
.yb_c00066{bottom:828.347067pt;}
.ya_c00066{bottom:846.747067pt;}
.y9_c00066{bottom:865.147067pt;}
.y8_c00066{bottom:883.547067pt;}
.y7_c00066{bottom:901.947067pt;}
.y6_c00066{bottom:920.347067pt;}
.y5_c00066{bottom:938.747067pt;}
.y4_c00066{bottom:957.147067pt;}
.y3_c00066{bottom:975.547067pt;}
.h4_c00066{height:38.781250pt;}
.h1_c00066{height:56.156250pt;}
.h2_c00066{height:57.375000pt;}
.h5_c00066{height:62.781250pt;}
.h3_c00066{height:66.750000pt;}
.h0_c00066{height:1122.666667pt;}
.w1_c00066{width:793.333333pt;}
.w0_c00066{width:793.626667pt;}
.x0_c00066{left:0.000000pt;}
.x2_c00066{left:151.200000pt;}
.x3_c00066{left:170.160000pt;}
.x1_c00066{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_64fa6e479901e9b8389147d1.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.093262;font-style:normal;font-weight:normal;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_7c3961e40f058f875c4e2881.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.106934;font-style:normal;font-weight:normal;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_e71b6e538c214d89ede4f8f6.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00067{letter-spacing:-0.201600px;}
.lse_c00067{letter-spacing:-0.108000px;}
.lsd_c00067{letter-spacing:-0.072000px;}
.lsf_c00067{letter-spacing:-0.064800px;}
.ls6_c00067{letter-spacing:-0.057600px;}
.lsc_c00067{letter-spacing:-0.050400px;}
.ls4_c00067{letter-spacing:-0.043200px;}
.ls5_c00067{letter-spacing:-0.036000px;}
.lsa_c00067{letter-spacing:-0.028800px;}
.ls9_c00067{letter-spacing:-0.021600px;}
.ls7_c00067{letter-spacing:-0.014400px;}
.ls8_c00067{letter-spacing:-0.007200px;}
.ls3_c00067{letter-spacing:0.000000px;}
.ls0_c00067{letter-spacing:0.007200px;}
.ls2_c00067{letter-spacing:0.021600px;}
.ls1_c00067{letter-spacing:0.144000px;}
.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;}
}
.ws0_c00067{word-spacing:-20.023200px;}
.ws12_c00067{word-spacing:-4.528800px;}
.ws13_c00067{word-spacing:-4.471200px;}
.ws1b_c00067{word-spacing:-1.332000px;}
.ws1a_c00067{word-spacing:-1.209600px;}
.ws1_c00067{word-spacing:0.000000px;}
.ws7_c00067{word-spacing:0.100800px;}
.ws26_c00067{word-spacing:0.165600px;}
.ws8_c00067{word-spacing:0.180000px;}
.ws2c_c00067{word-spacing:0.424800px;}
.ws2b_c00067{word-spacing:0.439200px;}
.ws18_c00067{word-spacing:0.453600px;}
.ws17_c00067{word-spacing:0.496800px;}
.ws32_c00067{word-spacing:0.532800px;}
.ws19_c00067{word-spacing:0.561600px;}
.ws33_c00067{word-spacing:0.590400px;}
.wsd_c00067{word-spacing:1.267200px;}
.wsc_c00067{word-spacing:1.296000px;}
.ws2e_c00067{word-spacing:1.540800px;}
.ws2f_c00067{word-spacing:1.627200px;}
.ws2d_c00067{word-spacing:1.670400px;}
.ws14_c00067{word-spacing:2.001600px;}
.ws22_c00067{word-spacing:2.376000px;}
.ws23_c00067{word-spacing:2.390400px;}
.ws3_c00067{word-spacing:3.074400px;}
.ws2_c00067{word-spacing:3.081600px;}
.ws31_c00067{word-spacing:3.333600px;}
.ws30_c00067{word-spacing:3.448800px;}
.ws5_c00067{word-spacing:3.772800px;}
.ws6_c00067{word-spacing:3.816000px;}
.ws1d_c00067{word-spacing:4.276800px;}
.ws1c_c00067{word-spacing:4.399200px;}
.ws1e_c00067{word-spacing:4.586400px;}
.ws38_c00067{word-spacing:5.911200px;}
.ws39_c00067{word-spacing:5.968800px;}
.ws27_c00067{word-spacing:10.296000px;}
.ws28_c00067{word-spacing:10.332000px;}
.ws29_c00067{word-spacing:10.965600px;}
.ws2a_c00067{word-spacing:10.987200px;}
.ws36_c00067{word-spacing:12.405600px;}
.ws10_c00067{word-spacing:15.112800px;}
.ws11_c00067{word-spacing:15.300000px;}
.wsb_c00067{word-spacing:16.646400px;}
.wsa_c00067{word-spacing:16.754400px;}
.ws15_c00067{word-spacing:17.438400px;}
.ws21_c00067{word-spacing:17.445600px;}
.ws20_c00067{word-spacing:17.452800px;}
.ws16_c00067{word-spacing:17.488800px;}
.ws9_c00067{word-spacing:23.220000px;}
.ws35_c00067{word-spacing:24.321600px;}
.ws34_c00067{word-spacing:24.336000px;}
.wsf_c00067{word-spacing:27.907200px;}
.wse_c00067{word-spacing:27.936000px;}
.ws37_c00067{word-spacing:34.048800px;}
.ws24_c00067{word-spacing:34.408800px;}
.ws25_c00067{word-spacing:34.430400px;}
.ws1f_c00067{word-spacing:43.012800px;}
.ws4_c00067{word-spacing:45.216000px;}
._0_c00067{width:1.080000px;}
.fc0_c00067{color:rgb(0,0,0);}
.fs0_c00067{font-size:72.000000px;}
.y0_c00067{bottom:0.000000px;}
.y2_c00067{bottom:46.830450px;}
.y1_c00067{bottom:67.530450px;}
.y25_c00067{bottom:148.080450px;}
.y24_c00067{bottom:179.130450px;}
.y23_c00067{bottom:210.180450px;}
.y22_c00067{bottom:241.230450px;}
.y21_c00067{bottom:272.280450px;}
.y20_c00067{bottom:303.330450px;}
.y1f_c00067{bottom:334.380450px;}
.y1e_c00067{bottom:365.430450px;}
.y1d_c00067{bottom:396.390450px;}
.y1c_c00067{bottom:427.440450px;}
.y1b_c00067{bottom:458.490450px;}
.y1a_c00067{bottom:479.190450px;}
.y19_c00067{bottom:499.890450px;}
.y18_c00067{bottom:520.590450px;}
.y17_c00067{bottom:541.290450px;}
.y16_c00067{bottom:561.990450px;}
.y15_c00067{bottom:582.690450px;}
.y14_c00067{bottom:603.390450px;}
.y13_c00067{bottom:624.090450px;}
.y12_c00067{bottom:644.790450px;}
.y11_c00067{bottom:665.490450px;}
.y10_c00067{bottom:686.190450px;}
.yf_c00067{bottom:706.890450px;}
.ye_c00067{bottom:746.940450px;}
.yd_c00067{bottom:777.990450px;}
.yc_c00067{bottom:809.040450px;}
.yb_c00067{bottom:840.090450px;}
.ya_c00067{bottom:880.140450px;}
.y9_c00067{bottom:911.190450px;}
.y8_c00067{bottom:942.240450px;}
.y7_c00067{bottom:973.290450px;}
.y6_c00067{bottom:1004.340450px;}
.y5_c00067{bottom:1035.390450px;}
.y4_c00067{bottom:1066.440450px;}
.y3_c00067{bottom:1097.490450px;}
.h1_c00067{height:63.175781px;}
.h2_c00067{height:64.546875px;}
.h3_c00067{height:75.093750px;}
.h0_c00067{height:1263.000000px;}
.w1_c00067{width:892.500000px;}
.w0_c00067{width:892.830000px;}
.x0_c00067{left:0.000000px;}
.x2_c00067{left:127.620000px;}
.x3_c00067{left:148.950000px;}
.x1_c00067{left:704.880000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.lsb_c00067{letter-spacing:-0.179200pt;}
.lse_c00067{letter-spacing:-0.096000pt;}
.lsd_c00067{letter-spacing:-0.064000pt;}
.lsf_c00067{letter-spacing:-0.057600pt;}
.ls6_c00067{letter-spacing:-0.051200pt;}
.lsc_c00067{letter-spacing:-0.044800pt;}
.ls4_c00067{letter-spacing:-0.038400pt;}
.ls5_c00067{letter-spacing:-0.032000pt;}
.lsa_c00067{letter-spacing:-0.025600pt;}
.ls9_c00067{letter-spacing:-0.019200pt;}
.ls7_c00067{letter-spacing:-0.012800pt;}
.ls8_c00067{letter-spacing:-0.006400pt;}
.ls3_c00067{letter-spacing:0.000000pt;}
.ls0_c00067{letter-spacing:0.006400pt;}
.ls2_c00067{letter-spacing:0.019200pt;}
.ls1_c00067{letter-spacing:0.128000pt;}
.ws0_c00067{word-spacing:-17.798400pt;}
.ws12_c00067{word-spacing:-4.025600pt;}
.ws13_c00067{word-spacing:-3.974400pt;}
.ws1b_c00067{word-spacing:-1.184000pt;}
.ws1a_c00067{word-spacing:-1.075200pt;}
.ws1_c00067{word-spacing:0.000000pt;}
.ws7_c00067{word-spacing:0.089600pt;}
.ws26_c00067{word-spacing:0.147200pt;}
.ws8_c00067{word-spacing:0.160000pt;}
.ws2c_c00067{word-spacing:0.377600pt;}
.ws2b_c00067{word-spacing:0.390400pt;}
.ws18_c00067{word-spacing:0.403200pt;}
.ws17_c00067{word-spacing:0.441600pt;}
.ws32_c00067{word-spacing:0.473600pt;}
.ws19_c00067{word-spacing:0.499200pt;}
.ws33_c00067{word-spacing:0.524800pt;}
.wsd_c00067{word-spacing:1.126400pt;}
.wsc_c00067{word-spacing:1.152000pt;}
.ws2e_c00067{word-spacing:1.369600pt;}
.ws2f_c00067{word-spacing:1.446400pt;}
.ws2d_c00067{word-spacing:1.484800pt;}
.ws14_c00067{word-spacing:1.779200pt;}
.ws22_c00067{word-spacing:2.112000pt;}
.ws23_c00067{word-spacing:2.124800pt;}
.ws3_c00067{word-spacing:2.732800pt;}
.ws2_c00067{word-spacing:2.739200pt;}
.ws31_c00067{word-spacing:2.963200pt;}
.ws30_c00067{word-spacing:3.065600pt;}
.ws5_c00067{word-spacing:3.353600pt;}
.ws6_c00067{word-spacing:3.392000pt;}
.ws1d_c00067{word-spacing:3.801600pt;}
.ws1c_c00067{word-spacing:3.910400pt;}
.ws1e_c00067{word-spacing:4.076800pt;}
.ws38_c00067{word-spacing:5.254400pt;}
.ws39_c00067{word-spacing:5.305600pt;}
.ws27_c00067{word-spacing:9.152000pt;}
.ws28_c00067{word-spacing:9.184000pt;}
.ws29_c00067{word-spacing:9.747200pt;}
.ws2a_c00067{word-spacing:9.766400pt;}
.ws36_c00067{word-spacing:11.027200pt;}
.ws10_c00067{word-spacing:13.433600pt;}
.ws11_c00067{word-spacing:13.600000pt;}
.wsb_c00067{word-spacing:14.796800pt;}
.wsa_c00067{word-spacing:14.892800pt;}
.ws15_c00067{word-spacing:15.500800pt;}
.ws21_c00067{word-spacing:15.507200pt;}
.ws20_c00067{word-spacing:15.513600pt;}
.ws16_c00067{word-spacing:15.545600pt;}
.ws9_c00067{word-spacing:20.640000pt;}
.ws35_c00067{word-spacing:21.619200pt;}
.ws34_c00067{word-spacing:21.632000pt;}
.wsf_c00067{word-spacing:24.806400pt;}
.wse_c00067{word-spacing:24.832000pt;}
.ws37_c00067{word-spacing:30.265600pt;}
.ws24_c00067{word-spacing:30.585600pt;}
.ws25_c00067{word-spacing:30.604800pt;}
.ws1f_c00067{word-spacing:38.233600pt;}
.ws4_c00067{word-spacing:40.192000pt;}
._0_c00067{width:0.960000pt;}
.fs0_c00067{font-size:64.000000pt;}
.y0_c00067{bottom:0.000000pt;}
.y2_c00067{bottom:41.627067pt;}
.y1_c00067{bottom:60.027067pt;}
.y25_c00067{bottom:131.627067pt;}
.y24_c00067{bottom:159.227067pt;}
.y23_c00067{bottom:186.827067pt;}
.y22_c00067{bottom:214.427067pt;}
.y21_c00067{bottom:242.027067pt;}
.y20_c00067{bottom:269.627067pt;}
.y1f_c00067{bottom:297.227067pt;}
.y1e_c00067{bottom:324.827067pt;}
.y1d_c00067{bottom:352.347067pt;}
.y1c_c00067{bottom:379.947067pt;}
.y1b_c00067{bottom:407.547067pt;}
.y1a_c00067{bottom:425.947067pt;}
.y19_c00067{bottom:444.347067pt;}
.y18_c00067{bottom:462.747067pt;}
.y17_c00067{bottom:481.147067pt;}
.y16_c00067{bottom:499.547067pt;}
.y15_c00067{bottom:517.947067pt;}
.y14_c00067{bottom:536.347067pt;}
.y13_c00067{bottom:554.747067pt;}
.y12_c00067{bottom:573.147067pt;}
.y11_c00067{bottom:591.547067pt;}
.y10_c00067{bottom:609.947067pt;}
.yf_c00067{bottom:628.347067pt;}
.ye_c00067{bottom:663.947067pt;}
.yd_c00067{bottom:691.547067pt;}
.yc_c00067{bottom:719.147067pt;}
.yb_c00067{bottom:746.747067pt;}
.ya_c00067{bottom:782.347067pt;}
.y9_c00067{bottom:809.947067pt;}
.y8_c00067{bottom:837.547067pt;}
.y7_c00067{bottom:865.147067pt;}
.y6_c00067{bottom:892.747067pt;}
.y5_c00067{bottom:920.347067pt;}
.y4_c00067{bottom:947.947067pt;}
.y3_c00067{bottom:975.547067pt;}
.h1_c00067{height:56.156250pt;}
.h2_c00067{height:57.375000pt;}
.h3_c00067{height:66.750000pt;}
.h0_c00067{height:1122.666667pt;}
.w1_c00067{width:793.333333pt;}
.w0_c00067{width:793.626667pt;}
.x0_c00067{left:0.000000pt;}
.x2_c00067{left:113.440000pt;}
.x3_c00067{left:132.400000pt;}
.x1_c00067{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_692cbb38a7dc2bf059a1b2b2.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.093262;font-style:normal;font-weight:normal;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_3cb4c53b66f00de06fecbb31.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.106934;font-style:normal;font-weight:normal;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_6dd2bf1265171dac8080cd90.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00068{letter-spacing:-0.108000px;}
.lse_c00068{letter-spacing:-0.086400px;}
.lsc_c00068{letter-spacing:-0.079200px;}
.ls3_c00068{letter-spacing:-0.072000px;}
.ls9_c00068{letter-spacing:-0.064800px;}
.lsa_c00068{letter-spacing:-0.057600px;}
.ls2_c00068{letter-spacing:-0.050400px;}
.ls8_c00068{letter-spacing:-0.043200px;}
.ls6_c00068{letter-spacing:-0.036000px;}
.ls7_c00068{letter-spacing:-0.028800px;}
.ls5_c00068{letter-spacing:-0.021600px;}
.lsd_c00068{letter-spacing:-0.014400px;}
.ls4_c00068{letter-spacing:-0.007200px;}
.ls1_c00068{letter-spacing:0.000000px;}
.ls0_c00068{letter-spacing:0.007200px;}
.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;}
}
.ws0_c00068{word-spacing:-19.944000px;}
.ws1_c00068{word-spacing:-19.929600px;}
.ws15_c00068{word-spacing:-3.837600px;}
.ws14_c00068{word-spacing:-3.744000px;}
.ws1e_c00068{word-spacing:-1.641600px;}
.ws1d_c00068{word-spacing:-1.598400px;}
.ws12_c00068{word-spacing:-0.878400px;}
.ws13_c00068{word-spacing:-0.856800px;}
.ws22_c00068{word-spacing:-0.158400px;}
.ws1f_c00068{word-spacing:-0.144000px;}
.ws2_c00068{word-spacing:0.000000px;}
.ws36_c00068{word-spacing:0.151200px;}
.ws1a_c00068{word-spacing:0.165600px;}
.ws7_c00068{word-spacing:0.180000px;}
.ws30_c00068{word-spacing:0.201600px;}
.ws23_c00068{word-spacing:0.252000px;}
.ws31_c00068{word-spacing:0.266400px;}
.ws2e_c00068{word-spacing:1.987200px;}
.ws2f_c00068{word-spacing:2.030400px;}
.ws8_c00068{word-spacing:2.354400px;}
.ws9_c00068{word-spacing:2.368800px;}
.ws21_c00068{word-spacing:2.678400px;}
.ws24_c00068{word-spacing:2.714400px;}
.ws20_c00068{word-spacing:2.779200px;}
.ws2a_c00068{word-spacing:2.923200px;}
.ws2b_c00068{word-spacing:3.088800px;}
.ws2d_c00068{word-spacing:6.681600px;}
.ws2c_c00068{word-spacing:6.760800px;}
.ws35_c00068{word-spacing:6.991200px;}
.ws34_c00068{word-spacing:7.027200px;}
.ws10_c00068{word-spacing:8.553600px;}
.ws11_c00068{word-spacing:8.596800px;}
.ws28_c00068{word-spacing:8.791200px;}
.ws29_c00068{word-spacing:8.834400px;}
.ws27_c00068{word-spacing:11.728800px;}
.ws26_c00068{word-spacing:11.858400px;}
.ws5_c00068{word-spacing:13.485600px;}
.ws6_c00068{word-spacing:13.528800px;}
.ws18_c00068{word-spacing:14.961600px;}
.ws19_c00068{word-spacing:14.968800px;}
.wse_c00068{word-spacing:15.645600px;}
.wsf_c00068{word-spacing:15.660000px;}
.ws33_c00068{word-spacing:15.681600px;}
.ws32_c00068{word-spacing:15.696000px;}
.ws1b_c00068{word-spacing:18.856800px;}
.ws1c_c00068{word-spacing:18.986400px;}
.ws16_c00068{word-spacing:19.605600px;}
.ws17_c00068{word-spacing:19.677600px;}
.ws25_c00068{word-spacing:23.212800px;}
.wsc_c00068{word-spacing:26.726400px;}
.wsd_c00068{word-spacing:26.805600px;}
.wsb_c00068{word-spacing:32.587200px;}
.ws4_c00068{word-spacing:32.630400px;}
.wsa_c00068{word-spacing:32.947200px;}
.ws3_c00068{word-spacing:33.328800px;}
._0_c00068{width:1.166400px;}
.fc0_c00068{color:rgb(0,0,0);}
.fs0_c00068{font-size:72.000000px;}
.y0_c00068{bottom:0.000000px;}
.y2_c00068{bottom:46.830450px;}
.y1_c00068{bottom:67.530450px;}
.y25_c00068{bottom:149.430450px;}
.y24_c00068{bottom:180.480450px;}
.y23_c00068{bottom:211.530450px;}
.y22_c00068{bottom:251.580450px;}
.y21_c00068{bottom:282.630450px;}
.y20_c00068{bottom:313.680450px;}
.y1f_c00068{bottom:344.730450px;}
.y1e_c00068{bottom:375.690450px;}
.y1d_c00068{bottom:406.740450px;}
.y1c_c00068{bottom:437.790450px;}
.y1b_c00068{bottom:468.840450px;}
.y1a_c00068{bottom:489.540450px;}
.y19_c00068{bottom:510.240450px;}
.y18_c00068{bottom:530.940450px;}
.y17_c00068{bottom:551.640450px;}
.y16_c00068{bottom:572.340450px;}
.y15_c00068{bottom:593.040450px;}
.y14_c00068{bottom:613.740450px;}
.y13_c00068{bottom:634.440450px;}
.y12_c00068{bottom:674.490450px;}
.y11_c00068{bottom:705.540450px;}
.y10_c00068{bottom:736.590450px;}
.yf_c00068{bottom:767.640450px;}
.ye_c00068{bottom:798.690450px;}
.yd_c00068{bottom:829.740450px;}
.yc_c00068{bottom:869.790450px;}
.yb_c00068{bottom:900.840450px;}
.ya_c00068{bottom:931.890450px;}
.y9_c00068{bottom:962.940450px;}
.y8_c00068{bottom:993.990450px;}
.y7_c00068{bottom:1014.690450px;}
.y6_c00068{bottom:1035.390450px;}
.y5_c00068{bottom:1056.090450px;}
.y4_c00068{bottom:1076.790450px;}
.y3_c00068{bottom:1097.490450px;}
.h1_c00068{height:63.175781px;}
.h2_c00068{height:64.546875px;}
.h3_c00068{height:75.093750px;}
.h0_c00068{height:1263.000000px;}
.w1_c00068{width:892.500000px;}
.w0_c00068{width:892.830000px;}
.x0_c00068{left:0.000000px;}
.x2_c00068{left:170.100000px;}
.x3_c00068{left:191.430000px;}
.x1_c00068{left:747.360000px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.lsb_c00068{letter-spacing:-0.096000pt;}
.lse_c00068{letter-spacing:-0.076800pt;}
.lsc_c00068{letter-spacing:-0.070400pt;}
.ls3_c00068{letter-spacing:-0.064000pt;}
.ls9_c00068{letter-spacing:-0.057600pt;}
.lsa_c00068{letter-spacing:-0.051200pt;}
.ls2_c00068{letter-spacing:-0.044800pt;}
.ls8_c00068{letter-spacing:-0.038400pt;}
.ls6_c00068{letter-spacing:-0.032000pt;}
.ls7_c00068{letter-spacing:-0.025600pt;}
.ls5_c00068{letter-spacing:-0.019200pt;}
.lsd_c00068{letter-spacing:-0.012800pt;}
.ls4_c00068{letter-spacing:-0.006400pt;}
.ls1_c00068{letter-spacing:0.000000pt;}
.ls0_c00068{letter-spacing:0.006400pt;}
.ws0_c00068{word-spacing:-17.728000pt;}
.ws1_c00068{word-spacing:-17.715200pt;}
.ws15_c00068{word-spacing:-3.411200pt;}
.ws14_c00068{word-spacing:-3.328000pt;}
.ws1e_c00068{word-spacing:-1.459200pt;}
.ws1d_c00068{word-spacing:-1.420800pt;}
.ws12_c00068{word-spacing:-0.780800pt;}
.ws13_c00068{word-spacing:-0.761600pt;}
.ws22_c00068{word-spacing:-0.140800pt;}
.ws1f_c00068{word-spacing:-0.128000pt;}
.ws2_c00068{word-spacing:0.000000pt;}
.ws36_c00068{word-spacing:0.134400pt;}
.ws1a_c00068{word-spacing:0.147200pt;}
.ws7_c00068{word-spacing:0.160000pt;}
.ws30_c00068{word-spacing:0.179200pt;}
.ws23_c00068{word-spacing:0.224000pt;}
.ws31_c00068{word-spacing:0.236800pt;}
.ws2e_c00068{word-spacing:1.766400pt;}
.ws2f_c00068{word-spacing:1.804800pt;}
.ws8_c00068{word-spacing:2.092800pt;}
.ws9_c00068{word-spacing:2.105600pt;}
.ws21_c00068{word-spacing:2.380800pt;}
.ws24_c00068{word-spacing:2.412800pt;}
.ws20_c00068{word-spacing:2.470400pt;}
.ws2a_c00068{word-spacing:2.598400pt;}
.ws2b_c00068{word-spacing:2.745600pt;}
.ws2d_c00068{word-spacing:5.939200pt;}
.ws2c_c00068{word-spacing:6.009600pt;}
.ws35_c00068{word-spacing:6.214400pt;}
.ws34_c00068{word-spacing:6.246400pt;}
.ws10_c00068{word-spacing:7.603200pt;}
.ws11_c00068{word-spacing:7.641600pt;}
.ws28_c00068{word-spacing:7.814400pt;}
.ws29_c00068{word-spacing:7.852800pt;}
.ws27_c00068{word-spacing:10.425600pt;}
.ws26_c00068{word-spacing:10.540800pt;}
.ws5_c00068{word-spacing:11.987200pt;}
.ws6_c00068{word-spacing:12.025600pt;}
.ws18_c00068{word-spacing:13.299200pt;}
.ws19_c00068{word-spacing:13.305600pt;}
.wse_c00068{word-spacing:13.907200pt;}
.wsf_c00068{word-spacing:13.920000pt;}
.ws33_c00068{word-spacing:13.939200pt;}
.ws32_c00068{word-spacing:13.952000pt;}
.ws1b_c00068{word-spacing:16.761600pt;}
.ws1c_c00068{word-spacing:16.876800pt;}
.ws16_c00068{word-spacing:17.427200pt;}
.ws17_c00068{word-spacing:17.491200pt;}
.ws25_c00068{word-spacing:20.633600pt;}
.wsc_c00068{word-spacing:23.756800pt;}
.wsd_c00068{word-spacing:23.827200pt;}
.wsb_c00068{word-spacing:28.966400pt;}
.ws4_c00068{word-spacing:29.004800pt;}
.wsa_c00068{word-spacing:29.286400pt;}
.ws3_c00068{word-spacing:29.625600pt;}
._0_c00068{width:1.036800pt;}
.fs0_c00068{font-size:64.000000pt;}
.y0_c00068{bottom:0.000000pt;}
.y2_c00068{bottom:41.627067pt;}
.y1_c00068{bottom:60.027067pt;}
.y25_c00068{bottom:132.827067pt;}
.y24_c00068{bottom:160.427067pt;}
.y23_c00068{bottom:188.027067pt;}
.y22_c00068{bottom:223.627067pt;}
.y21_c00068{bottom:251.227067pt;}
.y20_c00068{bottom:278.827067pt;}
.y1f_c00068{bottom:306.427067pt;}
.y1e_c00068{bottom:333.947067pt;}
.y1d_c00068{bottom:361.547067pt;}
.y1c_c00068{bottom:389.147067pt;}
.y1b_c00068{bottom:416.747067pt;}
.y1a_c00068{bottom:435.147067pt;}
.y19_c00068{bottom:453.547067pt;}
.y18_c00068{bottom:471.947067pt;}
.y17_c00068{bottom:490.347067pt;}
.y16_c00068{bottom:508.747067pt;}
.y15_c00068{bottom:527.147067pt;}
.y14_c00068{bottom:545.547067pt;}
.y13_c00068{bottom:563.947067pt;}
.y12_c00068{bottom:599.547067pt;}
.y11_c00068{bottom:627.147067pt;}
.y10_c00068{bottom:654.747067pt;}
.yf_c00068{bottom:682.347067pt;}
.ye_c00068{bottom:709.947067pt;}
.yd_c00068{bottom:737.547067pt;}
.yc_c00068{bottom:773.147067pt;}
.yb_c00068{bottom:800.747067pt;}
.ya_c00068{bottom:828.347067pt;}
.y9_c00068{bottom:855.947067pt;}
.y8_c00068{bottom:883.547067pt;}
.y7_c00068{bottom:901.947067pt;}
.y6_c00068{bottom:920.347067pt;}
.y5_c00068{bottom:938.747067pt;}
.y4_c00068{bottom:957.147067pt;}
.y3_c00068{bottom:975.547067pt;}
.h1_c00068{height:56.156250pt;}
.h2_c00068{height:57.375000pt;}
.h3_c00068{height:66.750000pt;}
.h0_c00068{height:1122.666667pt;}
.w1_c00068{width:793.333333pt;}
.w0_c00068{width:793.626667pt;}
.x0_c00068{left:0.000000pt;}
.x2_c00068{left:151.200000pt;}
.x3_c00068{left:170.160000pt;}
.x1_c00068{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0d3967eaa4a4c89a95f428e5.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.093262;font-style:normal;font-weight:normal;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_f8d1474af468c570df645ff2.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.106934;font-style:normal;font-weight:normal;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_bbda6b8d292c126981f2d63e.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00069{letter-spacing:-0.122400px;}
.ls9_c00069{letter-spacing:-0.079200px;}
.lsb_c00069{letter-spacing:-0.072000px;}
.ls5_c00069{letter-spacing:-0.064800px;}
.ls7_c00069{letter-spacing:-0.057600px;}
.lsa_c00069{letter-spacing:-0.050400px;}
.ls2_c00069{letter-spacing:-0.043200px;}
.ls8_c00069{letter-spacing:-0.036000px;}
.ls1_c00069{letter-spacing:-0.028800px;}
.ls6_c00069{letter-spacing:-0.021600px;}
.ls3_c00069{letter-spacing:-0.014400px;}
.ls4_c00069{letter-spacing:-0.007200px;}
.ls0_c00069{letter-spacing:0.000000px;}
.lse_c00069{letter-spacing:0.021600px;}
.lsc_c00069{letter-spacing:0.043200px;}
.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;}
}
.ws2b_c00069{word-spacing:-4.500000px;}
.ws1_c00069{word-spacing:-3.499200px;}
.ws2_c00069{word-spacing:-3.412800px;}
.ws41_c00069{word-spacing:-3.045600px;}
.ws40_c00069{word-spacing:-3.016800px;}
.ws3f_c00069{word-spacing:-1.663200px;}
.ws3d_c00069{word-spacing:-1.612800px;}
.ws3e_c00069{word-spacing:-1.519200px;}
.ws39_c00069{word-spacing:-0.900000px;}
.ws38_c00069{word-spacing:-0.885600px;}
.ws1c_c00069{word-spacing:-0.720000px;}
.ws1d_c00069{word-spacing:-0.576000px;}
.ws0_c00069{word-spacing:0.000000px;}
.ws9_c00069{word-spacing:0.093600px;}
.ws2e_c00069{word-spacing:0.158400px;}
.ws43_c00069{word-spacing:0.180000px;}
.ws8_c00069{word-spacing:0.201600px;}
.ws2c_c00069{word-spacing:0.532800px;}
.ws25_c00069{word-spacing:0.540000px;}
.ws30_c00069{word-spacing:0.547200px;}
.ws24_c00069{word-spacing:0.561600px;}
.ws2f_c00069{word-spacing:0.619200px;}
.ws42_c00069{word-spacing:1.288800px;}
.ws27_c00069{word-spacing:2.707200px;}
.ws1f_c00069{word-spacing:3.045600px;}
.ws1e_c00069{word-spacing:3.060000px;}
.ws2a_c00069{word-spacing:3.398400px;}
.ws26_c00069{word-spacing:3.801600px;}
.ws3b_c00069{word-spacing:4.140000px;}
.ws3a_c00069{word-spacing:4.161600px;}
.wsb_c00069{word-spacing:5.925600px;}
.wsa_c00069{word-spacing:5.947200px;}
.ws3_c00069{word-spacing:5.961600px;}
.ws3c_c00069{word-spacing:6.696000px;}
.ws20_c00069{word-spacing:9.489600px;}
.ws21_c00069{word-spacing:9.568800px;}
.wse_c00069{word-spacing:10.634400px;}
.wsf_c00069{word-spacing:10.677600px;}
.ws23_c00069{word-spacing:12.398400px;}
.ws1a_c00069{word-spacing:12.405600px;}
.ws1b_c00069{word-spacing:12.420000px;}
.ws22_c00069{word-spacing:12.427200px;}
.ws19_c00069{word-spacing:12.456000px;}
.ws15_c00069{word-spacing:13.492800px;}
.ws14_c00069{word-spacing:13.672800px;}
.ws4_c00069{word-spacing:16.372800px;}
.ws5_c00069{word-spacing:16.437600px;}
.ws11_c00069{word-spacing:16.927200px;}
.ws13_c00069{word-spacing:17.085600px;}
.ws12_c00069{word-spacing:17.107200px;}
.ws10_c00069{word-spacing:17.121600px;}
.ws34_c00069{word-spacing:19.915200px;}
.ws32_c00069{word-spacing:19.972800px;}
.ws33_c00069{word-spacing:20.188800px;}
.ws31_c00069{word-spacing:21.067200px;}
.ws36_c00069{word-spacing:21.772800px;}
.ws37_c00069{word-spacing:21.852000px;}
.ws7_c00069{word-spacing:22.716000px;}
.ws6_c00069{word-spacing:22.903200px;}
.ws18_c00069{word-spacing:23.572800px;}
.ws17_c00069{word-spacing:23.601600px;}
.ws28_c00069{word-spacing:25.020000px;}
.ws29_c00069{word-spacing:25.142400px;}
.ws16_c00069{word-spacing:27.885600px;}
.ws35_c00069{word-spacing:34.754400px;}
.ws2d_c00069{word-spacing:45.950400px;}
.wsd_c00069{word-spacing:59.932800px;}
.wsc_c00069{word-spacing:59.976000px;}
._0_c00069{width:1.195200px;}
.fc0_c00069{color:rgb(0,0,0);}
.fs0_c00069{font-size:72.000000px;}
.y0_c00069{bottom:0.000000px;}
.y2_c00069{bottom:46.830450px;}
.y1_c00069{bottom:67.530450px;}
.y2b_c00069{bottom:155.730450px;}
.y2a_c00069{bottom:186.780450px;}
.y29_c00069{bottom:217.830450px;}
.y28_c00069{bottom:248.880450px;}
.y27_c00069{bottom:279.930450px;}
.y26_c00069{bottom:310.980450px;}
.y25_c00069{bottom:342.030450px;}
.y24_c00069{bottom:373.080450px;}
.y23_c00069{bottom:404.040450px;}
.y22_c00069{bottom:435.090450px;}
.y21_c00069{bottom:466.140450px;}
.y20_c00069{bottom:497.190450px;}
.y1f_c00069{bottom:517.890450px;}
.y1e_c00069{bottom:538.590450px;}
.y1d_c00069{bottom:559.290450px;}
.y1c_c00069{bottom:579.990450px;}
.y1b_c00069{bottom:600.690450px;}
.y1a_c00069{bottom:621.390450px;}
.y19_c00069{bottom:642.090450px;}
.y18_c00069{bottom:662.790450px;}
.y17_c00069{bottom:683.490450px;}
.y16_c00069{bottom:704.190450px;}
.y15_c00069{bottom:724.890450px;}
.y14_c00069{bottom:745.590450px;}
.y13_c00069{bottom:766.290450px;}
.y12_c00069{bottom:786.990450px;}
.y11_c00069{bottom:807.690450px;}
.y10_c00069{bottom:828.390450px;}
.yf_c00069{bottom:849.090450px;}
.ye_c00069{bottom:869.790450px;}
.yd_c00069{bottom:890.490450px;}
.yc_c00069{bottom:911.190450px;}
.yb_c00069{bottom:931.890450px;}
.ya_c00069{bottom:952.590450px;}
.y9_c00069{bottom:973.290450px;}
.y8_c00069{bottom:993.990450px;}
.y7_c00069{bottom:1014.690450px;}
.y6_c00069{bottom:1035.390450px;}
.y5_c00069{bottom:1056.090450px;}
.y4_c00069{bottom:1076.790450px;}
.y3_c00069{bottom:1097.490450px;}
.h1_c00069{height:63.175781px;}
.h2_c00069{height:64.546875px;}
.h3_c00069{height:75.093750px;}
.h0_c00069{height:1263.000000px;}
.w1_c00069{width:892.500000px;}
.w0_c00069{width:892.830000px;}
.x0_c00069{left:0.000000px;}
.x2_c00069{left:127.620000px;}
.x3_c00069{left:148.950000px;}
.x1_c00069{left:704.880000px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.lsd_c00069{letter-spacing:-0.108800pt;}
.ls9_c00069{letter-spacing:-0.070400pt;}
.lsb_c00069{letter-spacing:-0.064000pt;}
.ls5_c00069{letter-spacing:-0.057600pt;}
.ls7_c00069{letter-spacing:-0.051200pt;}
.lsa_c00069{letter-spacing:-0.044800pt;}
.ls2_c00069{letter-spacing:-0.038400pt;}
.ls8_c00069{letter-spacing:-0.032000pt;}
.ls1_c00069{letter-spacing:-0.025600pt;}
.ls6_c00069{letter-spacing:-0.019200pt;}
.ls3_c00069{letter-spacing:-0.012800pt;}
.ls4_c00069{letter-spacing:-0.006400pt;}
.ls0_c00069{letter-spacing:0.000000pt;}
.lse_c00069{letter-spacing:0.019200pt;}
.lsc_c00069{letter-spacing:0.038400pt;}
.ws2b_c00069{word-spacing:-4.000000pt;}
.ws1_c00069{word-spacing:-3.110400pt;}
.ws2_c00069{word-spacing:-3.033600pt;}
.ws41_c00069{word-spacing:-2.707200pt;}
.ws40_c00069{word-spacing:-2.681600pt;}
.ws3f_c00069{word-spacing:-1.478400pt;}
.ws3d_c00069{word-spacing:-1.433600pt;}
.ws3e_c00069{word-spacing:-1.350400pt;}
.ws39_c00069{word-spacing:-0.800000pt;}
.ws38_c00069{word-spacing:-0.787200pt;}
.ws1c_c00069{word-spacing:-0.640000pt;}
.ws1d_c00069{word-spacing:-0.512000pt;}
.ws0_c00069{word-spacing:0.000000pt;}
.ws9_c00069{word-spacing:0.083200pt;}
.ws2e_c00069{word-spacing:0.140800pt;}
.ws43_c00069{word-spacing:0.160000pt;}
.ws8_c00069{word-spacing:0.179200pt;}
.ws2c_c00069{word-spacing:0.473600pt;}
.ws25_c00069{word-spacing:0.480000pt;}
.ws30_c00069{word-spacing:0.486400pt;}
.ws24_c00069{word-spacing:0.499200pt;}
.ws2f_c00069{word-spacing:0.550400pt;}
.ws42_c00069{word-spacing:1.145600pt;}
.ws27_c00069{word-spacing:2.406400pt;}
.ws1f_c00069{word-spacing:2.707200pt;}
.ws1e_c00069{word-spacing:2.720000pt;}
.ws2a_c00069{word-spacing:3.020800pt;}
.ws26_c00069{word-spacing:3.379200pt;}
.ws3b_c00069{word-spacing:3.680000pt;}
.ws3a_c00069{word-spacing:3.699200pt;}
.wsb_c00069{word-spacing:5.267200pt;}
.wsa_c00069{word-spacing:5.286400pt;}
.ws3_c00069{word-spacing:5.299200pt;}
.ws3c_c00069{word-spacing:5.952000pt;}
.ws20_c00069{word-spacing:8.435200pt;}
.ws21_c00069{word-spacing:8.505600pt;}
.wse_c00069{word-spacing:9.452800pt;}
.wsf_c00069{word-spacing:9.491200pt;}
.ws23_c00069{word-spacing:11.020800pt;}
.ws1a_c00069{word-spacing:11.027200pt;}
.ws1b_c00069{word-spacing:11.040000pt;}
.ws22_c00069{word-spacing:11.046400pt;}
.ws19_c00069{word-spacing:11.072000pt;}
.ws15_c00069{word-spacing:11.993600pt;}
.ws14_c00069{word-spacing:12.153600pt;}
.ws4_c00069{word-spacing:14.553600pt;}
.ws5_c00069{word-spacing:14.611200pt;}
.ws11_c00069{word-spacing:15.046400pt;}
.ws13_c00069{word-spacing:15.187200pt;}
.ws12_c00069{word-spacing:15.206400pt;}
.ws10_c00069{word-spacing:15.219200pt;}
.ws34_c00069{word-spacing:17.702400pt;}
.ws32_c00069{word-spacing:17.753600pt;}
.ws33_c00069{word-spacing:17.945600pt;}
.ws31_c00069{word-spacing:18.726400pt;}
.ws36_c00069{word-spacing:19.353600pt;}
.ws37_c00069{word-spacing:19.424000pt;}
.ws7_c00069{word-spacing:20.192000pt;}
.ws6_c00069{word-spacing:20.358400pt;}
.ws18_c00069{word-spacing:20.953600pt;}
.ws17_c00069{word-spacing:20.979200pt;}
.ws28_c00069{word-spacing:22.240000pt;}
.ws29_c00069{word-spacing:22.348800pt;}
.ws16_c00069{word-spacing:24.787200pt;}
.ws35_c00069{word-spacing:30.892800pt;}
.ws2d_c00069{word-spacing:40.844800pt;}
.wsd_c00069{word-spacing:53.273600pt;}
.wsc_c00069{word-spacing:53.312000pt;}
._0_c00069{width:1.062400pt;}
.fs0_c00069{font-size:64.000000pt;}
.y0_c00069{bottom:0.000000pt;}
.y2_c00069{bottom:41.627067pt;}
.y1_c00069{bottom:60.027067pt;}
.y2b_c00069{bottom:138.427067pt;}
.y2a_c00069{bottom:166.027067pt;}
.y29_c00069{bottom:193.627067pt;}
.y28_c00069{bottom:221.227067pt;}
.y27_c00069{bottom:248.827067pt;}
.y26_c00069{bottom:276.427067pt;}
.y25_c00069{bottom:304.027067pt;}
.y24_c00069{bottom:331.627067pt;}
.y23_c00069{bottom:359.147067pt;}
.y22_c00069{bottom:386.747067pt;}
.y21_c00069{bottom:414.347067pt;}
.y20_c00069{bottom:441.947067pt;}
.y1f_c00069{bottom:460.347067pt;}
.y1e_c00069{bottom:478.747067pt;}
.y1d_c00069{bottom:497.147067pt;}
.y1c_c00069{bottom:515.547067pt;}
.y1b_c00069{bottom:533.947067pt;}
.y1a_c00069{bottom:552.347067pt;}
.y19_c00069{bottom:570.747067pt;}
.y18_c00069{bottom:589.147067pt;}
.y17_c00069{bottom:607.547067pt;}
.y16_c00069{bottom:625.947067pt;}
.y15_c00069{bottom:644.347067pt;}
.y14_c00069{bottom:662.747067pt;}
.y13_c00069{bottom:681.147067pt;}
.y12_c00069{bottom:699.547067pt;}
.y11_c00069{bottom:717.947067pt;}
.y10_c00069{bottom:736.347067pt;}
.yf_c00069{bottom:754.747067pt;}
.ye_c00069{bottom:773.147067pt;}
.yd_c00069{bottom:791.547067pt;}
.yc_c00069{bottom:809.947067pt;}
.yb_c00069{bottom:828.347067pt;}
.ya_c00069{bottom:846.747067pt;}
.y9_c00069{bottom:865.147067pt;}
.y8_c00069{bottom:883.547067pt;}
.y7_c00069{bottom:901.947067pt;}
.y6_c00069{bottom:920.347067pt;}
.y5_c00069{bottom:938.747067pt;}
.y4_c00069{bottom:957.147067pt;}
.y3_c00069{bottom:975.547067pt;}
.h1_c00069{height:56.156250pt;}
.h2_c00069{height:57.375000pt;}
.h3_c00069{height:66.750000pt;}
.h0_c00069{height:1122.666667pt;}
.w1_c00069{width:793.333333pt;}
.w0_c00069{width:793.626667pt;}
.x0_c00069{left:0.000000pt;}
.x2_c00069{left:113.440000pt;}
.x3_c00069{left:132.400000pt;}
.x1_c00069{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bffcae0b424ed7415b90055d.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.093262;font-style:normal;font-weight:normal;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_fe8ebd662b348cc8f650595a.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00070{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00070{vertical-align:0.000000px;}
.lsd_c00070{letter-spacing:-0.093600px;}
.ls6_c00070{letter-spacing:-0.072000px;}
.ls9_c00070{letter-spacing:-0.064800px;}
.lsa_c00070{letter-spacing:-0.057600px;}
.ls7_c00070{letter-spacing:-0.050400px;}
.ls3_c00070{letter-spacing:-0.043200px;}
.ls4_c00070{letter-spacing:-0.036000px;}
.ls2_c00070{letter-spacing:-0.028800px;}
.ls5_c00070{letter-spacing:-0.021600px;}
.lsc_c00070{letter-spacing:-0.014400px;}
.lsb_c00070{letter-spacing:-0.007200px;}
.ls1_c00070{letter-spacing:0.000000px;}
.ls0_c00070{letter-spacing:0.007200px;}
.ls8_c00070{letter-spacing:0.036000px;}
.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;}
}
.ws28_c00070{word-spacing:-4.118400px;}
.ws1c_c00070{word-spacing:-1.173600px;}
.ws5_c00070{word-spacing:-0.878400px;}
.ws6_c00070{word-spacing:-0.849600px;}
.ws26_c00070{word-spacing:-0.547200px;}
.ws8_c00070{word-spacing:-0.532800px;}
.ws25_c00070{word-spacing:-0.525600px;}
.ws7_c00070{word-spacing:-0.511200px;}
.ws0_c00070{word-spacing:0.000000px;}
.ws24_c00070{word-spacing:0.079200px;}
.ws13_c00070{word-spacing:0.237600px;}
.ws22_c00070{word-spacing:1.663200px;}
.ws23_c00070{word-spacing:1.692000px;}
.wsb_c00070{word-spacing:3.441600px;}
.ws27_c00070{word-spacing:3.787200px;}
.wsa_c00070{word-spacing:4.024800px;}
.ws9_c00070{word-spacing:4.096800px;}
.ws11_c00070{word-spacing:4.118400px;}
.ws10_c00070{word-spacing:4.161600px;}
.ws2d_c00070{word-spacing:4.500000px;}
.ws2e_c00070{word-spacing:4.514400px;}
.ws12_c00070{word-spacing:5.940000px;}
.ws1_c00070{word-spacing:7.387200px;}
.ws2_c00070{word-spacing:7.401600px;}
.ws29_c00070{word-spacing:7.740000px;}
.ws2a_c00070{word-spacing:7.848000px;}
.ws1a_c00070{word-spacing:8.812800px;}
.ws1b_c00070{word-spacing:8.884800px;}
.ws1d_c00070{word-spacing:10.346400px;}
.ws1e_c00070{word-spacing:10.375200px;}
.ws14_c00070{word-spacing:10.634400px;}
.ws15_c00070{word-spacing:10.648800px;}
.wsc_c00070{word-spacing:13.464000px;}
.wsd_c00070{word-spacing:13.543200px;}
.ws19_c00070{word-spacing:16.351200px;}
.ws30_c00070{word-spacing:16.423200px;}
.ws2f_c00070{word-spacing:16.480800px;}
.ws18_c00070{word-spacing:16.574400px;}
.ws31_c00070{word-spacing:17.776800px;}
.ws32_c00070{word-spacing:17.848800px;}
.ws20_c00070{word-spacing:19.245600px;}
.ws4_c00070{word-spacing:19.260000px;}
.ws21_c00070{word-spacing:19.274400px;}
.ws3_c00070{word-spacing:19.332000px;}
.ws33_c00070{word-spacing:24.321600px;}
.ws34_c00070{word-spacing:24.350400px;}
.ws17_c00070{word-spacing:29.620800px;}
.ws16_c00070{word-spacing:29.707200px;}
.ws2c_c00070{word-spacing:31.795200px;}
.ws2b_c00070{word-spacing:31.903200px;}
.ws1f_c00070{word-spacing:32.616000px;}
.wsf_c00070{word-spacing:35.805600px;}
.wse_c00070{word-spacing:35.856000px;}
._1_c00070{margin-left:-1.008000px;}
._0_c00070{width:1.044000px;}
.fc0_c00070{color:rgb(0,0,0);}
.fs0_c00070{font-size:72.000000px;}
.y0_c00070{bottom:0.000000px;}
.y2_c00070{bottom:46.830450px;}
.y1_c00070{bottom:67.530450px;}
.y23_c00070{bottom:161.130450px;}
.y22_c00070{bottom:192.180450px;}
.y21_c00070{bottom:223.230450px;}
.y20_c00070{bottom:254.280450px;}
.y1f_c00070{bottom:285.330450px;}
.y1e_c00070{bottom:316.380450px;}
.y1d_c00070{bottom:347.430450px;}
.y1c_c00070{bottom:378.390450px;}
.y1b_c00070{bottom:409.440450px;}
.y1a_c00070{bottom:458.490450px;}
.y19_c00070{bottom:489.540450px;}
.y18_c00070{bottom:520.590450px;}
.y17_c00070{bottom:551.640450px;}
.y16_c00070{bottom:582.690450px;}
.y15_c00070{bottom:613.740450px;}
.y14_c00070{bottom:644.790450px;}
.y13_c00070{bottom:675.840450px;}
.y12_c00070{bottom:706.890450px;}
.y11_c00070{bottom:737.940450px;}
.y10_c00070{bottom:758.640450px;}
.yf_c00070{bottom:779.340450px;}
.ye_c00070{bottom:800.040450px;}
.yd_c00070{bottom:820.740450px;}
.yc_c00070{bottom:841.440450px;}
.yb_c00070{bottom:862.140450px;}
.ya_c00070{bottom:882.840450px;}
.y9_c00070{bottom:903.540450px;}
.y8_c00070{bottom:924.240450px;}
.y7_c00070{bottom:973.290450px;}
.y6_c00070{bottom:1004.340450px;}
.y5_c00070{bottom:1035.390450px;}
.y4_c00070{bottom:1066.440450px;}
.y3_c00070{bottom:1097.490450px;}
.h1_c00070{height:63.175781px;}
.h2_c00070{height:64.546875px;}
.h0_c00070{height:1263.000000px;}
.w1_c00070{width:892.500000px;}
.w0_c00070{width:892.830000px;}
.x0_c00070{left:0.000000px;}
.x2_c00070{left:170.100000px;}
.x3_c00070{left:191.430000px;}
.x1_c00070{left:747.360000px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.lsd_c00070{letter-spacing:-0.083200pt;}
.ls6_c00070{letter-spacing:-0.064000pt;}
.ls9_c00070{letter-spacing:-0.057600pt;}
.lsa_c00070{letter-spacing:-0.051200pt;}
.ls7_c00070{letter-spacing:-0.044800pt;}
.ls3_c00070{letter-spacing:-0.038400pt;}
.ls4_c00070{letter-spacing:-0.032000pt;}
.ls2_c00070{letter-spacing:-0.025600pt;}
.ls5_c00070{letter-spacing:-0.019200pt;}
.lsc_c00070{letter-spacing:-0.012800pt;}
.lsb_c00070{letter-spacing:-0.006400pt;}
.ls1_c00070{letter-spacing:0.000000pt;}
.ls0_c00070{letter-spacing:0.006400pt;}
.ls8_c00070{letter-spacing:0.032000pt;}
.ws28_c00070{word-spacing:-3.660800pt;}
.ws1c_c00070{word-spacing:-1.043200pt;}
.ws5_c00070{word-spacing:-0.780800pt;}
.ws6_c00070{word-spacing:-0.755200pt;}
.ws26_c00070{word-spacing:-0.486400pt;}
.ws8_c00070{word-spacing:-0.473600pt;}
.ws25_c00070{word-spacing:-0.467200pt;}
.ws7_c00070{word-spacing:-0.454400pt;}
.ws0_c00070{word-spacing:0.000000pt;}
.ws24_c00070{word-spacing:0.070400pt;}
.ws13_c00070{word-spacing:0.211200pt;}
.ws22_c00070{word-spacing:1.478400pt;}
.ws23_c00070{word-spacing:1.504000pt;}
.wsb_c00070{word-spacing:3.059200pt;}
.ws27_c00070{word-spacing:3.366400pt;}
.wsa_c00070{word-spacing:3.577600pt;}
.ws9_c00070{word-spacing:3.641600pt;}
.ws11_c00070{word-spacing:3.660800pt;}
.ws10_c00070{word-spacing:3.699200pt;}
.ws2d_c00070{word-spacing:4.000000pt;}
.ws2e_c00070{word-spacing:4.012800pt;}
.ws12_c00070{word-spacing:5.280000pt;}
.ws1_c00070{word-spacing:6.566400pt;}
.ws2_c00070{word-spacing:6.579200pt;}
.ws29_c00070{word-spacing:6.880000pt;}
.ws2a_c00070{word-spacing:6.976000pt;}
.ws1a_c00070{word-spacing:7.833600pt;}
.ws1b_c00070{word-spacing:7.897600pt;}
.ws1d_c00070{word-spacing:9.196800pt;}
.ws1e_c00070{word-spacing:9.222400pt;}
.ws14_c00070{word-spacing:9.452800pt;}
.ws15_c00070{word-spacing:9.465600pt;}
.wsc_c00070{word-spacing:11.968000pt;}
.wsd_c00070{word-spacing:12.038400pt;}
.ws19_c00070{word-spacing:14.534400pt;}
.ws30_c00070{word-spacing:14.598400pt;}
.ws2f_c00070{word-spacing:14.649600pt;}
.ws18_c00070{word-spacing:14.732800pt;}
.ws31_c00070{word-spacing:15.801600pt;}
.ws32_c00070{word-spacing:15.865600pt;}
.ws20_c00070{word-spacing:17.107200pt;}
.ws4_c00070{word-spacing:17.120000pt;}
.ws21_c00070{word-spacing:17.132800pt;}
.ws3_c00070{word-spacing:17.184000pt;}
.ws33_c00070{word-spacing:21.619200pt;}
.ws34_c00070{word-spacing:21.644800pt;}
.ws17_c00070{word-spacing:26.329600pt;}
.ws16_c00070{word-spacing:26.406400pt;}
.ws2c_c00070{word-spacing:28.262400pt;}
.ws2b_c00070{word-spacing:28.358400pt;}
.ws1f_c00070{word-spacing:28.992000pt;}
.wsf_c00070{word-spacing:31.827200pt;}
.wse_c00070{word-spacing:31.872000pt;}
._1_c00070{margin-left:-0.896000pt;}
._0_c00070{width:0.928000pt;}
.fs0_c00070{font-size:64.000000pt;}
.y0_c00070{bottom:0.000000pt;}
.y2_c00070{bottom:41.627067pt;}
.y1_c00070{bottom:60.027067pt;}
.y23_c00070{bottom:143.227067pt;}
.y22_c00070{bottom:170.827067pt;}
.y21_c00070{bottom:198.427067pt;}
.y20_c00070{bottom:226.027067pt;}
.y1f_c00070{bottom:253.627067pt;}
.y1e_c00070{bottom:281.227067pt;}
.y1d_c00070{bottom:308.827067pt;}
.y1c_c00070{bottom:336.347067pt;}
.y1b_c00070{bottom:363.947067pt;}
.y1a_c00070{bottom:407.547067pt;}
.y19_c00070{bottom:435.147067pt;}
.y18_c00070{bottom:462.747067pt;}
.y17_c00070{bottom:490.347067pt;}
.y16_c00070{bottom:517.947067pt;}
.y15_c00070{bottom:545.547067pt;}
.y14_c00070{bottom:573.147067pt;}
.y13_c00070{bottom:600.747067pt;}
.y12_c00070{bottom:628.347067pt;}
.y11_c00070{bottom:655.947067pt;}
.y10_c00070{bottom:674.347067pt;}
.yf_c00070{bottom:692.747067pt;}
.ye_c00070{bottom:711.147067pt;}
.yd_c00070{bottom:729.547067pt;}
.yc_c00070{bottom:747.947067pt;}
.yb_c00070{bottom:766.347067pt;}
.ya_c00070{bottom:784.747067pt;}
.y9_c00070{bottom:803.147067pt;}
.y8_c00070{bottom:821.547067pt;}
.y7_c00070{bottom:865.147067pt;}
.y6_c00070{bottom:892.747067pt;}
.y5_c00070{bottom:920.347067pt;}
.y4_c00070{bottom:947.947067pt;}
.y3_c00070{bottom:975.547067pt;}
.h1_c00070{height:56.156250pt;}
.h2_c00070{height:57.375000pt;}
.h0_c00070{height:1122.666667pt;}
.w1_c00070{width:793.333333pt;}
.w0_c00070{width:793.626667pt;}
.x0_c00070{left:0.000000pt;}
.x2_c00070{left:151.200000pt;}
.x3_c00070{left:170.160000pt;}
.x1_c00070{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b9e47771cf9126c303523440.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.093262;font-style:normal;font-weight:normal;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_45472ed2497aebf2ad8bac25.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:1.106934;font-style:normal;font-weight:normal;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_4a5b5e6f7e32dc15f574b320.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00071{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00071{vertical-align:0.000000px;}
.lsd_c00071{letter-spacing:-0.266400px;}
.lsf_c00071{letter-spacing:-0.187200px;}
.lsb_c00071{letter-spacing:-0.086400px;}
.ls8_c00071{letter-spacing:-0.072000px;}
.ls5_c00071{letter-spacing:-0.064800px;}
.lsc_c00071{letter-spacing:-0.057600px;}
.ls9_c00071{letter-spacing:-0.050400px;}
.ls2_c00071{letter-spacing:-0.043200px;}
.ls1_c00071{letter-spacing:-0.036000px;}
.ls3_c00071{letter-spacing:-0.028800px;}
.ls7_c00071{letter-spacing:-0.021600px;}
.ls6_c00071{letter-spacing:-0.014400px;}
.lse_c00071{letter-spacing:-0.007200px;}
.ls0_c00071{letter-spacing:0.000000px;}
.lsa_c00071{letter-spacing:0.014400px;}
.ls4_c00071{letter-spacing:0.036000px;}
.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:-19.828800px;}
.ws0_c00071{word-spacing:-19.749600px;}
.ws24_c00071{word-spacing:-4.168800px;}
.ws25_c00071{word-spacing:-4.104000px;}
.ws5_c00071{word-spacing:-3.103200px;}
.ws6_c00071{word-spacing:-3.052800px;}
.ws27_c00071{word-spacing:-2.354400px;}
.ws34_c00071{word-spacing:-2.347200px;}
.ws1a_c00071{word-spacing:-2.304000px;}
.ws19_c00071{word-spacing:-2.268000px;}
.ws26_c00071{word-spacing:-2.246400px;}
.ws17_c00071{word-spacing:-0.957600px;}
.ws16_c00071{word-spacing:-0.878400px;}
.ws31_c00071{word-spacing:-0.547200px;}
.ws2_c00071{word-spacing:0.000000px;}
.ws7_c00071{word-spacing:0.086400px;}
.ws8_c00071{word-spacing:0.180000px;}
.ws14_c00071{word-spacing:0.187200px;}
.ws10_c00071{word-spacing:2.318400px;}
.wsf_c00071{word-spacing:2.332800px;}
.ws23_c00071{word-spacing:2.656800px;}
.ws22_c00071{word-spacing:2.671200px;}
.ws2b_c00071{word-spacing:3.708000px;}
.ws2a_c00071{word-spacing:3.794400px;}
.ws2f_c00071{word-spacing:4.089600px;}
.ws30_c00071{word-spacing:4.132800px;}
.wsc_c00071{word-spacing:5.572800px;}
.wse_c00071{word-spacing:5.580000px;}
.wsd_c00071{word-spacing:5.601600px;}
.ws15_c00071{word-spacing:5.947200px;}
.ws3_c00071{word-spacing:6.674400px;}
.ws4_c00071{word-spacing:6.681600px;}
.ws2e_c00071{word-spacing:7.034400px;}
.ws2d_c00071{word-spacing:7.041600px;}
.ws13_c00071{word-spacing:7.401600px;}
.ws37_c00071{word-spacing:7.718400px;}
.ws36_c00071{word-spacing:7.740000px;}
.ws28_c00071{word-spacing:8.438400px;}
.ws29_c00071{word-spacing:8.481600px;}
.ws33_c00071{word-spacing:9.136800px;}
.ws32_c00071{word-spacing:9.144000px;}
.ws21_c00071{word-spacing:9.921600px;}
.ws20_c00071{word-spacing:9.943200px;}
.ws1d_c00071{word-spacing:12.074400px;}
.ws1c_c00071{word-spacing:12.081600px;}
.ws1b_c00071{word-spacing:12.182400px;}
.ws11_c00071{word-spacing:12.304800px;}
.ws12_c00071{word-spacing:12.412800px;}
.ws35_c00071{word-spacing:16.070400px;}
.ws18_c00071{word-spacing:17.834400px;}
.wsb_c00071{word-spacing:21.463200px;}
.ws1f_c00071{word-spacing:27.540000px;}
.ws1e_c00071{word-spacing:27.568800px;}
.ws9_c00071{word-spacing:43.387200px;}
.wsa_c00071{word-spacing:43.401600px;}
.ws2c_c00071{word-spacing:44.827200px;}
._0_c00071{width:1.195200px;}
.fc0_c00071{color:rgb(0,0,0);}
.fs0_c00071{font-size:72.000000px;}
.y0_c00071{bottom:0.000000px;}
.y2_c00071{bottom:46.830450px;}
.y1_c00071{bottom:67.530450px;}
.y24_c00071{bottom:148.080450px;}
.y23_c00071{bottom:179.130450px;}
.y22_c00071{bottom:210.180450px;}
.y21_c00071{bottom:241.230450px;}
.y20_c00071{bottom:272.280450px;}
.y1f_c00071{bottom:303.330450px;}
.y1e_c00071{bottom:334.380450px;}
.y1d_c00071{bottom:365.430450px;}
.y1c_c00071{bottom:396.390450px;}
.y1b_c00071{bottom:427.440450px;}
.y1a_c00071{bottom:458.490450px;}
.y19_c00071{bottom:489.540450px;}
.y18_c00071{bottom:520.590450px;}
.y17_c00071{bottom:551.640450px;}
.y16_c00071{bottom:582.690450px;}
.y15_c00071{bottom:613.740450px;}
.y14_c00071{bottom:644.790450px;}
.y13_c00071{bottom:675.840450px;}
.y12_c00071{bottom:706.890450px;}
.y11_c00071{bottom:737.940450px;}
.y10_c00071{bottom:768.990450px;}
.yf_c00071{bottom:789.690450px;}
.ye_c00071{bottom:810.390450px;}
.yd_c00071{bottom:831.090450px;}
.yc_c00071{bottom:851.790450px;}
.yb_c00071{bottom:872.490450px;}
.ya_c00071{bottom:893.190450px;}
.y9_c00071{bottom:913.890450px;}
.y8_c00071{bottom:934.590450px;}
.y7_c00071{bottom:955.290450px;}
.y6_c00071{bottom:1004.340450px;}
.y5_c00071{bottom:1035.390450px;}
.y4_c00071{bottom:1066.440450px;}
.y3_c00071{bottom:1097.490450px;}
.h1_c00071{height:63.175781px;}
.h2_c00071{height:64.546875px;}
.h3_c00071{height:75.093750px;}
.h0_c00071{height:1263.000000px;}
.w1_c00071{width:892.500000px;}
.w0_c00071{width:892.830000px;}
.x0_c00071{left:0.000000px;}
.x2_c00071{left:127.620000px;}
.x3_c00071{left:148.950000px;}
.x1_c00071{left:704.880000px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.lsd_c00071{letter-spacing:-0.236800pt;}
.lsf_c00071{letter-spacing:-0.166400pt;}
.lsb_c00071{letter-spacing:-0.076800pt;}
.ls8_c00071{letter-spacing:-0.064000pt;}
.ls5_c00071{letter-spacing:-0.057600pt;}
.lsc_c00071{letter-spacing:-0.051200pt;}
.ls9_c00071{letter-spacing:-0.044800pt;}
.ls2_c00071{letter-spacing:-0.038400pt;}
.ls1_c00071{letter-spacing:-0.032000pt;}
.ls3_c00071{letter-spacing:-0.025600pt;}
.ls7_c00071{letter-spacing:-0.019200pt;}
.ls6_c00071{letter-spacing:-0.012800pt;}
.lse_c00071{letter-spacing:-0.006400pt;}
.ls0_c00071{letter-spacing:0.000000pt;}
.lsa_c00071{letter-spacing:0.012800pt;}
.ls4_c00071{letter-spacing:0.032000pt;}
.ws1_c00071{word-spacing:-17.625600pt;}
.ws0_c00071{word-spacing:-17.555200pt;}
.ws24_c00071{word-spacing:-3.705600pt;}
.ws25_c00071{word-spacing:-3.648000pt;}
.ws5_c00071{word-spacing:-2.758400pt;}
.ws6_c00071{word-spacing:-2.713600pt;}
.ws27_c00071{word-spacing:-2.092800pt;}
.ws34_c00071{word-spacing:-2.086400pt;}
.ws1a_c00071{word-spacing:-2.048000pt;}
.ws19_c00071{word-spacing:-2.016000pt;}
.ws26_c00071{word-spacing:-1.996800pt;}
.ws17_c00071{word-spacing:-0.851200pt;}
.ws16_c00071{word-spacing:-0.780800pt;}
.ws31_c00071{word-spacing:-0.486400pt;}
.ws2_c00071{word-spacing:0.000000pt;}
.ws7_c00071{word-spacing:0.076800pt;}
.ws8_c00071{word-spacing:0.160000pt;}
.ws14_c00071{word-spacing:0.166400pt;}
.ws10_c00071{word-spacing:2.060800pt;}
.wsf_c00071{word-spacing:2.073600pt;}
.ws23_c00071{word-spacing:2.361600pt;}
.ws22_c00071{word-spacing:2.374400pt;}
.ws2b_c00071{word-spacing:3.296000pt;}
.ws2a_c00071{word-spacing:3.372800pt;}
.ws2f_c00071{word-spacing:3.635200pt;}
.ws30_c00071{word-spacing:3.673600pt;}
.wsc_c00071{word-spacing:4.953600pt;}
.wse_c00071{word-spacing:4.960000pt;}
.wsd_c00071{word-spacing:4.979200pt;}
.ws15_c00071{word-spacing:5.286400pt;}
.ws3_c00071{word-spacing:5.932800pt;}
.ws4_c00071{word-spacing:5.939200pt;}
.ws2e_c00071{word-spacing:6.252800pt;}
.ws2d_c00071{word-spacing:6.259200pt;}
.ws13_c00071{word-spacing:6.579200pt;}
.ws37_c00071{word-spacing:6.860800pt;}
.ws36_c00071{word-spacing:6.880000pt;}
.ws28_c00071{word-spacing:7.500800pt;}
.ws29_c00071{word-spacing:7.539200pt;}
.ws33_c00071{word-spacing:8.121600pt;}
.ws32_c00071{word-spacing:8.128000pt;}
.ws21_c00071{word-spacing:8.819200pt;}
.ws20_c00071{word-spacing:8.838400pt;}
.ws1d_c00071{word-spacing:10.732800pt;}
.ws1c_c00071{word-spacing:10.739200pt;}
.ws1b_c00071{word-spacing:10.828800pt;}
.ws11_c00071{word-spacing:10.937600pt;}
.ws12_c00071{word-spacing:11.033600pt;}
.ws35_c00071{word-spacing:14.284800pt;}
.ws18_c00071{word-spacing:15.852800pt;}
.wsb_c00071{word-spacing:19.078400pt;}
.ws1f_c00071{word-spacing:24.480000pt;}
.ws1e_c00071{word-spacing:24.505600pt;}
.ws9_c00071{word-spacing:38.566400pt;}
.wsa_c00071{word-spacing:38.579200pt;}
.ws2c_c00071{word-spacing:39.846400pt;}
._0_c00071{width:1.062400pt;}
.fs0_c00071{font-size:64.000000pt;}
.y0_c00071{bottom:0.000000pt;}
.y2_c00071{bottom:41.627067pt;}
.y1_c00071{bottom:60.027067pt;}
.y24_c00071{bottom:131.627067pt;}
.y23_c00071{bottom:159.227067pt;}
.y22_c00071{bottom:186.827067pt;}
.y21_c00071{bottom:214.427067pt;}
.y20_c00071{bottom:242.027067pt;}
.y1f_c00071{bottom:269.627067pt;}
.y1e_c00071{bottom:297.227067pt;}
.y1d_c00071{bottom:324.827067pt;}
.y1c_c00071{bottom:352.347067pt;}
.y1b_c00071{bottom:379.947067pt;}
.y1a_c00071{bottom:407.547067pt;}
.y19_c00071{bottom:435.147067pt;}
.y18_c00071{bottom:462.747067pt;}
.y17_c00071{bottom:490.347067pt;}
.y16_c00071{bottom:517.947067pt;}
.y15_c00071{bottom:545.547067pt;}
.y14_c00071{bottom:573.147067pt;}
.y13_c00071{bottom:600.747067pt;}
.y12_c00071{bottom:628.347067pt;}
.y11_c00071{bottom:655.947067pt;}
.y10_c00071{bottom:683.547067pt;}
.yf_c00071{bottom:701.947067pt;}
.ye_c00071{bottom:720.347067pt;}
.yd_c00071{bottom:738.747067pt;}
.yc_c00071{bottom:757.147067pt;}
.yb_c00071{bottom:775.547067pt;}
.ya_c00071{bottom:793.947067pt;}
.y9_c00071{bottom:812.347067pt;}
.y8_c00071{bottom:830.747067pt;}
.y7_c00071{bottom:849.147067pt;}
.y6_c00071{bottom:892.747067pt;}
.y5_c00071{bottom:920.347067pt;}
.y4_c00071{bottom:947.947067pt;}
.y3_c00071{bottom:975.547067pt;}
.h1_c00071{height:56.156250pt;}
.h2_c00071{height:57.375000pt;}
.h3_c00071{height:66.750000pt;}
.h0_c00071{height:1122.666667pt;}
.w1_c00071{width:793.333333pt;}
.w0_c00071{width:793.626667pt;}
.x0_c00071{left:0.000000pt;}
.x2_c00071{left:113.440000pt;}
.x3_c00071{left:132.400000pt;}
.x1_c00071{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_00d2ebeb8c27022bab0c8e8f.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.093262;font-style:normal;font-weight:normal;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_d1ec4c5d05e3f6eeb55f9b23.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.106934;font-style:normal;font-weight:normal;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_c695a7c55598f4919c78f693.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls8_c00072{letter-spacing:-0.108000px;}
.lsd_c00072{letter-spacing:-0.072000px;}
.lsf_c00072{letter-spacing:-0.064800px;}
.lsa_c00072{letter-spacing:-0.057600px;}
.ls10_c00072{letter-spacing:-0.050400px;}
.lsb_c00072{letter-spacing:-0.043200px;}
.ls7_c00072{letter-spacing:-0.036000px;}
.ls4_c00072{letter-spacing:-0.028800px;}
.lsc_c00072{letter-spacing:-0.021600px;}
.ls6_c00072{letter-spacing:-0.014400px;}
.ls3_c00072{letter-spacing:-0.007200px;}
.ls2_c00072{letter-spacing:0.000000px;}
.lse_c00072{letter-spacing:0.014400px;}
.ls9_c00072{letter-spacing:0.028800px;}
.ls5_c00072{letter-spacing:0.079200px;}
.ls1_c00072{letter-spacing:0.144000px;}
.ls0_c00072{letter-spacing:0.151200px;}
.ls11_c00072{letter-spacing:843.998400px;}
.sc__c00072{text-shadow:none;}
.sc0_c00072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00072{-webkit-text-stroke:0px transparent;}
.sc0_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00072{word-spacing:-20.001600px;}
.ws2_c00072{word-spacing:-19.958400px;}
.ws1_c00072{word-spacing:-19.908000px;}
.ws3_c00072{word-spacing:0.000000px;}
.ws1e_c00072{word-spacing:0.144000px;}
.ws8_c00072{word-spacing:0.172800px;}
.wsd_c00072{word-spacing:0.201600px;}
.ws25_c00072{word-spacing:0.208800px;}
.ws10_c00072{word-spacing:0.907200px;}
.ws11_c00072{word-spacing:0.964800px;}
.ws19_c00072{word-spacing:3.319200px;}
.ws24_c00072{word-spacing:3.362400px;}
.ws18_c00072{word-spacing:3.412800px;}
.ws17_c00072{word-spacing:3.434400px;}
.ws1a_c00072{word-spacing:3.456000px;}
.ws23_c00072{word-spacing:3.463200px;}
.ws1b_c00072{word-spacing:3.470400px;}
.wsb_c00072{word-spacing:5.407200px;}
.wsc_c00072{word-spacing:5.529600px;}
.ws9_c00072{word-spacing:5.587200px;}
.wsa_c00072{word-spacing:5.709600px;}
.ws14_c00072{word-spacing:6.681600px;}
.wsf_c00072{word-spacing:7.401600px;}
.wse_c00072{word-spacing:7.495200px;}
.ws1d_c00072{word-spacing:9.547200px;}
.ws1c_c00072{word-spacing:9.648000px;}
.ws22_c00072{word-spacing:9.928800px;}
.ws20_c00072{word-spacing:14.263200px;}
.ws21_c00072{word-spacing:14.529600px;}
.ws1f_c00072{word-spacing:14.630400px;}
.ws7_c00072{word-spacing:28.159200px;}
.ws6_c00072{word-spacing:28.188000px;}
.ws15_c00072{word-spacing:43.380000px;}
.ws16_c00072{word-spacing:43.401600px;}
.ws4_c00072{word-spacing:49.125600px;}
.ws5_c00072{word-spacing:49.197600px;}
.ws13_c00072{word-spacing:50.220000px;}
.ws12_c00072{word-spacing:50.234400px;}
._0_c00072{margin-left:-1.224000px;}
._1_c00072{width:1.058400px;}
.fc0_c00072{color:rgb(0,0,0);}
.fs0_c00072{font-size:72.000000px;}
.y0_c00072{bottom:0.000000px;}
.y2_c00072{bottom:46.830450px;}
.y1_c00072{bottom:67.530450px;}
.y1a_c00072{bottom:404.490450px;}
.y19_c00072{bottom:444.540450px;}
.y18_c00072{bottom:484.590450px;}
.y17_c00072{bottom:515.640450px;}
.y16_c00072{bottom:546.690450px;}
.y15_c00072{bottom:577.740450px;}
.y14_c00072{bottom:598.440450px;}
.y13_c00072{bottom:619.140450px;}
.y12_c00072{bottom:639.840450px;}
.y11_c00072{bottom:660.540450px;}
.y10_c00072{bottom:681.240450px;}
.yf_c00072{bottom:701.940450px;}
.ye_c00072{bottom:722.640450px;}
.yd_c00072{bottom:743.340450px;}
.yc_c00072{bottom:764.040450px;}
.yb_c00072{bottom:813.090450px;}
.ya_c00072{bottom:844.140450px;}
.y9_c00072{bottom:893.190450px;}
.y8_c00072{bottom:924.240450px;}
.y7_c00072{bottom:955.290450px;}
.y6_c00072{bottom:986.340450px;}
.y5_c00072{bottom:1035.390450px;}
.y4_c00072{bottom:1066.440450px;}
.y3_c00072{bottom:1097.490450px;}
.h1_c00072{height:63.175781px;}
.h3_c00072{height:64.546875px;}
.h2_c00072{height:75.093750px;}
.h0_c00072{height:1263.000000px;}
.w1_c00072{width:892.500000px;}
.w0_c00072{width:892.830000px;}
.x0_c00072{left:0.000000px;}
.x2_c00072{left:170.100000px;}
.x3_c00072{left:191.430000px;}
.x1_c00072{left:747.360000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls8_c00072{letter-spacing:-0.096000pt;}
.lsd_c00072{letter-spacing:-0.064000pt;}
.lsf_c00072{letter-spacing:-0.057600pt;}
.lsa_c00072{letter-spacing:-0.051200pt;}
.ls10_c00072{letter-spacing:-0.044800pt;}
.lsb_c00072{letter-spacing:-0.038400pt;}
.ls7_c00072{letter-spacing:-0.032000pt;}
.ls4_c00072{letter-spacing:-0.025600pt;}
.lsc_c00072{letter-spacing:-0.019200pt;}
.ls6_c00072{letter-spacing:-0.012800pt;}
.ls3_c00072{letter-spacing:-0.006400pt;}
.ls2_c00072{letter-spacing:0.000000pt;}
.lse_c00072{letter-spacing:0.012800pt;}
.ls9_c00072{letter-spacing:0.025600pt;}
.ls5_c00072{letter-spacing:0.070400pt;}
.ls1_c00072{letter-spacing:0.128000pt;}
.ls0_c00072{letter-spacing:0.134400pt;}
.ls11_c00072{letter-spacing:750.220800pt;}
.ws0_c00072{word-spacing:-17.779200pt;}
.ws2_c00072{word-spacing:-17.740800pt;}
.ws1_c00072{word-spacing:-17.696000pt;}
.ws3_c00072{word-spacing:0.000000pt;}
.ws1e_c00072{word-spacing:0.128000pt;}
.ws8_c00072{word-spacing:0.153600pt;}
.wsd_c00072{word-spacing:0.179200pt;}
.ws25_c00072{word-spacing:0.185600pt;}
.ws10_c00072{word-spacing:0.806400pt;}
.ws11_c00072{word-spacing:0.857600pt;}
.ws19_c00072{word-spacing:2.950400pt;}
.ws24_c00072{word-spacing:2.988800pt;}
.ws18_c00072{word-spacing:3.033600pt;}
.ws17_c00072{word-spacing:3.052800pt;}
.ws1a_c00072{word-spacing:3.072000pt;}
.ws23_c00072{word-spacing:3.078400pt;}
.ws1b_c00072{word-spacing:3.084800pt;}
.wsb_c00072{word-spacing:4.806400pt;}
.wsc_c00072{word-spacing:4.915200pt;}
.ws9_c00072{word-spacing:4.966400pt;}
.wsa_c00072{word-spacing:5.075200pt;}
.ws14_c00072{word-spacing:5.939200pt;}
.wsf_c00072{word-spacing:6.579200pt;}
.wse_c00072{word-spacing:6.662400pt;}
.ws1d_c00072{word-spacing:8.486400pt;}
.ws1c_c00072{word-spacing:8.576000pt;}
.ws22_c00072{word-spacing:8.825600pt;}
.ws20_c00072{word-spacing:12.678400pt;}
.ws21_c00072{word-spacing:12.915200pt;}
.ws1f_c00072{word-spacing:13.004800pt;}
.ws7_c00072{word-spacing:25.030400pt;}
.ws6_c00072{word-spacing:25.056000pt;}
.ws15_c00072{word-spacing:38.560000pt;}
.ws16_c00072{word-spacing:38.579200pt;}
.ws4_c00072{word-spacing:43.667200pt;}
.ws5_c00072{word-spacing:43.731200pt;}
.ws13_c00072{word-spacing:44.640000pt;}
.ws12_c00072{word-spacing:44.652800pt;}
._0_c00072{margin-left:-1.088000pt;}
._1_c00072{width:0.940800pt;}
.fs0_c00072{font-size:64.000000pt;}
.y0_c00072{bottom:0.000000pt;}
.y2_c00072{bottom:41.627067pt;}
.y1_c00072{bottom:60.027067pt;}
.y1a_c00072{bottom:359.547067pt;}
.y19_c00072{bottom:395.147067pt;}
.y18_c00072{bottom:430.747067pt;}
.y17_c00072{bottom:458.347067pt;}
.y16_c00072{bottom:485.947067pt;}
.y15_c00072{bottom:513.547067pt;}
.y14_c00072{bottom:531.947067pt;}
.y13_c00072{bottom:550.347067pt;}
.y12_c00072{bottom:568.747067pt;}
.y11_c00072{bottom:587.147067pt;}
.y10_c00072{bottom:605.547067pt;}
.yf_c00072{bottom:623.947067pt;}
.ye_c00072{bottom:642.347067pt;}
.yd_c00072{bottom:660.747067pt;}
.yc_c00072{bottom:679.147067pt;}
.yb_c00072{bottom:722.747067pt;}
.ya_c00072{bottom:750.347067pt;}
.y9_c00072{bottom:793.947067pt;}
.y8_c00072{bottom:821.547067pt;}
.y7_c00072{bottom:849.147067pt;}
.y6_c00072{bottom:876.747067pt;}
.y5_c00072{bottom:920.347067pt;}
.y4_c00072{bottom:947.947067pt;}
.y3_c00072{bottom:975.547067pt;}
.h1_c00072{height:56.156250pt;}
.h3_c00072{height:57.375000pt;}
.h2_c00072{height:66.750000pt;}
.h0_c00072{height:1122.666667pt;}
.w1_c00072{width:793.333333pt;}
.w0_c00072{width:793.626667pt;}
.x0_c00072{left:0.000000pt;}
.x2_c00072{left:151.200000pt;}
.x3_c00072{left:170.160000pt;}
.x1_c00072{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_75b9a51968903c6ef7f8909f.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.106934;font-style: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;}
.ls0_c00073{letter-spacing:0.000000px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00073{word-spacing:0.000000px;}
.fc0_c00073{color:rgb(0,0,0);}
.fs0_c00073{font-size:72.000000px;}
.y0_c00073{bottom:0.000000px;}
.y2_c00073{bottom:46.830450px;}
.y1_c00073{bottom:67.530450px;}
.y3_c00073{bottom:1097.490450px;}
.h1_c00073{height:63.175781px;}
.h2_c00073{height:64.546875px;}
.h0_c00073{height:1263.000000px;}
.w1_c00073{width:892.500000px;}
.w0_c00073{width:892.830000px;}
.x0_c00073{left:0.000000px;}
.x2_c00073{left:127.620000px;}
.x1_c00073{left:704.880000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls0_c00073{letter-spacing:0.000000pt;}
.ws0_c00073{word-spacing:0.000000pt;}
.fs0_c00073{font-size:64.000000pt;}
.y0_c00073{bottom:0.000000pt;}
.y2_c00073{bottom:41.627067pt;}
.y1_c00073{bottom:60.027067pt;}
.y3_c00073{bottom:975.547067pt;}
.h1_c00073{height:56.156250pt;}
.h2_c00073{height:57.375000pt;}
.h0_c00073{height:1122.666667pt;}
.w1_c00073{width:793.333333pt;}
.w0_c00073{width:793.626667pt;}
.x0_c00073{left:0.000000pt;}
.x2_c00073{left:113.440000pt;}
.x1_c00073{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_db6f6dab7f35b2adbb2a9353.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.093262;font-style:normal;font-weight:normal;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_74cbcb39d494df8f79225bb4.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00074;src:url('chunks/assets/font_889f4e2751987d9c43e366e1.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:1.106934;font-style:normal;font-weight:normal;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_5cf3223c5693e1f4f571b197.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls12_c00074{letter-spacing:-0.122400px;}
.ls9_c00074{letter-spacing:-0.086400px;}
.lsd_c00074{letter-spacing:-0.072000px;}
.lse_c00074{letter-spacing:-0.064800px;}
.ls10_c00074{letter-spacing:-0.057600px;}
.lsa_c00074{letter-spacing:-0.050400px;}
.ls6_c00074{letter-spacing:-0.043200px;}
.ls7_c00074{letter-spacing:-0.036000px;}
.ls11_c00074{letter-spacing:-0.028800px;}
.ls5_c00074{letter-spacing:-0.021600px;}
.lsc_c00074{letter-spacing:-0.014400px;}
.ls8_c00074{letter-spacing:-0.007200px;}
.ls4_c00074{letter-spacing:0.000000px;}
.lsb_c00074{letter-spacing:0.007200px;}
.ls2_c00074{letter-spacing:0.014400px;}
.ls1_c00074{letter-spacing:0.036000px;}
.ls0_c00074{letter-spacing:0.050328px;}
.ls3_c00074{letter-spacing:0.144000px;}
.lsf_c00074{letter-spacing:0.504000px;}
.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:-20.001600px;}
.ws21_c00074{word-spacing:-3.434400px;}
.ws22_c00074{word-spacing:-3.420000px;}
.ws2e_c00074{word-spacing:-1.929600px;}
.ws33_c00074{word-spacing:-1.620000px;}
.ws32_c00074{word-spacing:-1.476000px;}
.ws1e_c00074{word-spacing:-1.267200px;}
.ws10_c00074{word-spacing:-0.907200px;}
.ws14_c00074{word-spacing:-0.885600px;}
.ws1d_c00074{word-spacing:-0.871200px;}
.ws15_c00074{word-spacing:-0.856800px;}
.wse_c00074{word-spacing:-0.806400px;}
.wsf_c00074{word-spacing:-0.727200px;}
.ws1_c00074{word-spacing:0.000000px;}
.ws17_c00074{word-spacing:0.014400px;}
.ws2_c00074{word-spacing:0.041940px;}
.wsb_c00074{word-spacing:0.079200px;}
.ws27_c00074{word-spacing:0.158400px;}
.ws29_c00074{word-spacing:0.165600px;}
.ws16_c00074{word-spacing:0.172800px;}
.ws28_c00074{word-spacing:0.180000px;}
.ws18_c00074{word-spacing:0.201600px;}
.ws30_c00074{word-spacing:0.540000px;}
.ws2f_c00074{word-spacing:0.626400px;}
.ws1b_c00074{word-spacing:1.850400px;}
.wsa_c00074{word-spacing:2.008800px;}
.ws1c_c00074{word-spacing:2.016000px;}
.ws12_c00074{word-spacing:3.772800px;}
.ws13_c00074{word-spacing:3.880800px;}
.ws3_c00074{word-spacing:4.500000px;}
.ws4_c00074{word-spacing:4.507200px;}
.ws19_c00074{word-spacing:4.521600px;}
.ws1a_c00074{word-spacing:4.550400px;}
.ws5_c00074{word-spacing:4.636800px;}
.ws23_c00074{word-spacing:4.852800px;}
.ws24_c00074{word-spacing:4.953600px;}
.ws25_c00074{word-spacing:5.961600px;}
.ws26_c00074{word-spacing:5.990400px;}
.ws2d_c00074{word-spacing:6.213600px;}
.ws2c_c00074{word-spacing:6.307200px;}
.ws34_c00074{word-spacing:6.314400px;}
.wsc_c00074{word-spacing:7.732800px;}
.wsd_c00074{word-spacing:7.862400px;}
.ws11_c00074{word-spacing:9.540000px;}
.ws6_c00074{word-spacing:18.554400px;}
.ws20_c00074{word-spacing:18.561600px;}
.ws1f_c00074{word-spacing:18.583200px;}
.ws2a_c00074{word-spacing:19.540800px;}
.ws2b_c00074{word-spacing:19.663200px;}
.ws9_c00074{word-spacing:27.122400px;}
.ws7_c00074{word-spacing:27.165600px;}
.ws8_c00074{word-spacing:27.244800px;}
.ws31_c00074{word-spacing:27.583200px;}
._1_c00074{width:1.195200px;}
._0_c00074{width:9.730080px;}
.fc0_c00074{color:rgb(0,0,0);}
.fs0_c00074{font-size:72.000000px;}
.fs1_c00074{font-size:83.880000px;}
.y0_c00074{bottom:0.000000px;}
.y2_c00074{bottom:46.830450px;}
.y1_c00074{bottom:67.530450px;}
.y20_c00074{bottom:131.970450px;}
.y1f_c00074{bottom:163.020450px;}
.y1e_c00074{bottom:194.070450px;}
.y1d_c00074{bottom:225.120450px;}
.y1c_c00074{bottom:256.170450px;}
.y1b_c00074{bottom:287.220450px;}
.y1a_c00074{bottom:318.270450px;}
.y19_c00074{bottom:349.320450px;}
.y18_c00074{bottom:398.370450px;}
.y17_c00074{bottom:429.420450px;}
.y16_c00074{bottom:460.470450px;}
.y15_c00074{bottom:491.520450px;}
.y14_c00074{bottom:522.570450px;}
.y13_c00074{bottom:553.620450px;}
.y12_c00074{bottom:584.670450px;}
.y11_c00074{bottom:615.720450px;}
.y10_c00074{bottom:646.770450px;}
.yf_c00074{bottom:677.820450px;}
.ye_c00074{bottom:708.870450px;}
.yd_c00074{bottom:739.920450px;}
.yc_c00074{bottom:770.970450px;}
.yb_c00074{bottom:802.020450px;}
.ya_c00074{bottom:833.070450px;}
.y9_c00074{bottom:882.120450px;}
.y8_c00074{bottom:913.170450px;}
.y7_c00074{bottom:944.220450px;}
.y6_c00074{bottom:975.270450px;}
.y5_c00074{bottom:1006.320450px;}
.y4_c00074{bottom:1055.370450px;}
.y3_c00074{bottom:1094.520450px;}
.h1_c00074{height:63.175781px;}
.h3_c00074{height:64.546875px;}
.h4_c00074{height:75.093750px;}
.h2_c00074{height:87.484219px;}
.h0_c00074{height:1263.000000px;}
.w1_c00074{width:892.500000px;}
.w0_c00074{width:892.830000px;}
.x0_c00074{left:0.000000px;}
.x2_c00074{left:170.100000px;}
.x3_c00074{left:251.100000px;}
.x1_c00074{left:747.360000px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls12_c00074{letter-spacing:-0.108800pt;}
.ls9_c00074{letter-spacing:-0.076800pt;}
.lsd_c00074{letter-spacing:-0.064000pt;}
.lse_c00074{letter-spacing:-0.057600pt;}
.ls10_c00074{letter-spacing:-0.051200pt;}
.lsa_c00074{letter-spacing:-0.044800pt;}
.ls6_c00074{letter-spacing:-0.038400pt;}
.ls7_c00074{letter-spacing:-0.032000pt;}
.ls11_c00074{letter-spacing:-0.025600pt;}
.ls5_c00074{letter-spacing:-0.019200pt;}
.lsc_c00074{letter-spacing:-0.012800pt;}
.ls8_c00074{letter-spacing:-0.006400pt;}
.ls4_c00074{letter-spacing:0.000000pt;}
.lsb_c00074{letter-spacing:0.006400pt;}
.ls2_c00074{letter-spacing:0.012800pt;}
.ls1_c00074{letter-spacing:0.032000pt;}
.ls0_c00074{letter-spacing:0.044736pt;}
.ls3_c00074{letter-spacing:0.128000pt;}
.lsf_c00074{letter-spacing:0.448000pt;}
.ws0_c00074{word-spacing:-17.779200pt;}
.ws21_c00074{word-spacing:-3.052800pt;}
.ws22_c00074{word-spacing:-3.040000pt;}
.ws2e_c00074{word-spacing:-1.715200pt;}
.ws33_c00074{word-spacing:-1.440000pt;}
.ws32_c00074{word-spacing:-1.312000pt;}
.ws1e_c00074{word-spacing:-1.126400pt;}
.ws10_c00074{word-spacing:-0.806400pt;}
.ws14_c00074{word-spacing:-0.787200pt;}
.ws1d_c00074{word-spacing:-0.774400pt;}
.ws15_c00074{word-spacing:-0.761600pt;}
.wse_c00074{word-spacing:-0.716800pt;}
.wsf_c00074{word-spacing:-0.646400pt;}
.ws1_c00074{word-spacing:0.000000pt;}
.ws17_c00074{word-spacing:0.012800pt;}
.ws2_c00074{word-spacing:0.037280pt;}
.wsb_c00074{word-spacing:0.070400pt;}
.ws27_c00074{word-spacing:0.140800pt;}
.ws29_c00074{word-spacing:0.147200pt;}
.ws16_c00074{word-spacing:0.153600pt;}
.ws28_c00074{word-spacing:0.160000pt;}
.ws18_c00074{word-spacing:0.179200pt;}
.ws30_c00074{word-spacing:0.480000pt;}
.ws2f_c00074{word-spacing:0.556800pt;}
.ws1b_c00074{word-spacing:1.644800pt;}
.wsa_c00074{word-spacing:1.785600pt;}
.ws1c_c00074{word-spacing:1.792000pt;}
.ws12_c00074{word-spacing:3.353600pt;}
.ws13_c00074{word-spacing:3.449600pt;}
.ws3_c00074{word-spacing:4.000000pt;}
.ws4_c00074{word-spacing:4.006400pt;}
.ws19_c00074{word-spacing:4.019200pt;}
.ws1a_c00074{word-spacing:4.044800pt;}
.ws5_c00074{word-spacing:4.121600pt;}
.ws23_c00074{word-spacing:4.313600pt;}
.ws24_c00074{word-spacing:4.403200pt;}
.ws25_c00074{word-spacing:5.299200pt;}
.ws26_c00074{word-spacing:5.324800pt;}
.ws2d_c00074{word-spacing:5.523200pt;}
.ws2c_c00074{word-spacing:5.606400pt;}
.ws34_c00074{word-spacing:5.612800pt;}
.wsc_c00074{word-spacing:6.873600pt;}
.wsd_c00074{word-spacing:6.988800pt;}
.ws11_c00074{word-spacing:8.480000pt;}
.ws6_c00074{word-spacing:16.492800pt;}
.ws20_c00074{word-spacing:16.499200pt;}
.ws1f_c00074{word-spacing:16.518400pt;}
.ws2a_c00074{word-spacing:17.369600pt;}
.ws2b_c00074{word-spacing:17.478400pt;}
.ws9_c00074{word-spacing:24.108800pt;}
.ws7_c00074{word-spacing:24.147200pt;}
.ws8_c00074{word-spacing:24.217600pt;}
.ws31_c00074{word-spacing:24.518400pt;}
._1_c00074{width:1.062400pt;}
._0_c00074{width:8.648960pt;}
.fs0_c00074{font-size:64.000000pt;}
.fs1_c00074{font-size:74.560000pt;}
.y0_c00074{bottom:0.000000pt;}
.y2_c00074{bottom:41.627067pt;}
.y1_c00074{bottom:60.027067pt;}
.y20_c00074{bottom:117.307067pt;}
.y1f_c00074{bottom:144.907067pt;}
.y1e_c00074{bottom:172.507067pt;}
.y1d_c00074{bottom:200.107067pt;}
.y1c_c00074{bottom:227.707067pt;}
.y1b_c00074{bottom:255.307067pt;}
.y1a_c00074{bottom:282.907067pt;}
.y19_c00074{bottom:310.507067pt;}
.y18_c00074{bottom:354.107067pt;}
.y17_c00074{bottom:381.707067pt;}
.y16_c00074{bottom:409.307067pt;}
.y15_c00074{bottom:436.907067pt;}
.y14_c00074{bottom:464.507067pt;}
.y13_c00074{bottom:492.107067pt;}
.y12_c00074{bottom:519.707067pt;}
.y11_c00074{bottom:547.307067pt;}
.y10_c00074{bottom:574.907067pt;}
.yf_c00074{bottom:602.507067pt;}
.ye_c00074{bottom:630.107067pt;}
.yd_c00074{bottom:657.707067pt;}
.yc_c00074{bottom:685.307067pt;}
.yb_c00074{bottom:712.907067pt;}
.ya_c00074{bottom:740.507067pt;}
.y9_c00074{bottom:784.107067pt;}
.y8_c00074{bottom:811.707067pt;}
.y7_c00074{bottom:839.307067pt;}
.y6_c00074{bottom:866.907067pt;}
.y5_c00074{bottom:894.507067pt;}
.y4_c00074{bottom:938.107067pt;}
.y3_c00074{bottom:972.907067pt;}
.h1_c00074{height:56.156250pt;}
.h3_c00074{height:57.375000pt;}
.h4_c00074{height:66.750000pt;}
.h2_c00074{height:77.763750pt;}
.h0_c00074{height:1122.666667pt;}
.w1_c00074{width:793.333333pt;}
.w0_c00074{width:793.626667pt;}
.x0_c00074{left:0.000000pt;}
.x2_c00074{left:151.200000pt;}
.x3_c00074{left:223.200000pt;}
.x1_c00074{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4546c515b4be2f2e70c57193.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.093262;font-style:normal;font-weight:normal;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_a9c6a22d4ea441bcd1e01981.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:1.106934;font-style:normal;font-weight:normal;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_68351c838eb8145be5cc86be.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls4_c00075{letter-spacing:-0.079200px;}
.ls7_c00075{letter-spacing:-0.064800px;}
.lsa_c00075{letter-spacing:-0.057600px;}
.ls3_c00075{letter-spacing:-0.050400px;}
.ls6_c00075{letter-spacing:-0.043200px;}
.ls5_c00075{letter-spacing:-0.036000px;}
.ls9_c00075{letter-spacing:-0.028800px;}
.ls2_c00075{letter-spacing:-0.021600px;}
.lsb_c00075{letter-spacing:-0.014400px;}
.lsc_c00075{letter-spacing:-0.007200px;}
.ls1_c00075{letter-spacing:0.000000px;}
.ls8_c00075{letter-spacing:0.007200px;}
.ls0_c00075{letter-spacing:0.014400px;}
.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;}
}
.ws19_c00075{word-spacing:-4.874400px;}
.ws18_c00075{word-spacing:-4.867200px;}
.ws25_c00075{word-spacing:-4.435200px;}
.wsd_c00075{word-spacing:-3.477600px;}
.wsc_c00075{word-spacing:-3.398400px;}
.ws2d_c00075{word-spacing:-2.340000px;}
.ws2c_c00075{word-spacing:-2.296800px;}
.ws0_c00075{word-spacing:0.000000px;}
.ws32_c00075{word-spacing:0.086400px;}
.ws33_c00075{word-spacing:0.100800px;}
.ws20_c00075{word-spacing:0.158400px;}
.ws15_c00075{word-spacing:0.172800px;}
.ws1a_c00075{word-spacing:1.994400px;}
.ws2b_c00075{word-spacing:2.548800px;}
.ws2a_c00075{word-spacing:2.613600px;}
.ws29_c00075{word-spacing:2.635200px;}
.ws3_c00075{word-spacing:4.168800px;}
.ws11_c00075{word-spacing:4.478400px;}
.ws2e_c00075{word-spacing:4.500000px;}
.ws10_c00075{word-spacing:4.507200px;}
.ws1c_c00075{word-spacing:6.300000px;}
.ws1b_c00075{word-spacing:6.321600px;}
.ws23_c00075{word-spacing:7.020000px;}
.ws31_c00075{word-spacing:7.056000px;}
.ws24_c00075{word-spacing:7.084800px;}
.ws16_c00075{word-spacing:8.352000px;}
.ws17_c00075{word-spacing:8.474400px;}
.wsf_c00075{word-spacing:9.194400px;}
.ws7_c00075{word-spacing:9.554400px;}
.ws6_c00075{word-spacing:9.590400px;}
.ws8_c00075{word-spacing:10.929600px;}
.ws9_c00075{word-spacing:11.023200px;}
.ws12_c00075{word-spacing:11.707200px;}
.ws1_c00075{word-spacing:12.060000px;}
.ws2_c00075{word-spacing:12.067200px;}
.ws14_c00075{word-spacing:13.176000px;}
.ws13_c00075{word-spacing:13.233600px;}
.ws27_c00075{word-spacing:13.471200px;}
.ws28_c00075{word-spacing:13.500000px;}
.wsb_c00075{word-spacing:15.631200px;}
.wsa_c00075{word-spacing:15.660000px;}
.ws1d_c00075{word-spacing:16.732800px;}
.ws1f_c00075{word-spacing:16.754400px;}
.ws1e_c00075{word-spacing:16.761600px;}
.ws2f_c00075{word-spacing:17.013600px;}
.ws30_c00075{word-spacing:17.056800px;}
.ws21_c00075{word-spacing:20.721600px;}
.ws22_c00075{word-spacing:20.822400px;}
.ws4_c00075{word-spacing:26.006400px;}
.ws5_c00075{word-spacing:26.157600px;}
.ws26_c00075{word-spacing:28.281600px;}
.wse_c00075{word-spacing:39.794400px;}
._0_c00075{width:1.224000px;}
.fc0_c00075{color:rgb(0,0,0);}
.fs0_c00075{font-size:72.000000px;}
.y0_c00075{bottom:0.000000px;}
.y2_c00075{bottom:46.830450px;}
.y1_c00075{bottom:67.530450px;}
.y20_c00075{bottom:161.130450px;}
.y1f_c00075{bottom:192.180450px;}
.y1e_c00075{bottom:223.230450px;}
.y1d_c00075{bottom:254.280450px;}
.y1c_c00075{bottom:285.330450px;}
.y1b_c00075{bottom:316.380450px;}
.y1a_c00075{bottom:347.430450px;}
.y19_c00075{bottom:378.390450px;}
.y18_c00075{bottom:409.440450px;}
.y17_c00075{bottom:440.490450px;}
.y16_c00075{bottom:471.540450px;}
.y15_c00075{bottom:520.590450px;}
.y14_c00075{bottom:551.640450px;}
.y13_c00075{bottom:582.690450px;}
.y12_c00075{bottom:613.740450px;}
.y11_c00075{bottom:644.790450px;}
.y10_c00075{bottom:675.840450px;}
.yf_c00075{bottom:724.890450px;}
.ye_c00075{bottom:755.940450px;}
.yd_c00075{bottom:786.990450px;}
.yc_c00075{bottom:818.040450px;}
.yb_c00075{bottom:849.090450px;}
.ya_c00075{bottom:880.140450px;}
.y9_c00075{bottom:911.190450px;}
.y8_c00075{bottom:942.240450px;}
.y7_c00075{bottom:973.290450px;}
.y6_c00075{bottom:1004.340450px;}
.y5_c00075{bottom:1035.390450px;}
.y4_c00075{bottom:1066.440450px;}
.y3_c00075{bottom:1097.490450px;}
.h1_c00075{height:63.175781px;}
.h2_c00075{height:64.546875px;}
.h3_c00075{height:75.093750px;}
.h0_c00075{height:1263.000000px;}
.w1_c00075{width:892.500000px;}
.w0_c00075{width:892.830000px;}
.x0_c00075{left:0.000000px;}
.x2_c00075{left:127.620000px;}
.x1_c00075{left:704.880000px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls4_c00075{letter-spacing:-0.070400pt;}
.ls7_c00075{letter-spacing:-0.057600pt;}
.lsa_c00075{letter-spacing:-0.051200pt;}
.ls3_c00075{letter-spacing:-0.044800pt;}
.ls6_c00075{letter-spacing:-0.038400pt;}
.ls5_c00075{letter-spacing:-0.032000pt;}
.ls9_c00075{letter-spacing:-0.025600pt;}
.ls2_c00075{letter-spacing:-0.019200pt;}
.lsb_c00075{letter-spacing:-0.012800pt;}
.lsc_c00075{letter-spacing:-0.006400pt;}
.ls1_c00075{letter-spacing:0.000000pt;}
.ls8_c00075{letter-spacing:0.006400pt;}
.ls0_c00075{letter-spacing:0.012800pt;}
.ws19_c00075{word-spacing:-4.332800pt;}
.ws18_c00075{word-spacing:-4.326400pt;}
.ws25_c00075{word-spacing:-3.942400pt;}
.wsd_c00075{word-spacing:-3.091200pt;}
.wsc_c00075{word-spacing:-3.020800pt;}
.ws2d_c00075{word-spacing:-2.080000pt;}
.ws2c_c00075{word-spacing:-2.041600pt;}
.ws0_c00075{word-spacing:0.000000pt;}
.ws32_c00075{word-spacing:0.076800pt;}
.ws33_c00075{word-spacing:0.089600pt;}
.ws20_c00075{word-spacing:0.140800pt;}
.ws15_c00075{word-spacing:0.153600pt;}
.ws1a_c00075{word-spacing:1.772800pt;}
.ws2b_c00075{word-spacing:2.265600pt;}
.ws2a_c00075{word-spacing:2.323200pt;}
.ws29_c00075{word-spacing:2.342400pt;}
.ws3_c00075{word-spacing:3.705600pt;}
.ws11_c00075{word-spacing:3.980800pt;}
.ws2e_c00075{word-spacing:4.000000pt;}
.ws10_c00075{word-spacing:4.006400pt;}
.ws1c_c00075{word-spacing:5.600000pt;}
.ws1b_c00075{word-spacing:5.619200pt;}
.ws23_c00075{word-spacing:6.240000pt;}
.ws31_c00075{word-spacing:6.272000pt;}
.ws24_c00075{word-spacing:6.297600pt;}
.ws16_c00075{word-spacing:7.424000pt;}
.ws17_c00075{word-spacing:7.532800pt;}
.wsf_c00075{word-spacing:8.172800pt;}
.ws7_c00075{word-spacing:8.492800pt;}
.ws6_c00075{word-spacing:8.524800pt;}
.ws8_c00075{word-spacing:9.715200pt;}
.ws9_c00075{word-spacing:9.798400pt;}
.ws12_c00075{word-spacing:10.406400pt;}
.ws1_c00075{word-spacing:10.720000pt;}
.ws2_c00075{word-spacing:10.726400pt;}
.ws14_c00075{word-spacing:11.712000pt;}
.ws13_c00075{word-spacing:11.763200pt;}
.ws27_c00075{word-spacing:11.974400pt;}
.ws28_c00075{word-spacing:12.000000pt;}
.wsb_c00075{word-spacing:13.894400pt;}
.wsa_c00075{word-spacing:13.920000pt;}
.ws1d_c00075{word-spacing:14.873600pt;}
.ws1f_c00075{word-spacing:14.892800pt;}
.ws1e_c00075{word-spacing:14.899200pt;}
.ws2f_c00075{word-spacing:15.123200pt;}
.ws30_c00075{word-spacing:15.161600pt;}
.ws21_c00075{word-spacing:18.419200pt;}
.ws22_c00075{word-spacing:18.508800pt;}
.ws4_c00075{word-spacing:23.116800pt;}
.ws5_c00075{word-spacing:23.251200pt;}
.ws26_c00075{word-spacing:25.139200pt;}
.wse_c00075{word-spacing:35.372800pt;}
._0_c00075{width:1.088000pt;}
.fs0_c00075{font-size:64.000000pt;}
.y0_c00075{bottom:0.000000pt;}
.y2_c00075{bottom:41.627067pt;}
.y1_c00075{bottom:60.027067pt;}
.y20_c00075{bottom:143.227067pt;}
.y1f_c00075{bottom:170.827067pt;}
.y1e_c00075{bottom:198.427067pt;}
.y1d_c00075{bottom:226.027067pt;}
.y1c_c00075{bottom:253.627067pt;}
.y1b_c00075{bottom:281.227067pt;}
.y1a_c00075{bottom:308.827067pt;}
.y19_c00075{bottom:336.347067pt;}
.y18_c00075{bottom:363.947067pt;}
.y17_c00075{bottom:391.547067pt;}
.y16_c00075{bottom:419.147067pt;}
.y15_c00075{bottom:462.747067pt;}
.y14_c00075{bottom:490.347067pt;}
.y13_c00075{bottom:517.947067pt;}
.y12_c00075{bottom:545.547067pt;}
.y11_c00075{bottom:573.147067pt;}
.y10_c00075{bottom:600.747067pt;}
.yf_c00075{bottom:644.347067pt;}
.ye_c00075{bottom:671.947067pt;}
.yd_c00075{bottom:699.547067pt;}
.yc_c00075{bottom:727.147067pt;}
.yb_c00075{bottom:754.747067pt;}
.ya_c00075{bottom:782.347067pt;}
.y9_c00075{bottom:809.947067pt;}
.y8_c00075{bottom:837.547067pt;}
.y7_c00075{bottom:865.147067pt;}
.y6_c00075{bottom:892.747067pt;}
.y5_c00075{bottom:920.347067pt;}
.y4_c00075{bottom:947.947067pt;}
.y3_c00075{bottom:975.547067pt;}
.h1_c00075{height:56.156250pt;}
.h2_c00075{height:57.375000pt;}
.h3_c00075{height:66.750000pt;}
.h0_c00075{height:1122.666667pt;}
.w1_c00075{width:793.333333pt;}
.w0_c00075{width:793.626667pt;}
.x0_c00075{left:0.000000pt;}
.x2_c00075{left:113.440000pt;}
.x1_c00075{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_463db9d97e7cbb1f7fa3ba27.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.093262;font-style:normal;font-weight:normal;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_cf2b85f31c6b048a008e29bf.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:1.106934;font-style:normal;font-weight:normal;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_b1816bffae791df99a5a05c2.woff2')format("woff");}.ff3_c00076{font-family:ff3_c00076;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls7_c00076{letter-spacing:-0.086400px;}
.ls4_c00076{letter-spacing:-0.072000px;}
.ls3_c00076{letter-spacing:-0.064800px;}
.lsb_c00076{letter-spacing:-0.057600px;}
.ls6_c00076{letter-spacing:-0.050400px;}
.ls2_c00076{letter-spacing:-0.043200px;}
.ls5_c00076{letter-spacing:-0.036000px;}
.ls9_c00076{letter-spacing:-0.028800px;}
.lsd_c00076{letter-spacing:-0.021600px;}
.lsc_c00076{letter-spacing:-0.014400px;}
.ls8_c00076{letter-spacing:-0.007200px;}
.ls1_c00076{letter-spacing:0.000000px;}
.lsa_c00076{letter-spacing:0.028800px;}
.ls0_c00076{letter-spacing:0.144000px;}
.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;}
}
.ws28_c00076{word-spacing:-4.478400px;}
.ws27_c00076{word-spacing:-4.420800px;}
.ws14_c00076{word-spacing:-3.924000px;}
.ws13_c00076{word-spacing:-3.744000px;}
.wse_c00076{word-spacing:-3.139200px;}
.ws32_c00076{word-spacing:-3.045600px;}
.wsd_c00076{word-spacing:-3.031200px;}
.ws33_c00076{word-spacing:-3.016800px;}
.ws17_c00076{word-spacing:-2.685600px;}
.ws21_c00076{word-spacing:-2.649600px;}
.ws22_c00076{word-spacing:-2.570400px;}
.ws15_c00076{word-spacing:-2.347200px;}
.ws16_c00076{word-spacing:-2.289600px;}
.ws37_c00076{word-spacing:-2.145600px;}
.ws36_c00076{word-spacing:-1.958400px;}
.ws8_c00076{word-spacing:-1.591200px;}
.ws2b_c00076{word-spacing:-0.943200px;}
.ws2a_c00076{word-spacing:-0.885600px;}
.ws2c_c00076{word-spacing:-0.864000px;}
.ws4_c00076{word-spacing:-0.129600px;}
.ws0_c00076{word-spacing:0.000000px;}
.ws3_c00076{word-spacing:0.043200px;}
.ws10_c00076{word-spacing:0.129600px;}
.ws2f_c00076{word-spacing:0.158400px;}
.ws18_c00076{word-spacing:0.172800px;}
.ws38_c00076{word-spacing:0.180000px;}
.ws1d_c00076{word-spacing:0.194400px;}
.wsf_c00076{word-spacing:0.208800px;}
.ws1c_c00076{word-spacing:0.244800px;}
.wsa_c00076{word-spacing:0.432000px;}
.ws9_c00076{word-spacing:0.554400px;}
.ws31_c00076{word-spacing:1.605600px;}
.ws30_c00076{word-spacing:1.656000px;}
.ws5_c00076{word-spacing:1.994400px;}
.ws6_c00076{word-spacing:2.008800px;}
.ws7_c00076{word-spacing:2.044800px;}
.ws1f_c00076{word-spacing:2.988000px;}
.ws1e_c00076{word-spacing:3.081600px;}
.ws2_c00076{word-spacing:4.161600px;}
.ws12_c00076{word-spacing:4.392000px;}
.ws11_c00076{word-spacing:4.507200px;}
.ws2e_c00076{word-spacing:4.860000px;}
.ws2d_c00076{word-spacing:4.939200px;}
.ws35_c00076{word-spacing:5.306400px;}
.ws34_c00076{word-spacing:5.414400px;}
.wsc_c00076{word-spacing:12.808800px;}
.wsb_c00076{word-spacing:12.823200px;}
.ws26_c00076{word-spacing:14.191200px;}
.ws25_c00076{word-spacing:14.263200px;}
.ws20_c00076{word-spacing:16.034400px;}
.ws19_c00076{word-spacing:16.048800px;}
.ws23_c00076{word-spacing:17.100000px;}
.ws24_c00076{word-spacing:17.121600px;}
.ws1_c00076{word-spacing:17.841600px;}
.ws1a_c00076{word-spacing:28.620000px;}
.ws1b_c00076{word-spacing:28.648800px;}
.ws29_c00076{word-spacing:31.132800px;}
._1_c00076{margin-left:-15.840000px;}
._0_c00076{width:1.152000px;}
.fc0_c00076{color:rgb(0,0,0);}
.fs0_c00076{font-size:72.000000px;}
.y0_c00076{bottom:0.000000px;}
.y2_c00076{bottom:46.830450px;}
.y1_c00076{bottom:67.530450px;}
.y27_c00076{bottom:143.130450px;}
.y26_c00076{bottom:163.830450px;}
.y25_c00076{bottom:184.530450px;}
.y24_c00076{bottom:205.230450px;}
.y23_c00076{bottom:225.930450px;}
.y22_c00076{bottom:274.980450px;}
.y21_c00076{bottom:306.030450px;}
.y20_c00076{bottom:337.080450px;}
.y1f_c00076{bottom:357.690450px;}
.y1e_c00076{bottom:378.390450px;}
.y1d_c00076{bottom:399.090450px;}
.y1c_c00076{bottom:419.790450px;}
.y1b_c00076{bottom:440.490450px;}
.y1a_c00076{bottom:461.190450px;}
.y19_c00076{bottom:481.890450px;}
.y18_c00076{bottom:502.590450px;}
.y17_c00076{bottom:523.290450px;}
.y16_c00076{bottom:543.990450px;}
.y15_c00076{bottom:593.040450px;}
.y14_c00076{bottom:624.090450px;}
.y13_c00076{bottom:655.140450px;}
.y12_c00076{bottom:675.840450px;}
.y11_c00076{bottom:696.540450px;}
.y10_c00076{bottom:717.240450px;}
.yf_c00076{bottom:737.940450px;}
.ye_c00076{bottom:758.640450px;}
.yd_c00076{bottom:779.340450px;}
.yc_c00076{bottom:800.040450px;}
.yb_c00076{bottom:849.090450px;}
.ya_c00076{bottom:880.140450px;}
.y9_c00076{bottom:911.190450px;}
.y8_c00076{bottom:942.240450px;}
.y7_c00076{bottom:973.200450px;}
.y6_c00076{bottom:1004.340450px;}
.y5_c00076{bottom:1035.390450px;}
.y4_c00076{bottom:1066.440450px;}
.y3_c00076{bottom:1097.490450px;}
.h1_c00076{height:63.175781px;}
.h2_c00076{height:64.546875px;}
.h3_c00076{height:75.093750px;}
.h0_c00076{height:1263.000000px;}
.w1_c00076{width:892.500000px;}
.w0_c00076{width:892.830000px;}
.x0_c00076{left:0.000000px;}
.x2_c00076{left:170.100000px;}
.x3_c00076{left:191.430000px;}
.x1_c00076{left:747.360000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls7_c00076{letter-spacing:-0.076800pt;}
.ls4_c00076{letter-spacing:-0.064000pt;}
.ls3_c00076{letter-spacing:-0.057600pt;}
.lsb_c00076{letter-spacing:-0.051200pt;}
.ls6_c00076{letter-spacing:-0.044800pt;}
.ls2_c00076{letter-spacing:-0.038400pt;}
.ls5_c00076{letter-spacing:-0.032000pt;}
.ls9_c00076{letter-spacing:-0.025600pt;}
.lsd_c00076{letter-spacing:-0.019200pt;}
.lsc_c00076{letter-spacing:-0.012800pt;}
.ls8_c00076{letter-spacing:-0.006400pt;}
.ls1_c00076{letter-spacing:0.000000pt;}
.lsa_c00076{letter-spacing:0.025600pt;}
.ls0_c00076{letter-spacing:0.128000pt;}
.ws28_c00076{word-spacing:-3.980800pt;}
.ws27_c00076{word-spacing:-3.929600pt;}
.ws14_c00076{word-spacing:-3.488000pt;}
.ws13_c00076{word-spacing:-3.328000pt;}
.wse_c00076{word-spacing:-2.790400pt;}
.ws32_c00076{word-spacing:-2.707200pt;}
.wsd_c00076{word-spacing:-2.694400pt;}
.ws33_c00076{word-spacing:-2.681600pt;}
.ws17_c00076{word-spacing:-2.387200pt;}
.ws21_c00076{word-spacing:-2.355200pt;}
.ws22_c00076{word-spacing:-2.284800pt;}
.ws15_c00076{word-spacing:-2.086400pt;}
.ws16_c00076{word-spacing:-2.035200pt;}
.ws37_c00076{word-spacing:-1.907200pt;}
.ws36_c00076{word-spacing:-1.740800pt;}
.ws8_c00076{word-spacing:-1.414400pt;}
.ws2b_c00076{word-spacing:-0.838400pt;}
.ws2a_c00076{word-spacing:-0.787200pt;}
.ws2c_c00076{word-spacing:-0.768000pt;}
.ws4_c00076{word-spacing:-0.115200pt;}
.ws0_c00076{word-spacing:0.000000pt;}
.ws3_c00076{word-spacing:0.038400pt;}
.ws10_c00076{word-spacing:0.115200pt;}
.ws2f_c00076{word-spacing:0.140800pt;}
.ws18_c00076{word-spacing:0.153600pt;}
.ws38_c00076{word-spacing:0.160000pt;}
.ws1d_c00076{word-spacing:0.172800pt;}
.wsf_c00076{word-spacing:0.185600pt;}
.ws1c_c00076{word-spacing:0.217600pt;}
.wsa_c00076{word-spacing:0.384000pt;}
.ws9_c00076{word-spacing:0.492800pt;}
.ws31_c00076{word-spacing:1.427200pt;}
.ws30_c00076{word-spacing:1.472000pt;}
.ws5_c00076{word-spacing:1.772800pt;}
.ws6_c00076{word-spacing:1.785600pt;}
.ws7_c00076{word-spacing:1.817600pt;}
.ws1f_c00076{word-spacing:2.656000pt;}
.ws1e_c00076{word-spacing:2.739200pt;}
.ws2_c00076{word-spacing:3.699200pt;}
.ws12_c00076{word-spacing:3.904000pt;}
.ws11_c00076{word-spacing:4.006400pt;}
.ws2e_c00076{word-spacing:4.320000pt;}
.ws2d_c00076{word-spacing:4.390400pt;}
.ws35_c00076{word-spacing:4.716800pt;}
.ws34_c00076{word-spacing:4.812800pt;}
.wsc_c00076{word-spacing:11.385600pt;}
.wsb_c00076{word-spacing:11.398400pt;}
.ws26_c00076{word-spacing:12.614400pt;}
.ws25_c00076{word-spacing:12.678400pt;}
.ws20_c00076{word-spacing:14.252800pt;}
.ws19_c00076{word-spacing:14.265600pt;}
.ws23_c00076{word-spacing:15.200000pt;}
.ws24_c00076{word-spacing:15.219200pt;}
.ws1_c00076{word-spacing:15.859200pt;}
.ws1a_c00076{word-spacing:25.440000pt;}
.ws1b_c00076{word-spacing:25.465600pt;}
.ws29_c00076{word-spacing:27.673600pt;}
._1_c00076{margin-left:-14.080000pt;}
._0_c00076{width:1.024000pt;}
.fs0_c00076{font-size:64.000000pt;}
.y0_c00076{bottom:0.000000pt;}
.y2_c00076{bottom:41.627067pt;}
.y1_c00076{bottom:60.027067pt;}
.y27_c00076{bottom:127.227067pt;}
.y26_c00076{bottom:145.627067pt;}
.y25_c00076{bottom:164.027067pt;}
.y24_c00076{bottom:182.427067pt;}
.y23_c00076{bottom:200.827067pt;}
.y22_c00076{bottom:244.427067pt;}
.y21_c00076{bottom:272.027067pt;}
.y20_c00076{bottom:299.627067pt;}
.y1f_c00076{bottom:317.947067pt;}
.y1e_c00076{bottom:336.347067pt;}
.y1d_c00076{bottom:354.747067pt;}
.y1c_c00076{bottom:373.147067pt;}
.y1b_c00076{bottom:391.547067pt;}
.y1a_c00076{bottom:409.947067pt;}
.y19_c00076{bottom:428.347067pt;}
.y18_c00076{bottom:446.747067pt;}
.y17_c00076{bottom:465.147067pt;}
.y16_c00076{bottom:483.547067pt;}
.y15_c00076{bottom:527.147067pt;}
.y14_c00076{bottom:554.747067pt;}
.y13_c00076{bottom:582.347067pt;}
.y12_c00076{bottom:600.747067pt;}
.y11_c00076{bottom:619.147067pt;}
.y10_c00076{bottom:637.547067pt;}
.yf_c00076{bottom:655.947067pt;}
.ye_c00076{bottom:674.347067pt;}
.yd_c00076{bottom:692.747067pt;}
.yc_c00076{bottom:711.147067pt;}
.yb_c00076{bottom:754.747067pt;}
.ya_c00076{bottom:782.347067pt;}
.y9_c00076{bottom:809.947067pt;}
.y8_c00076{bottom:837.547067pt;}
.y7_c00076{bottom:865.067067pt;}
.y6_c00076{bottom:892.747067pt;}
.y5_c00076{bottom:920.347067pt;}
.y4_c00076{bottom:947.947067pt;}
.y3_c00076{bottom:975.547067pt;}
.h1_c00076{height:56.156250pt;}
.h2_c00076{height:57.375000pt;}
.h3_c00076{height:66.750000pt;}
.h0_c00076{height:1122.666667pt;}
.w1_c00076{width:793.333333pt;}
.w0_c00076{width:793.626667pt;}
.x0_c00076{left:0.000000pt;}
.x2_c00076{left:151.200000pt;}
.x3_c00076{left:170.160000pt;}
.x1_c00076{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f054c95173310c2af3121704.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.093262;font-style:normal;font-weight:normal;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_9bd4726222cbc66f62acd060.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:1.106934;font-style: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;}
.lsa_c00077{letter-spacing:-0.108000px;}
.ls7_c00077{letter-spacing:-0.093600px;}
.ls5_c00077{letter-spacing:-0.079200px;}
.ls8_c00077{letter-spacing:-0.072000px;}
.ls6_c00077{letter-spacing:-0.064800px;}
.ls9_c00077{letter-spacing:-0.057600px;}
.ls4_c00077{letter-spacing:-0.050400px;}
.ls1_c00077{letter-spacing:-0.043200px;}
.lsc_c00077{letter-spacing:-0.036000px;}
.ls2_c00077{letter-spacing:-0.028800px;}
.ls3_c00077{letter-spacing:-0.021600px;}
.lsb_c00077{letter-spacing:-0.007200px;}
.ls0_c00077{letter-spacing:0.000000px;}
.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;}
}
.ws15_c00077{word-spacing:-3.240000px;}
.ws14_c00077{word-spacing:-3.045600px;}
.ws13_c00077{word-spacing:-3.031200px;}
.wse_c00077{word-spacing:-2.628000px;}
.wsf_c00077{word-spacing:-2.592000px;}
.ws0_c00077{word-spacing:0.000000px;}
.ws5_c00077{word-spacing:0.057600px;}
.ws16_c00077{word-spacing:0.165600px;}
.ws4_c00077{word-spacing:0.201600px;}
.ws1e_c00077{word-spacing:0.208800px;}
.wsb_c00077{word-spacing:0.540000px;}
.wsa_c00077{word-spacing:0.583200px;}
.ws10_c00077{word-spacing:0.590400px;}
.ws11_c00077{word-spacing:0.612000px;}
.ws9_c00077{word-spacing:0.878400px;}
.ws8_c00077{word-spacing:0.957600px;}
.ws19_c00077{word-spacing:2.354400px;}
.ws17_c00077{word-spacing:3.607200px;}
.wsc_c00077{word-spacing:3.744000px;}
.ws18_c00077{word-spacing:3.758400px;}
.wsd_c00077{word-spacing:3.808800px;}
.ws1b_c00077{word-spacing:4.773600px;}
.ws1a_c00077{word-spacing:4.874400px;}
.ws2_c00077{word-spacing:11.707200px;}
.ws3_c00077{word-spacing:11.721600px;}
.ws1_c00077{word-spacing:13.881600px;}
.ws6_c00077{word-spacing:15.667200px;}
.ws7_c00077{word-spacing:15.688800px;}
.ws1d_c00077{word-spacing:21.384000px;}
.ws1c_c00077{word-spacing:21.463200px;}
.ws12_c00077{word-spacing:26.136000px;}
._0_c00077{width:1.008000px;}
.fc0_c00077{color:rgb(0,0,0);}
.fs0_c00077{font-size:72.000000px;}
.y0_c00077{bottom:0.000000px;}
.y2_c00077{bottom:46.830450px;}
.y1_c00077{bottom:67.530450px;}
.y17_c00077{bottom:593.040450px;}
.y16_c00077{bottom:624.090450px;}
.y15_c00077{bottom:655.140450px;}
.y14_c00077{bottom:686.190450px;}
.y13_c00077{bottom:717.240450px;}
.y12_c00077{bottom:737.940450px;}
.y11_c00077{bottom:758.640450px;}
.y10_c00077{bottom:779.340450px;}
.yf_c00077{bottom:800.040450px;}
.ye_c00077{bottom:820.740450px;}
.yd_c00077{bottom:841.440450px;}
.yc_c00077{bottom:862.140450px;}
.yb_c00077{bottom:882.840450px;}
.ya_c00077{bottom:903.540450px;}
.y9_c00077{bottom:924.240450px;}
.y8_c00077{bottom:944.940450px;}
.y7_c00077{bottom:993.990450px;}
.y6_c00077{bottom:1025.040450px;}
.y5_c00077{bottom:1056.090450px;}
.y4_c00077{bottom:1076.790450px;}
.y3_c00077{bottom:1097.490450px;}
.h1_c00077{height:63.175781px;}
.h2_c00077{height:64.546875px;}
.h0_c00077{height:1263.000000px;}
.w1_c00077{width:892.500000px;}
.w0_c00077{width:892.830000px;}
.x0_c00077{left:0.000000px;}
.x2_c00077{left:127.620000px;}
.x3_c00077{left:148.950000px;}
.x1_c00077{left:704.880000px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.lsa_c00077{letter-spacing:-0.096000pt;}
.ls7_c00077{letter-spacing:-0.083200pt;}
.ls5_c00077{letter-spacing:-0.070400pt;}
.ls8_c00077{letter-spacing:-0.064000pt;}
.ls6_c00077{letter-spacing:-0.057600pt;}
.ls9_c00077{letter-spacing:-0.051200pt;}
.ls4_c00077{letter-spacing:-0.044800pt;}
.ls1_c00077{letter-spacing:-0.038400pt;}
.lsc_c00077{letter-spacing:-0.032000pt;}
.ls2_c00077{letter-spacing:-0.025600pt;}
.ls3_c00077{letter-spacing:-0.019200pt;}
.lsb_c00077{letter-spacing:-0.006400pt;}
.ls0_c00077{letter-spacing:0.000000pt;}
.ws15_c00077{word-spacing:-2.880000pt;}
.ws14_c00077{word-spacing:-2.707200pt;}
.ws13_c00077{word-spacing:-2.694400pt;}
.wse_c00077{word-spacing:-2.336000pt;}
.wsf_c00077{word-spacing:-2.304000pt;}
.ws0_c00077{word-spacing:0.000000pt;}
.ws5_c00077{word-spacing:0.051200pt;}
.ws16_c00077{word-spacing:0.147200pt;}
.ws4_c00077{word-spacing:0.179200pt;}
.ws1e_c00077{word-spacing:0.185600pt;}
.wsb_c00077{word-spacing:0.480000pt;}
.wsa_c00077{word-spacing:0.518400pt;}
.ws10_c00077{word-spacing:0.524800pt;}
.ws11_c00077{word-spacing:0.544000pt;}
.ws9_c00077{word-spacing:0.780800pt;}
.ws8_c00077{word-spacing:0.851200pt;}
.ws19_c00077{word-spacing:2.092800pt;}
.ws17_c00077{word-spacing:3.206400pt;}
.wsc_c00077{word-spacing:3.328000pt;}
.ws18_c00077{word-spacing:3.340800pt;}
.wsd_c00077{word-spacing:3.385600pt;}
.ws1b_c00077{word-spacing:4.243200pt;}
.ws1a_c00077{word-spacing:4.332800pt;}
.ws2_c00077{word-spacing:10.406400pt;}
.ws3_c00077{word-spacing:10.419200pt;}
.ws1_c00077{word-spacing:12.339200pt;}
.ws6_c00077{word-spacing:13.926400pt;}
.ws7_c00077{word-spacing:13.945600pt;}
.ws1d_c00077{word-spacing:19.008000pt;}
.ws1c_c00077{word-spacing:19.078400pt;}
.ws12_c00077{word-spacing:23.232000pt;}
._0_c00077{width:0.896000pt;}
.fs0_c00077{font-size:64.000000pt;}
.y0_c00077{bottom:0.000000pt;}
.y2_c00077{bottom:41.627067pt;}
.y1_c00077{bottom:60.027067pt;}
.y17_c00077{bottom:527.147067pt;}
.y16_c00077{bottom:554.747067pt;}
.y15_c00077{bottom:582.347067pt;}
.y14_c00077{bottom:609.947067pt;}
.y13_c00077{bottom:637.547067pt;}
.y12_c00077{bottom:655.947067pt;}
.y11_c00077{bottom:674.347067pt;}
.y10_c00077{bottom:692.747067pt;}
.yf_c00077{bottom:711.147067pt;}
.ye_c00077{bottom:729.547067pt;}
.yd_c00077{bottom:747.947067pt;}
.yc_c00077{bottom:766.347067pt;}
.yb_c00077{bottom:784.747067pt;}
.ya_c00077{bottom:803.147067pt;}
.y9_c00077{bottom:821.547067pt;}
.y8_c00077{bottom:839.947067pt;}
.y7_c00077{bottom:883.547067pt;}
.y6_c00077{bottom:911.147067pt;}
.y5_c00077{bottom:938.747067pt;}
.y4_c00077{bottom:957.147067pt;}
.y3_c00077{bottom:975.547067pt;}
.h1_c00077{height:56.156250pt;}
.h2_c00077{height:57.375000pt;}
.h0_c00077{height:1122.666667pt;}
.w1_c00077{width:793.333333pt;}
.w0_c00077{width:793.626667pt;}
.x0_c00077{left:0.000000pt;}
.x2_c00077{left:113.440000pt;}
.x3_c00077{left:132.400000pt;}
.x1_c00077{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_88343c9dc3d3980b2d08b1ba.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.093262;font-style:normal;font-weight:normal;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_7e62fe5a87264e2e01e09eeb.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00078;src:url('chunks/assets/font_f7e6d52f2b400af791fa92e0.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:1.106934;font-style:normal;font-weight:normal;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_0415b1cb87b366c2d9284759.woff2')format("woff");}.ff4_c00078{font-family:ff4_c00078;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsd_c00078{letter-spacing:-0.108000px;}
.lsf_c00078{letter-spacing:-0.100800px;}
.ls9_c00078{letter-spacing:-0.086400px;}
.ls3_c00078{letter-spacing:-0.079200px;}
.lsb_c00078{letter-spacing:-0.072000px;}
.ls8_c00078{letter-spacing:-0.064800px;}
.ls5_c00078{letter-spacing:-0.057600px;}
.lsa_c00078{letter-spacing:-0.050400px;}
.ls4_c00078{letter-spacing:-0.043200px;}
.ls6_c00078{letter-spacing:-0.036000px;}
.ls2_c00078{letter-spacing:-0.028800px;}
.lse_c00078{letter-spacing:-0.021600px;}
.lsc_c00078{letter-spacing:-0.014400px;}
.ls7_c00078{letter-spacing:-0.007200px;}
.ls1_c00078{letter-spacing:0.000000px;}
.ls0_c00078{letter-spacing:0.050328px;}
.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;}
}
.ws3_c00078{word-spacing:-19.972800px;}
.ws1_c00078{word-spacing:-19.958400px;}
.ws0_c00078{word-spacing:-19.951200px;}
.ws2_c00078{word-spacing:-19.908000px;}
.ws3a_c00078{word-spacing:-3.420000px;}
.ws39_c00078{word-spacing:-3.398400px;}
.ws18_c00078{word-spacing:-1.598400px;}
.ws17_c00078{word-spacing:-1.504800px;}
.ws33_c00078{word-spacing:-0.914400px;}
.ws34_c00078{word-spacing:-0.849600px;}
.ws21_c00078{word-spacing:-0.561600px;}
.ws22_c00078{word-spacing:-0.338400px;}
.ws4_c00078{word-spacing:0.000000px;}
.ws5_c00078{word-spacing:0.041940px;}
.ws23_c00078{word-spacing:0.100800px;}
.ws32_c00078{word-spacing:0.158400px;}
.ws13_c00078{word-spacing:0.165600px;}
.ws2d_c00078{word-spacing:0.172800px;}
.ws31_c00078{word-spacing:0.180000px;}
.ws1e_c00078{word-spacing:0.201600px;}
.ws9_c00078{word-spacing:0.561600px;}
.wsb_c00078{word-spacing:0.914400px;}
.wsa_c00078{word-spacing:0.936000px;}
.ws2f_c00078{word-spacing:1.144800px;}
.ws30_c00078{word-spacing:1.209600px;}
.ws2e_c00078{word-spacing:1.440000px;}
.ws12_c00078{word-spacing:2.167200px;}
.ws10_c00078{word-spacing:2.253600px;}
.ws11_c00078{word-spacing:2.311200px;}
.wsd_c00078{word-spacing:3.340800px;}
.wsc_c00078{word-spacing:3.434400px;}
.ws8_c00078{word-spacing:4.507200px;}
.ws35_c00078{word-spacing:5.515200px;}
.ws36_c00078{word-spacing:5.659200px;}
.ws1f_c00078{word-spacing:5.961600px;}
.ws25_c00078{word-spacing:6.019200px;}
.ws24_c00078{word-spacing:6.062400px;}
.wse_c00078{word-spacing:7.056000px;}
.wsf_c00078{word-spacing:7.063200px;}
.ws29_c00078{word-spacing:9.770400px;}
.ws2a_c00078{word-spacing:9.928800px;}
.ws38_c00078{word-spacing:10.173600px;}
.ws37_c00078{word-spacing:10.260000px;}
.ws14_c00078{word-spacing:12.765600px;}
.ws15_c00078{word-spacing:12.787200px;}
.ws16_c00078{word-spacing:13.168800px;}
.ws2c_c00078{word-spacing:15.703200px;}
.ws2b_c00078{word-spacing:15.739200px;}
.ws6_c00078{word-spacing:20.203200px;}
.ws19_c00078{word-spacing:20.354400px;}
.ws7_c00078{word-spacing:20.397600px;}
.ws1a_c00078{word-spacing:20.419200px;}
.ws20_c00078{word-spacing:20.692800px;}
.ws27_c00078{word-spacing:23.572800px;}
.ws28_c00078{word-spacing:23.688000px;}
.ws1c_c00078{word-spacing:24.523200px;}
.ws1d_c00078{word-spacing:24.710400px;}
.ws26_c00078{word-spacing:26.827200px;}
.ws1b_c00078{word-spacing:43.056000px;}
._1_c00078{width:1.152000px;}
._0_c00078{width:9.730080px;}
.fc0_c00078{color:rgb(0,0,0);}
.fs0_c00078{font-size:72.000000px;}
.fs1_c00078{font-size:83.880000px;}
.y0_c00078{bottom:0.000000px;}
.y2_c00078{bottom:46.830450px;}
.y1_c00078{bottom:67.530450px;}
.y24_c00078{bottom:160.320450px;}
.y23_c00078{bottom:191.370450px;}
.y22_c00078{bottom:222.420450px;}
.y21_c00078{bottom:253.470450px;}
.y20_c00078{bottom:284.520450px;}
.y1f_c00078{bottom:315.570450px;}
.y1e_c00078{bottom:364.620450px;}
.y1d_c00078{bottom:395.670450px;}
.y1c_c00078{bottom:426.720450px;}
.y1b_c00078{bottom:457.770450px;}
.y1a_c00078{bottom:488.820450px;}
.y19_c00078{bottom:519.870450px;}
.y18_c00078{bottom:540.570450px;}
.y17_c00078{bottom:561.270450px;}
.y16_c00078{bottom:581.970450px;}
.y15_c00078{bottom:602.670450px;}
.y14_c00078{bottom:623.370450px;}
.y13_c00078{bottom:644.070450px;}
.y12_c00078{bottom:664.770450px;}
.y11_c00078{bottom:685.470450px;}
.y10_c00078{bottom:706.170450px;}
.yf_c00078{bottom:726.870450px;}
.ye_c00078{bottom:747.570450px;}
.yd_c00078{bottom:768.270450px;}
.yc_c00078{bottom:788.970450px;}
.yb_c00078{bottom:838.020450px;}
.ya_c00078{bottom:869.070450px;}
.y9_c00078{bottom:900.120450px;}
.y8_c00078{bottom:931.170450px;}
.y7_c00078{bottom:962.220450px;}
.y6_c00078{bottom:993.270450px;}
.y5_c00078{bottom:1024.320450px;}
.y4_c00078{bottom:1055.370450px;}
.y3_c00078{bottom:1094.520450px;}
.h1_c00078{height:63.175781px;}
.h3_c00078{height:64.546875px;}
.h4_c00078{height:75.093750px;}
.h2_c00078{height:87.484219px;}
.h0_c00078{height:1263.000000px;}
.w1_c00078{width:892.500000px;}
.w0_c00078{width:892.830000px;}
.x0_c00078{left:0.000000px;}
.x2_c00078{left:170.100000px;}
.x4_c00078{left:191.430000px;}
.x3_c00078{left:251.100000px;}
.x1_c00078{left:747.360000px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.lsd_c00078{letter-spacing:-0.096000pt;}
.lsf_c00078{letter-spacing:-0.089600pt;}
.ls9_c00078{letter-spacing:-0.076800pt;}
.ls3_c00078{letter-spacing:-0.070400pt;}
.lsb_c00078{letter-spacing:-0.064000pt;}
.ls8_c00078{letter-spacing:-0.057600pt;}
.ls5_c00078{letter-spacing:-0.051200pt;}
.lsa_c00078{letter-spacing:-0.044800pt;}
.ls4_c00078{letter-spacing:-0.038400pt;}
.ls6_c00078{letter-spacing:-0.032000pt;}
.ls2_c00078{letter-spacing:-0.025600pt;}
.lse_c00078{letter-spacing:-0.019200pt;}
.lsc_c00078{letter-spacing:-0.012800pt;}
.ls7_c00078{letter-spacing:-0.006400pt;}
.ls1_c00078{letter-spacing:0.000000pt;}
.ls0_c00078{letter-spacing:0.044736pt;}
.ws3_c00078{word-spacing:-17.753600pt;}
.ws1_c00078{word-spacing:-17.740800pt;}
.ws0_c00078{word-spacing:-17.734400pt;}
.ws2_c00078{word-spacing:-17.696000pt;}
.ws3a_c00078{word-spacing:-3.040000pt;}
.ws39_c00078{word-spacing:-3.020800pt;}
.ws18_c00078{word-spacing:-1.420800pt;}
.ws17_c00078{word-spacing:-1.337600pt;}
.ws33_c00078{word-spacing:-0.812800pt;}
.ws34_c00078{word-spacing:-0.755200pt;}
.ws21_c00078{word-spacing:-0.499200pt;}
.ws22_c00078{word-spacing:-0.300800pt;}
.ws4_c00078{word-spacing:0.000000pt;}
.ws5_c00078{word-spacing:0.037280pt;}
.ws23_c00078{word-spacing:0.089600pt;}
.ws32_c00078{word-spacing:0.140800pt;}
.ws13_c00078{word-spacing:0.147200pt;}
.ws2d_c00078{word-spacing:0.153600pt;}
.ws31_c00078{word-spacing:0.160000pt;}
.ws1e_c00078{word-spacing:0.179200pt;}
.ws9_c00078{word-spacing:0.499200pt;}
.wsb_c00078{word-spacing:0.812800pt;}
.wsa_c00078{word-spacing:0.832000pt;}
.ws2f_c00078{word-spacing:1.017600pt;}
.ws30_c00078{word-spacing:1.075200pt;}
.ws2e_c00078{word-spacing:1.280000pt;}
.ws12_c00078{word-spacing:1.926400pt;}
.ws10_c00078{word-spacing:2.003200pt;}
.ws11_c00078{word-spacing:2.054400pt;}
.wsd_c00078{word-spacing:2.969600pt;}
.wsc_c00078{word-spacing:3.052800pt;}
.ws8_c00078{word-spacing:4.006400pt;}
.ws35_c00078{word-spacing:4.902400pt;}
.ws36_c00078{word-spacing:5.030400pt;}
.ws1f_c00078{word-spacing:5.299200pt;}
.ws25_c00078{word-spacing:5.350400pt;}
.ws24_c00078{word-spacing:5.388800pt;}
.wse_c00078{word-spacing:6.272000pt;}
.wsf_c00078{word-spacing:6.278400pt;}
.ws29_c00078{word-spacing:8.684800pt;}
.ws2a_c00078{word-spacing:8.825600pt;}
.ws38_c00078{word-spacing:9.043200pt;}
.ws37_c00078{word-spacing:9.120000pt;}
.ws14_c00078{word-spacing:11.347200pt;}
.ws15_c00078{word-spacing:11.366400pt;}
.ws16_c00078{word-spacing:11.705600pt;}
.ws2c_c00078{word-spacing:13.958400pt;}
.ws2b_c00078{word-spacing:13.990400pt;}
.ws6_c00078{word-spacing:17.958400pt;}
.ws19_c00078{word-spacing:18.092800pt;}
.ws7_c00078{word-spacing:18.131200pt;}
.ws1a_c00078{word-spacing:18.150400pt;}
.ws20_c00078{word-spacing:18.393600pt;}
.ws27_c00078{word-spacing:20.953600pt;}
.ws28_c00078{word-spacing:21.056000pt;}
.ws1c_c00078{word-spacing:21.798400pt;}
.ws1d_c00078{word-spacing:21.964800pt;}
.ws26_c00078{word-spacing:23.846400pt;}
.ws1b_c00078{word-spacing:38.272000pt;}
._1_c00078{width:1.024000pt;}
._0_c00078{width:8.648960pt;}
.fs0_c00078{font-size:64.000000pt;}
.fs1_c00078{font-size:74.560000pt;}
.y0_c00078{bottom:0.000000pt;}
.y2_c00078{bottom:41.627067pt;}
.y1_c00078{bottom:60.027067pt;}
.y24_c00078{bottom:142.507067pt;}
.y23_c00078{bottom:170.107067pt;}
.y22_c00078{bottom:197.707067pt;}
.y21_c00078{bottom:225.307067pt;}
.y20_c00078{bottom:252.907067pt;}
.y1f_c00078{bottom:280.507067pt;}
.y1e_c00078{bottom:324.107067pt;}
.y1d_c00078{bottom:351.707067pt;}
.y1c_c00078{bottom:379.307067pt;}
.y1b_c00078{bottom:406.907067pt;}
.y1a_c00078{bottom:434.507067pt;}
.y19_c00078{bottom:462.107067pt;}
.y18_c00078{bottom:480.507067pt;}
.y17_c00078{bottom:498.907067pt;}
.y16_c00078{bottom:517.307067pt;}
.y15_c00078{bottom:535.707067pt;}
.y14_c00078{bottom:554.107067pt;}
.y13_c00078{bottom:572.507067pt;}
.y12_c00078{bottom:590.907067pt;}
.y11_c00078{bottom:609.307067pt;}
.y10_c00078{bottom:627.707067pt;}
.yf_c00078{bottom:646.107067pt;}
.ye_c00078{bottom:664.507067pt;}
.yd_c00078{bottom:682.907067pt;}
.yc_c00078{bottom:701.307067pt;}
.yb_c00078{bottom:744.907067pt;}
.ya_c00078{bottom:772.507067pt;}
.y9_c00078{bottom:800.107067pt;}
.y8_c00078{bottom:827.707067pt;}
.y7_c00078{bottom:855.307067pt;}
.y6_c00078{bottom:882.907067pt;}
.y5_c00078{bottom:910.507067pt;}
.y4_c00078{bottom:938.107067pt;}
.y3_c00078{bottom:972.907067pt;}
.h1_c00078{height:56.156250pt;}
.h3_c00078{height:57.375000pt;}
.h4_c00078{height:66.750000pt;}
.h2_c00078{height:77.763750pt;}
.h0_c00078{height:1122.666667pt;}
.w1_c00078{width:793.333333pt;}
.w0_c00078{width:793.626667pt;}
.x0_c00078{left:0.000000pt;}
.x2_c00078{left:151.200000pt;}
.x4_c00078{left:170.160000pt;}
.x3_c00078{left:223.200000pt;}
.x1_c00078{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_34b43ca7c5ba21fba25f1f4f.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.093262;font-style:normal;font-weight:normal;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_586edfbf36dcc5f43fd30045.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.106934;font-style:normal;font-weight:normal;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_73804fe5863aeae91ddf3ec9.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsf_c00079{letter-spacing:-0.115200px;}
.lsd_c00079{letter-spacing:-0.086400px;}
.lsc_c00079{letter-spacing:-0.072000px;}
.ls10_c00079{letter-spacing:-0.064800px;}
.ls3_c00079{letter-spacing:-0.057600px;}
.ls5_c00079{letter-spacing:-0.050400px;}
.lsa_c00079{letter-spacing:-0.043200px;}
.ls7_c00079{letter-spacing:-0.036000px;}
.ls6_c00079{letter-spacing:-0.028800px;}
.ls9_c00079{letter-spacing:-0.021600px;}
.ls4_c00079{letter-spacing:-0.014400px;}
.ls8_c00079{letter-spacing:-0.007200px;}
.ls2_c00079{letter-spacing:0.000000px;}
.ls0_c00079{letter-spacing:0.007200px;}
.lse_c00079{letter-spacing:0.021600px;}
.ls1_c00079{letter-spacing:0.072000px;}
.lsb_c00079{letter-spacing:0.144000px;}
.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;}
}
.ws0_c00079{word-spacing:-19.972800px;}
.ws3_c00079{word-spacing:-19.965600px;}
.ws2_c00079{word-spacing:-19.944000px;}
.ws1_c00079{word-spacing:-19.900800px;}
.ws2d_c00079{word-spacing:-1.987200px;}
.ws16_c00079{word-spacing:-0.957600px;}
.ws17_c00079{word-spacing:-0.885600px;}
.ws22_c00079{word-spacing:-0.504000px;}
.ws23_c00079{word-spacing:-0.489600px;}
.ws30_c00079{word-spacing:-0.172800px;}
.ws31_c00079{word-spacing:-0.165600px;}
.ws4_c00079{word-spacing:0.000000px;}
.ws2c_c00079{word-spacing:0.136800px;}
.ws12_c00079{word-spacing:0.165600px;}
.ws7_c00079{word-spacing:0.172800px;}
.ws34_c00079{word-spacing:0.180000px;}
.ws35_c00079{word-spacing:0.194400px;}
.ws2b_c00079{word-spacing:1.958400px;}
.ws27_c00079{word-spacing:1.994400px;}
.ws26_c00079{word-spacing:2.008800px;}
.ws2a_c00079{word-spacing:2.044800px;}
.wsd_c00079{word-spacing:2.232000px;}
.ws29_c00079{word-spacing:2.318400px;}
.wse_c00079{word-spacing:2.332800px;}
.ws28_c00079{word-spacing:2.340000px;}
.ws15_c00079{word-spacing:2.361600px;}
.wsc_c00079{word-spacing:2.368800px;}
.ws2f_c00079{word-spacing:2.700000px;}
.ws2e_c00079{word-spacing:2.728800px;}
.ws38_c00079{word-spacing:3.780000px;}
.ws18_c00079{word-spacing:4.147200px;}
.ws1c_c00079{word-spacing:4.478400px;}
.ws1d_c00079{word-spacing:4.485600px;}
.ws1b_c00079{word-spacing:4.500000px;}
.wsb_c00079{word-spacing:4.831200px;}
.wsa_c00079{word-spacing:4.867200px;}
.ws25_c00079{word-spacing:6.638400px;}
.ws24_c00079{word-spacing:6.696000px;}
.ws33_c00079{word-spacing:8.726400px;}
.ws10_c00079{word-spacing:8.834400px;}
.ws32_c00079{word-spacing:8.841600px;}
.wsf_c00079{word-spacing:8.848800px;}
.ws1e_c00079{word-spacing:9.194400px;}
.ws1f_c00079{word-spacing:9.295200px;}
.ws13_c00079{word-spacing:10.965600px;}
.ws14_c00079{word-spacing:10.980000px;}
.ws8_c00079{word-spacing:11.008800px;}
.ws5_c00079{word-spacing:11.016000px;}
.ws6_c00079{word-spacing:11.088000px;}
.ws9_c00079{word-spacing:11.196000px;}
.ws1a_c00079{word-spacing:13.132800px;}
.ws19_c00079{word-spacing:13.161600px;}
.ws11_c00079{word-spacing:13.867200px;}
.ws36_c00079{word-spacing:20.656800px;}
.ws37_c00079{word-spacing:20.743200px;}
.ws20_c00079{word-spacing:34.005600px;}
.ws21_c00079{word-spacing:34.099200px;}
._0_c00079{width:1.008000px;}
.fc0_c00079{color:rgb(0,0,0);}
.fs0_c00079{font-size:72.000000px;}
.y0_c00079{bottom:0.000000px;}
.y2_c00079{bottom:46.830450px;}
.y1_c00079{bottom:67.530450px;}
.y1f_c00079{bottom:156.180450px;}
.y1e_c00079{bottom:187.230450px;}
.y1d_c00079{bottom:236.280450px;}
.y1c_c00079{bottom:267.330450px;}
.y1b_c00079{bottom:298.380450px;}
.y1a_c00079{bottom:329.430450px;}
.y19_c00079{bottom:360.390450px;}
.y18_c00079{bottom:409.440450px;}
.y17_c00079{bottom:440.490450px;}
.y16_c00079{bottom:471.540450px;}
.y15_c00079{bottom:502.590450px;}
.y14_c00079{bottom:533.640450px;}
.y13_c00079{bottom:564.690450px;}
.y12_c00079{bottom:595.740450px;}
.y11_c00079{bottom:626.790450px;}
.y10_c00079{bottom:657.840450px;}
.yf_c00079{bottom:688.890450px;}
.ye_c00079{bottom:719.940450px;}
.yd_c00079{bottom:750.990450px;}
.yc_c00079{bottom:782.040450px;}
.yb_c00079{bottom:813.090450px;}
.ya_c00079{bottom:862.140450px;}
.y9_c00079{bottom:893.190450px;}
.y8_c00079{bottom:924.240450px;}
.y7_c00079{bottom:955.290450px;}
.y6_c00079{bottom:986.340450px;}
.y5_c00079{bottom:1017.390450px;}
.y4_c00079{bottom:1066.440450px;}
.y3_c00079{bottom:1097.490450px;}
.h1_c00079{height:63.175781px;}
.h2_c00079{height:64.546875px;}
.h3_c00079{height:75.093750px;}
.h0_c00079{height:1263.000000px;}
.w1_c00079{width:892.500000px;}
.w0_c00079{width:892.830000px;}
.x0_c00079{left:0.000000px;}
.x2_c00079{left:127.620000px;}
.x1_c00079{left:704.880000px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.lsf_c00079{letter-spacing:-0.102400pt;}
.lsd_c00079{letter-spacing:-0.076800pt;}
.lsc_c00079{letter-spacing:-0.064000pt;}
.ls10_c00079{letter-spacing:-0.057600pt;}
.ls3_c00079{letter-spacing:-0.051200pt;}
.ls5_c00079{letter-spacing:-0.044800pt;}
.lsa_c00079{letter-spacing:-0.038400pt;}
.ls7_c00079{letter-spacing:-0.032000pt;}
.ls6_c00079{letter-spacing:-0.025600pt;}
.ls9_c00079{letter-spacing:-0.019200pt;}
.ls4_c00079{letter-spacing:-0.012800pt;}
.ls8_c00079{letter-spacing:-0.006400pt;}
.ls2_c00079{letter-spacing:0.000000pt;}
.ls0_c00079{letter-spacing:0.006400pt;}
.lse_c00079{letter-spacing:0.019200pt;}
.ls1_c00079{letter-spacing:0.064000pt;}
.lsb_c00079{letter-spacing:0.128000pt;}
.ws0_c00079{word-spacing:-17.753600pt;}
.ws3_c00079{word-spacing:-17.747200pt;}
.ws2_c00079{word-spacing:-17.728000pt;}
.ws1_c00079{word-spacing:-17.689600pt;}
.ws2d_c00079{word-spacing:-1.766400pt;}
.ws16_c00079{word-spacing:-0.851200pt;}
.ws17_c00079{word-spacing:-0.787200pt;}
.ws22_c00079{word-spacing:-0.448000pt;}
.ws23_c00079{word-spacing:-0.435200pt;}
.ws30_c00079{word-spacing:-0.153600pt;}
.ws31_c00079{word-spacing:-0.147200pt;}
.ws4_c00079{word-spacing:0.000000pt;}
.ws2c_c00079{word-spacing:0.121600pt;}
.ws12_c00079{word-spacing:0.147200pt;}
.ws7_c00079{word-spacing:0.153600pt;}
.ws34_c00079{word-spacing:0.160000pt;}
.ws35_c00079{word-spacing:0.172800pt;}
.ws2b_c00079{word-spacing:1.740800pt;}
.ws27_c00079{word-spacing:1.772800pt;}
.ws26_c00079{word-spacing:1.785600pt;}
.ws2a_c00079{word-spacing:1.817600pt;}
.wsd_c00079{word-spacing:1.984000pt;}
.ws29_c00079{word-spacing:2.060800pt;}
.wse_c00079{word-spacing:2.073600pt;}
.ws28_c00079{word-spacing:2.080000pt;}
.ws15_c00079{word-spacing:2.099200pt;}
.wsc_c00079{word-spacing:2.105600pt;}
.ws2f_c00079{word-spacing:2.400000pt;}
.ws2e_c00079{word-spacing:2.425600pt;}
.ws38_c00079{word-spacing:3.360000pt;}
.ws18_c00079{word-spacing:3.686400pt;}
.ws1c_c00079{word-spacing:3.980800pt;}
.ws1d_c00079{word-spacing:3.987200pt;}
.ws1b_c00079{word-spacing:4.000000pt;}
.wsb_c00079{word-spacing:4.294400pt;}
.wsa_c00079{word-spacing:4.326400pt;}
.ws25_c00079{word-spacing:5.900800pt;}
.ws24_c00079{word-spacing:5.952000pt;}
.ws33_c00079{word-spacing:7.756800pt;}
.ws10_c00079{word-spacing:7.852800pt;}
.ws32_c00079{word-spacing:7.859200pt;}
.wsf_c00079{word-spacing:7.865600pt;}
.ws1e_c00079{word-spacing:8.172800pt;}
.ws1f_c00079{word-spacing:8.262400pt;}
.ws13_c00079{word-spacing:9.747200pt;}
.ws14_c00079{word-spacing:9.760000pt;}
.ws8_c00079{word-spacing:9.785600pt;}
.ws5_c00079{word-spacing:9.792000pt;}
.ws6_c00079{word-spacing:9.856000pt;}
.ws9_c00079{word-spacing:9.952000pt;}
.ws1a_c00079{word-spacing:11.673600pt;}
.ws19_c00079{word-spacing:11.699200pt;}
.ws11_c00079{word-spacing:12.326400pt;}
.ws36_c00079{word-spacing:18.361600pt;}
.ws37_c00079{word-spacing:18.438400pt;}
.ws20_c00079{word-spacing:30.227200pt;}
.ws21_c00079{word-spacing:30.310400pt;}
._0_c00079{width:0.896000pt;}
.fs0_c00079{font-size:64.000000pt;}
.y0_c00079{bottom:0.000000pt;}
.y2_c00079{bottom:41.627067pt;}
.y1_c00079{bottom:60.027067pt;}
.y1f_c00079{bottom:138.827067pt;}
.y1e_c00079{bottom:166.427067pt;}
.y1d_c00079{bottom:210.027067pt;}
.y1c_c00079{bottom:237.627067pt;}
.y1b_c00079{bottom:265.227067pt;}
.y1a_c00079{bottom:292.827067pt;}
.y19_c00079{bottom:320.347067pt;}
.y18_c00079{bottom:363.947067pt;}
.y17_c00079{bottom:391.547067pt;}
.y16_c00079{bottom:419.147067pt;}
.y15_c00079{bottom:446.747067pt;}
.y14_c00079{bottom:474.347067pt;}
.y13_c00079{bottom:501.947067pt;}
.y12_c00079{bottom:529.547067pt;}
.y11_c00079{bottom:557.147067pt;}
.y10_c00079{bottom:584.747067pt;}
.yf_c00079{bottom:612.347067pt;}
.ye_c00079{bottom:639.947067pt;}
.yd_c00079{bottom:667.547067pt;}
.yc_c00079{bottom:695.147067pt;}
.yb_c00079{bottom:722.747067pt;}
.ya_c00079{bottom:766.347067pt;}
.y9_c00079{bottom:793.947067pt;}
.y8_c00079{bottom:821.547067pt;}
.y7_c00079{bottom:849.147067pt;}
.y6_c00079{bottom:876.747067pt;}
.y5_c00079{bottom:904.347067pt;}
.y4_c00079{bottom:947.947067pt;}
.y3_c00079{bottom:975.547067pt;}
.h1_c00079{height:56.156250pt;}
.h2_c00079{height:57.375000pt;}
.h3_c00079{height:66.750000pt;}
.h0_c00079{height:1122.666667pt;}
.w1_c00079{width:793.333333pt;}
.w0_c00079{width:793.626667pt;}
.x0_c00079{left:0.000000pt;}
.x2_c00079{left:113.440000pt;}
.x1_c00079{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_120594a67f6b1ac35edcc433.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.093262;font-style:normal;font-weight:normal;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_0633857484abd0e39aefcf63.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:1.106934;font-style:normal;font-weight:normal;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_137a3df2f186ba7be8774729.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls10_c00080{letter-spacing:-0.093600px;}
.lsd_c00080{letter-spacing:-0.086400px;}
.lse_c00080{letter-spacing:-0.079200px;}
.ls5_c00080{letter-spacing:-0.072000px;}
.ls8_c00080{letter-spacing:-0.064800px;}
.ls9_c00080{letter-spacing:-0.057600px;}
.ls3_c00080{letter-spacing:-0.050400px;}
.ls6_c00080{letter-spacing:-0.043200px;}
.lsb_c00080{letter-spacing:-0.036000px;}
.ls7_c00080{letter-spacing:-0.028800px;}
.ls4_c00080{letter-spacing:-0.021600px;}
.lsa_c00080{letter-spacing:-0.014400px;}
.lsc_c00080{letter-spacing:-0.007200px;}
.ls2_c00080{letter-spacing:0.000000px;}
.ls0_c00080{letter-spacing:0.007200px;}
.lsf_c00080{letter-spacing:0.014400px;}
.ls1_c00080{letter-spacing:0.079200px;}
.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:-20.095200px;}
.ws1_c00080{word-spacing:-20.001600px;}
.ws3_c00080{word-spacing:-19.972800px;}
.ws0_c00080{word-spacing:-19.965600px;}
.ws34_c00080{word-spacing:-2.030400px;}
.ws33_c00080{word-spacing:-1.965600px;}
.wsc_c00080{word-spacing:-0.856800px;}
.ws4_c00080{word-spacing:0.000000px;}
.ws28_c00080{word-spacing:0.050400px;}
.ws27_c00080{word-spacing:0.172800px;}
.ws10_c00080{word-spacing:0.194400px;}
.ws1e_c00080{word-spacing:0.201600px;}
.ws1d_c00080{word-spacing:0.266400px;}
.ws36_c00080{word-spacing:0.482400px;}
.ws1b_c00080{word-spacing:0.504000px;}
.ws35_c00080{word-spacing:0.561600px;}
.wsd_c00080{word-spacing:0.907200px;}
.ws11_c00080{word-spacing:1.620000px;}
.ws21_c00080{word-spacing:2.340000px;}
.ws19_c00080{word-spacing:4.132800px;}
.ws1a_c00080{word-spacing:4.154400px;}
.wsf_c00080{word-spacing:4.471200px;}
.wse_c00080{word-spacing:4.507200px;}
.ws30_c00080{word-spacing:7.732800px;}
.ws7_c00080{word-spacing:7.747200px;}
.ws32_c00080{word-spacing:7.826400px;}
.ws31_c00080{word-spacing:7.855200px;}
.ws2a_c00080{word-spacing:8.798400px;}
.ws29_c00080{word-spacing:8.834400px;}
.ws2f_c00080{word-spacing:9.547200px;}
.ws2c_c00080{word-spacing:9.900000px;}
.ws2b_c00080{word-spacing:9.964800px;}
.ws2d_c00080{word-spacing:11.764800px;}
.ws2e_c00080{word-spacing:11.844000px;}
.ws12_c00080{word-spacing:12.405600px;}
.ws1c_c00080{word-spacing:12.412800px;}
.ws13_c00080{word-spacing:12.571200px;}
.ws14_c00080{word-spacing:12.715200px;}
.ws8_c00080{word-spacing:16.696800px;}
.ws9_c00080{word-spacing:16.790400px;}
.ws1f_c00080{word-spacing:19.540800px;}
.ws20_c00080{word-spacing:19.620000px;}
.ws26_c00080{word-spacing:26.488800px;}
.ws25_c00080{word-spacing:26.539200px;}
.ws15_c00080{word-spacing:26.755200px;}
.ws16_c00080{word-spacing:26.834400px;}
.ws18_c00080{word-spacing:27.547200px;}
.ws17_c00080{word-spacing:27.640800px;}
.wsb_c00080{word-spacing:30.693600px;}
.wsa_c00080{word-spacing:30.801600px;}
.ws6_c00080{word-spacing:32.940000px;}
.ws5_c00080{word-spacing:32.968800px;}
.ws22_c00080{word-spacing:59.961600px;}
.ws24_c00080{word-spacing:60.004800px;}
.ws23_c00080{word-spacing:60.328800px;}
._0_c00080{width:1.512000px;}
.fc0_c00080{color:rgb(0,0,0);}
.fs0_c00080{font-size:72.000000px;}
.y0_c00080{bottom:0.000000px;}
.y2_c00080{bottom:46.830450px;}
.y1_c00080{bottom:67.530450px;}
.y21_c00080{bottom:163.830450px;}
.y20_c00080{bottom:194.880450px;}
.y1f_c00080{bottom:225.930450px;}
.y1e_c00080{bottom:256.980450px;}
.y1d_c00080{bottom:288.030450px;}
.y1c_c00080{bottom:319.080450px;}
.y1b_c00080{bottom:350.040450px;}
.y1a_c00080{bottom:370.740450px;}
.y19_c00080{bottom:391.440450px;}
.y18_c00080{bottom:412.140450px;}
.y17_c00080{bottom:432.840450px;}
.y16_c00080{bottom:453.540450px;}
.y15_c00080{bottom:502.590450px;}
.y14_c00080{bottom:533.640450px;}
.y13_c00080{bottom:564.690450px;}
.y12_c00080{bottom:613.740450px;}
.y11_c00080{bottom:644.790450px;}
.y10_c00080{bottom:675.840450px;}
.yf_c00080{bottom:706.890450px;}
.ye_c00080{bottom:737.940450px;}
.yd_c00080{bottom:768.990450px;}
.yc_c00080{bottom:800.040450px;}
.yb_c00080{bottom:831.090450px;}
.ya_c00080{bottom:880.140450px;}
.y9_c00080{bottom:911.190450px;}
.y8_c00080{bottom:942.240450px;}
.y7_c00080{bottom:973.290450px;}
.y6_c00080{bottom:1004.340450px;}
.y5_c00080{bottom:1035.390450px;}
.y4_c00080{bottom:1066.440450px;}
.y3_c00080{bottom:1097.490450px;}
.h1_c00080{height:63.175781px;}
.h3_c00080{height:64.546875px;}
.h2_c00080{height:75.093750px;}
.h0_c00080{height:1263.000000px;}
.w1_c00080{width:892.500000px;}
.w0_c00080{width:892.830000px;}
.x0_c00080{left:0.000000px;}
.x2_c00080{left:170.100000px;}
.x3_c00080{left:191.430000px;}
.x1_c00080{left:747.360000px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls10_c00080{letter-spacing:-0.083200pt;}
.lsd_c00080{letter-spacing:-0.076800pt;}
.lse_c00080{letter-spacing:-0.070400pt;}
.ls5_c00080{letter-spacing:-0.064000pt;}
.ls8_c00080{letter-spacing:-0.057600pt;}
.ls9_c00080{letter-spacing:-0.051200pt;}
.ls3_c00080{letter-spacing:-0.044800pt;}
.ls6_c00080{letter-spacing:-0.038400pt;}
.lsb_c00080{letter-spacing:-0.032000pt;}
.ls7_c00080{letter-spacing:-0.025600pt;}
.ls4_c00080{letter-spacing:-0.019200pt;}
.lsa_c00080{letter-spacing:-0.012800pt;}
.lsc_c00080{letter-spacing:-0.006400pt;}
.ls2_c00080{letter-spacing:0.000000pt;}
.ls0_c00080{letter-spacing:0.006400pt;}
.lsf_c00080{letter-spacing:0.012800pt;}
.ls1_c00080{letter-spacing:0.070400pt;}
.ws2_c00080{word-spacing:-17.862400pt;}
.ws1_c00080{word-spacing:-17.779200pt;}
.ws3_c00080{word-spacing:-17.753600pt;}
.ws0_c00080{word-spacing:-17.747200pt;}
.ws34_c00080{word-spacing:-1.804800pt;}
.ws33_c00080{word-spacing:-1.747200pt;}
.wsc_c00080{word-spacing:-0.761600pt;}
.ws4_c00080{word-spacing:0.000000pt;}
.ws28_c00080{word-spacing:0.044800pt;}
.ws27_c00080{word-spacing:0.153600pt;}
.ws10_c00080{word-spacing:0.172800pt;}
.ws1e_c00080{word-spacing:0.179200pt;}
.ws1d_c00080{word-spacing:0.236800pt;}
.ws36_c00080{word-spacing:0.428800pt;}
.ws1b_c00080{word-spacing:0.448000pt;}
.ws35_c00080{word-spacing:0.499200pt;}
.wsd_c00080{word-spacing:0.806400pt;}
.ws11_c00080{word-spacing:1.440000pt;}
.ws21_c00080{word-spacing:2.080000pt;}
.ws19_c00080{word-spacing:3.673600pt;}
.ws1a_c00080{word-spacing:3.692800pt;}
.wsf_c00080{word-spacing:3.974400pt;}
.wse_c00080{word-spacing:4.006400pt;}
.ws30_c00080{word-spacing:6.873600pt;}
.ws7_c00080{word-spacing:6.886400pt;}
.ws32_c00080{word-spacing:6.956800pt;}
.ws31_c00080{word-spacing:6.982400pt;}
.ws2a_c00080{word-spacing:7.820800pt;}
.ws29_c00080{word-spacing:7.852800pt;}
.ws2f_c00080{word-spacing:8.486400pt;}
.ws2c_c00080{word-spacing:8.800000pt;}
.ws2b_c00080{word-spacing:8.857600pt;}
.ws2d_c00080{word-spacing:10.457600pt;}
.ws2e_c00080{word-spacing:10.528000pt;}
.ws12_c00080{word-spacing:11.027200pt;}
.ws1c_c00080{word-spacing:11.033600pt;}
.ws13_c00080{word-spacing:11.174400pt;}
.ws14_c00080{word-spacing:11.302400pt;}
.ws8_c00080{word-spacing:14.841600pt;}
.ws9_c00080{word-spacing:14.924800pt;}
.ws1f_c00080{word-spacing:17.369600pt;}
.ws20_c00080{word-spacing:17.440000pt;}
.ws26_c00080{word-spacing:23.545600pt;}
.ws25_c00080{word-spacing:23.590400pt;}
.ws15_c00080{word-spacing:23.782400pt;}
.ws16_c00080{word-spacing:23.852800pt;}
.ws18_c00080{word-spacing:24.486400pt;}
.ws17_c00080{word-spacing:24.569600pt;}
.wsb_c00080{word-spacing:27.283200pt;}
.wsa_c00080{word-spacing:27.379200pt;}
.ws6_c00080{word-spacing:29.280000pt;}
.ws5_c00080{word-spacing:29.305600pt;}
.ws22_c00080{word-spacing:53.299200pt;}
.ws24_c00080{word-spacing:53.337600pt;}
.ws23_c00080{word-spacing:53.625600pt;}
._0_c00080{width:1.344000pt;}
.fs0_c00080{font-size:64.000000pt;}
.y0_c00080{bottom:0.000000pt;}
.y2_c00080{bottom:41.627067pt;}
.y1_c00080{bottom:60.027067pt;}
.y21_c00080{bottom:145.627067pt;}
.y20_c00080{bottom:173.227067pt;}
.y1f_c00080{bottom:200.827067pt;}
.y1e_c00080{bottom:228.427067pt;}
.y1d_c00080{bottom:256.027067pt;}
.y1c_c00080{bottom:283.627067pt;}
.y1b_c00080{bottom:311.147067pt;}
.y1a_c00080{bottom:329.547067pt;}
.y19_c00080{bottom:347.947067pt;}
.y18_c00080{bottom:366.347067pt;}
.y17_c00080{bottom:384.747067pt;}
.y16_c00080{bottom:403.147067pt;}
.y15_c00080{bottom:446.747067pt;}
.y14_c00080{bottom:474.347067pt;}
.y13_c00080{bottom:501.947067pt;}
.y12_c00080{bottom:545.547067pt;}
.y11_c00080{bottom:573.147067pt;}
.y10_c00080{bottom:600.747067pt;}
.yf_c00080{bottom:628.347067pt;}
.ye_c00080{bottom:655.947067pt;}
.yd_c00080{bottom:683.547067pt;}
.yc_c00080{bottom:711.147067pt;}
.yb_c00080{bottom:738.747067pt;}
.ya_c00080{bottom:782.347067pt;}
.y9_c00080{bottom:809.947067pt;}
.y8_c00080{bottom:837.547067pt;}
.y7_c00080{bottom:865.147067pt;}
.y6_c00080{bottom:892.747067pt;}
.y5_c00080{bottom:920.347067pt;}
.y4_c00080{bottom:947.947067pt;}
.y3_c00080{bottom:975.547067pt;}
.h1_c00080{height:56.156250pt;}
.h3_c00080{height:57.375000pt;}
.h2_c00080{height:66.750000pt;}
.h0_c00080{height:1122.666667pt;}
.w1_c00080{width:793.333333pt;}
.w0_c00080{width:793.626667pt;}
.x0_c00080{left:0.000000pt;}
.x2_c00080{left:151.200000pt;}
.x3_c00080{left:170.160000pt;}
.x1_c00080{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a04d97c1253ff93f5c0f65e2.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.093262;font-style:normal;font-weight:normal;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_d1b0fbada95eb49ad3480dea.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.106934;font-style:normal;font-weight:normal;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_3644dedf09bd21fe36782825.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00081{letter-spacing:-0.115200px;}
.ls2_c00081{letter-spacing:-0.086400px;}
.ls3_c00081{letter-spacing:-0.057600px;}
.ls8_c00081{letter-spacing:-0.050400px;}
.ls6_c00081{letter-spacing:-0.043200px;}
.ls4_c00081{letter-spacing:-0.028800px;}
.ls7_c00081{letter-spacing:-0.021600px;}
.ls5_c00081{letter-spacing:-0.014400px;}
.lsa_c00081{letter-spacing:-0.007200px;}
.ls1_c00081{letter-spacing:0.000000px;}
.ls0_c00081{letter-spacing:0.144000px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00081{word-spacing:-19.972800px;}
.ws0_c00081{word-spacing:-19.929600px;}
.ws14_c00081{word-spacing:-4.852800px;}
.ws16_c00081{word-spacing:-4.730400px;}
.ws15_c00081{word-spacing:-4.478400px;}
.ws11_c00081{word-spacing:-3.427200px;}
.ws10_c00081{word-spacing:-3.340800px;}
.ws1f_c00081{word-spacing:-1.656000px;}
.ws1e_c00081{word-spacing:-1.555200px;}
.ws2_c00081{word-spacing:0.000000px;}
.ws19_c00081{word-spacing:0.115200px;}
.ws5_c00081{word-spacing:0.172800px;}
.ws4_c00081{word-spacing:0.187200px;}
.ws17_c00081{word-spacing:0.907200px;}
.ws18_c00081{word-spacing:0.936000px;}
.wse_c00081{word-spacing:3.038400px;}
.wsc_c00081{word-spacing:3.067200px;}
.wsd_c00081{word-spacing:3.175200px;}
.ws13_c00081{word-spacing:4.816800px;}
.ws1d_c00081{word-spacing:4.845600px;}
.ws1c_c00081{word-spacing:4.867200px;}
.ws12_c00081{word-spacing:4.953600px;}
.ws1b_c00081{word-spacing:5.198400px;}
.ws1a_c00081{word-spacing:5.220000px;}
.wsf_c00081{word-spacing:5.608800px;}
.ws6_c00081{word-spacing:5.961600px;}
.ws7_c00081{word-spacing:5.997600px;}
.wsb_c00081{word-spacing:7.344000px;}
.wsa_c00081{word-spacing:7.401600px;}
.ws25_c00081{word-spacing:8.085600px;}
.ws24_c00081{word-spacing:8.128800px;}
.ws26_c00081{word-spacing:8.791200px;}
.ws20_c00081{word-spacing:14.248800px;}
.ws21_c00081{word-spacing:14.299200px;}
.ws3_c00081{word-spacing:17.136000px;}
.ws9_c00081{word-spacing:27.964800px;}
.ws8_c00081{word-spacing:28.072800px;}
.ws22_c00081{word-spacing:46.252800px;}
.ws23_c00081{word-spacing:46.296000px;}
._0_c00081{width:1.152000px;}
.fc0_c00081{color:rgb(0,0,0);}
.fs0_c00081{font-size:72.000000px;}
.y0_c00081{bottom:0.000000px;}
.y2_c00081{bottom:46.830450px;}
.y1_c00081{bottom:67.530450px;}
.y18_c00081{bottom:560.640450px;}
.y17_c00081{bottom:591.690450px;}
.y16_c00081{bottom:622.740450px;}
.y15_c00081{bottom:653.790450px;}
.y14_c00081{bottom:684.840450px;}
.y13_c00081{bottom:715.890450px;}
.y12_c00081{bottom:746.940450px;}
.y11_c00081{bottom:777.990450px;}
.y10_c00081{bottom:798.690450px;}
.yf_c00081{bottom:819.390450px;}
.ye_c00081{bottom:840.090450px;}
.yd_c00081{bottom:860.790450px;}
.yc_c00081{bottom:881.490450px;}
.yb_c00081{bottom:902.190450px;}
.ya_c00081{bottom:922.890450px;}
.y9_c00081{bottom:943.590450px;}
.y8_c00081{bottom:964.290450px;}
.y7_c00081{bottom:984.990450px;}
.y6_c00081{bottom:1005.690450px;}
.y5_c00081{bottom:1026.390450px;}
.y4_c00081{bottom:1066.440450px;}
.y3_c00081{bottom:1097.490450px;}
.h1_c00081{height:63.175781px;}
.h3_c00081{height:64.546875px;}
.h2_c00081{height:75.093750px;}
.h0_c00081{height:1263.000000px;}
.w1_c00081{width:892.500000px;}
.w0_c00081{width:892.830000px;}
.x0_c00081{left:0.000000px;}
.x2_c00081{left:127.620000px;}
.x3_c00081{left:148.950000px;}
.x1_c00081{left:704.880000px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls9_c00081{letter-spacing:-0.102400pt;}
.ls2_c00081{letter-spacing:-0.076800pt;}
.ls3_c00081{letter-spacing:-0.051200pt;}
.ls8_c00081{letter-spacing:-0.044800pt;}
.ls6_c00081{letter-spacing:-0.038400pt;}
.ls4_c00081{letter-spacing:-0.025600pt;}
.ls7_c00081{letter-spacing:-0.019200pt;}
.ls5_c00081{letter-spacing:-0.012800pt;}
.lsa_c00081{letter-spacing:-0.006400pt;}
.ls1_c00081{letter-spacing:0.000000pt;}
.ls0_c00081{letter-spacing:0.128000pt;}
.ws1_c00081{word-spacing:-17.753600pt;}
.ws0_c00081{word-spacing:-17.715200pt;}
.ws14_c00081{word-spacing:-4.313600pt;}
.ws16_c00081{word-spacing:-4.204800pt;}
.ws15_c00081{word-spacing:-3.980800pt;}
.ws11_c00081{word-spacing:-3.046400pt;}
.ws10_c00081{word-spacing:-2.969600pt;}
.ws1f_c00081{word-spacing:-1.472000pt;}
.ws1e_c00081{word-spacing:-1.382400pt;}
.ws2_c00081{word-spacing:0.000000pt;}
.ws19_c00081{word-spacing:0.102400pt;}
.ws5_c00081{word-spacing:0.153600pt;}
.ws4_c00081{word-spacing:0.166400pt;}
.ws17_c00081{word-spacing:0.806400pt;}
.ws18_c00081{word-spacing:0.832000pt;}
.wse_c00081{word-spacing:2.700800pt;}
.wsc_c00081{word-spacing:2.726400pt;}
.wsd_c00081{word-spacing:2.822400pt;}
.ws13_c00081{word-spacing:4.281600pt;}
.ws1d_c00081{word-spacing:4.307200pt;}
.ws1c_c00081{word-spacing:4.326400pt;}
.ws12_c00081{word-spacing:4.403200pt;}
.ws1b_c00081{word-spacing:4.620800pt;}
.ws1a_c00081{word-spacing:4.640000pt;}
.wsf_c00081{word-spacing:4.985600pt;}
.ws6_c00081{word-spacing:5.299200pt;}
.ws7_c00081{word-spacing:5.331200pt;}
.wsb_c00081{word-spacing:6.528000pt;}
.wsa_c00081{word-spacing:6.579200pt;}
.ws25_c00081{word-spacing:7.187200pt;}
.ws24_c00081{word-spacing:7.225600pt;}
.ws26_c00081{word-spacing:7.814400pt;}
.ws20_c00081{word-spacing:12.665600pt;}
.ws21_c00081{word-spacing:12.710400pt;}
.ws3_c00081{word-spacing:15.232000pt;}
.ws9_c00081{word-spacing:24.857600pt;}
.ws8_c00081{word-spacing:24.953600pt;}
.ws22_c00081{word-spacing:41.113600pt;}
.ws23_c00081{word-spacing:41.152000pt;}
._0_c00081{width:1.024000pt;}
.fs0_c00081{font-size:64.000000pt;}
.y0_c00081{bottom:0.000000pt;}
.y2_c00081{bottom:41.627067pt;}
.y1_c00081{bottom:60.027067pt;}
.y18_c00081{bottom:498.347067pt;}
.y17_c00081{bottom:525.947067pt;}
.y16_c00081{bottom:553.547067pt;}
.y15_c00081{bottom:581.147067pt;}
.y14_c00081{bottom:608.747067pt;}
.y13_c00081{bottom:636.347067pt;}
.y12_c00081{bottom:663.947067pt;}
.y11_c00081{bottom:691.547067pt;}
.y10_c00081{bottom:709.947067pt;}
.yf_c00081{bottom:728.347067pt;}
.ye_c00081{bottom:746.747067pt;}
.yd_c00081{bottom:765.147067pt;}
.yc_c00081{bottom:783.547067pt;}
.yb_c00081{bottom:801.947067pt;}
.ya_c00081{bottom:820.347067pt;}
.y9_c00081{bottom:838.747067pt;}
.y8_c00081{bottom:857.147067pt;}
.y7_c00081{bottom:875.547067pt;}
.y6_c00081{bottom:893.947067pt;}
.y5_c00081{bottom:912.347067pt;}
.y4_c00081{bottom:947.947067pt;}
.y3_c00081{bottom:975.547067pt;}
.h1_c00081{height:56.156250pt;}
.h3_c00081{height:57.375000pt;}
.h2_c00081{height:66.750000pt;}
.h0_c00081{height:1122.666667pt;}
.w1_c00081{width:793.333333pt;}
.w0_c00081{width:793.626667pt;}
.x0_c00081{left:0.000000pt;}
.x2_c00081{left:113.440000pt;}
.x3_c00081{left:132.400000pt;}
.x1_c00081{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0d160adb929cb9b6bcf1c5b0.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.093262;font-style:normal;font-weight:normal;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_a9ef16848a4ac4b60211f70c.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00082;src:url('chunks/assets/font_bae6a4692fca3b9ff3604a8a.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:1.106934;font-style:normal;font-weight:normal;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_3d4fb2368346fb999a98149d.woff2')format("woff");}.ff4_c00082{font-family:ff4_c00082;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00082{letter-spacing:-0.093600px;}
.ls8_c00082{letter-spacing:-0.086400px;}
.lsd_c00082{letter-spacing:-0.064800px;}
.ls2_c00082{letter-spacing:-0.057600px;}
.ls3_c00082{letter-spacing:-0.050400px;}
.ls7_c00082{letter-spacing:-0.043200px;}
.ls6_c00082{letter-spacing:-0.036000px;}
.ls4_c00082{letter-spacing:-0.028800px;}
.ls9_c00082{letter-spacing:-0.021600px;}
.ls5_c00082{letter-spacing:-0.014400px;}
.lsb_c00082{letter-spacing:-0.007200px;}
.ls1_c00082{letter-spacing:0.000000px;}
.ls0_c00082{letter-spacing:0.050328px;}
.lsa_c00082{letter-spacing:0.064800px;}
.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;}
}
.ws0_c00082{word-spacing:-19.922400px;}
.ws23_c00082{word-spacing:-4.687200px;}
.ws22_c00082{word-spacing:-4.680000px;}
.ws21_c00082{word-spacing:-4.464000px;}
.ws30_c00082{word-spacing:-4.132800px;}
.ws2f_c00082{word-spacing:-4.111200px;}
.ws16_c00082{word-spacing:-3.096000px;}
.ws15_c00082{word-spacing:-3.088800px;}
.ws2b_c00082{word-spacing:-2.332800px;}
.ws2c_c00082{word-spacing:-2.318400px;}
.ws36_c00082{word-spacing:-2.253600px;}
.ws35_c00082{word-spacing:-2.239200px;}
.ws1b_c00082{word-spacing:-2.066400px;}
.ws19_c00082{word-spacing:-1.980000px;}
.ws20_c00082{word-spacing:-1.972800px;}
.ws1a_c00082{word-spacing:-1.706400px;}
.wse_c00082{word-spacing:-1.087200px;}
.wsf_c00082{word-spacing:-1.065600px;}
.ws10_c00082{word-spacing:-0.864000px;}
.ws3_c00082{word-spacing:-0.504000px;}
.ws1_c00082{word-spacing:0.000000px;}
.ws1c_c00082{word-spacing:0.122400px;}
.ws1d_c00082{word-spacing:0.158400px;}
.ws13_c00082{word-spacing:0.928800px;}
.ws14_c00082{word-spacing:0.964800px;}
.ws6_c00082{word-spacing:3.772800px;}
.ws2d_c00082{word-spacing:3.794400px;}
.ws7_c00082{word-spacing:3.837600px;}
.ws4_c00082{word-spacing:4.161600px;}
.ws5_c00082{word-spacing:4.233600px;}
.ws31_c00082{word-spacing:4.881600px;}
.ws32_c00082{word-spacing:4.903200px;}
.ws24_c00082{word-spacing:6.300000px;}
.ws25_c00082{word-spacing:6.328800px;}
.ws8_c00082{word-spacing:7.740000px;}
.ws9_c00082{word-spacing:7.754400px;}
.wsc_c00082{word-spacing:9.547200px;}
.ws2_c00082{word-spacing:9.763632px;}
.wsa_c00082{word-spacing:11.404800px;}
.wsb_c00082{word-spacing:11.426400px;}
.ws29_c00082{word-spacing:11.700000px;}
.ws2a_c00082{word-spacing:11.721600px;}
.ws33_c00082{word-spacing:13.377600px;}
.ws34_c00082{word-spacing:13.521600px;}
.ws1f_c00082{word-spacing:14.925600px;}
.wsd_c00082{word-spacing:14.961600px;}
.ws1e_c00082{word-spacing:15.012000px;}
.ws11_c00082{word-spacing:15.292800px;}
.ws12_c00082{word-spacing:15.379200px;}
.ws18_c00082{word-spacing:23.904000px;}
.ws17_c00082{word-spacing:23.940000px;}
.ws2e_c00082{word-spacing:24.336000px;}
.ws28_c00082{word-spacing:68.781600px;}
.ws27_c00082{word-spacing:68.961600px;}
.ws26_c00082{word-spacing:68.968800px;}
._0_c00082{margin-left:-9.730080px;}
._1_c00082{width:1.008000px;}
.fc0_c00082{color:rgb(0,0,0);}
.fs0_c00082{font-size:72.000000px;}
.fs1_c00082{font-size:83.880000px;}
.y0_c00082{bottom:0.000000px;}
.y2_c00082{bottom:46.830450px;}
.y1_c00082{bottom:67.530450px;}
.y1f_c00082{bottom:181.020450px;}
.y1e_c00082{bottom:212.070450px;}
.y1d_c00082{bottom:261.120450px;}
.y1c_c00082{bottom:292.170450px;}
.y1b_c00082{bottom:323.220450px;}
.y1a_c00082{bottom:354.270450px;}
.y19_c00082{bottom:385.320450px;}
.y18_c00082{bottom:416.370450px;}
.y17_c00082{bottom:447.420450px;}
.y16_c00082{bottom:478.470450px;}
.y15_c00082{bottom:509.520450px;}
.y14_c00082{bottom:540.570450px;}
.y13_c00082{bottom:571.620450px;}
.y12_c00082{bottom:602.670450px;}
.y11_c00082{bottom:651.720450px;}
.y10_c00082{bottom:682.770450px;}
.yf_c00082{bottom:713.820450px;}
.ye_c00082{bottom:744.870450px;}
.yd_c00082{bottom:775.920450px;}
.yc_c00082{bottom:806.970450px;}
.yb_c00082{bottom:838.020450px;}
.ya_c00082{bottom:869.070450px;}
.y9_c00082{bottom:900.120450px;}
.y8_c00082{bottom:931.170450px;}
.y7_c00082{bottom:962.220450px;}
.y6_c00082{bottom:993.270450px;}
.y5_c00082{bottom:1024.320450px;}
.y4_c00082{bottom:1055.370450px;}
.y3_c00082{bottom:1094.520450px;}
.h1_c00082{height:63.175781px;}
.h3_c00082{height:64.546875px;}
.h4_c00082{height:75.093750px;}
.h2_c00082{height:87.484219px;}
.h0_c00082{height:1263.000000px;}
.w1_c00082{width:892.500000px;}
.w0_c00082{width:892.830000px;}
.x0_c00082{left:0.000000px;}
.x2_c00082{left:170.100000px;}
.x3_c00082{left:251.100000px;}
.x1_c00082{left:747.360000px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.lsc_c00082{letter-spacing:-0.083200pt;}
.ls8_c00082{letter-spacing:-0.076800pt;}
.lsd_c00082{letter-spacing:-0.057600pt;}
.ls2_c00082{letter-spacing:-0.051200pt;}
.ls3_c00082{letter-spacing:-0.044800pt;}
.ls7_c00082{letter-spacing:-0.038400pt;}
.ls6_c00082{letter-spacing:-0.032000pt;}
.ls4_c00082{letter-spacing:-0.025600pt;}
.ls9_c00082{letter-spacing:-0.019200pt;}
.ls5_c00082{letter-spacing:-0.012800pt;}
.lsb_c00082{letter-spacing:-0.006400pt;}
.ls1_c00082{letter-spacing:0.000000pt;}
.ls0_c00082{letter-spacing:0.044736pt;}
.lsa_c00082{letter-spacing:0.057600pt;}
.ws0_c00082{word-spacing:-17.708800pt;}
.ws23_c00082{word-spacing:-4.166400pt;}
.ws22_c00082{word-spacing:-4.160000pt;}
.ws21_c00082{word-spacing:-3.968000pt;}
.ws30_c00082{word-spacing:-3.673600pt;}
.ws2f_c00082{word-spacing:-3.654400pt;}
.ws16_c00082{word-spacing:-2.752000pt;}
.ws15_c00082{word-spacing:-2.745600pt;}
.ws2b_c00082{word-spacing:-2.073600pt;}
.ws2c_c00082{word-spacing:-2.060800pt;}
.ws36_c00082{word-spacing:-2.003200pt;}
.ws35_c00082{word-spacing:-1.990400pt;}
.ws1b_c00082{word-spacing:-1.836800pt;}
.ws19_c00082{word-spacing:-1.760000pt;}
.ws20_c00082{word-spacing:-1.753600pt;}
.ws1a_c00082{word-spacing:-1.516800pt;}
.wse_c00082{word-spacing:-0.966400pt;}
.wsf_c00082{word-spacing:-0.947200pt;}
.ws10_c00082{word-spacing:-0.768000pt;}
.ws3_c00082{word-spacing:-0.448000pt;}
.ws1_c00082{word-spacing:0.000000pt;}
.ws1c_c00082{word-spacing:0.108800pt;}
.ws1d_c00082{word-spacing:0.140800pt;}
.ws13_c00082{word-spacing:0.825600pt;}
.ws14_c00082{word-spacing:0.857600pt;}
.ws6_c00082{word-spacing:3.353600pt;}
.ws2d_c00082{word-spacing:3.372800pt;}
.ws7_c00082{word-spacing:3.411200pt;}
.ws4_c00082{word-spacing:3.699200pt;}
.ws5_c00082{word-spacing:3.763200pt;}
.ws31_c00082{word-spacing:4.339200pt;}
.ws32_c00082{word-spacing:4.358400pt;}
.ws24_c00082{word-spacing:5.600000pt;}
.ws25_c00082{word-spacing:5.625600pt;}
.ws8_c00082{word-spacing:6.880000pt;}
.ws9_c00082{word-spacing:6.892800pt;}
.wsc_c00082{word-spacing:8.486400pt;}
.ws2_c00082{word-spacing:8.678784pt;}
.wsa_c00082{word-spacing:10.137600pt;}
.wsb_c00082{word-spacing:10.156800pt;}
.ws29_c00082{word-spacing:10.400000pt;}
.ws2a_c00082{word-spacing:10.419200pt;}
.ws33_c00082{word-spacing:11.891200pt;}
.ws34_c00082{word-spacing:12.019200pt;}
.ws1f_c00082{word-spacing:13.267200pt;}
.wsd_c00082{word-spacing:13.299200pt;}
.ws1e_c00082{word-spacing:13.344000pt;}
.ws11_c00082{word-spacing:13.593600pt;}
.ws12_c00082{word-spacing:13.670400pt;}
.ws18_c00082{word-spacing:21.248000pt;}
.ws17_c00082{word-spacing:21.280000pt;}
.ws2e_c00082{word-spacing:21.632000pt;}
.ws28_c00082{word-spacing:61.139200pt;}
.ws27_c00082{word-spacing:61.299200pt;}
.ws26_c00082{word-spacing:61.305600pt;}
._0_c00082{margin-left:-8.648960pt;}
._1_c00082{width:0.896000pt;}
.fs0_c00082{font-size:64.000000pt;}
.fs1_c00082{font-size:74.560000pt;}
.y0_c00082{bottom:0.000000pt;}
.y2_c00082{bottom:41.627067pt;}
.y1_c00082{bottom:60.027067pt;}
.y1f_c00082{bottom:160.907067pt;}
.y1e_c00082{bottom:188.507067pt;}
.y1d_c00082{bottom:232.107067pt;}
.y1c_c00082{bottom:259.707067pt;}
.y1b_c00082{bottom:287.307067pt;}
.y1a_c00082{bottom:314.907067pt;}
.y19_c00082{bottom:342.507067pt;}
.y18_c00082{bottom:370.107067pt;}
.y17_c00082{bottom:397.707067pt;}
.y16_c00082{bottom:425.307067pt;}
.y15_c00082{bottom:452.907067pt;}
.y14_c00082{bottom:480.507067pt;}
.y13_c00082{bottom:508.107067pt;}
.y12_c00082{bottom:535.707067pt;}
.y11_c00082{bottom:579.307067pt;}
.y10_c00082{bottom:606.907067pt;}
.yf_c00082{bottom:634.507067pt;}
.ye_c00082{bottom:662.107067pt;}
.yd_c00082{bottom:689.707067pt;}
.yc_c00082{bottom:717.307067pt;}
.yb_c00082{bottom:744.907067pt;}
.ya_c00082{bottom:772.507067pt;}
.y9_c00082{bottom:800.107067pt;}
.y8_c00082{bottom:827.707067pt;}
.y7_c00082{bottom:855.307067pt;}
.y6_c00082{bottom:882.907067pt;}
.y5_c00082{bottom:910.507067pt;}
.y4_c00082{bottom:938.107067pt;}
.y3_c00082{bottom:972.907067pt;}
.h1_c00082{height:56.156250pt;}
.h3_c00082{height:57.375000pt;}
.h4_c00082{height:66.750000pt;}
.h2_c00082{height:77.763750pt;}
.h0_c00082{height:1122.666667pt;}
.w1_c00082{width:793.333333pt;}
.w0_c00082{width:793.626667pt;}
.x0_c00082{left:0.000000pt;}
.x2_c00082{left:151.200000pt;}
.x3_c00082{left:223.200000pt;}
.x1_c00082{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_50fc4695d24231334a89b187.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.093262;font-style:normal;font-weight:normal;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_f0394ab2c3f00abc77127e58.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:1.106934;font-style:normal;font-weight:normal;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_5c79eb119a9c1119b6192cf3.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00083{letter-spacing:-0.086400px;}
.lsd_c00083{letter-spacing:-0.079200px;}
.lse_c00083{letter-spacing:-0.072000px;}
.lsc_c00083{letter-spacing:-0.064800px;}
.lsa_c00083{letter-spacing:-0.057600px;}
.ls6_c00083{letter-spacing:-0.050400px;}
.ls4_c00083{letter-spacing:-0.043200px;}
.ls8_c00083{letter-spacing:-0.036000px;}
.ls7_c00083{letter-spacing:-0.028800px;}
.ls9_c00083{letter-spacing:-0.021600px;}
.ls5_c00083{letter-spacing:-0.014400px;}
.ls3_c00083{letter-spacing:-0.007200px;}
.ls2_c00083{letter-spacing:0.000000px;}
.ls1_c00083{letter-spacing:0.007200px;}
.ls0_c00083{letter-spacing:0.028800px;}
.sc__c00083{text-shadow:none;}
.sc0_c00083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00083{-webkit-text-stroke:0px transparent;}
.sc0_c00083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00083{word-spacing:-20.044800px;}
.ws0_c00083{word-spacing:-19.929600px;}
.ws21_c00083{word-spacing:-4.111200px;}
.ws28_c00083{word-spacing:-1.958400px;}
.ws39_c00083{word-spacing:-1.641600px;}
.ws3a_c00083{word-spacing:-1.627200px;}
.wsa_c00083{word-spacing:-1.288800px;}
.ws9_c00083{word-spacing:-1.252800px;}
.ws12_c00083{word-spacing:-1.245600px;}
.ws1a_c00083{word-spacing:-0.547200px;}
.ws24_c00083{word-spacing:-0.540000px;}
.ws25_c00083{word-spacing:-0.518400px;}
.ws19_c00083{word-spacing:-0.504000px;}
.ws2b_c00083{word-spacing:-0.151200px;}
.ws2c_c00083{word-spacing:-0.129600px;}
.ws2_c00083{word-spacing:0.000000px;}
.ws6_c00083{word-spacing:0.043200px;}
.ws1f_c00083{word-spacing:0.122400px;}
.ws20_c00083{word-spacing:0.165600px;}
.ws5_c00083{word-spacing:0.172800px;}
.ws15_c00083{word-spacing:0.180000px;}
.ws2f_c00083{word-spacing:2.224800px;}
.ws30_c00083{word-spacing:2.340000px;}
.ws31_c00083{word-spacing:2.397600px;}
.ws3_c00083{word-spacing:3.765600px;}
.ws4_c00083{word-spacing:3.801600px;}
.wsb_c00083{word-spacing:4.082400px;}
.wsc_c00083{word-spacing:4.168800px;}
.ws36_c00083{word-spacing:8.100000px;}
.ws35_c00083{word-spacing:8.172000px;}
.ws8_c00083{word-spacing:8.395200px;}
.ws7_c00083{word-spacing:8.488800px;}
.ws17_c00083{word-spacing:8.827200px;}
.ws16_c00083{word-spacing:8.856000px;}
.ws18_c00083{word-spacing:8.884800px;}
.ws11_c00083{word-spacing:9.475200px;}
.ws10_c00083{word-spacing:9.554400px;}
.ws1d_c00083{word-spacing:9.561600px;}
.ws1e_c00083{word-spacing:9.597600px;}
.wse_c00083{word-spacing:9.734400px;}
.wsf_c00083{word-spacing:9.907200px;}
.wsd_c00083{word-spacing:9.921600px;}
.ws37_c00083{word-spacing:10.267200px;}
.ws38_c00083{word-spacing:10.288800px;}
.ws2d_c00083{word-spacing:13.888800px;}
.ws2e_c00083{word-spacing:13.896000px;}
.ws22_c00083{word-spacing:15.616800px;}
.ws23_c00083{word-spacing:15.710400px;}
.ws32_c00083{word-spacing:18.943200px;}
.ws33_c00083{word-spacing:18.979200px;}
.ws2a_c00083{word-spacing:19.260000px;}
.ws29_c00083{word-spacing:19.281600px;}
.ws34_c00083{word-spacing:21.808800px;}
.ws3b_c00083{word-spacing:25.747200px;}
.ws26_c00083{word-spacing:26.431200px;}
.ws27_c00083{word-spacing:26.452800px;}
.ws13_c00083{word-spacing:28.576800px;}
.ws14_c00083{word-spacing:28.641600px;}
.ws1c_c00083{word-spacing:30.052800px;}
.ws1b_c00083{word-spacing:30.067200px;}
._0_c00083{width:1.468800px;}
._1_c00083{width:4.464000px;}
.fc0_c00083{color:rgb(0,0,0);}
.fs0_c00083{font-size:72.000000px;}
.y0_c00083{bottom:0.000000px;}
.y2_c00083{bottom:46.830450px;}
.y1_c00083{bottom:67.530450px;}
.y23_c00083{bottom:153.480450px;}
.y22_c00083{bottom:184.530450px;}
.y21_c00083{bottom:215.580450px;}
.y20_c00083{bottom:246.630450px;}
.y1f_c00083{bottom:277.680450px;}
.y1e_c00083{bottom:308.730450px;}
.y1d_c00083{bottom:339.690450px;}
.y1c_c00083{bottom:370.740450px;}
.y1b_c00083{bottom:419.790450px;}
.y1a_c00083{bottom:450.840450px;}
.y19_c00083{bottom:481.890450px;}
.y18_c00083{bottom:512.940450px;}
.y17_c00083{bottom:543.990450px;}
.y16_c00083{bottom:575.040450px;}
.y15_c00083{bottom:606.090450px;}
.y14_c00083{bottom:655.140450px;}
.y13_c00083{bottom:686.190450px;}
.y12_c00083{bottom:717.240450px;}
.y11_c00083{bottom:748.290450px;}
.y10_c00083{bottom:779.340450px;}
.yf_c00083{bottom:810.390450px;}
.ye_c00083{bottom:831.090450px;}
.yd_c00083{bottom:851.790450px;}
.yc_c00083{bottom:872.490450px;}
.yb_c00083{bottom:893.190450px;}
.ya_c00083{bottom:913.890450px;}
.y9_c00083{bottom:934.590450px;}
.y8_c00083{bottom:955.290450px;}
.y7_c00083{bottom:975.990450px;}
.y6_c00083{bottom:996.690450px;}
.y5_c00083{bottom:1017.390450px;}
.y4_c00083{bottom:1066.440450px;}
.y3_c00083{bottom:1097.490450px;}
.h1_c00083{height:63.175781px;}
.h2_c00083{height:64.546875px;}
.h3_c00083{height:75.093750px;}
.h0_c00083{height:1263.000000px;}
.w1_c00083{width:892.500000px;}
.w0_c00083{width:892.830000px;}
.x0_c00083{left:0.000000px;}
.x2_c00083{left:127.620000px;}
.x3_c00083{left:148.950000px;}
.x1_c00083{left:704.880000px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.lsb_c00083{letter-spacing:-0.076800pt;}
.lsd_c00083{letter-spacing:-0.070400pt;}
.lse_c00083{letter-spacing:-0.064000pt;}
.lsc_c00083{letter-spacing:-0.057600pt;}
.lsa_c00083{letter-spacing:-0.051200pt;}
.ls6_c00083{letter-spacing:-0.044800pt;}
.ls4_c00083{letter-spacing:-0.038400pt;}
.ls8_c00083{letter-spacing:-0.032000pt;}
.ls7_c00083{letter-spacing:-0.025600pt;}
.ls9_c00083{letter-spacing:-0.019200pt;}
.ls5_c00083{letter-spacing:-0.012800pt;}
.ls3_c00083{letter-spacing:-0.006400pt;}
.ls2_c00083{letter-spacing:0.000000pt;}
.ls1_c00083{letter-spacing:0.006400pt;}
.ls0_c00083{letter-spacing:0.025600pt;}
.ws1_c00083{word-spacing:-17.817600pt;}
.ws0_c00083{word-spacing:-17.715200pt;}
.ws21_c00083{word-spacing:-3.654400pt;}
.ws28_c00083{word-spacing:-1.740800pt;}
.ws39_c00083{word-spacing:-1.459200pt;}
.ws3a_c00083{word-spacing:-1.446400pt;}
.wsa_c00083{word-spacing:-1.145600pt;}
.ws9_c00083{word-spacing:-1.113600pt;}
.ws12_c00083{word-spacing:-1.107200pt;}
.ws1a_c00083{word-spacing:-0.486400pt;}
.ws24_c00083{word-spacing:-0.480000pt;}
.ws25_c00083{word-spacing:-0.460800pt;}
.ws19_c00083{word-spacing:-0.448000pt;}
.ws2b_c00083{word-spacing:-0.134400pt;}
.ws2c_c00083{word-spacing:-0.115200pt;}
.ws2_c00083{word-spacing:0.000000pt;}
.ws6_c00083{word-spacing:0.038400pt;}
.ws1f_c00083{word-spacing:0.108800pt;}
.ws20_c00083{word-spacing:0.147200pt;}
.ws5_c00083{word-spacing:0.153600pt;}
.ws15_c00083{word-spacing:0.160000pt;}
.ws2f_c00083{word-spacing:1.977600pt;}
.ws30_c00083{word-spacing:2.080000pt;}
.ws31_c00083{word-spacing:2.131200pt;}
.ws3_c00083{word-spacing:3.347200pt;}
.ws4_c00083{word-spacing:3.379200pt;}
.wsb_c00083{word-spacing:3.628800pt;}
.wsc_c00083{word-spacing:3.705600pt;}
.ws36_c00083{word-spacing:7.200000pt;}
.ws35_c00083{word-spacing:7.264000pt;}
.ws8_c00083{word-spacing:7.462400pt;}
.ws7_c00083{word-spacing:7.545600pt;}
.ws17_c00083{word-spacing:7.846400pt;}
.ws16_c00083{word-spacing:7.872000pt;}
.ws18_c00083{word-spacing:7.897600pt;}
.ws11_c00083{word-spacing:8.422400pt;}
.ws10_c00083{word-spacing:8.492800pt;}
.ws1d_c00083{word-spacing:8.499200pt;}
.ws1e_c00083{word-spacing:8.531200pt;}
.wse_c00083{word-spacing:8.652800pt;}
.wsf_c00083{word-spacing:8.806400pt;}
.wsd_c00083{word-spacing:8.819200pt;}
.ws37_c00083{word-spacing:9.126400pt;}
.ws38_c00083{word-spacing:9.145600pt;}
.ws2d_c00083{word-spacing:12.345600pt;}
.ws2e_c00083{word-spacing:12.352000pt;}
.ws22_c00083{word-spacing:13.881600pt;}
.ws23_c00083{word-spacing:13.964800pt;}
.ws32_c00083{word-spacing:16.838400pt;}
.ws33_c00083{word-spacing:16.870400pt;}
.ws2a_c00083{word-spacing:17.120000pt;}
.ws29_c00083{word-spacing:17.139200pt;}
.ws34_c00083{word-spacing:19.385600pt;}
.ws3b_c00083{word-spacing:22.886400pt;}
.ws26_c00083{word-spacing:23.494400pt;}
.ws27_c00083{word-spacing:23.513600pt;}
.ws13_c00083{word-spacing:25.401600pt;}
.ws14_c00083{word-spacing:25.459200pt;}
.ws1c_c00083{word-spacing:26.713600pt;}
.ws1b_c00083{word-spacing:26.726400pt;}
._0_c00083{width:1.305600pt;}
._1_c00083{width:3.968000pt;}
.fs0_c00083{font-size:64.000000pt;}
.y0_c00083{bottom:0.000000pt;}
.y2_c00083{bottom:41.627067pt;}
.y1_c00083{bottom:60.027067pt;}
.y23_c00083{bottom:136.427067pt;}
.y22_c00083{bottom:164.027067pt;}
.y21_c00083{bottom:191.627067pt;}
.y20_c00083{bottom:219.227067pt;}
.y1f_c00083{bottom:246.827067pt;}
.y1e_c00083{bottom:274.427067pt;}
.y1d_c00083{bottom:301.947067pt;}
.y1c_c00083{bottom:329.547067pt;}
.y1b_c00083{bottom:373.147067pt;}
.y1a_c00083{bottom:400.747067pt;}
.y19_c00083{bottom:428.347067pt;}
.y18_c00083{bottom:455.947067pt;}
.y17_c00083{bottom:483.547067pt;}
.y16_c00083{bottom:511.147067pt;}
.y15_c00083{bottom:538.747067pt;}
.y14_c00083{bottom:582.347067pt;}
.y13_c00083{bottom:609.947067pt;}
.y12_c00083{bottom:637.547067pt;}
.y11_c00083{bottom:665.147067pt;}
.y10_c00083{bottom:692.747067pt;}
.yf_c00083{bottom:720.347067pt;}
.ye_c00083{bottom:738.747067pt;}
.yd_c00083{bottom:757.147067pt;}
.yc_c00083{bottom:775.547067pt;}
.yb_c00083{bottom:793.947067pt;}
.ya_c00083{bottom:812.347067pt;}
.y9_c00083{bottom:830.747067pt;}
.y8_c00083{bottom:849.147067pt;}
.y7_c00083{bottom:867.547067pt;}
.y6_c00083{bottom:885.947067pt;}
.y5_c00083{bottom:904.347067pt;}
.y4_c00083{bottom:947.947067pt;}
.y3_c00083{bottom:975.547067pt;}
.h1_c00083{height:56.156250pt;}
.h2_c00083{height:57.375000pt;}
.h3_c00083{height:66.750000pt;}
.h0_c00083{height:1122.666667pt;}
.w1_c00083{width:793.333333pt;}
.w0_c00083{width:793.626667pt;}
.x0_c00083{left:0.000000pt;}
.x2_c00083{left:113.440000pt;}
.x3_c00083{left:132.400000pt;}
.x1_c00083{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a2cac1d21aa85d2f146c0af2.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.093262;font-style:normal;font-weight:normal;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_2211f8ed0f572f2ba5224902.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.106934;font-style:normal;font-weight:normal;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_aea8044a9639734a763970fe.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls5_c00084{letter-spacing:-0.064800px;}
.ls2_c00084{letter-spacing:-0.043200px;}
.ls1_c00084{letter-spacing:-0.036000px;}
.ls4_c00084{letter-spacing:-0.021600px;}
.ls3_c00084{letter-spacing:-0.014400px;}
.ls0_c00084{letter-spacing:0.000000px;}
.ls6_c00084{letter-spacing:0.158400px;}
.ls7_c00084{letter-spacing:843.998400px;}
.sc__c00084{text-shadow:none;}
.sc0_c00084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00084{-webkit-text-stroke:0px transparent;}
.sc0_c00084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00084{word-spacing:-4.795200px;}
.ws7_c00084{word-spacing:-4.788000px;}
.ws5_c00084{word-spacing:-2.347200px;}
.ws3_c00084{word-spacing:-2.253600px;}
.ws4_c00084{word-spacing:-2.196000px;}
.ws0_c00084{word-spacing:0.000000px;}
.ws8_c00084{word-spacing:0.223200px;}
.ws2_c00084{word-spacing:24.588000px;}
.ws1_c00084{word-spacing:24.674400px;}
._0_c00084{width:1.065600px;}
.fc0_c00084{color:rgb(0,0,0);}
.fs0_c00084{font-size:72.000000px;}
.y0_c00084{bottom:0.000000px;}
.y2_c00084{bottom:46.830450px;}
.y1_c00084{bottom:67.530450px;}
.y8_c00084{bottom:906.240450px;}
.y7_c00084{bottom:955.290450px;}
.y6_c00084{bottom:1004.340450px;}
.y5_c00084{bottom:1035.390450px;}
.y4_c00084{bottom:1066.440450px;}
.y3_c00084{bottom:1097.490450px;}
.h1_c00084{height:63.175781px;}
.h2_c00084{height:64.546875px;}
.h3_c00084{height:75.093750px;}
.h0_c00084{height:1263.000000px;}
.w1_c00084{width:892.500000px;}
.w0_c00084{width:892.830000px;}
.x0_c00084{left:0.000000px;}
.x2_c00084{left:170.100000px;}
.x1_c00084{left:747.360000px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls5_c00084{letter-spacing:-0.057600pt;}
.ls2_c00084{letter-spacing:-0.038400pt;}
.ls1_c00084{letter-spacing:-0.032000pt;}
.ls4_c00084{letter-spacing:-0.019200pt;}
.ls3_c00084{letter-spacing:-0.012800pt;}
.ls0_c00084{letter-spacing:0.000000pt;}
.ls6_c00084{letter-spacing:0.140800pt;}
.ls7_c00084{letter-spacing:750.220800pt;}
.ws6_c00084{word-spacing:-4.262400pt;}
.ws7_c00084{word-spacing:-4.256000pt;}
.ws5_c00084{word-spacing:-2.086400pt;}
.ws3_c00084{word-spacing:-2.003200pt;}
.ws4_c00084{word-spacing:-1.952000pt;}
.ws0_c00084{word-spacing:0.000000pt;}
.ws8_c00084{word-spacing:0.198400pt;}
.ws2_c00084{word-spacing:21.856000pt;}
.ws1_c00084{word-spacing:21.932800pt;}
._0_c00084{width:0.947200pt;}
.fs0_c00084{font-size:64.000000pt;}
.y0_c00084{bottom:0.000000pt;}
.y2_c00084{bottom:41.627067pt;}
.y1_c00084{bottom:60.027067pt;}
.y8_c00084{bottom:805.547067pt;}
.y7_c00084{bottom:849.147067pt;}
.y6_c00084{bottom:892.747067pt;}
.y5_c00084{bottom:920.347067pt;}
.y4_c00084{bottom:947.947067pt;}
.y3_c00084{bottom:975.547067pt;}
.h1_c00084{height:56.156250pt;}
.h2_c00084{height:57.375000pt;}
.h3_c00084{height:66.750000pt;}
.h0_c00084{height:1122.666667pt;}
.w1_c00084{width:793.333333pt;}
.w0_c00084{width:793.626667pt;}
.x0_c00084{left:0.000000pt;}
.x2_c00084{left:151.200000pt;}
.x1_c00084{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_64fa6e479901e9b8389147d1.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:1.106934;font-style: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;}
.ls0_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;}
}
.ws0_c00085{word-spacing:0.000000px;}
.fc0_c00085{color:rgb(0,0,0);}
.fs0_c00085{font-size:72.000000px;}
.y0_c00085{bottom:0.000000px;}
.y2_c00085{bottom:46.830450px;}
.y1_c00085{bottom:67.530450px;}
.y3_c00085{bottom:1097.490450px;}
.h1_c00085{height:63.175781px;}
.h2_c00085{height:64.546875px;}
.h0_c00085{height:1263.000000px;}
.w1_c00085{width:892.500000px;}
.w0_c00085{width:892.830000px;}
.x0_c00085{left:0.000000px;}
.x2_c00085{left:127.620000px;}
.x1_c00085{left:704.880000px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls0_c00085{letter-spacing:0.000000pt;}
.ws0_c00085{word-spacing:0.000000pt;}
.fs0_c00085{font-size:64.000000pt;}
.y0_c00085{bottom:0.000000pt;}
.y2_c00085{bottom:41.627067pt;}
.y1_c00085{bottom:60.027067pt;}
.y3_c00085{bottom:975.547067pt;}
.h1_c00085{height:56.156250pt;}
.h2_c00085{height:57.375000pt;}
.h0_c00085{height:1122.666667pt;}
.w1_c00085{width:793.333333pt;}
.w0_c00085{width:793.626667pt;}
.x0_c00085{left:0.000000pt;}
.x2_c00085{left:113.440000pt;}
.x1_c00085{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f054c95173310c2af3121704.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.093262;font-style:normal;font-weight:normal;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_c4a633b23dfb5cbbb9b176ea.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00086;src:url('chunks/assets/font_18cdfbdff78a4c8c38aa9f46.woff2')format("woff");}.ff3_c00086{font-family:ff3_c00086;line-height:1.106934;font-style:normal;font-weight:normal;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_a6c9063edea35961f1fd3312.woff2')format("woff");}.ff4_c00086{font-family:ff4_c00086;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00086{letter-spacing:-0.086400px;}
.ls11_c00086{letter-spacing:-0.072000px;}
.lsd_c00086{letter-spacing:-0.064800px;}
.ls6_c00086{letter-spacing:-0.057600px;}
.ls8_c00086{letter-spacing:-0.050400px;}
.lsf_c00086{letter-spacing:-0.043200px;}
.ls9_c00086{letter-spacing:-0.036000px;}
.ls7_c00086{letter-spacing:-0.028800px;}
.lsa_c00086{letter-spacing:-0.021600px;}
.ls10_c00086{letter-spacing:-0.014400px;}
.lsb_c00086{letter-spacing:-0.007200px;}
.ls5_c00086{letter-spacing:0.000000px;}
.ls2_c00086{letter-spacing:0.007200px;}
.ls4_c00086{letter-spacing:0.014400px;}
.ls3_c00086{letter-spacing:0.036000px;}
.ls0_c00086{letter-spacing:0.058716px;}
.lse_c00086{letter-spacing:0.115200px;}
.ls1_c00086{letter-spacing:0.144000px;}
.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;}
}
.ws14_c00086{word-spacing:-1.576800px;}
.ws16_c00086{word-spacing:-1.555200px;}
.ws17_c00086{word-spacing:-1.497600px;}
.ws15_c00086{word-spacing:-1.483200px;}
.ws3_c00086{word-spacing:-0.532800px;}
.ws2_c00086{word-spacing:-0.504000px;}
.ws11_c00086{word-spacing:-0.496800px;}
.ws10_c00086{word-spacing:-0.475200px;}
.ws24_c00086{word-spacing:-0.057600px;}
.ws0_c00086{word-spacing:0.000000px;}
.ws1_c00086{word-spacing:0.033552px;}
.wsb_c00086{word-spacing:0.187200px;}
.ws23_c00086{word-spacing:0.201600px;}
.ws13_c00086{word-spacing:0.223200px;}
.ws32_c00086{word-spacing:0.230400px;}
.ws2b_c00086{word-spacing:1.677600px;}
.wsf_c00086{word-spacing:2.685600px;}
.wse_c00086{word-spacing:2.714400px;}
.ws9_c00086{word-spacing:3.420000px;}
.wsa_c00086{word-spacing:3.427200px;}
.ws20_c00086{word-spacing:3.643200px;}
.ws1e_c00086{word-spacing:3.708000px;}
.ws1f_c00086{word-spacing:3.751200px;}
.ws1d_c00086{word-spacing:3.780000px;}
.ws2c_c00086{word-spacing:3.801600px;}
.ws1a_c00086{word-spacing:4.500000px;}
.ws1b_c00086{word-spacing:4.507200px;}
.ws1c_c00086{word-spacing:4.536000px;}
.ws29_c00086{word-spacing:4.766400px;}
.ws2a_c00086{word-spacing:4.860000px;}
.ws30_c00086{word-spacing:5.061600px;}
.ws31_c00086{word-spacing:5.270400px;}
.ws2e_c00086{word-spacing:6.631200px;}
.ws2d_c00086{word-spacing:6.724800px;}
.ws8_c00086{word-spacing:7.408800px;}
.ws18_c00086{word-spacing:8.078400px;}
.ws19_c00086{word-spacing:8.114400px;}
.ws2f_c00086{word-spacing:15.667200px;}
.ws12_c00086{word-spacing:15.688800px;}
.wsd_c00086{word-spacing:25.387200px;}
.wsc_c00086{word-spacing:25.444800px;}
.ws28_c00086{word-spacing:32.140800px;}
.ws27_c00086{word-spacing:32.212800px;}
.ws4_c00086{word-spacing:32.947200px;}
.ws5_c00086{word-spacing:33.048000px;}
.ws7_c00086{word-spacing:36.194400px;}
.ws6_c00086{word-spacing:36.208800px;}
.ws22_c00086{word-spacing:37.267200px;}
.ws21_c00086{word-spacing:37.274400px;}
.ws25_c00086{word-spacing:39.074400px;}
.ws26_c00086{word-spacing:39.168000px;}
._1_c00086{width:1.152000px;}
._0_c00086{width:187.555680px;}
.fc0_c00086{color:rgb(0,0,0);}
.fs0_c00086{font-size:72.000000px;}
.fs1_c00086{font-size:83.880000px;}
.y0_c00086{bottom:0.000000px;}
.y2_c00086{bottom:46.830450px;}
.y1_c00086{bottom:67.530450px;}
.y21_c00086{bottom:198.300450px;}
.y20_c00086{bottom:229.350450px;}
.y1f_c00086{bottom:260.400450px;}
.y1e_c00086{bottom:291.450450px;}
.y1d_c00086{bottom:322.500450px;}
.y1c_c00086{bottom:353.550450px;}
.y1b_c00086{bottom:384.600450px;}
.y1a_c00086{bottom:415.650450px;}
.y19_c00086{bottom:446.700450px;}
.y18_c00086{bottom:495.750450px;}
.y17_c00086{bottom:526.800450px;}
.y16_c00086{bottom:557.850450px;}
.y15_c00086{bottom:588.900450px;}
.y14_c00086{bottom:619.950450px;}
.y13_c00086{bottom:651.000450px;}
.y12_c00086{bottom:682.050450px;}
.y11_c00086{bottom:702.750450px;}
.y10_c00086{bottom:723.360450px;}
.yf_c00086{bottom:744.060450px;}
.ye_c00086{bottom:764.760450px;}
.yd_c00086{bottom:785.460450px;}
.yc_c00086{bottom:806.160450px;}
.yb_c00086{bottom:826.860450px;}
.ya_c00086{bottom:875.910450px;}
.y9_c00086{bottom:906.960450px;}
.y8_c00086{bottom:938.010450px;}
.y7_c00086{bottom:969.060450px;}
.y6_c00086{bottom:1000.110450px;}
.y5_c00086{bottom:1031.160450px;}
.y4_c00086{bottom:1070.404950px;}
.y3_c00086{bottom:1094.520450px;}
.h1_c00086{height:63.175781px;}
.h3_c00086{height:64.546875px;}
.h4_c00086{height:75.093750px;}
.h2_c00086{height:87.484219px;}
.h0_c00086{height:1263.000000px;}
.w1_c00086{width:892.500000px;}
.w0_c00086{width:892.830000px;}
.x0_c00086{left:0.000000px;}
.x2_c00086{left:170.100000px;}
.x5_c00086{left:191.430000px;}
.x3_c00086{left:224.100000px;}
.x4_c00086{left:261.908910px;}
.x1_c00086{left:747.360000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.lsc_c00086{letter-spacing:-0.076800pt;}
.ls11_c00086{letter-spacing:-0.064000pt;}
.lsd_c00086{letter-spacing:-0.057600pt;}
.ls6_c00086{letter-spacing:-0.051200pt;}
.ls8_c00086{letter-spacing:-0.044800pt;}
.lsf_c00086{letter-spacing:-0.038400pt;}
.ls9_c00086{letter-spacing:-0.032000pt;}
.ls7_c00086{letter-spacing:-0.025600pt;}
.lsa_c00086{letter-spacing:-0.019200pt;}
.ls10_c00086{letter-spacing:-0.012800pt;}
.lsb_c00086{letter-spacing:-0.006400pt;}
.ls5_c00086{letter-spacing:0.000000pt;}
.ls2_c00086{letter-spacing:0.006400pt;}
.ls4_c00086{letter-spacing:0.012800pt;}
.ls3_c00086{letter-spacing:0.032000pt;}
.ls0_c00086{letter-spacing:0.052192pt;}
.lse_c00086{letter-spacing:0.102400pt;}
.ls1_c00086{letter-spacing:0.128000pt;}
.ws14_c00086{word-spacing:-1.401600pt;}
.ws16_c00086{word-spacing:-1.382400pt;}
.ws17_c00086{word-spacing:-1.331200pt;}
.ws15_c00086{word-spacing:-1.318400pt;}
.ws3_c00086{word-spacing:-0.473600pt;}
.ws2_c00086{word-spacing:-0.448000pt;}
.ws11_c00086{word-spacing:-0.441600pt;}
.ws10_c00086{word-spacing:-0.422400pt;}
.ws24_c00086{word-spacing:-0.051200pt;}
.ws0_c00086{word-spacing:0.000000pt;}
.ws1_c00086{word-spacing:0.029824pt;}
.wsb_c00086{word-spacing:0.166400pt;}
.ws23_c00086{word-spacing:0.179200pt;}
.ws13_c00086{word-spacing:0.198400pt;}
.ws32_c00086{word-spacing:0.204800pt;}
.ws2b_c00086{word-spacing:1.491200pt;}
.wsf_c00086{word-spacing:2.387200pt;}
.wse_c00086{word-spacing:2.412800pt;}
.ws9_c00086{word-spacing:3.040000pt;}
.wsa_c00086{word-spacing:3.046400pt;}
.ws20_c00086{word-spacing:3.238400pt;}
.ws1e_c00086{word-spacing:3.296000pt;}
.ws1f_c00086{word-spacing:3.334400pt;}
.ws1d_c00086{word-spacing:3.360000pt;}
.ws2c_c00086{word-spacing:3.379200pt;}
.ws1a_c00086{word-spacing:4.000000pt;}
.ws1b_c00086{word-spacing:4.006400pt;}
.ws1c_c00086{word-spacing:4.032000pt;}
.ws29_c00086{word-spacing:4.236800pt;}
.ws2a_c00086{word-spacing:4.320000pt;}
.ws30_c00086{word-spacing:4.499200pt;}
.ws31_c00086{word-spacing:4.684800pt;}
.ws2e_c00086{word-spacing:5.894400pt;}
.ws2d_c00086{word-spacing:5.977600pt;}
.ws8_c00086{word-spacing:6.585600pt;}
.ws18_c00086{word-spacing:7.180800pt;}
.ws19_c00086{word-spacing:7.212800pt;}
.ws2f_c00086{word-spacing:13.926400pt;}
.ws12_c00086{word-spacing:13.945600pt;}
.wsd_c00086{word-spacing:22.566400pt;}
.wsc_c00086{word-spacing:22.617600pt;}
.ws28_c00086{word-spacing:28.569600pt;}
.ws27_c00086{word-spacing:28.633600pt;}
.ws4_c00086{word-spacing:29.286400pt;}
.ws5_c00086{word-spacing:29.376000pt;}
.ws7_c00086{word-spacing:32.172800pt;}
.ws6_c00086{word-spacing:32.185600pt;}
.ws22_c00086{word-spacing:33.126400pt;}
.ws21_c00086{word-spacing:33.132800pt;}
.ws25_c00086{word-spacing:34.732800pt;}
.ws26_c00086{word-spacing:34.816000pt;}
._1_c00086{width:1.024000pt;}
._0_c00086{width:166.716160pt;}
.fs0_c00086{font-size:64.000000pt;}
.fs1_c00086{font-size:74.560000pt;}
.y0_c00086{bottom:0.000000pt;}
.y2_c00086{bottom:41.627067pt;}
.y1_c00086{bottom:60.027067pt;}
.y21_c00086{bottom:176.267067pt;}
.y20_c00086{bottom:203.867067pt;}
.y1f_c00086{bottom:231.467067pt;}
.y1e_c00086{bottom:259.067067pt;}
.y1d_c00086{bottom:286.667067pt;}
.y1c_c00086{bottom:314.267067pt;}
.y1b_c00086{bottom:341.867067pt;}
.y1a_c00086{bottom:369.467067pt;}
.y19_c00086{bottom:397.067067pt;}
.y18_c00086{bottom:440.667067pt;}
.y17_c00086{bottom:468.267067pt;}
.y16_c00086{bottom:495.867067pt;}
.y15_c00086{bottom:523.467067pt;}
.y14_c00086{bottom:551.067067pt;}
.y13_c00086{bottom:578.667067pt;}
.y12_c00086{bottom:606.267067pt;}
.y11_c00086{bottom:624.667067pt;}
.y10_c00086{bottom:642.987067pt;}
.yf_c00086{bottom:661.387067pt;}
.ye_c00086{bottom:679.787067pt;}
.yd_c00086{bottom:698.187067pt;}
.yc_c00086{bottom:716.587067pt;}
.yb_c00086{bottom:734.987067pt;}
.ya_c00086{bottom:778.587067pt;}
.y9_c00086{bottom:806.187067pt;}
.y8_c00086{bottom:833.787067pt;}
.y7_c00086{bottom:861.387067pt;}
.y6_c00086{bottom:888.987067pt;}
.y5_c00086{bottom:916.587067pt;}
.y4_c00086{bottom:951.471067pt;}
.y3_c00086{bottom:972.907067pt;}
.h1_c00086{height:56.156250pt;}
.h3_c00086{height:57.375000pt;}
.h4_c00086{height:66.750000pt;}
.h2_c00086{height:77.763750pt;}
.h0_c00086{height:1122.666667pt;}
.w1_c00086{width:793.333333pt;}
.w0_c00086{width:793.626667pt;}
.x0_c00086{left:0.000000pt;}
.x2_c00086{left:151.200000pt;}
.x5_c00086{left:170.160000pt;}
.x3_c00086{left:199.200000pt;}
.x4_c00086{left:232.807920pt;}
.x1_c00086{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7bd326f6484c961d7b306543.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.093262;font-style:normal;font-weight:normal;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_fa0be6ef5504f9f1cad88fa7.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.106934;font-style:normal;font-weight:normal;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_f12bda1a732ba009ab606238.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls7_c00087{letter-spacing:-0.086400px;}
.ls8_c00087{letter-spacing:-0.064800px;}
.lsb_c00087{letter-spacing:-0.057600px;}
.ls5_c00087{letter-spacing:-0.050400px;}
.ls2_c00087{letter-spacing:-0.043200px;}
.ls6_c00087{letter-spacing:-0.036000px;}
.ls9_c00087{letter-spacing:-0.028800px;}
.ls3_c00087{letter-spacing:-0.021600px;}
.ls4_c00087{letter-spacing:-0.014400px;}
.lsa_c00087{letter-spacing:-0.007200px;}
.ls1_c00087{letter-spacing:0.000000px;}
.lsc_c00087{letter-spacing:0.021600px;}
.ls0_c00087{letter-spacing:0.028800px;}
.sc__c00087{text-shadow:none;}
.sc0_c00087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00087{-webkit-text-stroke:0px transparent;}
.sc0_c00087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00087{word-spacing:-19.972800px;}
.ws20_c00087{word-spacing:-4.867200px;}
.ws21_c00087{word-spacing:-4.795200px;}
.ws33_c00087{word-spacing:-3.866400px;}
.ws34_c00087{word-spacing:-3.744000px;}
.ws1b_c00087{word-spacing:-3.420000px;}
.ws1c_c00087{word-spacing:-3.384000px;}
.ws25_c00087{word-spacing:-3.045600px;}
.ws26_c00087{word-spacing:-3.024000px;}
.ws27_c00087{word-spacing:-2.347200px;}
.ws28_c00087{word-spacing:-2.275200px;}
.ws14_c00087{word-spacing:-1.994400px;}
.ws13_c00087{word-spacing:-1.972800px;}
.ws29_c00087{word-spacing:-1.310400px;}
.ws18_c00087{word-spacing:-1.260000px;}
.ws35_c00087{word-spacing:-1.245600px;}
.ws2a_c00087{word-spacing:-1.224000px;}
.ws17_c00087{word-spacing:-1.173600px;}
.ws16_c00087{word-spacing:-0.950400px;}
.ws15_c00087{word-spacing:-0.914400px;}
.ws1f_c00087{word-spacing:-0.532800px;}
.ws1e_c00087{word-spacing:-0.446400px;}
.ws1d_c00087{word-spacing:-0.043200px;}
.ws1_c00087{word-spacing:0.000000px;}
.ws2_c00087{word-spacing:0.093600px;}
.ws36_c00087{word-spacing:0.158400px;}
.ws3_c00087{word-spacing:0.180000px;}
.ws6_c00087{word-spacing:0.324000px;}
.wsd_c00087{word-spacing:1.252800px;}
.wsc_c00087{word-spacing:1.346400px;}
.wsf_c00087{word-spacing:1.569600px;}
.wse_c00087{word-spacing:1.620000px;}
.ws10_c00087{word-spacing:1.663200px;}
.ws8_c00087{word-spacing:3.434400px;}
.ws7_c00087{word-spacing:3.441600px;}
.ws9_c00087{word-spacing:3.484800px;}
.wsb_c00087{word-spacing:8.006400px;}
.wsa_c00087{word-spacing:8.100000px;}
.ws23_c00087{word-spacing:10.245600px;}
.ws24_c00087{word-spacing:10.260000px;}
.ws2b_c00087{word-spacing:12.427200px;}
.ws2c_c00087{word-spacing:12.592800px;}
.ws12_c00087{word-spacing:13.046400px;}
.ws11_c00087{word-spacing:13.233600px;}
.ws30_c00087{word-spacing:13.816800px;}
.ws2f_c00087{word-spacing:13.874400px;}
.ws22_c00087{word-spacing:14.623200px;}
.ws5_c00087{word-spacing:15.292800px;}
.ws4_c00087{word-spacing:15.300000px;}
.ws2d_c00087{word-spacing:25.372800px;}
.ws2e_c00087{word-spacing:25.387200px;}
.ws32_c00087{word-spacing:44.589600px;}
.ws31_c00087{word-spacing:44.827200px;}
.ws19_c00087{word-spacing:51.998400px;}
.ws1a_c00087{word-spacing:52.012800px;}
._0_c00087{width:1.159200px;}
.fc0_c00087{color:rgb(0,0,0);}
.fs0_c00087{font-size:72.000000px;}
.y0_c00087{bottom:0.000000px;}
.y2_c00087{bottom:46.830450px;}
.y1_c00087{bottom:67.530450px;}
.y21_c00087{bottom:163.830450px;}
.y20_c00087{bottom:194.880450px;}
.y1f_c00087{bottom:225.930450px;}
.y1e_c00087{bottom:256.980450px;}
.y1d_c00087{bottom:288.030450px;}
.y1c_c00087{bottom:319.080450px;}
.y1b_c00087{bottom:350.040450px;}
.y1a_c00087{bottom:370.740450px;}
.y19_c00087{bottom:391.440450px;}
.y18_c00087{bottom:412.140450px;}
.y17_c00087{bottom:432.840450px;}
.y16_c00087{bottom:453.540450px;}
.y15_c00087{bottom:502.590450px;}
.y14_c00087{bottom:533.640450px;}
.y13_c00087{bottom:564.690450px;}
.y12_c00087{bottom:595.740450px;}
.y11_c00087{bottom:626.790450px;}
.y10_c00087{bottom:675.840450px;}
.yf_c00087{bottom:706.890450px;}
.ye_c00087{bottom:737.940450px;}
.yd_c00087{bottom:768.990450px;}
.yc_c00087{bottom:800.040450px;}
.yb_c00087{bottom:831.090450px;}
.ya_c00087{bottom:862.140450px;}
.y9_c00087{bottom:893.190450px;}
.y8_c00087{bottom:924.240450px;}
.y7_c00087{bottom:955.290450px;}
.y6_c00087{bottom:986.340450px;}
.y5_c00087{bottom:1035.390450px;}
.y4_c00087{bottom:1066.440450px;}
.y3_c00087{bottom:1097.490450px;}
.h1_c00087{height:63.175781px;}
.h3_c00087{height:64.546875px;}
.h2_c00087{height:75.093750px;}
.h0_c00087{height:1263.000000px;}
.w1_c00087{width:892.500000px;}
.w0_c00087{width:892.830000px;}
.x0_c00087{left:0.000000px;}
.x2_c00087{left:127.620000px;}
.x3_c00087{left:148.950000px;}
.x1_c00087{left:704.880000px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls7_c00087{letter-spacing:-0.076800pt;}
.ls8_c00087{letter-spacing:-0.057600pt;}
.lsb_c00087{letter-spacing:-0.051200pt;}
.ls5_c00087{letter-spacing:-0.044800pt;}
.ls2_c00087{letter-spacing:-0.038400pt;}
.ls6_c00087{letter-spacing:-0.032000pt;}
.ls9_c00087{letter-spacing:-0.025600pt;}
.ls3_c00087{letter-spacing:-0.019200pt;}
.ls4_c00087{letter-spacing:-0.012800pt;}
.lsa_c00087{letter-spacing:-0.006400pt;}
.ls1_c00087{letter-spacing:0.000000pt;}
.lsc_c00087{letter-spacing:0.019200pt;}
.ls0_c00087{letter-spacing:0.025600pt;}
.ws0_c00087{word-spacing:-17.753600pt;}
.ws20_c00087{word-spacing:-4.326400pt;}
.ws21_c00087{word-spacing:-4.262400pt;}
.ws33_c00087{word-spacing:-3.436800pt;}
.ws34_c00087{word-spacing:-3.328000pt;}
.ws1b_c00087{word-spacing:-3.040000pt;}
.ws1c_c00087{word-spacing:-3.008000pt;}
.ws25_c00087{word-spacing:-2.707200pt;}
.ws26_c00087{word-spacing:-2.688000pt;}
.ws27_c00087{word-spacing:-2.086400pt;}
.ws28_c00087{word-spacing:-2.022400pt;}
.ws14_c00087{word-spacing:-1.772800pt;}
.ws13_c00087{word-spacing:-1.753600pt;}
.ws29_c00087{word-spacing:-1.164800pt;}
.ws18_c00087{word-spacing:-1.120000pt;}
.ws35_c00087{word-spacing:-1.107200pt;}
.ws2a_c00087{word-spacing:-1.088000pt;}
.ws17_c00087{word-spacing:-1.043200pt;}
.ws16_c00087{word-spacing:-0.844800pt;}
.ws15_c00087{word-spacing:-0.812800pt;}
.ws1f_c00087{word-spacing:-0.473600pt;}
.ws1e_c00087{word-spacing:-0.396800pt;}
.ws1d_c00087{word-spacing:-0.038400pt;}
.ws1_c00087{word-spacing:0.000000pt;}
.ws2_c00087{word-spacing:0.083200pt;}
.ws36_c00087{word-spacing:0.140800pt;}
.ws3_c00087{word-spacing:0.160000pt;}
.ws6_c00087{word-spacing:0.288000pt;}
.wsd_c00087{word-spacing:1.113600pt;}
.wsc_c00087{word-spacing:1.196800pt;}
.wsf_c00087{word-spacing:1.395200pt;}
.wse_c00087{word-spacing:1.440000pt;}
.ws10_c00087{word-spacing:1.478400pt;}
.ws8_c00087{word-spacing:3.052800pt;}
.ws7_c00087{word-spacing:3.059200pt;}
.ws9_c00087{word-spacing:3.097600pt;}
.wsb_c00087{word-spacing:7.116800pt;}
.wsa_c00087{word-spacing:7.200000pt;}
.ws23_c00087{word-spacing:9.107200pt;}
.ws24_c00087{word-spacing:9.120000pt;}
.ws2b_c00087{word-spacing:11.046400pt;}
.ws2c_c00087{word-spacing:11.193600pt;}
.ws12_c00087{word-spacing:11.596800pt;}
.ws11_c00087{word-spacing:11.763200pt;}
.ws30_c00087{word-spacing:12.281600pt;}
.ws2f_c00087{word-spacing:12.332800pt;}
.ws22_c00087{word-spacing:12.998400pt;}
.ws5_c00087{word-spacing:13.593600pt;}
.ws4_c00087{word-spacing:13.600000pt;}
.ws2d_c00087{word-spacing:22.553600pt;}
.ws2e_c00087{word-spacing:22.566400pt;}
.ws32_c00087{word-spacing:39.635200pt;}
.ws31_c00087{word-spacing:39.846400pt;}
.ws19_c00087{word-spacing:46.220800pt;}
.ws1a_c00087{word-spacing:46.233600pt;}
._0_c00087{width:1.030400pt;}
.fs0_c00087{font-size:64.000000pt;}
.y0_c00087{bottom:0.000000pt;}
.y2_c00087{bottom:41.627067pt;}
.y1_c00087{bottom:60.027067pt;}
.y21_c00087{bottom:145.627067pt;}
.y20_c00087{bottom:173.227067pt;}
.y1f_c00087{bottom:200.827067pt;}
.y1e_c00087{bottom:228.427067pt;}
.y1d_c00087{bottom:256.027067pt;}
.y1c_c00087{bottom:283.627067pt;}
.y1b_c00087{bottom:311.147067pt;}
.y1a_c00087{bottom:329.547067pt;}
.y19_c00087{bottom:347.947067pt;}
.y18_c00087{bottom:366.347067pt;}
.y17_c00087{bottom:384.747067pt;}
.y16_c00087{bottom:403.147067pt;}
.y15_c00087{bottom:446.747067pt;}
.y14_c00087{bottom:474.347067pt;}
.y13_c00087{bottom:501.947067pt;}
.y12_c00087{bottom:529.547067pt;}
.y11_c00087{bottom:557.147067pt;}
.y10_c00087{bottom:600.747067pt;}
.yf_c00087{bottom:628.347067pt;}
.ye_c00087{bottom:655.947067pt;}
.yd_c00087{bottom:683.547067pt;}
.yc_c00087{bottom:711.147067pt;}
.yb_c00087{bottom:738.747067pt;}
.ya_c00087{bottom:766.347067pt;}
.y9_c00087{bottom:793.947067pt;}
.y8_c00087{bottom:821.547067pt;}
.y7_c00087{bottom:849.147067pt;}
.y6_c00087{bottom:876.747067pt;}
.y5_c00087{bottom:920.347067pt;}
.y4_c00087{bottom:947.947067pt;}
.y3_c00087{bottom:975.547067pt;}
.h1_c00087{height:56.156250pt;}
.h3_c00087{height:57.375000pt;}
.h2_c00087{height:66.750000pt;}
.h0_c00087{height:1122.666667pt;}
.w1_c00087{width:793.333333pt;}
.w0_c00087{width:793.626667pt;}
.x0_c00087{left:0.000000pt;}
.x2_c00087{left:113.440000pt;}
.x3_c00087{left:132.400000pt;}
.x1_c00087{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b899c737a79d7ab5f1b5c73e.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.093262;font-style:normal;font-weight:normal;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_d953f69dedecca8c0bc04d13.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.106934;font-style:normal;font-weight:normal;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_6768174e16190c98be787bad.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls5_c00088{letter-spacing:-0.064800px;}
.ls4_c00088{letter-spacing:-0.057600px;}
.ls8_c00088{letter-spacing:-0.050400px;}
.ls6_c00088{letter-spacing:-0.043200px;}
.ls3_c00088{letter-spacing:-0.036000px;}
.ls7_c00088{letter-spacing:-0.028800px;}
.ls2_c00088{letter-spacing:0.000000px;}
.ls0_c00088{letter-spacing:0.007200px;}
.ls1_c00088{letter-spacing:0.014400px;}
.ls9_c00088{letter-spacing:843.998400px;}
.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;}
}
.ws0_c00088{word-spacing:-19.972800px;}
.ws1_c00088{word-spacing:0.000000px;}
.wsa_c00088{word-spacing:0.151200px;}
.ws7_c00088{word-spacing:2.311200px;}
.ws6_c00088{word-spacing:2.347200px;}
.ws8_c00088{word-spacing:19.224000px;}
.ws9_c00088{word-spacing:19.274400px;}
.ws3_c00088{word-spacing:19.296000px;}
.ws2_c00088{word-spacing:19.346400px;}
.ws5_c00088{word-spacing:25.401600px;}
.ws4_c00088{word-spacing:25.603200px;}
.fc0_c00088{color:rgb(0,0,0);}
.fs0_c00088{font-size:72.000000px;}
.y0_c00088{bottom:0.000000px;}
.y2_c00088{bottom:46.830450px;}
.y1_c00088{bottom:67.530450px;}
.ya_c00088{bottom:826.140450px;}
.y9_c00088{bottom:875.190450px;}
.y8_c00088{bottom:924.240450px;}
.y7_c00088{bottom:955.290450px;}
.y6_c00088{bottom:1004.340450px;}
.y5_c00088{bottom:1035.390450px;}
.y4_c00088{bottom:1066.440450px;}
.y3_c00088{bottom:1097.490450px;}
.h1_c00088{height:63.175781px;}
.h2_c00088{height:64.546875px;}
.h3_c00088{height:75.093750px;}
.h0_c00088{height:1263.000000px;}
.w1_c00088{width:892.500000px;}
.w0_c00088{width:892.830000px;}
.x0_c00088{left:0.000000px;}
.x2_c00088{left:170.100000px;}
.x1_c00088{left:747.360000px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls5_c00088{letter-spacing:-0.057600pt;}
.ls4_c00088{letter-spacing:-0.051200pt;}
.ls8_c00088{letter-spacing:-0.044800pt;}
.ls6_c00088{letter-spacing:-0.038400pt;}
.ls3_c00088{letter-spacing:-0.032000pt;}
.ls7_c00088{letter-spacing:-0.025600pt;}
.ls2_c00088{letter-spacing:0.000000pt;}
.ls0_c00088{letter-spacing:0.006400pt;}
.ls1_c00088{letter-spacing:0.012800pt;}
.ls9_c00088{letter-spacing:750.220800pt;}
.ws0_c00088{word-spacing:-17.753600pt;}
.ws1_c00088{word-spacing:0.000000pt;}
.wsa_c00088{word-spacing:0.134400pt;}
.ws7_c00088{word-spacing:2.054400pt;}
.ws6_c00088{word-spacing:2.086400pt;}
.ws8_c00088{word-spacing:17.088000pt;}
.ws9_c00088{word-spacing:17.132800pt;}
.ws3_c00088{word-spacing:17.152000pt;}
.ws2_c00088{word-spacing:17.196800pt;}
.ws5_c00088{word-spacing:22.579200pt;}
.ws4_c00088{word-spacing:22.758400pt;}
.fs0_c00088{font-size:64.000000pt;}
.y0_c00088{bottom:0.000000pt;}
.y2_c00088{bottom:41.627067pt;}
.y1_c00088{bottom:60.027067pt;}
.ya_c00088{bottom:734.347067pt;}
.y9_c00088{bottom:777.947067pt;}
.y8_c00088{bottom:821.547067pt;}
.y7_c00088{bottom:849.147067pt;}
.y6_c00088{bottom:892.747067pt;}
.y5_c00088{bottom:920.347067pt;}
.y4_c00088{bottom:947.947067pt;}
.y3_c00088{bottom:975.547067pt;}
.h1_c00088{height:56.156250pt;}
.h2_c00088{height:57.375000pt;}
.h3_c00088{height:66.750000pt;}
.h0_c00088{height:1122.666667pt;}
.w1_c00088{width:793.333333pt;}
.w0_c00088{width:793.626667pt;}
.x0_c00088{left:0.000000pt;}
.x2_c00088{left:151.200000pt;}
.x1_c00088{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e9eebb3f7bb5a5b93dccce1d.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.106934;font-style: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;}
.ls0_c00089{letter-spacing:0.000000px;}
.sc__c00089{text-shadow:none;}
.sc0_c00089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00089{-webkit-text-stroke:0px transparent;}
.sc0_c00089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00089{word-spacing:0.000000px;}
.fc0_c00089{color:rgb(0,0,0);}
.fs0_c00089{font-size:72.000000px;}
.y0_c00089{bottom:0.000000px;}
.y2_c00089{bottom:46.830450px;}
.y1_c00089{bottom:67.530450px;}
.y3_c00089{bottom:1097.490450px;}
.h1_c00089{height:63.175781px;}
.h2_c00089{height:64.546875px;}
.h0_c00089{height:1263.000000px;}
.w1_c00089{width:892.500000px;}
.w0_c00089{width:892.830000px;}
.x0_c00089{left:0.000000px;}
.x2_c00089{left:127.620000px;}
.x1_c00089{left:704.880000px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls0_c00089{letter-spacing:0.000000pt;}
.ws0_c00089{word-spacing:0.000000pt;}
.fs0_c00089{font-size:64.000000pt;}
.y0_c00089{bottom:0.000000pt;}
.y2_c00089{bottom:41.627067pt;}
.y1_c00089{bottom:60.027067pt;}
.y3_c00089{bottom:975.547067pt;}
.h1_c00089{height:56.156250pt;}
.h2_c00089{height:57.375000pt;}
.h0_c00089{height:1122.666667pt;}
.w1_c00089{width:793.333333pt;}
.w0_c00089{width:793.626667pt;}
.x0_c00089{left:0.000000pt;}
.x2_c00089{left:113.440000pt;}
.x1_c00089{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4531fc8bf4d169313a4bc836.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.093262;font-style:normal;font-weight:normal;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_798c0642822713a765c7f334.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00090;src:url('chunks/assets/font_9cad31ef249fc2187f48c7e3.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:1.106934;font-style:normal;font-weight:normal;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_b3e2daea2b488b0ad0e0f526.woff2')format("woff");}.ff4_c00090{font-family:ff4_c00090;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00090{letter-spacing:-0.108000px;}
.ls3_c00090{letter-spacing:-0.079200px;}
.lsb_c00090{letter-spacing:-0.072000px;}
.lsd_c00090{letter-spacing:-0.064800px;}
.lsc_c00090{letter-spacing:-0.057600px;}
.ls4_c00090{letter-spacing:-0.050400px;}
.ls6_c00090{letter-spacing:-0.043200px;}
.lse_c00090{letter-spacing:-0.036000px;}
.ls8_c00090{letter-spacing:-0.028800px;}
.lsf_c00090{letter-spacing:-0.021600px;}
.ls7_c00090{letter-spacing:-0.014400px;}
.ls5_c00090{letter-spacing:-0.007200px;}
.ls2_c00090{letter-spacing:0.000000px;}
.lsa_c00090{letter-spacing:0.043200px;}
.ls0_c00090{letter-spacing:0.058716px;}
.ls1_c00090{letter-spacing:0.144000px;}
.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:-19.958400px;}
.ws30_c00090{word-spacing:-4.478400px;}
.ws2f_c00090{word-spacing:-4.464000px;}
.ws23_c00090{word-spacing:-2.138400px;}
.ws24_c00090{word-spacing:-1.958400px;}
.ws2e_c00090{word-spacing:-0.957600px;}
.ws2d_c00090{word-spacing:-0.864000px;}
.wsa_c00090{word-spacing:-0.532800px;}
.ws9_c00090{word-spacing:-0.518400px;}
.ws1_c00090{word-spacing:0.000000px;}
.ws2_c00090{word-spacing:0.033552px;}
.ws1a_c00090{word-spacing:0.194400px;}
.ws5_c00090{word-spacing:0.525600px;}
.ws6_c00090{word-spacing:0.561600px;}
.ws29_c00090{word-spacing:1.526400px;}
.ws7_c00090{word-spacing:1.612800px;}
.ws28_c00090{word-spacing:1.641600px;}
.ws8_c00090{word-spacing:1.720800px;}
.ws16_c00090{word-spacing:1.936800px;}
.ws17_c00090{word-spacing:1.951200px;}
.ws21_c00090{word-spacing:3.787200px;}
.ws2c_c00090{word-spacing:4.125600px;}
.ws2a_c00090{word-spacing:4.132800px;}
.ws2b_c00090{word-spacing:4.161600px;}
.ws26_c00090{word-spacing:7.034400px;}
.ws25_c00090{word-spacing:7.113600px;}
.ws31_c00090{word-spacing:8.481600px;}
.ws12_c00090{word-spacing:9.835200px;}
.ws10_c00090{word-spacing:9.928800px;}
.ws11_c00090{word-spacing:10.108800px;}
.ws36_c00090{word-spacing:10.238400px;}
.ws37_c00090{word-spacing:10.252800px;}
.ws35_c00090{word-spacing:11.304000px;}
.ws34_c00090{word-spacing:11.332800px;}
.ws15_c00090{word-spacing:16.747200px;}
.ws14_c00090{word-spacing:16.761600px;}
.ws13_c00090{word-spacing:16.790400px;}
.ws22_c00090{word-spacing:17.841600px;}
.wsc_c00090{word-spacing:19.612800px;}
.wsb_c00090{word-spacing:19.706400px;}
.wsd_c00090{word-spacing:20.628000px;}
.ws4_c00090{word-spacing:20.728800px;}
.ws3_c00090{word-spacing:20.757600px;}
.ws1f_c00090{word-spacing:23.220000px;}
.ws20_c00090{word-spacing:23.241600px;}
.ws27_c00090{word-spacing:23.594400px;}
.ws18_c00090{word-spacing:26.373600px;}
.ws19_c00090{word-spacing:26.503200px;}
.ws1d_c00090{word-spacing:27.057600px;}
.ws1e_c00090{word-spacing:27.180000px;}
.wsf_c00090{word-spacing:27.532800px;}
.wse_c00090{word-spacing:27.640800px;}
.ws32_c00090{word-spacing:29.707200px;}
.ws33_c00090{word-spacing:29.721600px;}
.ws1c_c00090{word-spacing:34.344000px;}
.ws1b_c00090{word-spacing:34.372800px;}
._1_c00090{width:1.022400px;}
._0_c00090{width:9.730080px;}
.fc0_c00090{color:rgb(0,0,0);}
.fs0_c00090{font-size:72.000000px;}
.fs1_c00090{font-size:83.880000px;}
.y0_c00090{bottom:0.000000px;}
.y2_c00090{bottom:46.830450px;}
.y1_c00090{bottom:67.530450px;}
.y1f_c00090{bottom:181.020450px;}
.y1e_c00090{bottom:212.070450px;}
.y1d_c00090{bottom:243.120450px;}
.y1c_c00090{bottom:274.170450px;}
.y1b_c00090{bottom:305.220450px;}
.y1a_c00090{bottom:354.270450px;}
.y19_c00090{bottom:385.320450px;}
.y18_c00090{bottom:416.370450px;}
.y17_c00090{bottom:447.420450px;}
.y16_c00090{bottom:478.470450px;}
.y15_c00090{bottom:509.520450px;}
.y14_c00090{bottom:540.570450px;}
.y13_c00090{bottom:571.620450px;}
.y12_c00090{bottom:602.670450px;}
.y11_c00090{bottom:633.720450px;}
.y10_c00090{bottom:664.770450px;}
.yf_c00090{bottom:713.820450px;}
.ye_c00090{bottom:744.870450px;}
.yd_c00090{bottom:775.920450px;}
.yc_c00090{bottom:806.970450px;}
.yb_c00090{bottom:838.020450px;}
.ya_c00090{bottom:869.070450px;}
.y9_c00090{bottom:900.120450px;}
.y8_c00090{bottom:931.170450px;}
.y7_c00090{bottom:962.220450px;}
.y6_c00090{bottom:993.270450px;}
.y5_c00090{bottom:1024.320450px;}
.y4_c00090{bottom:1055.370450px;}
.y3_c00090{bottom:1094.520450px;}
.h1_c00090{height:63.175781px;}
.h3_c00090{height:64.546875px;}
.h4_c00090{height:75.093750px;}
.h2_c00090{height:87.484219px;}
.h0_c00090{height:1263.000000px;}
.w1_c00090{width:892.500000px;}
.w0_c00090{width:892.830000px;}
.x0_c00090{left:0.000000px;}
.x2_c00090{left:170.100000px;}
.x3_c00090{left:251.100000px;}
.x1_c00090{left:747.360000px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls9_c00090{letter-spacing:-0.096000pt;}
.ls3_c00090{letter-spacing:-0.070400pt;}
.lsb_c00090{letter-spacing:-0.064000pt;}
.lsd_c00090{letter-spacing:-0.057600pt;}
.lsc_c00090{letter-spacing:-0.051200pt;}
.ls4_c00090{letter-spacing:-0.044800pt;}
.ls6_c00090{letter-spacing:-0.038400pt;}
.lse_c00090{letter-spacing:-0.032000pt;}
.ls8_c00090{letter-spacing:-0.025600pt;}
.lsf_c00090{letter-spacing:-0.019200pt;}
.ls7_c00090{letter-spacing:-0.012800pt;}
.ls5_c00090{letter-spacing:-0.006400pt;}
.ls2_c00090{letter-spacing:0.000000pt;}
.lsa_c00090{letter-spacing:0.038400pt;}
.ls0_c00090{letter-spacing:0.052192pt;}
.ls1_c00090{letter-spacing:0.128000pt;}
.ws0_c00090{word-spacing:-17.740800pt;}
.ws30_c00090{word-spacing:-3.980800pt;}
.ws2f_c00090{word-spacing:-3.968000pt;}
.ws23_c00090{word-spacing:-1.900800pt;}
.ws24_c00090{word-spacing:-1.740800pt;}
.ws2e_c00090{word-spacing:-0.851200pt;}
.ws2d_c00090{word-spacing:-0.768000pt;}
.wsa_c00090{word-spacing:-0.473600pt;}
.ws9_c00090{word-spacing:-0.460800pt;}
.ws1_c00090{word-spacing:0.000000pt;}
.ws2_c00090{word-spacing:0.029824pt;}
.ws1a_c00090{word-spacing:0.172800pt;}
.ws5_c00090{word-spacing:0.467200pt;}
.ws6_c00090{word-spacing:0.499200pt;}
.ws29_c00090{word-spacing:1.356800pt;}
.ws7_c00090{word-spacing:1.433600pt;}
.ws28_c00090{word-spacing:1.459200pt;}
.ws8_c00090{word-spacing:1.529600pt;}
.ws16_c00090{word-spacing:1.721600pt;}
.ws17_c00090{word-spacing:1.734400pt;}
.ws21_c00090{word-spacing:3.366400pt;}
.ws2c_c00090{word-spacing:3.667200pt;}
.ws2a_c00090{word-spacing:3.673600pt;}
.ws2b_c00090{word-spacing:3.699200pt;}
.ws26_c00090{word-spacing:6.252800pt;}
.ws25_c00090{word-spacing:6.323200pt;}
.ws31_c00090{word-spacing:7.539200pt;}
.ws12_c00090{word-spacing:8.742400pt;}
.ws10_c00090{word-spacing:8.825600pt;}
.ws11_c00090{word-spacing:8.985600pt;}
.ws36_c00090{word-spacing:9.100800pt;}
.ws37_c00090{word-spacing:9.113600pt;}
.ws35_c00090{word-spacing:10.048000pt;}
.ws34_c00090{word-spacing:10.073600pt;}
.ws15_c00090{word-spacing:14.886400pt;}
.ws14_c00090{word-spacing:14.899200pt;}
.ws13_c00090{word-spacing:14.924800pt;}
.ws22_c00090{word-spacing:15.859200pt;}
.wsc_c00090{word-spacing:17.433600pt;}
.wsb_c00090{word-spacing:17.516800pt;}
.wsd_c00090{word-spacing:18.336000pt;}
.ws4_c00090{word-spacing:18.425600pt;}
.ws3_c00090{word-spacing:18.451200pt;}
.ws1f_c00090{word-spacing:20.640000pt;}
.ws20_c00090{word-spacing:20.659200pt;}
.ws27_c00090{word-spacing:20.972800pt;}
.ws18_c00090{word-spacing:23.443200pt;}
.ws19_c00090{word-spacing:23.558400pt;}
.ws1d_c00090{word-spacing:24.051200pt;}
.ws1e_c00090{word-spacing:24.160000pt;}
.wsf_c00090{word-spacing:24.473600pt;}
.wse_c00090{word-spacing:24.569600pt;}
.ws32_c00090{word-spacing:26.406400pt;}
.ws33_c00090{word-spacing:26.419200pt;}
.ws1c_c00090{word-spacing:30.528000pt;}
.ws1b_c00090{word-spacing:30.553600pt;}
._1_c00090{width:0.908800pt;}
._0_c00090{width:8.648960pt;}
.fs0_c00090{font-size:64.000000pt;}
.fs1_c00090{font-size:74.560000pt;}
.y0_c00090{bottom:0.000000pt;}
.y2_c00090{bottom:41.627067pt;}
.y1_c00090{bottom:60.027067pt;}
.y1f_c00090{bottom:160.907067pt;}
.y1e_c00090{bottom:188.507067pt;}
.y1d_c00090{bottom:216.107067pt;}
.y1c_c00090{bottom:243.707067pt;}
.y1b_c00090{bottom:271.307067pt;}
.y1a_c00090{bottom:314.907067pt;}
.y19_c00090{bottom:342.507067pt;}
.y18_c00090{bottom:370.107067pt;}
.y17_c00090{bottom:397.707067pt;}
.y16_c00090{bottom:425.307067pt;}
.y15_c00090{bottom:452.907067pt;}
.y14_c00090{bottom:480.507067pt;}
.y13_c00090{bottom:508.107067pt;}
.y12_c00090{bottom:535.707067pt;}
.y11_c00090{bottom:563.307067pt;}
.y10_c00090{bottom:590.907067pt;}
.yf_c00090{bottom:634.507067pt;}
.ye_c00090{bottom:662.107067pt;}
.yd_c00090{bottom:689.707067pt;}
.yc_c00090{bottom:717.307067pt;}
.yb_c00090{bottom:744.907067pt;}
.ya_c00090{bottom:772.507067pt;}
.y9_c00090{bottom:800.107067pt;}
.y8_c00090{bottom:827.707067pt;}
.y7_c00090{bottom:855.307067pt;}
.y6_c00090{bottom:882.907067pt;}
.y5_c00090{bottom:910.507067pt;}
.y4_c00090{bottom:938.107067pt;}
.y3_c00090{bottom:972.907067pt;}
.h1_c00090{height:56.156250pt;}
.h3_c00090{height:57.375000pt;}
.h4_c00090{height:66.750000pt;}
.h2_c00090{height:77.763750pt;}
.h0_c00090{height:1122.666667pt;}
.w1_c00090{width:793.333333pt;}
.w0_c00090{width:793.626667pt;}
.x0_c00090{left:0.000000pt;}
.x2_c00090{left:151.200000pt;}
.x3_c00090{left:223.200000pt;}
.x1_c00090{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2fa2b86a0003f6ddf2c8cd37.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.093262;font-style:normal;font-weight:normal;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_1c37b3bcf36aa91948ef4483.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:1.106934;font-style:normal;font-weight:normal;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_e1fdb0841d056d6a6fabaf7d.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsf_c00091{letter-spacing:-0.108000px;}
.ls10_c00091{letter-spacing:-0.093600px;}
.lse_c00091{letter-spacing:-0.079200px;}
.lsc_c00091{letter-spacing:-0.064800px;}
.ls8_c00091{letter-spacing:-0.057600px;}
.ls6_c00091{letter-spacing:-0.050400px;}
.ls5_c00091{letter-spacing:-0.043200px;}
.ls3_c00091{letter-spacing:-0.036000px;}
.ls2_c00091{letter-spacing:-0.028800px;}
.lsa_c00091{letter-spacing:-0.021600px;}
.ls7_c00091{letter-spacing:-0.014400px;}
.ls9_c00091{letter-spacing:-0.007200px;}
.ls1_c00091{letter-spacing:0.000000px;}
.lsb_c00091{letter-spacing:0.007200px;}
.ls4_c00091{letter-spacing:0.014400px;}
.lsd_c00091{letter-spacing:0.021600px;}
.ls0_c00091{letter-spacing:0.050400px;}
.ls11_c00091{letter-spacing:0.151200px;}
.sc__c00091{text-shadow:none;}
.sc0_c00091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00091{-webkit-text-stroke:0px transparent;}
.sc0_c00091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00091{word-spacing:-19.922400px;}
.ws14_c00091{word-spacing:-4.125600px;}
.ws13_c00091{word-spacing:-4.096800px;}
.ws17_c00091{word-spacing:-3.816000px;}
.ws38_c00091{word-spacing:-3.398400px;}
.ws39_c00091{word-spacing:-3.283200px;}
.wsa_c00091{word-spacing:-2.707200px;}
.ws9_c00091{word-spacing:-2.685600px;}
.ws1a_c00091{word-spacing:-2.332800px;}
.ws19_c00091{word-spacing:-1.987200px;}
.ws18_c00091{word-spacing:-1.951200px;}
.ws1_c00091{word-spacing:0.000000px;}
.ws4_c00091{word-spacing:0.144000px;}
.wsf_c00091{word-spacing:0.165600px;}
.ws1f_c00091{word-spacing:0.172800px;}
.ws36_c00091{word-spacing:0.180000px;}
.ws37_c00091{word-spacing:0.187200px;}
.ws2f_c00091{word-spacing:1.548000px;}
.ws2d_c00091{word-spacing:1.648800px;}
.ws2e_c00091{word-spacing:1.663200px;}
.ws1d_c00091{word-spacing:1.972800px;}
.ws1e_c00091{word-spacing:2.102400px;}
.ws28_c00091{word-spacing:3.081600px;}
.ws27_c00091{word-spacing:3.117600px;}
.ws2c_c00091{word-spacing:6.228000px;}
.ws2b_c00091{word-spacing:6.321600px;}
.ws7_c00091{word-spacing:6.674400px;}
.ws8_c00091{word-spacing:6.688800px;}
.wse_c00091{word-spacing:7.041600px;}
.wsd_c00091{word-spacing:7.056000px;}
.ws21_c00091{word-spacing:9.129600px;}
.ws20_c00091{word-spacing:9.151200px;}
.wsc_c00091{word-spacing:10.958400px;}
.wsb_c00091{word-spacing:10.972800px;}
.ws24_c00091{word-spacing:12.376800px;}
.ws22_c00091{word-spacing:12.420000px;}
.ws23_c00091{word-spacing:12.427200px;}
.ws5_c00091{word-spacing:13.867200px;}
.ws6_c00091{word-spacing:13.881600px;}
.ws35_c00091{word-spacing:14.565600px;}
.ws34_c00091{word-spacing:14.580000px;}
.ws33_c00091{word-spacing:17.020800px;}
.ws32_c00091{word-spacing:17.114400px;}
.ws30_c00091{word-spacing:17.452800px;}
.ws31_c00091{word-spacing:17.481600px;}
.ws2_c00091{word-spacing:19.324800px;}
.ws3_c00091{word-spacing:19.346400px;}
.ws1c_c00091{word-spacing:19.972800px;}
.ws1b_c00091{word-spacing:19.994400px;}
.ws3d_c00091{word-spacing:21.038400px;}
.ws3c_c00091{word-spacing:21.074400px;}
.ws29_c00091{word-spacing:22.636800px;}
.ws11_c00091{word-spacing:22.680000px;}
.ws12_c00091{word-spacing:22.831200px;}
.ws10_c00091{word-spacing:22.852800px;}
.ws2a_c00091{word-spacing:22.867200px;}
.ws15_c00091{word-spacing:26.532000px;}
.ws16_c00091{word-spacing:26.568000px;}
.ws26_c00091{word-spacing:35.856000px;}
.ws25_c00091{word-spacing:35.863200px;}
.ws3b_c00091{word-spacing:39.420000px;}
.ws3a_c00091{word-spacing:39.434400px;}
._1_c00091{margin-left:-1.123200px;}
._0_c00091{width:1.238400px;}
.fc0_c00091{color:rgb(0,0,0);}
.fs0_c00091{font-size:72.000000px;}
.y0_c00091{bottom:0.000000px;}
.y2_c00091{bottom:46.830450px;}
.y1_c00091{bottom:67.530450px;}
.y23_c00091{bottom:132.780450px;}
.y22_c00091{bottom:163.830450px;}
.y21_c00091{bottom:194.880450px;}
.y20_c00091{bottom:225.930450px;}
.y1f_c00091{bottom:274.980450px;}
.y1e_c00091{bottom:306.030450px;}
.y1d_c00091{bottom:337.080450px;}
.y1c_c00091{bottom:368.040450px;}
.y1b_c00091{bottom:399.090450px;}
.y1a_c00091{bottom:430.140450px;}
.y19_c00091{bottom:461.190450px;}
.y18_c00091{bottom:492.240450px;}
.y17_c00091{bottom:523.290450px;}
.y16_c00091{bottom:554.340450px;}
.y15_c00091{bottom:585.390450px;}
.y14_c00091{bottom:634.440450px;}
.y13_c00091{bottom:665.490450px;}
.y12_c00091{bottom:696.540450px;}
.y11_c00091{bottom:727.590450px;}
.y10_c00091{bottom:758.640450px;}
.yf_c00091{bottom:789.690450px;}
.ye_c00091{bottom:820.740450px;}
.yd_c00091{bottom:851.790450px;}
.yc_c00091{bottom:872.490450px;}
.yb_c00091{bottom:893.190450px;}
.ya_c00091{bottom:913.890450px;}
.y9_c00091{bottom:934.590450px;}
.y8_c00091{bottom:955.290450px;}
.y7_c00091{bottom:975.990450px;}
.y6_c00091{bottom:996.690450px;}
.y5_c00091{bottom:1017.390450px;}
.y4_c00091{bottom:1066.440450px;}
.y3_c00091{bottom:1097.490450px;}
.h1_c00091{height:63.175781px;}
.h2_c00091{height:64.546875px;}
.h3_c00091{height:75.093750px;}
.h0_c00091{height:1263.000000px;}
.w1_c00091{width:892.500000px;}
.w0_c00091{width:892.830000px;}
.x0_c00091{left:0.000000px;}
.x2_c00091{left:127.620000px;}
.x3_c00091{left:148.950000px;}
.x1_c00091{left:704.880000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.lsf_c00091{letter-spacing:-0.096000pt;}
.ls10_c00091{letter-spacing:-0.083200pt;}
.lse_c00091{letter-spacing:-0.070400pt;}
.lsc_c00091{letter-spacing:-0.057600pt;}
.ls8_c00091{letter-spacing:-0.051200pt;}
.ls6_c00091{letter-spacing:-0.044800pt;}
.ls5_c00091{letter-spacing:-0.038400pt;}
.ls3_c00091{letter-spacing:-0.032000pt;}
.ls2_c00091{letter-spacing:-0.025600pt;}
.lsa_c00091{letter-spacing:-0.019200pt;}
.ls7_c00091{letter-spacing:-0.012800pt;}
.ls9_c00091{letter-spacing:-0.006400pt;}
.ls1_c00091{letter-spacing:0.000000pt;}
.lsb_c00091{letter-spacing:0.006400pt;}
.ls4_c00091{letter-spacing:0.012800pt;}
.lsd_c00091{letter-spacing:0.019200pt;}
.ls0_c00091{letter-spacing:0.044800pt;}
.ls11_c00091{letter-spacing:0.134400pt;}
.ws0_c00091{word-spacing:-17.708800pt;}
.ws14_c00091{word-spacing:-3.667200pt;}
.ws13_c00091{word-spacing:-3.641600pt;}
.ws17_c00091{word-spacing:-3.392000pt;}
.ws38_c00091{word-spacing:-3.020800pt;}
.ws39_c00091{word-spacing:-2.918400pt;}
.wsa_c00091{word-spacing:-2.406400pt;}
.ws9_c00091{word-spacing:-2.387200pt;}
.ws1a_c00091{word-spacing:-2.073600pt;}
.ws19_c00091{word-spacing:-1.766400pt;}
.ws18_c00091{word-spacing:-1.734400pt;}
.ws1_c00091{word-spacing:0.000000pt;}
.ws4_c00091{word-spacing:0.128000pt;}
.wsf_c00091{word-spacing:0.147200pt;}
.ws1f_c00091{word-spacing:0.153600pt;}
.ws36_c00091{word-spacing:0.160000pt;}
.ws37_c00091{word-spacing:0.166400pt;}
.ws2f_c00091{word-spacing:1.376000pt;}
.ws2d_c00091{word-spacing:1.465600pt;}
.ws2e_c00091{word-spacing:1.478400pt;}
.ws1d_c00091{word-spacing:1.753600pt;}
.ws1e_c00091{word-spacing:1.868800pt;}
.ws28_c00091{word-spacing:2.739200pt;}
.ws27_c00091{word-spacing:2.771200pt;}
.ws2c_c00091{word-spacing:5.536000pt;}
.ws2b_c00091{word-spacing:5.619200pt;}
.ws7_c00091{word-spacing:5.932800pt;}
.ws8_c00091{word-spacing:5.945600pt;}
.wse_c00091{word-spacing:6.259200pt;}
.wsd_c00091{word-spacing:6.272000pt;}
.ws21_c00091{word-spacing:8.115200pt;}
.ws20_c00091{word-spacing:8.134400pt;}
.wsc_c00091{word-spacing:9.740800pt;}
.wsb_c00091{word-spacing:9.753600pt;}
.ws24_c00091{word-spacing:11.001600pt;}
.ws22_c00091{word-spacing:11.040000pt;}
.ws23_c00091{word-spacing:11.046400pt;}
.ws5_c00091{word-spacing:12.326400pt;}
.ws6_c00091{word-spacing:12.339200pt;}
.ws35_c00091{word-spacing:12.947200pt;}
.ws34_c00091{word-spacing:12.960000pt;}
.ws33_c00091{word-spacing:15.129600pt;}
.ws32_c00091{word-spacing:15.212800pt;}
.ws30_c00091{word-spacing:15.513600pt;}
.ws31_c00091{word-spacing:15.539200pt;}
.ws2_c00091{word-spacing:17.177600pt;}
.ws3_c00091{word-spacing:17.196800pt;}
.ws1c_c00091{word-spacing:17.753600pt;}
.ws1b_c00091{word-spacing:17.772800pt;}
.ws3d_c00091{word-spacing:18.700800pt;}
.ws3c_c00091{word-spacing:18.732800pt;}
.ws29_c00091{word-spacing:20.121600pt;}
.ws11_c00091{word-spacing:20.160000pt;}
.ws12_c00091{word-spacing:20.294400pt;}
.ws10_c00091{word-spacing:20.313600pt;}
.ws2a_c00091{word-spacing:20.326400pt;}
.ws15_c00091{word-spacing:23.584000pt;}
.ws16_c00091{word-spacing:23.616000pt;}
.ws26_c00091{word-spacing:31.872000pt;}
.ws25_c00091{word-spacing:31.878400pt;}
.ws3b_c00091{word-spacing:35.040000pt;}
.ws3a_c00091{word-spacing:35.052800pt;}
._1_c00091{margin-left:-0.998400pt;}
._0_c00091{width:1.100800pt;}
.fs0_c00091{font-size:64.000000pt;}
.y0_c00091{bottom:0.000000pt;}
.y2_c00091{bottom:41.627067pt;}
.y1_c00091{bottom:60.027067pt;}
.y23_c00091{bottom:118.027067pt;}
.y22_c00091{bottom:145.627067pt;}
.y21_c00091{bottom:173.227067pt;}
.y20_c00091{bottom:200.827067pt;}
.y1f_c00091{bottom:244.427067pt;}
.y1e_c00091{bottom:272.027067pt;}
.y1d_c00091{bottom:299.627067pt;}
.y1c_c00091{bottom:327.147067pt;}
.y1b_c00091{bottom:354.747067pt;}
.y1a_c00091{bottom:382.347067pt;}
.y19_c00091{bottom:409.947067pt;}
.y18_c00091{bottom:437.547067pt;}
.y17_c00091{bottom:465.147067pt;}
.y16_c00091{bottom:492.747067pt;}
.y15_c00091{bottom:520.347067pt;}
.y14_c00091{bottom:563.947067pt;}
.y13_c00091{bottom:591.547067pt;}
.y12_c00091{bottom:619.147067pt;}
.y11_c00091{bottom:646.747067pt;}
.y10_c00091{bottom:674.347067pt;}
.yf_c00091{bottom:701.947067pt;}
.ye_c00091{bottom:729.547067pt;}
.yd_c00091{bottom:757.147067pt;}
.yc_c00091{bottom:775.547067pt;}
.yb_c00091{bottom:793.947067pt;}
.ya_c00091{bottom:812.347067pt;}
.y9_c00091{bottom:830.747067pt;}
.y8_c00091{bottom:849.147067pt;}
.y7_c00091{bottom:867.547067pt;}
.y6_c00091{bottom:885.947067pt;}
.y5_c00091{bottom:904.347067pt;}
.y4_c00091{bottom:947.947067pt;}
.y3_c00091{bottom:975.547067pt;}
.h1_c00091{height:56.156250pt;}
.h2_c00091{height:57.375000pt;}
.h3_c00091{height:66.750000pt;}
.h0_c00091{height:1122.666667pt;}
.w1_c00091{width:793.333333pt;}
.w0_c00091{width:793.626667pt;}
.x0_c00091{left:0.000000pt;}
.x2_c00091{left:113.440000pt;}
.x3_c00091{left:132.400000pt;}
.x1_c00091{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_87bec4f13dbd43a9f36e7e01.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.093262;font-style:normal;font-weight:normal;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_1cad66e0d283b933a087dfdf.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00092{vertical-align:0.000000px;}
.ls8_c00092{letter-spacing:-0.064800px;}
.ls1_c00092{letter-spacing:-0.057600px;}
.ls4_c00092{letter-spacing:-0.050400px;}
.ls2_c00092{letter-spacing:-0.043200px;}
.ls6_c00092{letter-spacing:-0.036000px;}
.ls3_c00092{letter-spacing:-0.028800px;}
.ls5_c00092{letter-spacing:-0.021600px;}
.ls7_c00092{letter-spacing:-0.014400px;}
.ls0_c00092{letter-spacing:0.000000px;}
.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;}
}
.wsb_c00092{word-spacing:-4.485600px;}
.wsa_c00092{word-spacing:-4.406400px;}
.wsc_c00092{word-spacing:-4.060800px;}
.wse_c00092{word-spacing:-4.024800px;}
.wsd_c00092{word-spacing:-3.866400px;}
.ws2_c00092{word-spacing:-2.318400px;}
.ws1_c00092{word-spacing:-2.246400px;}
.ws0_c00092{word-spacing:0.000000px;}
.ws8_c00092{word-spacing:0.064800px;}
.ws11_c00092{word-spacing:0.187200px;}
.ws9_c00092{word-spacing:0.201600px;}
.ws4_c00092{word-spacing:4.176000px;}
.ws5_c00092{word-spacing:7.768800px;}
.ws6_c00092{word-spacing:10.980000px;}
.ws7_c00092{word-spacing:11.008800px;}
.ws3_c00092{word-spacing:25.747200px;}
.wsf_c00092{word-spacing:27.201600px;}
.ws10_c00092{word-spacing:27.403200px;}
._0_c00092{width:1.195200px;}
.fc0_c00092{color:rgb(0,0,0);}
.fs0_c00092{font-size:72.000000px;}
.y0_c00092{bottom:0.000000px;}
.y2_c00092{bottom:46.830450px;}
.y1_c00092{bottom:67.530450px;}
.yd_c00092{bottom:890.490450px;}
.yc_c00092{bottom:911.190450px;}
.yb_c00092{bottom:931.890450px;}
.ya_c00092{bottom:952.590450px;}
.y9_c00092{bottom:973.290450px;}
.y8_c00092{bottom:993.990450px;}
.y7_c00092{bottom:1014.690450px;}
.y6_c00092{bottom:1035.390450px;}
.y5_c00092{bottom:1056.090450px;}
.y4_c00092{bottom:1076.790450px;}
.y3_c00092{bottom:1097.490450px;}
.h1_c00092{height:63.175781px;}
.h2_c00092{height:64.546875px;}
.h0_c00092{height:1263.000000px;}
.w1_c00092{width:892.500000px;}
.w0_c00092{width:892.830000px;}
.x0_c00092{left:0.000000px;}
.x2_c00092{left:170.100000px;}
.x3_c00092{left:191.430000px;}
.x4_c00092{left:255.150000px;}
.x1_c00092{left:747.360000px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls8_c00092{letter-spacing:-0.057600pt;}
.ls1_c00092{letter-spacing:-0.051200pt;}
.ls4_c00092{letter-spacing:-0.044800pt;}
.ls2_c00092{letter-spacing:-0.038400pt;}
.ls6_c00092{letter-spacing:-0.032000pt;}
.ls3_c00092{letter-spacing:-0.025600pt;}
.ls5_c00092{letter-spacing:-0.019200pt;}
.ls7_c00092{letter-spacing:-0.012800pt;}
.ls0_c00092{letter-spacing:0.000000pt;}
.wsb_c00092{word-spacing:-3.987200pt;}
.wsa_c00092{word-spacing:-3.916800pt;}
.wsc_c00092{word-spacing:-3.609600pt;}
.wse_c00092{word-spacing:-3.577600pt;}
.wsd_c00092{word-spacing:-3.436800pt;}
.ws2_c00092{word-spacing:-2.060800pt;}
.ws1_c00092{word-spacing:-1.996800pt;}
.ws0_c00092{word-spacing:0.000000pt;}
.ws8_c00092{word-spacing:0.057600pt;}
.ws11_c00092{word-spacing:0.166400pt;}
.ws9_c00092{word-spacing:0.179200pt;}
.ws4_c00092{word-spacing:3.712000pt;}
.ws5_c00092{word-spacing:6.905600pt;}
.ws6_c00092{word-spacing:9.760000pt;}
.ws7_c00092{word-spacing:9.785600pt;}
.ws3_c00092{word-spacing:22.886400pt;}
.wsf_c00092{word-spacing:24.179200pt;}
.ws10_c00092{word-spacing:24.358400pt;}
._0_c00092{width:1.062400pt;}
.fs0_c00092{font-size:64.000000pt;}
.y0_c00092{bottom:0.000000pt;}
.y2_c00092{bottom:41.627067pt;}
.y1_c00092{bottom:60.027067pt;}
.yd_c00092{bottom:791.547067pt;}
.yc_c00092{bottom:809.947067pt;}
.yb_c00092{bottom:828.347067pt;}
.ya_c00092{bottom:846.747067pt;}
.y9_c00092{bottom:865.147067pt;}
.y8_c00092{bottom:883.547067pt;}
.y7_c00092{bottom:901.947067pt;}
.y6_c00092{bottom:920.347067pt;}
.y5_c00092{bottom:938.747067pt;}
.y4_c00092{bottom:957.147067pt;}
.y3_c00092{bottom:975.547067pt;}
.h1_c00092{height:56.156250pt;}
.h2_c00092{height:57.375000pt;}
.h0_c00092{height:1122.666667pt;}
.w1_c00092{width:793.333333pt;}
.w0_c00092{width:793.626667pt;}
.x0_c00092{left:0.000000pt;}
.x2_c00092{left:151.200000pt;}
.x3_c00092{left:170.160000pt;}
.x4_c00092{left:226.800000pt;}
.x1_c00092{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f30e541856731864b0bb57bf.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.106934;font-style: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;}
.ls0_c00093{letter-spacing:0.000000px;}
.ls1_c00093{letter-spacing:843.998400px;}
.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;}
}
.ws0_c00093{word-spacing:0.000000px;}
.fc0_c00093{color:rgb(0,0,0);}
.fs0_c00093{font-size:72.000000px;}
.y0_c00093{bottom:0.000000px;}
.y2_c00093{bottom:46.830450px;}
.y1_c00093{bottom:67.530450px;}
.y3_c00093{bottom:1097.490450px;}
.h1_c00093{height:63.175781px;}
.h2_c00093{height:64.546875px;}
.h0_c00093{height:1263.000000px;}
.w1_c00093{width:892.500000px;}
.w0_c00093{width:892.830000px;}
.x0_c00093{left:0.000000px;}
.x2_c00093{left:127.620000px;}
.x1_c00093{left:704.880000px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls0_c00093{letter-spacing:0.000000pt;}
.ls1_c00093{letter-spacing:750.220800pt;}
.ws0_c00093{word-spacing:0.000000pt;}
.fs0_c00093{font-size:64.000000pt;}
.y0_c00093{bottom:0.000000pt;}
.y2_c00093{bottom:41.627067pt;}
.y1_c00093{bottom:60.027067pt;}
.y3_c00093{bottom:975.547067pt;}
.h1_c00093{height:56.156250pt;}
.h2_c00093{height:57.375000pt;}
.h0_c00093{height:1122.666667pt;}
.w1_c00093{width:793.333333pt;}
.w0_c00093{width:793.626667pt;}
.x0_c00093{left:0.000000pt;}
.x2_c00093{left:113.440000pt;}
.x1_c00093{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0db832cf8b0df1219ab7cf42.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.093262;font-style:normal;font-weight:normal;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_40535889538475d681fad3a3.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.106934;font-style:normal;font-weight:normal;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_3495c600f6c59968b4fa9a92.woff2')format("woff");}.ff3_c00094{font-family:ff3_c00094;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00094;src:url('chunks/assets/font_0a44566aea02f5f6675a301a.woff2')format("woff");}.ff4_c00094{font-family:ff4_c00094;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lse_c00094{letter-spacing:-0.115200px;}
.lsd_c00094{letter-spacing:-0.100800px;}
.ls5_c00094{letter-spacing:-0.072000px;}
.ls6_c00094{letter-spacing:-0.064800px;}
.ls3_c00094{letter-spacing:-0.057600px;}
.ls7_c00094{letter-spacing:-0.050400px;}
.ls9_c00094{letter-spacing:-0.043200px;}
.ls2_c00094{letter-spacing:-0.036000px;}
.ls8_c00094{letter-spacing:-0.028800px;}
.ls4_c00094{letter-spacing:-0.021600px;}
.lsa_c00094{letter-spacing:-0.014400px;}
.lsc_c00094{letter-spacing:-0.007200px;}
.ls1_c00094{letter-spacing:0.000000px;}
.ls0_c00094{letter-spacing:0.033552px;}
.lsb_c00094{letter-spacing:0.036000px;}
.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:-19.980000px;}
.ws1_c00094{word-spacing:-17.964000px;}
.ws12_c00094{word-spacing:-3.398400px;}
.ws4_c00094{word-spacing:-3.045600px;}
.ws5_c00094{word-spacing:-3.024000px;}
.ws28_c00094{word-spacing:-2.318400px;}
.ws29_c00094{word-spacing:-2.260800px;}
.ws27_c00094{word-spacing:-2.224800px;}
.ws2e_c00094{word-spacing:-1.980000px;}
.ws2d_c00094{word-spacing:-1.864800px;}
.ws9_c00094{word-spacing:-0.165600px;}
.wsa_c00094{word-spacing:-0.072000px;}
.ws2_c00094{word-spacing:0.000000px;}
.ws7_c00094{word-spacing:0.036000px;}
.ws3_c00094{word-spacing:0.058716px;}
.ws1a_c00094{word-spacing:0.158400px;}
.ws20_c00094{word-spacing:0.165600px;}
.ws1b_c00094{word-spacing:0.172800px;}
.ws6_c00094{word-spacing:0.180000px;}
.ws18_c00094{word-spacing:1.627200px;}
.ws2a_c00094{word-spacing:1.641600px;}
.ws2b_c00094{word-spacing:1.713600px;}
.ws15_c00094{word-spacing:2.656800px;}
.ws1c_c00094{word-spacing:4.140000px;}
.ws1d_c00094{word-spacing:4.161600px;}
.wsb_c00094{word-spacing:4.888800px;}
.wsc_c00094{word-spacing:4.953600px;}
.ws24_c00094{word-spacing:5.227200px;}
.ws23_c00094{word-spacing:5.241600px;}
.wsf_c00094{word-spacing:6.386400px;}
.wse_c00094{word-spacing:6.465600px;}
.ws22_c00094{word-spacing:6.652800px;}
.ws21_c00094{word-spacing:6.660000px;}
.ws25_c00094{word-spacing:7.754400px;}
.ws26_c00094{word-spacing:7.761600px;}
.ws19_c00094{word-spacing:8.481600px;}
.wsd_c00094{word-spacing:9.547200px;}
.ws11_c00094{word-spacing:10.490400px;}
.ws10_c00094{word-spacing:10.576800px;}
.ws33_c00094{word-spacing:10.591200px;}
.ws31_c00094{word-spacing:10.641600px;}
.ws32_c00094{word-spacing:10.648800px;}
.ws1f_c00094{word-spacing:12.708000px;}
.ws1e_c00094{word-spacing:12.794400px;}
.ws17_c00094{word-spacing:13.485600px;}
.ws16_c00094{word-spacing:13.514400px;}
.ws2c_c00094{word-spacing:23.277600px;}
.ws8_c00094{word-spacing:40.190400px;}
.ws14_c00094{word-spacing:49.809600px;}
.ws13_c00094{word-spacing:49.852800px;}
.ws30_c00094{word-spacing:50.220000px;}
.ws2f_c00094{word-spacing:50.342400px;}
._1_c00094{width:1.008000px;}
._0_c00094{width:9.730080px;}
.fc0_c00094{color:rgb(0,0,0);}
.fs0_c00094{font-size:72.000000px;}
.fs1_c00094{font-size:83.880000px;}
.y0_c00094{bottom:0.000000px;}
.y2_c00094{bottom:46.830450px;}
.y1_c00094{bottom:67.530450px;}
.y23_c00094{bottom:144.930450px;}
.y22_c00094{bottom:175.980450px;}
.y21_c00094{bottom:207.030450px;}
.y20_c00094{bottom:238.080450px;}
.y1f_c00094{bottom:269.130450px;}
.y1e_c00094{bottom:300.270450px;}
.y1d_c00094{bottom:331.320450px;}
.y1c_c00094{bottom:362.370450px;}
.y1b_c00094{bottom:393.420450px;}
.y1a_c00094{bottom:424.470450px;}
.y19_c00094{bottom:473.520450px;}
.y18_c00094{bottom:504.570450px;}
.y17_c00094{bottom:535.620450px;}
.y16_c00094{bottom:584.670450px;}
.y15_c00094{bottom:615.720450px;}
.y14_c00094{bottom:646.770450px;}
.y13_c00094{bottom:677.820450px;}
.y12_c00094{bottom:698.520450px;}
.y11_c00094{bottom:719.220450px;}
.y10_c00094{bottom:739.920450px;}
.yf_c00094{bottom:760.620450px;}
.ye_c00094{bottom:781.320450px;}
.yd_c00094{bottom:802.020450px;}
.yc_c00094{bottom:822.720450px;}
.yb_c00094{bottom:843.420450px;}
.ya_c00094{bottom:864.120450px;}
.y9_c00094{bottom:884.820450px;}
.y8_c00094{bottom:905.520450px;}
.y7_c00094{bottom:926.220450px;}
.y6_c00094{bottom:975.270450px;}
.y5_c00094{bottom:1006.320450px;}
.y4_c00094{bottom:1045.470450px;}
.y3_c00094{bottom:1097.490450px;}
.h1_c00094{height:63.175781px;}
.h2_c00094{height:64.546875px;}
.h4_c00094{height:75.093750px;}
.h3_c00094{height:87.484219px;}
.h0_c00094{height:1263.000000px;}
.w1_c00094{width:892.500000px;}
.w0_c00094{width:892.830000px;}
.x0_c00094{left:0.000000px;}
.x2_c00094{left:170.100000px;}
.x5_c00094{left:191.430000px;}
.x4_c00094{left:251.100000px;}
.x3_c00094{left:255.150000px;}
.x1_c00094{left:747.360000px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.lse_c00094{letter-spacing:-0.102400pt;}
.lsd_c00094{letter-spacing:-0.089600pt;}
.ls5_c00094{letter-spacing:-0.064000pt;}
.ls6_c00094{letter-spacing:-0.057600pt;}
.ls3_c00094{letter-spacing:-0.051200pt;}
.ls7_c00094{letter-spacing:-0.044800pt;}
.ls9_c00094{letter-spacing:-0.038400pt;}
.ls2_c00094{letter-spacing:-0.032000pt;}
.ls8_c00094{letter-spacing:-0.025600pt;}
.ls4_c00094{letter-spacing:-0.019200pt;}
.lsa_c00094{letter-spacing:-0.012800pt;}
.lsc_c00094{letter-spacing:-0.006400pt;}
.ls1_c00094{letter-spacing:0.000000pt;}
.ls0_c00094{letter-spacing:0.029824pt;}
.lsb_c00094{letter-spacing:0.032000pt;}
.ws0_c00094{word-spacing:-17.760000pt;}
.ws1_c00094{word-spacing:-15.968000pt;}
.ws12_c00094{word-spacing:-3.020800pt;}
.ws4_c00094{word-spacing:-2.707200pt;}
.ws5_c00094{word-spacing:-2.688000pt;}
.ws28_c00094{word-spacing:-2.060800pt;}
.ws29_c00094{word-spacing:-2.009600pt;}
.ws27_c00094{word-spacing:-1.977600pt;}
.ws2e_c00094{word-spacing:-1.760000pt;}
.ws2d_c00094{word-spacing:-1.657600pt;}
.ws9_c00094{word-spacing:-0.147200pt;}
.wsa_c00094{word-spacing:-0.064000pt;}
.ws2_c00094{word-spacing:0.000000pt;}
.ws7_c00094{word-spacing:0.032000pt;}
.ws3_c00094{word-spacing:0.052192pt;}
.ws1a_c00094{word-spacing:0.140800pt;}
.ws20_c00094{word-spacing:0.147200pt;}
.ws1b_c00094{word-spacing:0.153600pt;}
.ws6_c00094{word-spacing:0.160000pt;}
.ws18_c00094{word-spacing:1.446400pt;}
.ws2a_c00094{word-spacing:1.459200pt;}
.ws2b_c00094{word-spacing:1.523200pt;}
.ws15_c00094{word-spacing:2.361600pt;}
.ws1c_c00094{word-spacing:3.680000pt;}
.ws1d_c00094{word-spacing:3.699200pt;}
.wsb_c00094{word-spacing:4.345600pt;}
.wsc_c00094{word-spacing:4.403200pt;}
.ws24_c00094{word-spacing:4.646400pt;}
.ws23_c00094{word-spacing:4.659200pt;}
.wsf_c00094{word-spacing:5.676800pt;}
.wse_c00094{word-spacing:5.747200pt;}
.ws22_c00094{word-spacing:5.913600pt;}
.ws21_c00094{word-spacing:5.920000pt;}
.ws25_c00094{word-spacing:6.892800pt;}
.ws26_c00094{word-spacing:6.899200pt;}
.ws19_c00094{word-spacing:7.539200pt;}
.wsd_c00094{word-spacing:8.486400pt;}
.ws11_c00094{word-spacing:9.324800pt;}
.ws10_c00094{word-spacing:9.401600pt;}
.ws33_c00094{word-spacing:9.414400pt;}
.ws31_c00094{word-spacing:9.459200pt;}
.ws32_c00094{word-spacing:9.465600pt;}
.ws1f_c00094{word-spacing:11.296000pt;}
.ws1e_c00094{word-spacing:11.372800pt;}
.ws17_c00094{word-spacing:11.987200pt;}
.ws16_c00094{word-spacing:12.012800pt;}
.ws2c_c00094{word-spacing:20.691200pt;}
.ws8_c00094{word-spacing:35.724800pt;}
.ws14_c00094{word-spacing:44.275200pt;}
.ws13_c00094{word-spacing:44.313600pt;}
.ws30_c00094{word-spacing:44.640000pt;}
.ws2f_c00094{word-spacing:44.748800pt;}
._1_c00094{width:0.896000pt;}
._0_c00094{width:8.648960pt;}
.fs0_c00094{font-size:64.000000pt;}
.fs1_c00094{font-size:74.560000pt;}
.y0_c00094{bottom:0.000000pt;}
.y2_c00094{bottom:41.627067pt;}
.y1_c00094{bottom:60.027067pt;}
.y23_c00094{bottom:128.827067pt;}
.y22_c00094{bottom:156.427067pt;}
.y21_c00094{bottom:184.027067pt;}
.y20_c00094{bottom:211.627067pt;}
.y1f_c00094{bottom:239.227067pt;}
.y1e_c00094{bottom:266.907067pt;}
.y1d_c00094{bottom:294.507067pt;}
.y1c_c00094{bottom:322.107067pt;}
.y1b_c00094{bottom:349.707067pt;}
.y1a_c00094{bottom:377.307067pt;}
.y19_c00094{bottom:420.907067pt;}
.y18_c00094{bottom:448.507067pt;}
.y17_c00094{bottom:476.107067pt;}
.y16_c00094{bottom:519.707067pt;}
.y15_c00094{bottom:547.307067pt;}
.y14_c00094{bottom:574.907067pt;}
.y13_c00094{bottom:602.507067pt;}
.y12_c00094{bottom:620.907067pt;}
.y11_c00094{bottom:639.307067pt;}
.y10_c00094{bottom:657.707067pt;}
.yf_c00094{bottom:676.107067pt;}
.ye_c00094{bottom:694.507067pt;}
.yd_c00094{bottom:712.907067pt;}
.yc_c00094{bottom:731.307067pt;}
.yb_c00094{bottom:749.707067pt;}
.ya_c00094{bottom:768.107067pt;}
.y9_c00094{bottom:786.507067pt;}
.y8_c00094{bottom:804.907067pt;}
.y7_c00094{bottom:823.307067pt;}
.y6_c00094{bottom:866.907067pt;}
.y5_c00094{bottom:894.507067pt;}
.y4_c00094{bottom:929.307067pt;}
.y3_c00094{bottom:975.547067pt;}
.h1_c00094{height:56.156250pt;}
.h2_c00094{height:57.375000pt;}
.h4_c00094{height:66.750000pt;}
.h3_c00094{height:77.763750pt;}
.h0_c00094{height:1122.666667pt;}
.w1_c00094{width:793.333333pt;}
.w0_c00094{width:793.626667pt;}
.x0_c00094{left:0.000000pt;}
.x2_c00094{left:151.200000pt;}
.x5_c00094{left:170.160000pt;}
.x4_c00094{left:223.200000pt;}
.x3_c00094{left:226.800000pt;}
.x1_c00094{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_692cbb38a7dc2bf059a1b2b2.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.093262;font-style:normal;font-weight:normal;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_6443faba9b17554b6f9d02db.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.106934;font-style: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;}
.lsb_c00095{letter-spacing:-0.072000px;}
.ls5_c00095{letter-spacing:-0.064800px;}
.ls8_c00095{letter-spacing:-0.057600px;}
.ls2_c00095{letter-spacing:-0.050400px;}
.ls9_c00095{letter-spacing:-0.043200px;}
.ls6_c00095{letter-spacing:-0.036000px;}
.ls7_c00095{letter-spacing:-0.028800px;}
.ls4_c00095{letter-spacing:-0.021600px;}
.ls3_c00095{letter-spacing:-0.014400px;}
.lsa_c00095{letter-spacing:-0.007200px;}
.ls1_c00095{letter-spacing:0.000000px;}
.ls0_c00095{letter-spacing:0.014400px;}
.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;}
}
.ws25_c00095{word-spacing:-4.507200px;}
.ws24_c00095{word-spacing:-4.500000px;}
.ws20_c00095{word-spacing:-3.448800px;}
.ws21_c00095{word-spacing:-3.384000px;}
.ws2d_c00095{word-spacing:-3.110400px;}
.ws2c_c00095{word-spacing:-3.031200px;}
.ws2_c00095{word-spacing:-2.347200px;}
.ws1_c00095{word-spacing:-2.246400px;}
.ws23_c00095{word-spacing:-1.252800px;}
.ws7_c00095{word-spacing:-1.238400px;}
.ws22_c00095{word-spacing:-1.231200px;}
.ws34_c00095{word-spacing:-0.957600px;}
.ws35_c00095{word-spacing:-0.943200px;}
.ws27_c00095{word-spacing:-0.612000px;}
.ws31_c00095{word-spacing:-0.554400px;}
.ws26_c00095{word-spacing:-0.504000px;}
.ws30_c00095{word-spacing:-0.367200px;}
.ws6_c00095{word-spacing:-0.237600px;}
.ws1e_c00095{word-spacing:-0.172800px;}
.ws5_c00095{word-spacing:-0.136800px;}
.ws0_c00095{word-spacing:0.000000px;}
.ws16_c00095{word-spacing:0.093600px;}
.ws17_c00095{word-spacing:0.165600px;}
.wsc_c00095{word-spacing:0.187200px;}
.ws2b_c00095{word-spacing:0.201600px;}
.ws9_c00095{word-spacing:1.252800px;}
.ws8_c00095{word-spacing:1.274400px;}
.ws1a_c00095{word-spacing:1.598400px;}
.ws1b_c00095{word-spacing:1.634400px;}
.ws37_c00095{word-spacing:6.177600px;}
.ws36_c00095{word-spacing:6.300000px;}
.ws15_c00095{word-spacing:6.660000px;}
.ws14_c00095{word-spacing:6.674400px;}
.ws13_c00095{word-spacing:7.257600px;}
.ws12_c00095{word-spacing:7.344000px;}
.ws11_c00095{word-spacing:7.416000px;}
.ws1d_c00095{word-spacing:8.035200px;}
.ws1c_c00095{word-spacing:8.136000px;}
.ws2a_c00095{word-spacing:11.664000px;}
.ws29_c00095{word-spacing:11.714400px;}
.ws2f_c00095{word-spacing:12.045600px;}
.ws2e_c00095{word-spacing:12.052800px;}
.wse_c00095{word-spacing:12.081600px;}
.ws4_c00095{word-spacing:12.808800px;}
.ws3_c00095{word-spacing:12.830400px;}
.ws28_c00095{word-spacing:13.168800px;}
.wsa_c00095{word-spacing:14.227200px;}
.wsb_c00095{word-spacing:14.256000px;}
.ws18_c00095{word-spacing:14.450400px;}
.ws19_c00095{word-spacing:14.594400px;}
.ws32_c00095{word-spacing:14.968800px;}
.ws33_c00095{word-spacing:15.026400px;}
.ws1f_c00095{word-spacing:17.100000px;}
.wsd_c00095{word-spacing:19.994400px;}
.ws10_c00095{word-spacing:22.773600px;}
.wsf_c00095{word-spacing:22.860000px;}
._0_c00095{width:1.051200px;}
.fc0_c00095{color:rgb(0,0,0);}
.fs0_c00095{font-size:72.000000px;}
.y0_c00095{bottom:0.000000px;}
.y2_c00095{bottom:46.830450px;}
.y1_c00095{bottom:67.530450px;}
.y27_c00095{bottom:140.430450px;}
.y26_c00095{bottom:171.480450px;}
.y25_c00095{bottom:202.530450px;}
.y24_c00095{bottom:233.580450px;}
.y23_c00095{bottom:264.630450px;}
.y22_c00095{bottom:295.680450px;}
.y21_c00095{bottom:316.380450px;}
.y20_c00095{bottom:337.080450px;}
.y1f_c00095{bottom:357.690450px;}
.y1e_c00095{bottom:378.390450px;}
.y1d_c00095{bottom:399.090450px;}
.y1c_c00095{bottom:419.790450px;}
.y1b_c00095{bottom:440.490450px;}
.y1a_c00095{bottom:461.190450px;}
.y19_c00095{bottom:481.890450px;}
.y18_c00095{bottom:502.590450px;}
.y17_c00095{bottom:523.290450px;}
.y16_c00095{bottom:572.340450px;}
.y15_c00095{bottom:603.390450px;}
.y14_c00095{bottom:634.440450px;}
.y13_c00095{bottom:665.490450px;}
.y12_c00095{bottom:696.540450px;}
.y11_c00095{bottom:717.240450px;}
.y10_c00095{bottom:737.940450px;}
.yf_c00095{bottom:758.640450px;}
.ye_c00095{bottom:779.340450px;}
.yd_c00095{bottom:800.040450px;}
.yc_c00095{bottom:820.740450px;}
.yb_c00095{bottom:841.440450px;}
.ya_c00095{bottom:862.140450px;}
.y9_c00095{bottom:911.190450px;}
.y8_c00095{bottom:942.240450px;}
.y7_c00095{bottom:973.290450px;}
.y6_c00095{bottom:1004.340450px;}
.y5_c00095{bottom:1035.390450px;}
.y4_c00095{bottom:1066.440450px;}
.y3_c00095{bottom:1097.490450px;}
.h1_c00095{height:63.175781px;}
.h2_c00095{height:64.546875px;}
.h0_c00095{height:1263.000000px;}
.w1_c00095{width:892.500000px;}
.w0_c00095{width:892.830000px;}
.x0_c00095{left:0.000000px;}
.x2_c00095{left:127.620000px;}
.x3_c00095{left:148.950000px;}
.x1_c00095{left:704.880000px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.lsb_c00095{letter-spacing:-0.064000pt;}
.ls5_c00095{letter-spacing:-0.057600pt;}
.ls8_c00095{letter-spacing:-0.051200pt;}
.ls2_c00095{letter-spacing:-0.044800pt;}
.ls9_c00095{letter-spacing:-0.038400pt;}
.ls6_c00095{letter-spacing:-0.032000pt;}
.ls7_c00095{letter-spacing:-0.025600pt;}
.ls4_c00095{letter-spacing:-0.019200pt;}
.ls3_c00095{letter-spacing:-0.012800pt;}
.lsa_c00095{letter-spacing:-0.006400pt;}
.ls1_c00095{letter-spacing:0.000000pt;}
.ls0_c00095{letter-spacing:0.012800pt;}
.ws25_c00095{word-spacing:-4.006400pt;}
.ws24_c00095{word-spacing:-4.000000pt;}
.ws20_c00095{word-spacing:-3.065600pt;}
.ws21_c00095{word-spacing:-3.008000pt;}
.ws2d_c00095{word-spacing:-2.764800pt;}
.ws2c_c00095{word-spacing:-2.694400pt;}
.ws2_c00095{word-spacing:-2.086400pt;}
.ws1_c00095{word-spacing:-1.996800pt;}
.ws23_c00095{word-spacing:-1.113600pt;}
.ws7_c00095{word-spacing:-1.100800pt;}
.ws22_c00095{word-spacing:-1.094400pt;}
.ws34_c00095{word-spacing:-0.851200pt;}
.ws35_c00095{word-spacing:-0.838400pt;}
.ws27_c00095{word-spacing:-0.544000pt;}
.ws31_c00095{word-spacing:-0.492800pt;}
.ws26_c00095{word-spacing:-0.448000pt;}
.ws30_c00095{word-spacing:-0.326400pt;}
.ws6_c00095{word-spacing:-0.211200pt;}
.ws1e_c00095{word-spacing:-0.153600pt;}
.ws5_c00095{word-spacing:-0.121600pt;}
.ws0_c00095{word-spacing:0.000000pt;}
.ws16_c00095{word-spacing:0.083200pt;}
.ws17_c00095{word-spacing:0.147200pt;}
.wsc_c00095{word-spacing:0.166400pt;}
.ws2b_c00095{word-spacing:0.179200pt;}
.ws9_c00095{word-spacing:1.113600pt;}
.ws8_c00095{word-spacing:1.132800pt;}
.ws1a_c00095{word-spacing:1.420800pt;}
.ws1b_c00095{word-spacing:1.452800pt;}
.ws37_c00095{word-spacing:5.491200pt;}
.ws36_c00095{word-spacing:5.600000pt;}
.ws15_c00095{word-spacing:5.920000pt;}
.ws14_c00095{word-spacing:5.932800pt;}
.ws13_c00095{word-spacing:6.451200pt;}
.ws12_c00095{word-spacing:6.528000pt;}
.ws11_c00095{word-spacing:6.592000pt;}
.ws1d_c00095{word-spacing:7.142400pt;}
.ws1c_c00095{word-spacing:7.232000pt;}
.ws2a_c00095{word-spacing:10.368000pt;}
.ws29_c00095{word-spacing:10.412800pt;}
.ws2f_c00095{word-spacing:10.707200pt;}
.ws2e_c00095{word-spacing:10.713600pt;}
.wse_c00095{word-spacing:10.739200pt;}
.ws4_c00095{word-spacing:11.385600pt;}
.ws3_c00095{word-spacing:11.404800pt;}
.ws28_c00095{word-spacing:11.705600pt;}
.wsa_c00095{word-spacing:12.646400pt;}
.wsb_c00095{word-spacing:12.672000pt;}
.ws18_c00095{word-spacing:12.844800pt;}
.ws19_c00095{word-spacing:12.972800pt;}
.ws32_c00095{word-spacing:13.305600pt;}
.ws33_c00095{word-spacing:13.356800pt;}
.ws1f_c00095{word-spacing:15.200000pt;}
.wsd_c00095{word-spacing:17.772800pt;}
.ws10_c00095{word-spacing:20.243200pt;}
.wsf_c00095{word-spacing:20.320000pt;}
._0_c00095{width:0.934400pt;}
.fs0_c00095{font-size:64.000000pt;}
.y0_c00095{bottom:0.000000pt;}
.y2_c00095{bottom:41.627067pt;}
.y1_c00095{bottom:60.027067pt;}
.y27_c00095{bottom:124.827067pt;}
.y26_c00095{bottom:152.427067pt;}
.y25_c00095{bottom:180.027067pt;}
.y24_c00095{bottom:207.627067pt;}
.y23_c00095{bottom:235.227067pt;}
.y22_c00095{bottom:262.827067pt;}
.y21_c00095{bottom:281.227067pt;}
.y20_c00095{bottom:299.627067pt;}
.y1f_c00095{bottom:317.947067pt;}
.y1e_c00095{bottom:336.347067pt;}
.y1d_c00095{bottom:354.747067pt;}
.y1c_c00095{bottom:373.147067pt;}
.y1b_c00095{bottom:391.547067pt;}
.y1a_c00095{bottom:409.947067pt;}
.y19_c00095{bottom:428.347067pt;}
.y18_c00095{bottom:446.747067pt;}
.y17_c00095{bottom:465.147067pt;}
.y16_c00095{bottom:508.747067pt;}
.y15_c00095{bottom:536.347067pt;}
.y14_c00095{bottom:563.947067pt;}
.y13_c00095{bottom:591.547067pt;}
.y12_c00095{bottom:619.147067pt;}
.y11_c00095{bottom:637.547067pt;}
.y10_c00095{bottom:655.947067pt;}
.yf_c00095{bottom:674.347067pt;}
.ye_c00095{bottom:692.747067pt;}
.yd_c00095{bottom:711.147067pt;}
.yc_c00095{bottom:729.547067pt;}
.yb_c00095{bottom:747.947067pt;}
.ya_c00095{bottom:766.347067pt;}
.y9_c00095{bottom:809.947067pt;}
.y8_c00095{bottom:837.547067pt;}
.y7_c00095{bottom:865.147067pt;}
.y6_c00095{bottom:892.747067pt;}
.y5_c00095{bottom:920.347067pt;}
.y4_c00095{bottom:947.947067pt;}
.y3_c00095{bottom:975.547067pt;}
.h1_c00095{height:56.156250pt;}
.h2_c00095{height:57.375000pt;}
.h0_c00095{height:1122.666667pt;}
.w1_c00095{width:793.333333pt;}
.w0_c00095{width:793.626667pt;}
.x0_c00095{left:0.000000pt;}
.x2_c00095{left:113.440000pt;}
.x3_c00095{left:132.400000pt;}
.x1_c00095{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_88343c9dc3d3980b2d08b1ba.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.093262;font-style:normal;font-weight:normal;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_6ba029cf7b719588ac292fef.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00096{vertical-align:0.000000px;}
.ls7_c00096{letter-spacing:-0.079200px;}
.lsd_c00096{letter-spacing:-0.072000px;}
.ls5_c00096{letter-spacing:-0.064800px;}
.lsc_c00096{letter-spacing:-0.057600px;}
.ls6_c00096{letter-spacing:-0.050400px;}
.ls3_c00096{letter-spacing:-0.043200px;}
.ls8_c00096{letter-spacing:-0.036000px;}
.ls2_c00096{letter-spacing:-0.028800px;}
.ls4_c00096{letter-spacing:-0.021600px;}
.ls9_c00096{letter-spacing:-0.014400px;}
.lsb_c00096{letter-spacing:-0.007200px;}
.ls1_c00096{letter-spacing:0.000000px;}
.ls0_c00096{letter-spacing:0.007200px;}
.lsa_c00096{letter-spacing:0.014400px;}
.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;}
}
.ws28_c00096{word-spacing:-3.405600px;}
.wsc_c00096{word-spacing:-3.067200px;}
.ws5_c00096{word-spacing:-2.311200px;}
.ws4_c00096{word-spacing:-2.296800px;}
.ws15_c00096{word-spacing:-1.598400px;}
.ws16_c00096{word-spacing:-1.584000px;}
.ws20_c00096{word-spacing:-0.187200px;}
.ws21_c00096{word-spacing:-0.158400px;}
.ws0_c00096{word-spacing:0.000000px;}
.ws2c_c00096{word-spacing:0.050400px;}
.ws1e_c00096{word-spacing:0.115200px;}
.wsd_c00096{word-spacing:0.144000px;}
.ws14_c00096{word-spacing:0.151200px;}
.ws3_c00096{word-spacing:0.180000px;}
.ws1f_c00096{word-spacing:0.194400px;}
.ws13_c00096{word-spacing:1.994400px;}
.ws12_c00096{word-spacing:2.008800px;}
.ws24_c00096{word-spacing:2.095200px;}
.ws1c_c00096{word-spacing:2.188800px;}
.ws1b_c00096{word-spacing:2.347200px;}
.ws25_c00096{word-spacing:2.354400px;}
.ws2f_c00096{word-spacing:2.606400px;}
.ws31_c00096{word-spacing:2.721600px;}
.ws30_c00096{word-spacing:2.808000px;}
.ws1d_c00096{word-spacing:4.514400px;}
.ws33_c00096{word-spacing:4.867200px;}
.ws32_c00096{word-spacing:4.874400px;}
.ws8_c00096{word-spacing:4.888800px;}
.ws7_c00096{word-spacing:6.667200px;}
.ws6_c00096{word-spacing:6.703200px;}
.ws23_c00096{word-spacing:7.358400px;}
.ws22_c00096{word-spacing:7.416000px;}
.ws1a_c00096{word-spacing:8.438400px;}
.ws19_c00096{word-spacing:8.452800px;}
.ws11_c00096{word-spacing:10.260000px;}
.ws10_c00096{word-spacing:10.274400px;}
.ws29_c00096{word-spacing:10.620000px;}
.wsb_c00096{word-spacing:11.714400px;}
.wsa_c00096{word-spacing:11.728800px;}
.ws2e_c00096{word-spacing:16.012800px;}
.ws9_c00096{word-spacing:16.041600px;}
.ws2d_c00096{word-spacing:16.113600px;}
.ws1_c00096{word-spacing:19.627200px;}
.ws2_c00096{word-spacing:25.761600px;}
.wsf_c00096{word-spacing:35.445600px;}
.wse_c00096{word-spacing:35.460000px;}
.ws26_c00096{word-spacing:36.194400px;}
.ws27_c00096{word-spacing:36.208800px;}
.ws2a_c00096{word-spacing:41.097600px;}
.ws2b_c00096{word-spacing:41.342400px;}
.ws17_c00096{word-spacing:47.642400px;}
.ws18_c00096{word-spacing:47.736000px;}
._0_c00096{width:1.152000px;}
.fc0_c00096{color:rgb(0,0,0);}
.fs0_c00096{font-size:72.000000px;}
.y0_c00096{bottom:0.000000px;}
.y2_c00096{bottom:46.830450px;}
.y1_c00096{bottom:67.530450px;}
.y26_c00096{bottom:161.130450px;}
.y25_c00096{bottom:192.180450px;}
.y24_c00096{bottom:223.230450px;}
.y23_c00096{bottom:263.280450px;}
.y22_c00096{bottom:294.330450px;}
.y21_c00096{bottom:325.380450px;}
.y20_c00096{bottom:356.430450px;}
.y1f_c00096{bottom:387.390450px;}
.y1e_c00096{bottom:418.440450px;}
.y1d_c00096{bottom:449.490450px;}
.y1c_c00096{bottom:480.540450px;}
.y1b_c00096{bottom:501.240450px;}
.y1a_c00096{bottom:521.940450px;}
.y19_c00096{bottom:542.640450px;}
.y18_c00096{bottom:563.340450px;}
.y17_c00096{bottom:584.040450px;}
.y16_c00096{bottom:604.740450px;}
.y15_c00096{bottom:625.440450px;}
.y14_c00096{bottom:646.140450px;}
.y13_c00096{bottom:666.840450px;}
.y12_c00096{bottom:706.890450px;}
.y11_c00096{bottom:737.940450px;}
.y10_c00096{bottom:768.990450px;}
.yf_c00096{bottom:800.040450px;}
.ye_c00096{bottom:820.740450px;}
.yd_c00096{bottom:841.440450px;}
.yc_c00096{bottom:862.140450px;}
.yb_c00096{bottom:882.840450px;}
.ya_c00096{bottom:903.540450px;}
.y9_c00096{bottom:924.240450px;}
.y8_c00096{bottom:944.940450px;}
.y7_c00096{bottom:965.640450px;}
.y6_c00096{bottom:986.340450px;}
.y5_c00096{bottom:1035.390450px;}
.y4_c00096{bottom:1066.440450px;}
.y3_c00096{bottom:1097.490450px;}
.h1_c00096{height:63.175781px;}
.h2_c00096{height:64.546875px;}
.h0_c00096{height:1263.000000px;}
.w1_c00096{width:892.500000px;}
.w0_c00096{width:892.830000px;}
.x0_c00096{left:0.000000px;}
.x2_c00096{left:170.100000px;}
.x3_c00096{left:191.430000px;}
.x1_c00096{left:747.360000px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls7_c00096{letter-spacing:-0.070400pt;}
.lsd_c00096{letter-spacing:-0.064000pt;}
.ls5_c00096{letter-spacing:-0.057600pt;}
.lsc_c00096{letter-spacing:-0.051200pt;}
.ls6_c00096{letter-spacing:-0.044800pt;}
.ls3_c00096{letter-spacing:-0.038400pt;}
.ls8_c00096{letter-spacing:-0.032000pt;}
.ls2_c00096{letter-spacing:-0.025600pt;}
.ls4_c00096{letter-spacing:-0.019200pt;}
.ls9_c00096{letter-spacing:-0.012800pt;}
.lsb_c00096{letter-spacing:-0.006400pt;}
.ls1_c00096{letter-spacing:0.000000pt;}
.ls0_c00096{letter-spacing:0.006400pt;}
.lsa_c00096{letter-spacing:0.012800pt;}
.ws28_c00096{word-spacing:-3.027200pt;}
.wsc_c00096{word-spacing:-2.726400pt;}
.ws5_c00096{word-spacing:-2.054400pt;}
.ws4_c00096{word-spacing:-2.041600pt;}
.ws15_c00096{word-spacing:-1.420800pt;}
.ws16_c00096{word-spacing:-1.408000pt;}
.ws20_c00096{word-spacing:-0.166400pt;}
.ws21_c00096{word-spacing:-0.140800pt;}
.ws0_c00096{word-spacing:0.000000pt;}
.ws2c_c00096{word-spacing:0.044800pt;}
.ws1e_c00096{word-spacing:0.102400pt;}
.wsd_c00096{word-spacing:0.128000pt;}
.ws14_c00096{word-spacing:0.134400pt;}
.ws3_c00096{word-spacing:0.160000pt;}
.ws1f_c00096{word-spacing:0.172800pt;}
.ws13_c00096{word-spacing:1.772800pt;}
.ws12_c00096{word-spacing:1.785600pt;}
.ws24_c00096{word-spacing:1.862400pt;}
.ws1c_c00096{word-spacing:1.945600pt;}
.ws1b_c00096{word-spacing:2.086400pt;}
.ws25_c00096{word-spacing:2.092800pt;}
.ws2f_c00096{word-spacing:2.316800pt;}
.ws31_c00096{word-spacing:2.419200pt;}
.ws30_c00096{word-spacing:2.496000pt;}
.ws1d_c00096{word-spacing:4.012800pt;}
.ws33_c00096{word-spacing:4.326400pt;}
.ws32_c00096{word-spacing:4.332800pt;}
.ws8_c00096{word-spacing:4.345600pt;}
.ws7_c00096{word-spacing:5.926400pt;}
.ws6_c00096{word-spacing:5.958400pt;}
.ws23_c00096{word-spacing:6.540800pt;}
.ws22_c00096{word-spacing:6.592000pt;}
.ws1a_c00096{word-spacing:7.500800pt;}
.ws19_c00096{word-spacing:7.513600pt;}
.ws11_c00096{word-spacing:9.120000pt;}
.ws10_c00096{word-spacing:9.132800pt;}
.ws29_c00096{word-spacing:9.440000pt;}
.wsb_c00096{word-spacing:10.412800pt;}
.wsa_c00096{word-spacing:10.425600pt;}
.ws2e_c00096{word-spacing:14.233600pt;}
.ws9_c00096{word-spacing:14.259200pt;}
.ws2d_c00096{word-spacing:14.323200pt;}
.ws1_c00096{word-spacing:17.446400pt;}
.ws2_c00096{word-spacing:22.899200pt;}
.wsf_c00096{word-spacing:31.507200pt;}
.wse_c00096{word-spacing:31.520000pt;}
.ws26_c00096{word-spacing:32.172800pt;}
.ws27_c00096{word-spacing:32.185600pt;}
.ws2a_c00096{word-spacing:36.531200pt;}
.ws2b_c00096{word-spacing:36.748800pt;}
.ws17_c00096{word-spacing:42.348800pt;}
.ws18_c00096{word-spacing:42.432000pt;}
._0_c00096{width:1.024000pt;}
.fs0_c00096{font-size:64.000000pt;}
.y0_c00096{bottom:0.000000pt;}
.y2_c00096{bottom:41.627067pt;}
.y1_c00096{bottom:60.027067pt;}
.y26_c00096{bottom:143.227067pt;}
.y25_c00096{bottom:170.827067pt;}
.y24_c00096{bottom:198.427067pt;}
.y23_c00096{bottom:234.027067pt;}
.y22_c00096{bottom:261.627067pt;}
.y21_c00096{bottom:289.227067pt;}
.y20_c00096{bottom:316.827067pt;}
.y1f_c00096{bottom:344.347067pt;}
.y1e_c00096{bottom:371.947067pt;}
.y1d_c00096{bottom:399.547067pt;}
.y1c_c00096{bottom:427.147067pt;}
.y1b_c00096{bottom:445.547067pt;}
.y1a_c00096{bottom:463.947067pt;}
.y19_c00096{bottom:482.347067pt;}
.y18_c00096{bottom:500.747067pt;}
.y17_c00096{bottom:519.147067pt;}
.y16_c00096{bottom:537.547067pt;}
.y15_c00096{bottom:555.947067pt;}
.y14_c00096{bottom:574.347067pt;}
.y13_c00096{bottom:592.747067pt;}
.y12_c00096{bottom:628.347067pt;}
.y11_c00096{bottom:655.947067pt;}
.y10_c00096{bottom:683.547067pt;}
.yf_c00096{bottom:711.147067pt;}
.ye_c00096{bottom:729.547067pt;}
.yd_c00096{bottom:747.947067pt;}
.yc_c00096{bottom:766.347067pt;}
.yb_c00096{bottom:784.747067pt;}
.ya_c00096{bottom:803.147067pt;}
.y9_c00096{bottom:821.547067pt;}
.y8_c00096{bottom:839.947067pt;}
.y7_c00096{bottom:858.347067pt;}
.y6_c00096{bottom:876.747067pt;}
.y5_c00096{bottom:920.347067pt;}
.y4_c00096{bottom:947.947067pt;}
.y3_c00096{bottom:975.547067pt;}
.h1_c00096{height:56.156250pt;}
.h2_c00096{height:57.375000pt;}
.h0_c00096{height:1122.666667pt;}
.w1_c00096{width:793.333333pt;}
.w0_c00096{width:793.626667pt;}
.x0_c00096{left:0.000000pt;}
.x2_c00096{left:151.200000pt;}
.x3_c00096{left:170.160000pt;}
.x1_c00096{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b899c737a79d7ab5f1b5c73e.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.093262;font-style:normal;font-weight:normal;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_4192fb350ffcb01a6112e0cf.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:1.106934;font-style: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);}
.v0_c00097{vertical-align:0.000000px;}
.ls9_c00097{letter-spacing:-0.079200px;}
.lsc_c00097{letter-spacing:-0.072000px;}
.ls5_c00097{letter-spacing:-0.064800px;}
.ls6_c00097{letter-spacing:-0.057600px;}
.ls1_c00097{letter-spacing:-0.050400px;}
.lsb_c00097{letter-spacing:-0.043200px;}
.ls2_c00097{letter-spacing:-0.036000px;}
.ls3_c00097{letter-spacing:-0.028800px;}
.ls8_c00097{letter-spacing:-0.021600px;}
.ls7_c00097{letter-spacing:-0.014400px;}
.ls4_c00097{letter-spacing:-0.007200px;}
.ls0_c00097{letter-spacing:0.000000px;}
.lsa_c00097{letter-spacing:0.007200px;}
.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;}
}
.ws2b_c00097{word-spacing:-3.398400px;}
.ws2a_c00097{word-spacing:-3.384000px;}
.ws1a_c00097{word-spacing:-1.627200px;}
.ws18_c00097{word-spacing:-0.885600px;}
.ws19_c00097{word-spacing:-0.842400px;}
.ws0_c00097{word-spacing:0.000000px;}
.ws1d_c00097{word-spacing:0.151200px;}
.ws28_c00097{word-spacing:0.165600px;}
.ws23_c00097{word-spacing:0.172800px;}
.ws10_c00097{word-spacing:0.180000px;}
.ws32_c00097{word-spacing:0.187200px;}
.ws33_c00097{word-spacing:0.208800px;}
.ws29_c00097{word-spacing:0.921600px;}
.wsf_c00097{word-spacing:1.202400px;}
.wse_c00097{word-spacing:1.231200px;}
.ws31_c00097{word-spacing:1.922400px;}
.ws30_c00097{word-spacing:2.001600px;}
.ws2d_c00097{word-spacing:3.002400px;}
.ws2c_c00097{word-spacing:3.117600px;}
.ws13_c00097{word-spacing:3.823200px;}
.ws12_c00097{word-spacing:3.895200px;}
.ws2_c00097{word-spacing:4.154400px;}
.ws1_c00097{word-spacing:4.168800px;}
.ws21_c00097{word-spacing:4.456800px;}
.ws22_c00097{word-spacing:4.478400px;}
.ws11_c00097{word-spacing:5.234400px;}
.ws2e_c00097{word-spacing:5.580000px;}
.ws2f_c00097{word-spacing:5.594400px;}
.ws8_c00097{word-spacing:6.696000px;}
.ws7_c00097{word-spacing:6.717600px;}
.wsb_c00097{word-spacing:7.552800px;}
.wsd_c00097{word-spacing:7.754400px;}
.ws15_c00097{word-spacing:7.797600px;}
.ws14_c00097{word-spacing:7.855200px;}
.wsc_c00097{word-spacing:7.891200px;}
.ws24_c00097{word-spacing:10.972800px;}
.ws25_c00097{word-spacing:10.987200px;}
.ws26_c00097{word-spacing:16.855200px;}
.ws27_c00097{word-spacing:16.884000px;}
.ws16_c00097{word-spacing:18.468000px;}
.ws1b_c00097{word-spacing:18.532800px;}
.ws1c_c00097{word-spacing:18.547200px;}
.ws17_c00097{word-spacing:18.554400px;}
.ws5_c00097{word-spacing:26.445600px;}
.ws6_c00097{word-spacing:26.503200px;}
.wsa_c00097{word-spacing:29.347200px;}
.ws9_c00097{word-spacing:29.368800px;}
.ws20_c00097{word-spacing:32.133600px;}
.ws1f_c00097{word-spacing:32.148000px;}
.ws4_c00097{word-spacing:36.633600px;}
.ws3_c00097{word-spacing:36.655200px;}
.ws1e_c00097{word-spacing:40.514400px;}
._0_c00097{width:1.144800px;}
.fc0_c00097{color:rgb(0,0,0);}
.fs0_c00097{font-size:72.000000px;}
.y0_c00097{bottom:0.000000px;}
.y2_c00097{bottom:46.830450px;}
.y1_c00097{bottom:67.530450px;}
.y22_c00097{bottom:210.180450px;}
.y21_c00097{bottom:241.230450px;}
.y20_c00097{bottom:272.280450px;}
.y1f_c00097{bottom:303.330450px;}
.y1e_c00097{bottom:334.380450px;}
.y1d_c00097{bottom:365.430450px;}
.y1c_c00097{bottom:396.390450px;}
.y1b_c00097{bottom:417.090450px;}
.y1a_c00097{bottom:437.790450px;}
.y19_c00097{bottom:458.490450px;}
.y18_c00097{bottom:479.190450px;}
.y17_c00097{bottom:499.890450px;}
.y16_c00097{bottom:520.590450px;}
.y15_c00097{bottom:541.290450px;}
.y14_c00097{bottom:561.990450px;}
.y13_c00097{bottom:582.690450px;}
.y12_c00097{bottom:622.740450px;}
.y11_c00097{bottom:653.790450px;}
.y10_c00097{bottom:684.840450px;}
.yf_c00097{bottom:715.890450px;}
.ye_c00097{bottom:746.940450px;}
.yd_c00097{bottom:777.990450px;}
.yc_c00097{bottom:809.040450px;}
.yb_c00097{bottom:840.090450px;}
.ya_c00097{bottom:880.140450px;}
.y9_c00097{bottom:911.190450px;}
.y8_c00097{bottom:942.240450px;}
.y7_c00097{bottom:973.290450px;}
.y6_c00097{bottom:1004.340450px;}
.y5_c00097{bottom:1035.390450px;}
.y4_c00097{bottom:1066.440450px;}
.y3_c00097{bottom:1097.490450px;}
.h1_c00097{height:63.175781px;}
.h2_c00097{height:64.546875px;}
.h0_c00097{height:1263.000000px;}
.w1_c00097{width:892.500000px;}
.w0_c00097{width:892.830000px;}
.x0_c00097{left:0.000000px;}
.x2_c00097{left:127.620000px;}
.x3_c00097{left:148.950000px;}
.x1_c00097{left:704.880000px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls9_c00097{letter-spacing:-0.070400pt;}
.lsc_c00097{letter-spacing:-0.064000pt;}
.ls5_c00097{letter-spacing:-0.057600pt;}
.ls6_c00097{letter-spacing:-0.051200pt;}
.ls1_c00097{letter-spacing:-0.044800pt;}
.lsb_c00097{letter-spacing:-0.038400pt;}
.ls2_c00097{letter-spacing:-0.032000pt;}
.ls3_c00097{letter-spacing:-0.025600pt;}
.ls8_c00097{letter-spacing:-0.019200pt;}
.ls7_c00097{letter-spacing:-0.012800pt;}
.ls4_c00097{letter-spacing:-0.006400pt;}
.ls0_c00097{letter-spacing:0.000000pt;}
.lsa_c00097{letter-spacing:0.006400pt;}
.ws2b_c00097{word-spacing:-3.020800pt;}
.ws2a_c00097{word-spacing:-3.008000pt;}
.ws1a_c00097{word-spacing:-1.446400pt;}
.ws18_c00097{word-spacing:-0.787200pt;}
.ws19_c00097{word-spacing:-0.748800pt;}
.ws0_c00097{word-spacing:0.000000pt;}
.ws1d_c00097{word-spacing:0.134400pt;}
.ws28_c00097{word-spacing:0.147200pt;}
.ws23_c00097{word-spacing:0.153600pt;}
.ws10_c00097{word-spacing:0.160000pt;}
.ws32_c00097{word-spacing:0.166400pt;}
.ws33_c00097{word-spacing:0.185600pt;}
.ws29_c00097{word-spacing:0.819200pt;}
.wsf_c00097{word-spacing:1.068800pt;}
.wse_c00097{word-spacing:1.094400pt;}
.ws31_c00097{word-spacing:1.708800pt;}
.ws30_c00097{word-spacing:1.779200pt;}
.ws2d_c00097{word-spacing:2.668800pt;}
.ws2c_c00097{word-spacing:2.771200pt;}
.ws13_c00097{word-spacing:3.398400pt;}
.ws12_c00097{word-spacing:3.462400pt;}
.ws2_c00097{word-spacing:3.692800pt;}
.ws1_c00097{word-spacing:3.705600pt;}
.ws21_c00097{word-spacing:3.961600pt;}
.ws22_c00097{word-spacing:3.980800pt;}
.ws11_c00097{word-spacing:4.652800pt;}
.ws2e_c00097{word-spacing:4.960000pt;}
.ws2f_c00097{word-spacing:4.972800pt;}
.ws8_c00097{word-spacing:5.952000pt;}
.ws7_c00097{word-spacing:5.971200pt;}
.wsb_c00097{word-spacing:6.713600pt;}
.wsd_c00097{word-spacing:6.892800pt;}
.ws15_c00097{word-spacing:6.931200pt;}
.ws14_c00097{word-spacing:6.982400pt;}
.wsc_c00097{word-spacing:7.014400pt;}
.ws24_c00097{word-spacing:9.753600pt;}
.ws25_c00097{word-spacing:9.766400pt;}
.ws26_c00097{word-spacing:14.982400pt;}
.ws27_c00097{word-spacing:15.008000pt;}
.ws16_c00097{word-spacing:16.416000pt;}
.ws1b_c00097{word-spacing:16.473600pt;}
.ws1c_c00097{word-spacing:16.486400pt;}
.ws17_c00097{word-spacing:16.492800pt;}
.ws5_c00097{word-spacing:23.507200pt;}
.ws6_c00097{word-spacing:23.558400pt;}
.wsa_c00097{word-spacing:26.086400pt;}
.ws9_c00097{word-spacing:26.105600pt;}
.ws20_c00097{word-spacing:28.563200pt;}
.ws1f_c00097{word-spacing:28.576000pt;}
.ws4_c00097{word-spacing:32.563200pt;}
.ws3_c00097{word-spacing:32.582400pt;}
.ws1e_c00097{word-spacing:36.012800pt;}
._0_c00097{width:1.017600pt;}
.fs0_c00097{font-size:64.000000pt;}
.y0_c00097{bottom:0.000000pt;}
.y2_c00097{bottom:41.627067pt;}
.y1_c00097{bottom:60.027067pt;}
.y22_c00097{bottom:186.827067pt;}
.y21_c00097{bottom:214.427067pt;}
.y20_c00097{bottom:242.027067pt;}
.y1f_c00097{bottom:269.627067pt;}
.y1e_c00097{bottom:297.227067pt;}
.y1d_c00097{bottom:324.827067pt;}
.y1c_c00097{bottom:352.347067pt;}
.y1b_c00097{bottom:370.747067pt;}
.y1a_c00097{bottom:389.147067pt;}
.y19_c00097{bottom:407.547067pt;}
.y18_c00097{bottom:425.947067pt;}
.y17_c00097{bottom:444.347067pt;}
.y16_c00097{bottom:462.747067pt;}
.y15_c00097{bottom:481.147067pt;}
.y14_c00097{bottom:499.547067pt;}
.y13_c00097{bottom:517.947067pt;}
.y12_c00097{bottom:553.547067pt;}
.y11_c00097{bottom:581.147067pt;}
.y10_c00097{bottom:608.747067pt;}
.yf_c00097{bottom:636.347067pt;}
.ye_c00097{bottom:663.947067pt;}
.yd_c00097{bottom:691.547067pt;}
.yc_c00097{bottom:719.147067pt;}
.yb_c00097{bottom:746.747067pt;}
.ya_c00097{bottom:782.347067pt;}
.y9_c00097{bottom:809.947067pt;}
.y8_c00097{bottom:837.547067pt;}
.y7_c00097{bottom:865.147067pt;}
.y6_c00097{bottom:892.747067pt;}
.y5_c00097{bottom:920.347067pt;}
.y4_c00097{bottom:947.947067pt;}
.y3_c00097{bottom:975.547067pt;}
.h1_c00097{height:56.156250pt;}
.h2_c00097{height:57.375000pt;}
.h0_c00097{height:1122.666667pt;}
.w1_c00097{width:793.333333pt;}
.w0_c00097{width:793.626667pt;}
.x0_c00097{left:0.000000pt;}
.x2_c00097{left:113.440000pt;}
.x3_c00097{left:132.400000pt;}
.x1_c00097{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e0a5a5bfd46110426044824a.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.093262;font-style:normal;font-weight:normal;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_0528a35a72b3f86cbedaefe8.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00098;src:url('chunks/assets/font_7bfc9fcc482727e4744247c9.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.lsf_c00098{letter-spacing:-0.079200px;}
.lsd_c00098{letter-spacing:-0.072000px;}
.lse_c00098{letter-spacing:-0.064800px;}
.ls5_c00098{letter-spacing:-0.057600px;}
.ls8_c00098{letter-spacing:-0.050400px;}
.lsa_c00098{letter-spacing:-0.043200px;}
.ls7_c00098{letter-spacing:-0.036000px;}
.ls6_c00098{letter-spacing:-0.028800px;}
.ls9_c00098{letter-spacing:-0.021600px;}
.ls4_c00098{letter-spacing:-0.014400px;}
.lsb_c00098{letter-spacing:-0.007200px;}
.ls2_c00098{letter-spacing:0.000000px;}
.ls1_c00098{letter-spacing:0.007200px;}
.lsc_c00098{letter-spacing:0.014400px;}
.ls10_c00098{letter-spacing:0.021600px;}
.ls0_c00098{letter-spacing:0.058716px;}
.ls3_c00098{letter-spacing:0.125820px;}
.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;}
}
.ws2_c00098{word-spacing:-3.067200px;}
.ws2c_c00098{word-spacing:-3.045600px;}
.ws29_c00098{word-spacing:-2.772000px;}
.ws28_c00098{word-spacing:-2.700000px;}
.ws9_c00098{word-spacing:-2.354400px;}
.ws3_c00098{word-spacing:-1.944000px;}
.ws10_c00098{word-spacing:-0.568800px;}
.ws7_c00098{word-spacing:-0.540000px;}
.ws6_c00098{word-spacing:-0.511200px;}
.wsf_c00098{word-spacing:-0.504000px;}
.ws21_c00098{word-spacing:-0.172800px;}
.ws0_c00098{word-spacing:0.000000px;}
.ws1_c00098{word-spacing:0.033552px;}
.ws2b_c00098{word-spacing:0.050400px;}
.ws18_c00098{word-spacing:0.144000px;}
.ws17_c00098{word-spacing:0.165600px;}
.wsd_c00098{word-spacing:0.172800px;}
.wsc_c00098{word-spacing:0.194400px;}
.ws2d_c00098{word-spacing:0.252000px;}
.ws4_c00098{word-spacing:1.144800px;}
.ws5_c00098{word-spacing:1.216800px;}
.ws8_c00098{word-spacing:4.161600px;}
.wse_c00098{word-spacing:7.466400px;}
.wsb_c00098{word-spacing:7.754400px;}
.wsa_c00098{word-spacing:7.804800px;}
.ws24_c00098{word-spacing:8.474400px;}
.ws25_c00098{word-spacing:8.488800px;}
.ws1a_c00098{word-spacing:10.807200px;}
.ws19_c00098{word-spacing:11.008800px;}
.ws23_c00098{word-spacing:11.347200px;}
.ws22_c00098{word-spacing:11.354400px;}
.ws2a_c00098{word-spacing:11.383200px;}
.ws15_c00098{word-spacing:15.660000px;}
.ws16_c00098{word-spacing:15.667200px;}
.ws30_c00098{word-spacing:15.976800px;}
.ws2e_c00098{word-spacing:16.034400px;}
.ws2f_c00098{word-spacing:16.164000px;}
.ws12_c00098{word-spacing:17.056800px;}
.ws11_c00098{word-spacing:17.136000px;}
.ws13_c00098{word-spacing:29.707200px;}
.ws14_c00098{word-spacing:29.721600px;}
.ws20_c00098{word-spacing:30.448800px;}
.ws1f_c00098{word-spacing:30.470400px;}
.ws27_c00098{word-spacing:33.645600px;}
.ws26_c00098{word-spacing:33.667200px;}
.ws1c_c00098{word-spacing:37.260000px;}
.ws1b_c00098{word-spacing:37.267200px;}
.ws1e_c00098{word-spacing:38.808000px;}
.ws1d_c00098{word-spacing:38.822400px;}
._2_c00098{margin-left:-1.296000px;}
._1_c00098{width:1.008000px;}
._0_c00098{width:9.730080px;}
.fc0_c00098{color:rgb(0,0,0);}
.fs0_c00098{font-size:72.000000px;}
.fs1_c00098{font-size:83.880000px;}
.y0_c00098{bottom:0.000000px;}
.y2_c00098{bottom:46.830450px;}
.y1_c00098{bottom:67.530450px;}
.y26_c00098{bottom:139.350450px;}
.y25_c00098{bottom:170.400450px;}
.y24_c00098{bottom:201.450450px;}
.y23_c00098{bottom:241.500450px;}
.y22_c00098{bottom:262.200450px;}
.y21_c00098{bottom:282.900450px;}
.y20_c00098{bottom:303.600450px;}
.y1f_c00098{bottom:324.300450px;}
.y1e_c00098{bottom:345.000450px;}
.y1d_c00098{bottom:365.700450px;}
.y1c_c00098{bottom:386.400450px;}
.y1b_c00098{bottom:407.100450px;}
.y1a_c00098{bottom:427.800450px;}
.y19_c00098{bottom:448.500450px;}
.y18_c00098{bottom:469.200450px;}
.y17_c00098{bottom:489.900450px;}
.y16_c00098{bottom:510.600450px;}
.y15_c00098{bottom:531.300450px;}
.y14_c00098{bottom:571.350450px;}
.y13_c00098{bottom:602.400450px;}
.y12_c00098{bottom:633.450450px;}
.y11_c00098{bottom:664.500450px;}
.y10_c00098{bottom:695.550450px;}
.yf_c00098{bottom:726.510450px;}
.ye_c00098{bottom:757.560450px;}
.yd_c00098{bottom:788.610450px;}
.yc_c00098{bottom:819.660450px;}
.yb_c00098{bottom:850.710450px;}
.ya_c00098{bottom:881.760450px;}
.y9_c00098{bottom:912.810450px;}
.y8_c00098{bottom:943.860450px;}
.y7_c00098{bottom:974.910450px;}
.y6_c00098{bottom:1014.960450px;}
.y5_c00098{bottom:1044.750450px;}
.y4_c00098{bottom:1070.404950px;}
.y3_c00098{bottom:1094.520450px;}
.h1_c00098{height:63.175781px;}
.h3_c00098{height:64.546875px;}
.h2_c00098{height:87.484219px;}
.h0_c00098{height:1263.000000px;}
.w1_c00098{width:892.500000px;}
.w0_c00098{width:892.830000px;}
.x0_c00098{left:0.000000px;}
.x2_c00098{left:170.100000px;}
.x5_c00098{left:191.430000px;}
.x3_c00098{left:251.100000px;}
.x4_c00098{left:299.708460px;}
.x1_c00098{left:747.360000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.lsf_c00098{letter-spacing:-0.070400pt;}
.lsd_c00098{letter-spacing:-0.064000pt;}
.lse_c00098{letter-spacing:-0.057600pt;}
.ls5_c00098{letter-spacing:-0.051200pt;}
.ls8_c00098{letter-spacing:-0.044800pt;}
.lsa_c00098{letter-spacing:-0.038400pt;}
.ls7_c00098{letter-spacing:-0.032000pt;}
.ls6_c00098{letter-spacing:-0.025600pt;}
.ls9_c00098{letter-spacing:-0.019200pt;}
.ls4_c00098{letter-spacing:-0.012800pt;}
.lsb_c00098{letter-spacing:-0.006400pt;}
.ls2_c00098{letter-spacing:0.000000pt;}
.ls1_c00098{letter-spacing:0.006400pt;}
.lsc_c00098{letter-spacing:0.012800pt;}
.ls10_c00098{letter-spacing:0.019200pt;}
.ls0_c00098{letter-spacing:0.052192pt;}
.ls3_c00098{letter-spacing:0.111840pt;}
.ws2_c00098{word-spacing:-2.726400pt;}
.ws2c_c00098{word-spacing:-2.707200pt;}
.ws29_c00098{word-spacing:-2.464000pt;}
.ws28_c00098{word-spacing:-2.400000pt;}
.ws9_c00098{word-spacing:-2.092800pt;}
.ws3_c00098{word-spacing:-1.728000pt;}
.ws10_c00098{word-spacing:-0.505600pt;}
.ws7_c00098{word-spacing:-0.480000pt;}
.ws6_c00098{word-spacing:-0.454400pt;}
.wsf_c00098{word-spacing:-0.448000pt;}
.ws21_c00098{word-spacing:-0.153600pt;}
.ws0_c00098{word-spacing:0.000000pt;}
.ws1_c00098{word-spacing:0.029824pt;}
.ws2b_c00098{word-spacing:0.044800pt;}
.ws18_c00098{word-spacing:0.128000pt;}
.ws17_c00098{word-spacing:0.147200pt;}
.wsd_c00098{word-spacing:0.153600pt;}
.wsc_c00098{word-spacing:0.172800pt;}
.ws2d_c00098{word-spacing:0.224000pt;}
.ws4_c00098{word-spacing:1.017600pt;}
.ws5_c00098{word-spacing:1.081600pt;}
.ws8_c00098{word-spacing:3.699200pt;}
.wse_c00098{word-spacing:6.636800pt;}
.wsb_c00098{word-spacing:6.892800pt;}
.wsa_c00098{word-spacing:6.937600pt;}
.ws24_c00098{word-spacing:7.532800pt;}
.ws25_c00098{word-spacing:7.545600pt;}
.ws1a_c00098{word-spacing:9.606400pt;}
.ws19_c00098{word-spacing:9.785600pt;}
.ws23_c00098{word-spacing:10.086400pt;}
.ws22_c00098{word-spacing:10.092800pt;}
.ws2a_c00098{word-spacing:10.118400pt;}
.ws15_c00098{word-spacing:13.920000pt;}
.ws16_c00098{word-spacing:13.926400pt;}
.ws30_c00098{word-spacing:14.201600pt;}
.ws2e_c00098{word-spacing:14.252800pt;}
.ws2f_c00098{word-spacing:14.368000pt;}
.ws12_c00098{word-spacing:15.161600pt;}
.ws11_c00098{word-spacing:15.232000pt;}
.ws13_c00098{word-spacing:26.406400pt;}
.ws14_c00098{word-spacing:26.419200pt;}
.ws20_c00098{word-spacing:27.065600pt;}
.ws1f_c00098{word-spacing:27.084800pt;}
.ws27_c00098{word-spacing:29.907200pt;}
.ws26_c00098{word-spacing:29.926400pt;}
.ws1c_c00098{word-spacing:33.120000pt;}
.ws1b_c00098{word-spacing:33.126400pt;}
.ws1e_c00098{word-spacing:34.496000pt;}
.ws1d_c00098{word-spacing:34.508800pt;}
._2_c00098{margin-left:-1.152000pt;}
._1_c00098{width:0.896000pt;}
._0_c00098{width:8.648960pt;}
.fs0_c00098{font-size:64.000000pt;}
.fs1_c00098{font-size:74.560000pt;}
.y0_c00098{bottom:0.000000pt;}
.y2_c00098{bottom:41.627067pt;}
.y1_c00098{bottom:60.027067pt;}
.y26_c00098{bottom:123.867067pt;}
.y25_c00098{bottom:151.467067pt;}
.y24_c00098{bottom:179.067067pt;}
.y23_c00098{bottom:214.667067pt;}
.y22_c00098{bottom:233.067067pt;}
.y21_c00098{bottom:251.467067pt;}
.y20_c00098{bottom:269.867067pt;}
.y1f_c00098{bottom:288.267067pt;}
.y1e_c00098{bottom:306.667067pt;}
.y1d_c00098{bottom:325.067067pt;}
.y1c_c00098{bottom:343.467067pt;}
.y1b_c00098{bottom:361.867067pt;}
.y1a_c00098{bottom:380.267067pt;}
.y19_c00098{bottom:398.667067pt;}
.y18_c00098{bottom:417.067067pt;}
.y17_c00098{bottom:435.467067pt;}
.y16_c00098{bottom:453.867067pt;}
.y15_c00098{bottom:472.267067pt;}
.y14_c00098{bottom:507.867067pt;}
.y13_c00098{bottom:535.467067pt;}
.y12_c00098{bottom:563.067067pt;}
.y11_c00098{bottom:590.667067pt;}
.y10_c00098{bottom:618.267067pt;}
.yf_c00098{bottom:645.787067pt;}
.ye_c00098{bottom:673.387067pt;}
.yd_c00098{bottom:700.987067pt;}
.yc_c00098{bottom:728.587067pt;}
.yb_c00098{bottom:756.187067pt;}
.ya_c00098{bottom:783.787067pt;}
.y9_c00098{bottom:811.387067pt;}
.y8_c00098{bottom:838.987067pt;}
.y7_c00098{bottom:866.587067pt;}
.y6_c00098{bottom:902.187067pt;}
.y5_c00098{bottom:928.667067pt;}
.y4_c00098{bottom:951.471067pt;}
.y3_c00098{bottom:972.907067pt;}
.h1_c00098{height:56.156250pt;}
.h3_c00098{height:57.375000pt;}
.h2_c00098{height:77.763750pt;}
.h0_c00098{height:1122.666667pt;}
.w1_c00098{width:793.333333pt;}
.w0_c00098{width:793.626667pt;}
.x0_c00098{left:0.000000pt;}
.x2_c00098{left:151.200000pt;}
.x5_c00098{left:170.160000pt;}
.x3_c00098{left:223.200000pt;}
.x4_c00098{left:266.407520pt;}
.x1_c00098{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f12d2db8739299dbcd64bb66.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.093262;font-style:normal;font-weight:normal;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_be054e610881c240ad6e6a16.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.106934;font-style: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;}
.lsa_c00099{letter-spacing:-0.072000px;}
.ls7_c00099{letter-spacing:-0.057600px;}
.ls4_c00099{letter-spacing:-0.050400px;}
.ls1_c00099{letter-spacing:-0.043200px;}
.ls5_c00099{letter-spacing:-0.036000px;}
.ls2_c00099{letter-spacing:-0.028800px;}
.ls8_c00099{letter-spacing:-0.021600px;}
.ls3_c00099{letter-spacing:-0.014400px;}
.ls6_c00099{letter-spacing:-0.007200px;}
.ls0_c00099{letter-spacing:0.000000px;}
.ls9_c00099{letter-spacing:0.014400px;}
.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;}
}
.ws21_c00099{word-spacing:-4.867200px;}
.ws30_c00099{word-spacing:-4.788000px;}
.ws28_c00099{word-spacing:-3.772800px;}
.ws27_c00099{word-spacing:-3.758400px;}
.ws17_c00099{word-spacing:-1.656000px;}
.ws11_c00099{word-spacing:-1.641600px;}
.ws10_c00099{word-spacing:-1.620000px;}
.ws16_c00099{word-spacing:-1.497600px;}
.ws6_c00099{word-spacing:-0.525600px;}
.ws5_c00099{word-spacing:-0.511200px;}
.ws0_c00099{word-spacing:0.000000px;}
.wsd_c00099{word-spacing:0.165600px;}
.ws1d_c00099{word-spacing:0.180000px;}
.ws1e_c00099{word-spacing:0.259200px;}
.ws4_c00099{word-spacing:0.892800px;}
.ws3_c00099{word-spacing:0.907200px;}
.ws20_c00099{word-spacing:1.267200px;}
.ws1f_c00099{word-spacing:1.288800px;}
.ws18_c00099{word-spacing:2.318400px;}
.ws1a_c00099{word-spacing:4.492800px;}
.ws19_c00099{word-spacing:4.521600px;}
.ws1c_c00099{word-spacing:5.212800px;}
.ws1b_c00099{word-spacing:5.234400px;}
.ws2e_c00099{word-spacing:6.004800px;}
.ws2f_c00099{word-spacing:6.019200px;}
.ws24_c00099{word-spacing:6.566400px;}
.ws29_c00099{word-spacing:6.588000px;}
.ws2a_c00099{word-spacing:6.616800px;}
.ws23_c00099{word-spacing:6.667200px;}
.wsb_c00099{word-spacing:7.660800px;}
.wsa_c00099{word-spacing:7.761600px;}
.ws13_c00099{word-spacing:8.035200px;}
.ws12_c00099{word-spacing:8.092800px;}
.ws14_c00099{word-spacing:9.892800px;}
.ws15_c00099{word-spacing:9.928800px;}
.ws35_c00099{word-spacing:12.052800px;}
.ws34_c00099{word-spacing:12.132000px;}
.ws26_c00099{word-spacing:12.441600px;}
.ws25_c00099{word-spacing:12.448800px;}
.ws2b_c00099{word-spacing:15.681600px;}
.ws1_c00099{word-spacing:16.041600px;}
.ws2_c00099{word-spacing:16.070400px;}
.ws32_c00099{word-spacing:16.732800px;}
.ws33_c00099{word-spacing:16.790400px;}
.wsf_c00099{word-spacing:18.216000px;}
.wse_c00099{word-spacing:18.288000px;}
.ws31_c00099{word-spacing:21.470400px;}
.ws2c_c00099{word-spacing:25.250400px;}
.ws2d_c00099{word-spacing:25.387200px;}
.ws9_c00099{word-spacing:27.525600px;}
.ws7_c00099{word-spacing:27.561600px;}
.ws8_c00099{word-spacing:27.741600px;}
.wsc_c00099{word-spacing:42.328800px;}
.ws22_c00099{word-spacing:44.092800px;}
._0_c00099{width:1.008000px;}
.fc0_c00099{color:rgb(0,0,0);}
.fs0_c00099{font-size:72.000000px;}
.y0_c00099{bottom:0.000000px;}
.y2_c00099{bottom:46.830450px;}
.y1_c00099{bottom:67.530450px;}
.y21_c00099{bottom:139.080450px;}
.y20_c00099{bottom:170.130450px;}
.y1f_c00099{bottom:210.180450px;}
.y1e_c00099{bottom:241.230450px;}
.y1d_c00099{bottom:272.280450px;}
.y1c_c00099{bottom:303.330450px;}
.y1b_c00099{bottom:334.380450px;}
.y1a_c00099{bottom:365.430450px;}
.y19_c00099{bottom:396.390450px;}
.y18_c00099{bottom:427.440450px;}
.y17_c00099{bottom:458.490450px;}
.y16_c00099{bottom:489.540450px;}
.y15_c00099{bottom:520.590450px;}
.y14_c00099{bottom:551.640450px;}
.y13_c00099{bottom:582.690450px;}
.y12_c00099{bottom:622.740450px;}
.y11_c00099{bottom:653.790450px;}
.y10_c00099{bottom:684.840450px;}
.yf_c00099{bottom:715.890450px;}
.ye_c00099{bottom:746.940450px;}
.yd_c00099{bottom:777.990450px;}
.yc_c00099{bottom:809.040450px;}
.yb_c00099{bottom:840.090450px;}
.ya_c00099{bottom:871.140450px;}
.y9_c00099{bottom:911.190450px;}
.y8_c00099{bottom:942.240450px;}
.y7_c00099{bottom:973.290450px;}
.y6_c00099{bottom:1004.340450px;}
.y5_c00099{bottom:1035.390450px;}
.y4_c00099{bottom:1066.440450px;}
.y3_c00099{bottom:1097.490450px;}
.h1_c00099{height:63.175781px;}
.h2_c00099{height:64.546875px;}
.h0_c00099{height:1263.000000px;}
.w1_c00099{width:892.500000px;}
.w0_c00099{width:892.830000px;}
.x0_c00099{left:0.000000px;}
.x2_c00099{left:127.620000px;}
.x1_c00099{left:695.880000px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.lsa_c00099{letter-spacing:-0.064000pt;}
.ls7_c00099{letter-spacing:-0.051200pt;}
.ls4_c00099{letter-spacing:-0.044800pt;}
.ls1_c00099{letter-spacing:-0.038400pt;}
.ls5_c00099{letter-spacing:-0.032000pt;}
.ls2_c00099{letter-spacing:-0.025600pt;}
.ls8_c00099{letter-spacing:-0.019200pt;}
.ls3_c00099{letter-spacing:-0.012800pt;}
.ls6_c00099{letter-spacing:-0.006400pt;}
.ls0_c00099{letter-spacing:0.000000pt;}
.ls9_c00099{letter-spacing:0.012800pt;}
.ws21_c00099{word-spacing:-4.326400pt;}
.ws30_c00099{word-spacing:-4.256000pt;}
.ws28_c00099{word-spacing:-3.353600pt;}
.ws27_c00099{word-spacing:-3.340800pt;}
.ws17_c00099{word-spacing:-1.472000pt;}
.ws11_c00099{word-spacing:-1.459200pt;}
.ws10_c00099{word-spacing:-1.440000pt;}
.ws16_c00099{word-spacing:-1.331200pt;}
.ws6_c00099{word-spacing:-0.467200pt;}
.ws5_c00099{word-spacing:-0.454400pt;}
.ws0_c00099{word-spacing:0.000000pt;}
.wsd_c00099{word-spacing:0.147200pt;}
.ws1d_c00099{word-spacing:0.160000pt;}
.ws1e_c00099{word-spacing:0.230400pt;}
.ws4_c00099{word-spacing:0.793600pt;}
.ws3_c00099{word-spacing:0.806400pt;}
.ws20_c00099{word-spacing:1.126400pt;}
.ws1f_c00099{word-spacing:1.145600pt;}
.ws18_c00099{word-spacing:2.060800pt;}
.ws1a_c00099{word-spacing:3.993600pt;}
.ws19_c00099{word-spacing:4.019200pt;}
.ws1c_c00099{word-spacing:4.633600pt;}
.ws1b_c00099{word-spacing:4.652800pt;}
.ws2e_c00099{word-spacing:5.337600pt;}
.ws2f_c00099{word-spacing:5.350400pt;}
.ws24_c00099{word-spacing:5.836800pt;}
.ws29_c00099{word-spacing:5.856000pt;}
.ws2a_c00099{word-spacing:5.881600pt;}
.ws23_c00099{word-spacing:5.926400pt;}
.wsb_c00099{word-spacing:6.809600pt;}
.wsa_c00099{word-spacing:6.899200pt;}
.ws13_c00099{word-spacing:7.142400pt;}
.ws12_c00099{word-spacing:7.193600pt;}
.ws14_c00099{word-spacing:8.793600pt;}
.ws15_c00099{word-spacing:8.825600pt;}
.ws35_c00099{word-spacing:10.713600pt;}
.ws34_c00099{word-spacing:10.784000pt;}
.ws26_c00099{word-spacing:11.059200pt;}
.ws25_c00099{word-spacing:11.065600pt;}
.ws2b_c00099{word-spacing:13.939200pt;}
.ws1_c00099{word-spacing:14.259200pt;}
.ws2_c00099{word-spacing:14.284800pt;}
.ws32_c00099{word-spacing:14.873600pt;}
.ws33_c00099{word-spacing:14.924800pt;}
.wsf_c00099{word-spacing:16.192000pt;}
.wse_c00099{word-spacing:16.256000pt;}
.ws31_c00099{word-spacing:19.084800pt;}
.ws2c_c00099{word-spacing:22.444800pt;}
.ws2d_c00099{word-spacing:22.566400pt;}
.ws9_c00099{word-spacing:24.467200pt;}
.ws7_c00099{word-spacing:24.499200pt;}
.ws8_c00099{word-spacing:24.659200pt;}
.wsc_c00099{word-spacing:37.625600pt;}
.ws22_c00099{word-spacing:39.193600pt;}
._0_c00099{width:0.896000pt;}
.fs0_c00099{font-size:64.000000pt;}
.y0_c00099{bottom:0.000000pt;}
.y2_c00099{bottom:41.627067pt;}
.y1_c00099{bottom:60.027067pt;}
.y21_c00099{bottom:123.627067pt;}
.y20_c00099{bottom:151.227067pt;}
.y1f_c00099{bottom:186.827067pt;}
.y1e_c00099{bottom:214.427067pt;}
.y1d_c00099{bottom:242.027067pt;}
.y1c_c00099{bottom:269.627067pt;}
.y1b_c00099{bottom:297.227067pt;}
.y1a_c00099{bottom:324.827067pt;}
.y19_c00099{bottom:352.347067pt;}
.y18_c00099{bottom:379.947067pt;}
.y17_c00099{bottom:407.547067pt;}
.y16_c00099{bottom:435.147067pt;}
.y15_c00099{bottom:462.747067pt;}
.y14_c00099{bottom:490.347067pt;}
.y13_c00099{bottom:517.947067pt;}
.y12_c00099{bottom:553.547067pt;}
.y11_c00099{bottom:581.147067pt;}
.y10_c00099{bottom:608.747067pt;}
.yf_c00099{bottom:636.347067pt;}
.ye_c00099{bottom:663.947067pt;}
.yd_c00099{bottom:691.547067pt;}
.yc_c00099{bottom:719.147067pt;}
.yb_c00099{bottom:746.747067pt;}
.ya_c00099{bottom:774.347067pt;}
.y9_c00099{bottom:809.947067pt;}
.y8_c00099{bottom:837.547067pt;}
.y7_c00099{bottom:865.147067pt;}
.y6_c00099{bottom:892.747067pt;}
.y5_c00099{bottom:920.347067pt;}
.y4_c00099{bottom:947.947067pt;}
.y3_c00099{bottom:975.547067pt;}
.h1_c00099{height:56.156250pt;}
.h2_c00099{height:57.375000pt;}
.h0_c00099{height:1122.666667pt;}
.w1_c00099{width:793.333333pt;}
.w0_c00099{width:793.626667pt;}
.x0_c00099{left:0.000000pt;}
.x2_c00099{left:113.440000pt;}
.x1_c00099{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f12d2db8739299dbcd64bb66.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.093262;font-style:normal;font-weight:normal;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_f27391362d5e85cdef084c57.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00100{vertical-align:0.000000px;}
.ls3_c00100{letter-spacing:-0.057600px;}
.ls2_c00100{letter-spacing:-0.050400px;}
.ls4_c00100{letter-spacing:-0.036000px;}
.ls1_c00100{letter-spacing:-0.021600px;}
.ls5_c00100{letter-spacing:-0.014400px;}
.ls0_c00100{letter-spacing:0.000000px;}
.ls6_c00100{letter-spacing:843.998400px;}
.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:-2.340000px;}
.ws2_c00100{word-spacing:-2.311200px;}
.ws0_c00100{word-spacing:0.000000px;}
.ws5_c00100{word-spacing:0.172800px;}
.ws3_c00100{word-spacing:0.928800px;}
.ws4_c00100{word-spacing:21.074400px;}
.fc0_c00100{color:rgb(0,0,0);}
.fs0_c00100{font-size:72.000000px;}
.y0_c00100{bottom:0.000000px;}
.y2_c00100{bottom:46.830450px;}
.y1_c00100{bottom:67.530450px;}
.y8_c00100{bottom:924.240450px;}
.y7_c00100{bottom:964.290450px;}
.y6_c00100{bottom:1004.340450px;}
.y5_c00100{bottom:1035.390450px;}
.y4_c00100{bottom:1066.440450px;}
.y3_c00100{bottom:1097.490450px;}
.h1_c00100{height:63.175781px;}
.h2_c00100{height:64.546875px;}
.h0_c00100{height:1263.000000px;}
.w1_c00100{width:892.500000px;}
.w0_c00100{width:892.830000px;}
.x0_c00100{left:0.000000px;}
.x2_c00100{left:170.100000px;}
.x1_c00100{left:738.360000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls3_c00100{letter-spacing:-0.051200pt;}
.ls2_c00100{letter-spacing:-0.044800pt;}
.ls4_c00100{letter-spacing:-0.032000pt;}
.ls1_c00100{letter-spacing:-0.019200pt;}
.ls5_c00100{letter-spacing:-0.012800pt;}
.ls0_c00100{letter-spacing:0.000000pt;}
.ls6_c00100{letter-spacing:750.220800pt;}
.ws1_c00100{word-spacing:-2.080000pt;}
.ws2_c00100{word-spacing:-2.054400pt;}
.ws0_c00100{word-spacing:0.000000pt;}
.ws5_c00100{word-spacing:0.153600pt;}
.ws3_c00100{word-spacing:0.825600pt;}
.ws4_c00100{word-spacing:18.732800pt;}
.fs0_c00100{font-size:64.000000pt;}
.y0_c00100{bottom:0.000000pt;}
.y2_c00100{bottom:41.627067pt;}
.y1_c00100{bottom:60.027067pt;}
.y8_c00100{bottom:821.547067pt;}
.y7_c00100{bottom:857.147067pt;}
.y6_c00100{bottom:892.747067pt;}
.y5_c00100{bottom:920.347067pt;}
.y4_c00100{bottom:947.947067pt;}
.y3_c00100{bottom:975.547067pt;}
.h1_c00100{height:56.156250pt;}
.h2_c00100{height:57.375000pt;}
.h0_c00100{height:1122.666667pt;}
.w1_c00100{width:793.333333pt;}
.w0_c00100{width:793.626667pt;}
.x0_c00100{left:0.000000pt;}
.x2_c00100{left:151.200000pt;}
.x1_c00100{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7f1e1cbb911a91dbb831282d.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:1.106934;font-style: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;}
.ls0_c00101{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00101{word-spacing:0.000000px;}
.fc0_c00101{color:rgb(0,0,0);}
.fs0_c00101{font-size:72.000000px;}
.y0_c00101{bottom:0.000000px;}
.y2_c00101{bottom:46.830450px;}
.y1_c00101{bottom:67.530450px;}
.y4_c00101{bottom:1057.440450px;}
.y3_c00101{bottom:1097.490450px;}
.h1_c00101{height:63.175781px;}
.h2_c00101{height:64.546875px;}
.h0_c00101{height:1263.000000px;}
.w1_c00101{width:892.500000px;}
.w0_c00101{width:892.830000px;}
.x0_c00101{left:0.000000px;}
.x2_c00101{left:127.620000px;}
.x1_c00101{left:695.880000px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls0_c00101{letter-spacing:0.000000pt;}
.ws0_c00101{word-spacing:0.000000pt;}
.fs0_c00101{font-size:64.000000pt;}
.y0_c00101{bottom:0.000000pt;}
.y2_c00101{bottom:41.627067pt;}
.y1_c00101{bottom:60.027067pt;}
.y4_c00101{bottom:939.947067pt;}
.y3_c00101{bottom:975.547067pt;}
.h1_c00101{height:56.156250pt;}
.h2_c00101{height:57.375000pt;}
.h0_c00101{height:1122.666667pt;}
.w1_c00101{width:793.333333pt;}
.w0_c00101{width:793.626667pt;}
.x0_c00101{left:0.000000pt;}
.x2_c00101{left:113.440000pt;}
.x1_c00101{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c4bb2040648a5049d4763117.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.093262;font-style:normal;font-weight:normal;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_6322b2f4ef031e1a450589df.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00102;src:url('chunks/assets/font_a50275e4cb94a6c2c5996b98.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;line-height:1.106934;font-style:normal;font-weight:normal;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_c4dba626f74a2829bfbc95c0.woff2')format("woff");}.ff4_c00102{font-family:ff4_c00102;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00102{letter-spacing:-0.151200px;}
.ls8_c00102{letter-spacing:-0.079200px;}
.lsc_c00102{letter-spacing:-0.072000px;}
.ls2_c00102{letter-spacing:-0.064800px;}
.ls9_c00102{letter-spacing:-0.057600px;}
.ls3_c00102{letter-spacing:-0.050400px;}
.ls7_c00102{letter-spacing:-0.043200px;}
.ls5_c00102{letter-spacing:-0.036000px;}
.ls6_c00102{letter-spacing:-0.028800px;}
.lsa_c00102{letter-spacing:-0.021600px;}
.ls4_c00102{letter-spacing:-0.014400px;}
.lsd_c00102{letter-spacing:-0.007200px;}
.ls1_c00102{letter-spacing:0.000000px;}
.lse_c00102{letter-spacing:0.014400px;}
.ls0_c00102{letter-spacing:0.067104px;}
.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;}
}
.ws17_c00102{word-spacing:-3.787200px;}
.ws15_c00102{word-spacing:-3.758400px;}
.ws16_c00102{word-spacing:-3.744000px;}
.ws4_c00102{word-spacing:-3.427200px;}
.ws5_c00102{word-spacing:-3.405600px;}
.ws11_c00102{word-spacing:-1.994400px;}
.ws10_c00102{word-spacing:-1.972800px;}
.ws14_c00102{word-spacing:-1.584000px;}
.ws1a_c00102{word-spacing:-0.871200px;}
.ws0_c00102{word-spacing:0.000000px;}
.ws37_c00102{word-spacing:0.072000px;}
.ws13_c00102{word-spacing:0.180000px;}
.ws36_c00102{word-spacing:0.194400px;}
.wse_c00102{word-spacing:1.915200px;}
.wsf_c00102{word-spacing:2.037600px;}
.ws27_c00102{word-spacing:3.052800px;}
.ws28_c00102{word-spacing:3.067200px;}
.ws20_c00102{word-spacing:3.355200px;}
.ws1f_c00102{word-spacing:3.448800px;}
.ws23_c00102{word-spacing:5.601600px;}
.ws24_c00102{word-spacing:5.688000px;}
.ws1c_c00102{word-spacing:6.300000px;}
.ws7_c00102{word-spacing:6.328800px;}
.ws1b_c00102{word-spacing:6.336000px;}
.ws6_c00102{word-spacing:6.343200px;}
.ws2a_c00102{word-spacing:6.652800px;}
.ws8_c00102{word-spacing:6.674400px;}
.ws9_c00102{word-spacing:6.688800px;}
.ws2b_c00102{word-spacing:6.782400px;}
.ws1_c00102{word-spacing:9.746856px;}
.ws1d_c00102{word-spacing:10.634400px;}
.ws1e_c00102{word-spacing:10.641600px;}
.ws2_c00102{word-spacing:10.663200px;}
.ws3_c00102{word-spacing:10.720800px;}
.ws33_c00102{word-spacing:11.678400px;}
.ws35_c00102{word-spacing:11.685600px;}
.ws34_c00102{word-spacing:11.743200px;}
.ws32_c00102{word-spacing:14.644800px;}
.ws31_c00102{word-spacing:14.659200px;}
.wsc_c00102{word-spacing:15.638400px;}
.ws19_c00102{word-spacing:15.652800px;}
.ws25_c00102{word-spacing:15.667200px;}
.ws26_c00102{word-spacing:15.696000px;}
.ws18_c00102{word-spacing:15.732000px;}
.wsb_c00102{word-spacing:15.782400px;}
.wsa_c00102{word-spacing:15.832800px;}
.ws2f_c00102{word-spacing:16.905600px;}
.ws30_c00102{word-spacing:16.963200px;}
.wsd_c00102{word-spacing:18.561600px;}
.ws2e_c00102{word-spacing:20.239200px;}
.ws2d_c00102{word-spacing:20.268000px;}
.ws2c_c00102{word-spacing:20.361600px;}
.ws12_c00102{word-spacing:21.816000px;}
.ws21_c00102{word-spacing:33.602400px;}
.ws22_c00102{word-spacing:33.696000px;}
.ws29_c00102{word-spacing:40.492800px;}
._0_c00102{margin-left:-9.730080px;}
._1_c00102{width:1.080000px;}
.fc0_c00102{color:rgb(0,0,0);}
.fs0_c00102{font-size:72.000000px;}
.fs1_c00102{font-size:83.880000px;}
.y0_c00102{bottom:0.000000px;}
.y2_c00102{bottom:46.830450px;}
.y1_c00102{bottom:67.530450px;}
.y20_c00102{bottom:173.820450px;}
.y1f_c00102{bottom:204.870450px;}
.y1e_c00102{bottom:235.920450px;}
.y1d_c00102{bottom:266.970450px;}
.y1c_c00102{bottom:298.020450px;}
.y1b_c00102{bottom:329.070450px;}
.y1a_c00102{bottom:360.120450px;}
.y19_c00102{bottom:391.170450px;}
.y18_c00102{bottom:422.220450px;}
.y17_c00102{bottom:453.270450px;}
.y16_c00102{bottom:484.320450px;}
.y15_c00102{bottom:515.370450px;}
.y14_c00102{bottom:546.420450px;}
.y13_c00102{bottom:577.470450px;}
.y12_c00102{bottom:608.520450px;}
.y11_c00102{bottom:639.570450px;}
.y10_c00102{bottom:670.620450px;}
.yf_c00102{bottom:701.670450px;}
.ye_c00102{bottom:750.720450px;}
.yd_c00102{bottom:781.770450px;}
.yc_c00102{bottom:812.820450px;}
.yb_c00102{bottom:843.870450px;}
.ya_c00102{bottom:874.920450px;}
.y9_c00102{bottom:905.970450px;}
.y8_c00102{bottom:937.020450px;}
.y7_c00102{bottom:968.070450px;}
.y6_c00102{bottom:999.120450px;}
.y5_c00102{bottom:1030.170450px;}
.y4_c00102{bottom:1068.960450px;}
.y3_c00102{bottom:1094.520450px;}
.h1_c00102{height:63.175781px;}
.h3_c00102{height:64.546875px;}
.h4_c00102{height:75.093750px;}
.h2_c00102{height:87.484219px;}
.h0_c00102{height:1263.000000px;}
.w1_c00102{width:892.500000px;}
.w0_c00102{width:892.830000px;}
.x0_c00102{left:0.000000px;}
.x2_c00102{left:170.100000px;}
.x3_c00102{left:251.100000px;}
.x1_c00102{left:738.360000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.lsb_c00102{letter-spacing:-0.134400pt;}
.ls8_c00102{letter-spacing:-0.070400pt;}
.lsc_c00102{letter-spacing:-0.064000pt;}
.ls2_c00102{letter-spacing:-0.057600pt;}
.ls9_c00102{letter-spacing:-0.051200pt;}
.ls3_c00102{letter-spacing:-0.044800pt;}
.ls7_c00102{letter-spacing:-0.038400pt;}
.ls5_c00102{letter-spacing:-0.032000pt;}
.ls6_c00102{letter-spacing:-0.025600pt;}
.lsa_c00102{letter-spacing:-0.019200pt;}
.ls4_c00102{letter-spacing:-0.012800pt;}
.lsd_c00102{letter-spacing:-0.006400pt;}
.ls1_c00102{letter-spacing:0.000000pt;}
.lse_c00102{letter-spacing:0.012800pt;}
.ls0_c00102{letter-spacing:0.059648pt;}
.ws17_c00102{word-spacing:-3.366400pt;}
.ws15_c00102{word-spacing:-3.340800pt;}
.ws16_c00102{word-spacing:-3.328000pt;}
.ws4_c00102{word-spacing:-3.046400pt;}
.ws5_c00102{word-spacing:-3.027200pt;}
.ws11_c00102{word-spacing:-1.772800pt;}
.ws10_c00102{word-spacing:-1.753600pt;}
.ws14_c00102{word-spacing:-1.408000pt;}
.ws1a_c00102{word-spacing:-0.774400pt;}
.ws0_c00102{word-spacing:0.000000pt;}
.ws37_c00102{word-spacing:0.064000pt;}
.ws13_c00102{word-spacing:0.160000pt;}
.ws36_c00102{word-spacing:0.172800pt;}
.wse_c00102{word-spacing:1.702400pt;}
.wsf_c00102{word-spacing:1.811200pt;}
.ws27_c00102{word-spacing:2.713600pt;}
.ws28_c00102{word-spacing:2.726400pt;}
.ws20_c00102{word-spacing:2.982400pt;}
.ws1f_c00102{word-spacing:3.065600pt;}
.ws23_c00102{word-spacing:4.979200pt;}
.ws24_c00102{word-spacing:5.056000pt;}
.ws1c_c00102{word-spacing:5.600000pt;}
.ws7_c00102{word-spacing:5.625600pt;}
.ws1b_c00102{word-spacing:5.632000pt;}
.ws6_c00102{word-spacing:5.638400pt;}
.ws2a_c00102{word-spacing:5.913600pt;}
.ws8_c00102{word-spacing:5.932800pt;}
.ws9_c00102{word-spacing:5.945600pt;}
.ws2b_c00102{word-spacing:6.028800pt;}
.ws1_c00102{word-spacing:8.663872pt;}
.ws1d_c00102{word-spacing:9.452800pt;}
.ws1e_c00102{word-spacing:9.459200pt;}
.ws2_c00102{word-spacing:9.478400pt;}
.ws3_c00102{word-spacing:9.529600pt;}
.ws33_c00102{word-spacing:10.380800pt;}
.ws35_c00102{word-spacing:10.387200pt;}
.ws34_c00102{word-spacing:10.438400pt;}
.ws32_c00102{word-spacing:13.017600pt;}
.ws31_c00102{word-spacing:13.030400pt;}
.wsc_c00102{word-spacing:13.900800pt;}
.ws19_c00102{word-spacing:13.913600pt;}
.ws25_c00102{word-spacing:13.926400pt;}
.ws26_c00102{word-spacing:13.952000pt;}
.ws18_c00102{word-spacing:13.984000pt;}
.wsb_c00102{word-spacing:14.028800pt;}
.wsa_c00102{word-spacing:14.073600pt;}
.ws2f_c00102{word-spacing:15.027200pt;}
.ws30_c00102{word-spacing:15.078400pt;}
.wsd_c00102{word-spacing:16.499200pt;}
.ws2e_c00102{word-spacing:17.990400pt;}
.ws2d_c00102{word-spacing:18.016000pt;}
.ws2c_c00102{word-spacing:18.099200pt;}
.ws12_c00102{word-spacing:19.392000pt;}
.ws21_c00102{word-spacing:29.868800pt;}
.ws22_c00102{word-spacing:29.952000pt;}
.ws29_c00102{word-spacing:35.993600pt;}
._0_c00102{margin-left:-8.648960pt;}
._1_c00102{width:0.960000pt;}
.fs0_c00102{font-size:64.000000pt;}
.fs1_c00102{font-size:74.560000pt;}
.y0_c00102{bottom:0.000000pt;}
.y2_c00102{bottom:41.627067pt;}
.y1_c00102{bottom:60.027067pt;}
.y20_c00102{bottom:154.507067pt;}
.y1f_c00102{bottom:182.107067pt;}
.y1e_c00102{bottom:209.707067pt;}
.y1d_c00102{bottom:237.307067pt;}
.y1c_c00102{bottom:264.907067pt;}
.y1b_c00102{bottom:292.507067pt;}
.y1a_c00102{bottom:320.107067pt;}
.y19_c00102{bottom:347.707067pt;}
.y18_c00102{bottom:375.307067pt;}
.y17_c00102{bottom:402.907067pt;}
.y16_c00102{bottom:430.507067pt;}
.y15_c00102{bottom:458.107067pt;}
.y14_c00102{bottom:485.707067pt;}
.y13_c00102{bottom:513.307067pt;}
.y12_c00102{bottom:540.907067pt;}
.y11_c00102{bottom:568.507067pt;}
.y10_c00102{bottom:596.107067pt;}
.yf_c00102{bottom:623.707067pt;}
.ye_c00102{bottom:667.307067pt;}
.yd_c00102{bottom:694.907067pt;}
.yc_c00102{bottom:722.507067pt;}
.yb_c00102{bottom:750.107067pt;}
.ya_c00102{bottom:777.707067pt;}
.y9_c00102{bottom:805.307067pt;}
.y8_c00102{bottom:832.907067pt;}
.y7_c00102{bottom:860.507067pt;}
.y6_c00102{bottom:888.107067pt;}
.y5_c00102{bottom:915.707067pt;}
.y4_c00102{bottom:950.187067pt;}
.y3_c00102{bottom:972.907067pt;}
.h1_c00102{height:56.156250pt;}
.h3_c00102{height:57.375000pt;}
.h4_c00102{height:66.750000pt;}
.h2_c00102{height:77.763750pt;}
.h0_c00102{height:1122.666667pt;}
.w1_c00102{width:793.333333pt;}
.w0_c00102{width:793.626667pt;}
.x0_c00102{left:0.000000pt;}
.x2_c00102{left:151.200000pt;}
.x3_c00102{left:223.200000pt;}
.x1_c00102{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f886e743a25eea541e653cc0.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.093262;font-style:normal;font-weight:normal;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_c8d81888b8f52528490a587e.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.106934;font-style:normal;font-weight:normal;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_7ea08833d983eaedb1cca9e7.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsa_c00103{letter-spacing:-0.072000px;}
.ls7_c00103{letter-spacing:-0.064800px;}
.ls8_c00103{letter-spacing:-0.057600px;}
.ls1_c00103{letter-spacing:-0.050400px;}
.ls2_c00103{letter-spacing:-0.043200px;}
.ls5_c00103{letter-spacing:-0.036000px;}
.ls4_c00103{letter-spacing:-0.028800px;}
.ls6_c00103{letter-spacing:-0.021600px;}
.ls9_c00103{letter-spacing:-0.014400px;}
.ls3_c00103{letter-spacing:-0.007200px;}
.ls0_c00103{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00103{word-spacing:-1.598400px;}
.ws18_c00103{word-spacing:-0.288000px;}
.ws4_c00103{word-spacing:-0.244800px;}
.ws19_c00103{word-spacing:-0.158400px;}
.ws3_c00103{word-spacing:-0.151200px;}
.ws0_c00103{word-spacing:0.000000px;}
.ws17_c00103{word-spacing:0.014400px;}
.ws8_c00103{word-spacing:0.129600px;}
.ws16_c00103{word-spacing:0.172800px;}
.wsf_c00103{word-spacing:0.180000px;}
.ws1b_c00103{word-spacing:0.187200px;}
.ws2f_c00103{word-spacing:0.208800px;}
.ws1a_c00103{word-spacing:0.216000px;}
.ws2e_c00103{word-spacing:0.273600px;}
.ws2d_c00103{word-spacing:0.914400px;}
.ws23_c00103{word-spacing:1.980000px;}
.ws21_c00103{word-spacing:2.008800px;}
.ws22_c00103{word-spacing:2.376000px;}
.ws9_c00103{word-spacing:2.743200px;}
.ws1_c00103{word-spacing:3.477600px;}
.ws32_c00103{word-spacing:4.147200px;}
.ws25_c00103{word-spacing:4.867200px;}
.ws26_c00103{word-spacing:4.874400px;}
.ws1e_c00103{word-spacing:5.378400px;}
.ws1c_c00103{word-spacing:5.565600px;}
.ws1d_c00103{word-spacing:5.594400px;}
.ws20_c00103{word-spacing:6.285600px;}
.ws1f_c00103{word-spacing:6.307200px;}
.ws13_c00103{word-spacing:7.761600px;}
.ws5_c00103{word-spacing:8.107200px;}
.ws14_c00103{word-spacing:8.467200px;}
.ws15_c00103{word-spacing:8.596800px;}
.ws2a_c00103{word-spacing:10.972800px;}
.ws29_c00103{word-spacing:10.994400px;}
.ws10_c00103{word-spacing:13.896000px;}
.wsb_c00103{word-spacing:14.212800px;}
.wsa_c00103{word-spacing:14.306400px;}
.ws30_c00103{word-spacing:14.587200px;}
.ws31_c00103{word-spacing:14.601600px;}
.wse_c00103{word-spacing:16.020000px;}
.wsc_c00103{word-spacing:16.077600px;}
.wsd_c00103{word-spacing:16.142400px;}
.ws28_c00103{word-spacing:16.380000px;}
.ws27_c00103{word-spacing:16.444800px;}
.ws2c_c00103{word-spacing:21.787200px;}
.ws2b_c00103{word-spacing:21.808800px;}
.ws12_c00103{word-spacing:22.500000px;}
.ws11_c00103{word-spacing:22.514400px;}
.ws7_c00103{word-spacing:26.100000px;}
.ws6_c00103{word-spacing:26.114400px;}
.ws24_c00103{word-spacing:32.198400px;}
._0_c00103{width:1.454400px;}
.fc0_c00103{color:rgb(0,0,0);}
.fs0_c00103{font-size:72.000000px;}
.y0_c00103{bottom:0.000000px;}
.y2_c00103{bottom:46.830450px;}
.y1_c00103{bottom:67.530450px;}
.y22_c00103{bottom:153.480450px;}
.y21_c00103{bottom:184.530450px;}
.y20_c00103{bottom:233.580450px;}
.y1f_c00103{bottom:264.630450px;}
.y1e_c00103{bottom:295.680450px;}
.y1d_c00103{bottom:326.730450px;}
.y1c_c00103{bottom:357.690450px;}
.y1b_c00103{bottom:388.740450px;}
.y1a_c00103{bottom:419.790450px;}
.y19_c00103{bottom:450.840450px;}
.y18_c00103{bottom:481.890450px;}
.y17_c00103{bottom:512.940450px;}
.y16_c00103{bottom:543.990450px;}
.y15_c00103{bottom:575.040450px;}
.y14_c00103{bottom:606.090450px;}
.y13_c00103{bottom:626.790450px;}
.y12_c00103{bottom:647.490450px;}
.y11_c00103{bottom:668.190450px;}
.y10_c00103{bottom:688.890450px;}
.yf_c00103{bottom:709.590450px;}
.ye_c00103{bottom:730.290450px;}
.yd_c00103{bottom:750.990450px;}
.yc_c00103{bottom:800.040450px;}
.yb_c00103{bottom:831.090450px;}
.ya_c00103{bottom:862.140450px;}
.y9_c00103{bottom:893.190450px;}
.y8_c00103{bottom:942.240450px;}
.y7_c00103{bottom:973.290450px;}
.y6_c00103{bottom:1004.340450px;}
.y5_c00103{bottom:1035.390450px;}
.y4_c00103{bottom:1066.440450px;}
.y3_c00103{bottom:1097.490450px;}
.h1_c00103{height:63.175781px;}
.h3_c00103{height:64.546875px;}
.h2_c00103{height:75.093750px;}
.h0_c00103{height:1263.000000px;}
.w1_c00103{width:892.500000px;}
.w0_c00103{width:892.830000px;}
.x0_c00103{left:0.000000px;}
.x2_c00103{left:127.620000px;}
.x3_c00103{left:148.950000px;}
.x1_c00103{left:695.880000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.lsa_c00103{letter-spacing:-0.064000pt;}
.ls7_c00103{letter-spacing:-0.057600pt;}
.ls8_c00103{letter-spacing:-0.051200pt;}
.ls1_c00103{letter-spacing:-0.044800pt;}
.ls2_c00103{letter-spacing:-0.038400pt;}
.ls5_c00103{letter-spacing:-0.032000pt;}
.ls4_c00103{letter-spacing:-0.025600pt;}
.ls6_c00103{letter-spacing:-0.019200pt;}
.ls9_c00103{letter-spacing:-0.012800pt;}
.ls3_c00103{letter-spacing:-0.006400pt;}
.ls0_c00103{letter-spacing:0.000000pt;}
.ws2_c00103{word-spacing:-1.420800pt;}
.ws18_c00103{word-spacing:-0.256000pt;}
.ws4_c00103{word-spacing:-0.217600pt;}
.ws19_c00103{word-spacing:-0.140800pt;}
.ws3_c00103{word-spacing:-0.134400pt;}
.ws0_c00103{word-spacing:0.000000pt;}
.ws17_c00103{word-spacing:0.012800pt;}
.ws8_c00103{word-spacing:0.115200pt;}
.ws16_c00103{word-spacing:0.153600pt;}
.wsf_c00103{word-spacing:0.160000pt;}
.ws1b_c00103{word-spacing:0.166400pt;}
.ws2f_c00103{word-spacing:0.185600pt;}
.ws1a_c00103{word-spacing:0.192000pt;}
.ws2e_c00103{word-spacing:0.243200pt;}
.ws2d_c00103{word-spacing:0.812800pt;}
.ws23_c00103{word-spacing:1.760000pt;}
.ws21_c00103{word-spacing:1.785600pt;}
.ws22_c00103{word-spacing:2.112000pt;}
.ws9_c00103{word-spacing:2.438400pt;}
.ws1_c00103{word-spacing:3.091200pt;}
.ws32_c00103{word-spacing:3.686400pt;}
.ws25_c00103{word-spacing:4.326400pt;}
.ws26_c00103{word-spacing:4.332800pt;}
.ws1e_c00103{word-spacing:4.780800pt;}
.ws1c_c00103{word-spacing:4.947200pt;}
.ws1d_c00103{word-spacing:4.972800pt;}
.ws20_c00103{word-spacing:5.587200pt;}
.ws1f_c00103{word-spacing:5.606400pt;}
.ws13_c00103{word-spacing:6.899200pt;}
.ws5_c00103{word-spacing:7.206400pt;}
.ws14_c00103{word-spacing:7.526400pt;}
.ws15_c00103{word-spacing:7.641600pt;}
.ws2a_c00103{word-spacing:9.753600pt;}
.ws29_c00103{word-spacing:9.772800pt;}
.ws10_c00103{word-spacing:12.352000pt;}
.wsb_c00103{word-spacing:12.633600pt;}
.wsa_c00103{word-spacing:12.716800pt;}
.ws30_c00103{word-spacing:12.966400pt;}
.ws31_c00103{word-spacing:12.979200pt;}
.wse_c00103{word-spacing:14.240000pt;}
.wsc_c00103{word-spacing:14.291200pt;}
.wsd_c00103{word-spacing:14.348800pt;}
.ws28_c00103{word-spacing:14.560000pt;}
.ws27_c00103{word-spacing:14.617600pt;}
.ws2c_c00103{word-spacing:19.366400pt;}
.ws2b_c00103{word-spacing:19.385600pt;}
.ws12_c00103{word-spacing:20.000000pt;}
.ws11_c00103{word-spacing:20.012800pt;}
.ws7_c00103{word-spacing:23.200000pt;}
.ws6_c00103{word-spacing:23.212800pt;}
.ws24_c00103{word-spacing:28.620800pt;}
._0_c00103{width:1.292800pt;}
.fs0_c00103{font-size:64.000000pt;}
.y0_c00103{bottom:0.000000pt;}
.y2_c00103{bottom:41.627067pt;}
.y1_c00103{bottom:60.027067pt;}
.y22_c00103{bottom:136.427067pt;}
.y21_c00103{bottom:164.027067pt;}
.y20_c00103{bottom:207.627067pt;}
.y1f_c00103{bottom:235.227067pt;}
.y1e_c00103{bottom:262.827067pt;}
.y1d_c00103{bottom:290.427067pt;}
.y1c_c00103{bottom:317.947067pt;}
.y1b_c00103{bottom:345.547067pt;}
.y1a_c00103{bottom:373.147067pt;}
.y19_c00103{bottom:400.747067pt;}
.y18_c00103{bottom:428.347067pt;}
.y17_c00103{bottom:455.947067pt;}
.y16_c00103{bottom:483.547067pt;}
.y15_c00103{bottom:511.147067pt;}
.y14_c00103{bottom:538.747067pt;}
.y13_c00103{bottom:557.147067pt;}
.y12_c00103{bottom:575.547067pt;}
.y11_c00103{bottom:593.947067pt;}
.y10_c00103{bottom:612.347067pt;}
.yf_c00103{bottom:630.747067pt;}
.ye_c00103{bottom:649.147067pt;}
.yd_c00103{bottom:667.547067pt;}
.yc_c00103{bottom:711.147067pt;}
.yb_c00103{bottom:738.747067pt;}
.ya_c00103{bottom:766.347067pt;}
.y9_c00103{bottom:793.947067pt;}
.y8_c00103{bottom:837.547067pt;}
.y7_c00103{bottom:865.147067pt;}
.y6_c00103{bottom:892.747067pt;}
.y5_c00103{bottom:920.347067pt;}
.y4_c00103{bottom:947.947067pt;}
.y3_c00103{bottom:975.547067pt;}
.h1_c00103{height:56.156250pt;}
.h3_c00103{height:57.375000pt;}
.h2_c00103{height:66.750000pt;}
.h0_c00103{height:1122.666667pt;}
.w1_c00103{width:793.333333pt;}
.w0_c00103{width:793.626667pt;}
.x0_c00103{left:0.000000pt;}
.x2_c00103{left:113.440000pt;}
.x3_c00103{left:132.400000pt;}
.x1_c00103{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_86b9bc4ed616e644dd2a6be4.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.093262;font-style:normal;font-weight:normal;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_ac85361ee8a8cceddf40bd4d.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:1.106934;font-style:normal;font-weight:normal;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_1d689025a715cb2a23b12147.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00104{letter-spacing:-0.093600px;}
.lsa_c00104{letter-spacing:-0.086400px;}
.ls9_c00104{letter-spacing:-0.079200px;}
.lsd_c00104{letter-spacing:-0.072000px;}
.ls6_c00104{letter-spacing:-0.064800px;}
.ls8_c00104{letter-spacing:-0.057600px;}
.ls7_c00104{letter-spacing:-0.050400px;}
.ls3_c00104{letter-spacing:-0.043200px;}
.ls4_c00104{letter-spacing:-0.036000px;}
.ls1_c00104{letter-spacing:-0.028800px;}
.lsf_c00104{letter-spacing:-0.021600px;}
.lsc_c00104{letter-spacing:-0.014400px;}
.ls5_c00104{letter-spacing:-0.007200px;}
.ls0_c00104{letter-spacing:0.000000px;}
.ls2_c00104{letter-spacing:0.007200px;}
.lse_c00104{letter-spacing:0.036000px;}
.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;}
}
.ws0_c00104{word-spacing:-19.972800px;}
.ws7_c00104{word-spacing:-4.125600px;}
.ws6_c00104{word-spacing:-4.111200px;}
.ws1c_c00104{word-spacing:-3.808800px;}
.ws1b_c00104{word-spacing:-3.722400px;}
.ws4_c00104{word-spacing:-3.412800px;}
.ws5_c00104{word-spacing:-3.398400px;}
.ws17_c00104{word-spacing:-2.318400px;}
.ws2_c00104{word-spacing:-2.023200px;}
.ws14_c00104{word-spacing:-0.201600px;}
.ws13_c00104{word-spacing:-0.144000px;}
.ws1_c00104{word-spacing:0.000000px;}
.ws2b_c00104{word-spacing:0.093600px;}
.ws3_c00104{word-spacing:0.151200px;}
.ws8_c00104{word-spacing:0.165600px;}
.ws1a_c00104{word-spacing:0.172800px;}
.ws21_c00104{word-spacing:0.187200px;}
.ws2c_c00104{word-spacing:0.201600px;}
.ws10_c00104{word-spacing:0.403200px;}
.ws11_c00104{word-spacing:0.568800px;}
.ws12_c00104{word-spacing:0.576000px;}
.ws2e_c00104{word-spacing:0.907200px;}
.ws2d_c00104{word-spacing:0.943200px;}
.ws31_c00104{word-spacing:1.548000px;}
.ws32_c00104{word-spacing:1.663200px;}
.ws1f_c00104{word-spacing:4.125600px;}
.ws20_c00104{word-spacing:4.168800px;}
.ws26_c00104{word-spacing:5.587200px;}
.ws25_c00104{word-spacing:5.608800px;}
.ws27_c00104{word-spacing:7.372800px;}
.ws28_c00104{word-spacing:7.380000px;}
.ws22_c00104{word-spacing:8.892000px;}
.ws15_c00104{word-spacing:9.237600px;}
.ws16_c00104{word-spacing:9.244800px;}
.wsa_c00104{word-spacing:9.900000px;}
.ws9_c00104{word-spacing:9.907200px;}
.ws29_c00104{word-spacing:10.166400px;}
.ws2a_c00104{word-spacing:10.288800px;}
.wsb_c00104{word-spacing:10.303200px;}
.wsc_c00104{word-spacing:10.346400px;}
.wsf_c00104{word-spacing:15.321600px;}
.ws1d_c00104{word-spacing:17.784000px;}
.ws1e_c00104{word-spacing:17.834400px;}
.ws24_c00104{word-spacing:23.565600px;}
.ws23_c00104{word-spacing:23.587200px;}
.ws18_c00104{word-spacing:26.049600px;}
.ws19_c00104{word-spacing:26.121600px;}
.ws2f_c00104{word-spacing:32.220000px;}
.ws30_c00104{word-spacing:32.270400px;}
.wse_c00104{word-spacing:44.719200px;}
.wsd_c00104{word-spacing:44.863200px;}
._0_c00104{width:1.195200px;}
.fc0_c00104{color:rgb(0,0,0);}
.fs0_c00104{font-size:72.000000px;}
.y0_c00104{bottom:0.000000px;}
.y2_c00104{bottom:46.830450px;}
.y1_c00104{bottom:67.530450px;}
.y23_c00104{bottom:135.480450px;}
.y22_c00104{bottom:166.530450px;}
.y21_c00104{bottom:197.580450px;}
.y20_c00104{bottom:246.630450px;}
.y1f_c00104{bottom:277.680450px;}
.y1e_c00104{bottom:308.730450px;}
.y1d_c00104{bottom:339.690450px;}
.y1c_c00104{bottom:360.390450px;}
.y1b_c00104{bottom:381.090450px;}
.y1a_c00104{bottom:401.790450px;}
.y19_c00104{bottom:422.490450px;}
.y18_c00104{bottom:443.190450px;}
.y17_c00104{bottom:463.890450px;}
.y16_c00104{bottom:484.590450px;}
.y15_c00104{bottom:505.290450px;}
.y14_c00104{bottom:525.990450px;}
.y13_c00104{bottom:546.690450px;}
.y12_c00104{bottom:595.740450px;}
.y11_c00104{bottom:626.790450px;}
.y10_c00104{bottom:657.840450px;}
.yf_c00104{bottom:688.890450px;}
.ye_c00104{bottom:719.940450px;}
.yd_c00104{bottom:750.990450px;}
.yc_c00104{bottom:782.040450px;}
.yb_c00104{bottom:813.090450px;}
.ya_c00104{bottom:844.140450px;}
.y9_c00104{bottom:875.190450px;}
.y8_c00104{bottom:906.240450px;}
.y7_c00104{bottom:955.290450px;}
.y6_c00104{bottom:986.340450px;}
.y5_c00104{bottom:1017.390450px;}
.y4_c00104{bottom:1066.440450px;}
.y3_c00104{bottom:1097.490450px;}
.h1_c00104{height:63.175781px;}
.h2_c00104{height:64.546875px;}
.h3_c00104{height:75.093750px;}
.h0_c00104{height:1263.000000px;}
.w1_c00104{width:892.500000px;}
.w0_c00104{width:892.830000px;}
.x0_c00104{left:0.000000px;}
.x2_c00104{left:170.100000px;}
.x3_c00104{left:191.430000px;}
.x1_c00104{left:738.360000px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.lsb_c00104{letter-spacing:-0.083200pt;}
.lsa_c00104{letter-spacing:-0.076800pt;}
.ls9_c00104{letter-spacing:-0.070400pt;}
.lsd_c00104{letter-spacing:-0.064000pt;}
.ls6_c00104{letter-spacing:-0.057600pt;}
.ls8_c00104{letter-spacing:-0.051200pt;}
.ls7_c00104{letter-spacing:-0.044800pt;}
.ls3_c00104{letter-spacing:-0.038400pt;}
.ls4_c00104{letter-spacing:-0.032000pt;}
.ls1_c00104{letter-spacing:-0.025600pt;}
.lsf_c00104{letter-spacing:-0.019200pt;}
.lsc_c00104{letter-spacing:-0.012800pt;}
.ls5_c00104{letter-spacing:-0.006400pt;}
.ls0_c00104{letter-spacing:0.000000pt;}
.ls2_c00104{letter-spacing:0.006400pt;}
.lse_c00104{letter-spacing:0.032000pt;}
.ws0_c00104{word-spacing:-17.753600pt;}
.ws7_c00104{word-spacing:-3.667200pt;}
.ws6_c00104{word-spacing:-3.654400pt;}
.ws1c_c00104{word-spacing:-3.385600pt;}
.ws1b_c00104{word-spacing:-3.308800pt;}
.ws4_c00104{word-spacing:-3.033600pt;}
.ws5_c00104{word-spacing:-3.020800pt;}
.ws17_c00104{word-spacing:-2.060800pt;}
.ws2_c00104{word-spacing:-1.798400pt;}
.ws14_c00104{word-spacing:-0.179200pt;}
.ws13_c00104{word-spacing:-0.128000pt;}
.ws1_c00104{word-spacing:0.000000pt;}
.ws2b_c00104{word-spacing:0.083200pt;}
.ws3_c00104{word-spacing:0.134400pt;}
.ws8_c00104{word-spacing:0.147200pt;}
.ws1a_c00104{word-spacing:0.153600pt;}
.ws21_c00104{word-spacing:0.166400pt;}
.ws2c_c00104{word-spacing:0.179200pt;}
.ws10_c00104{word-spacing:0.358400pt;}
.ws11_c00104{word-spacing:0.505600pt;}
.ws12_c00104{word-spacing:0.512000pt;}
.ws2e_c00104{word-spacing:0.806400pt;}
.ws2d_c00104{word-spacing:0.838400pt;}
.ws31_c00104{word-spacing:1.376000pt;}
.ws32_c00104{word-spacing:1.478400pt;}
.ws1f_c00104{word-spacing:3.667200pt;}
.ws20_c00104{word-spacing:3.705600pt;}
.ws26_c00104{word-spacing:4.966400pt;}
.ws25_c00104{word-spacing:4.985600pt;}
.ws27_c00104{word-spacing:6.553600pt;}
.ws28_c00104{word-spacing:6.560000pt;}
.ws22_c00104{word-spacing:7.904000pt;}
.ws15_c00104{word-spacing:8.211200pt;}
.ws16_c00104{word-spacing:8.217600pt;}
.wsa_c00104{word-spacing:8.800000pt;}
.ws9_c00104{word-spacing:8.806400pt;}
.ws29_c00104{word-spacing:9.036800pt;}
.ws2a_c00104{word-spacing:9.145600pt;}
.wsb_c00104{word-spacing:9.158400pt;}
.wsc_c00104{word-spacing:9.196800pt;}
.wsf_c00104{word-spacing:13.619200pt;}
.ws1d_c00104{word-spacing:15.808000pt;}
.ws1e_c00104{word-spacing:15.852800pt;}
.ws24_c00104{word-spacing:20.947200pt;}
.ws23_c00104{word-spacing:20.966400pt;}
.ws18_c00104{word-spacing:23.155200pt;}
.ws19_c00104{word-spacing:23.219200pt;}
.ws2f_c00104{word-spacing:28.640000pt;}
.ws30_c00104{word-spacing:28.684800pt;}
.wse_c00104{word-spacing:39.750400pt;}
.wsd_c00104{word-spacing:39.878400pt;}
._0_c00104{width:1.062400pt;}
.fs0_c00104{font-size:64.000000pt;}
.y0_c00104{bottom:0.000000pt;}
.y2_c00104{bottom:41.627067pt;}
.y1_c00104{bottom:60.027067pt;}
.y23_c00104{bottom:120.427067pt;}
.y22_c00104{bottom:148.027067pt;}
.y21_c00104{bottom:175.627067pt;}
.y20_c00104{bottom:219.227067pt;}
.y1f_c00104{bottom:246.827067pt;}
.y1e_c00104{bottom:274.427067pt;}
.y1d_c00104{bottom:301.947067pt;}
.y1c_c00104{bottom:320.347067pt;}
.y1b_c00104{bottom:338.747067pt;}
.y1a_c00104{bottom:357.147067pt;}
.y19_c00104{bottom:375.547067pt;}
.y18_c00104{bottom:393.947067pt;}
.y17_c00104{bottom:412.347067pt;}
.y16_c00104{bottom:430.747067pt;}
.y15_c00104{bottom:449.147067pt;}
.y14_c00104{bottom:467.547067pt;}
.y13_c00104{bottom:485.947067pt;}
.y12_c00104{bottom:529.547067pt;}
.y11_c00104{bottom:557.147067pt;}
.y10_c00104{bottom:584.747067pt;}
.yf_c00104{bottom:612.347067pt;}
.ye_c00104{bottom:639.947067pt;}
.yd_c00104{bottom:667.547067pt;}
.yc_c00104{bottom:695.147067pt;}
.yb_c00104{bottom:722.747067pt;}
.ya_c00104{bottom:750.347067pt;}
.y9_c00104{bottom:777.947067pt;}
.y8_c00104{bottom:805.547067pt;}
.y7_c00104{bottom:849.147067pt;}
.y6_c00104{bottom:876.747067pt;}
.y5_c00104{bottom:904.347067pt;}
.y4_c00104{bottom:947.947067pt;}
.y3_c00104{bottom:975.547067pt;}
.h1_c00104{height:56.156250pt;}
.h2_c00104{height:57.375000pt;}
.h3_c00104{height:66.750000pt;}
.h0_c00104{height:1122.666667pt;}
.w1_c00104{width:793.333333pt;}
.w0_c00104{width:793.626667pt;}
.x0_c00104{left:0.000000pt;}
.x2_c00104{left:151.200000pt;}
.x3_c00104{left:170.160000pt;}
.x1_c00104{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_30a7b8499dd7c9adc5c7cc8c.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.093262;font-style:normal;font-weight:normal;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_75025017a8b16b2f6ae84173.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.106934;font-style:normal;font-weight:normal;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_eecea5ca7a5923a406b3c193.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00105{vertical-align:0.000000px;}
.lsc_c00105{letter-spacing:-0.086400px;}
.lsd_c00105{letter-spacing:-0.079200px;}
.lsb_c00105{letter-spacing:-0.072000px;}
.ls8_c00105{letter-spacing:-0.064800px;}
.ls3_c00105{letter-spacing:-0.057600px;}
.ls7_c00105{letter-spacing:-0.050400px;}
.ls5_c00105{letter-spacing:-0.043200px;}
.ls1_c00105{letter-spacing:-0.036000px;}
.ls9_c00105{letter-spacing:-0.028800px;}
.ls2_c00105{letter-spacing:-0.021600px;}
.ls4_c00105{letter-spacing:-0.014400px;}
.lsa_c00105{letter-spacing:-0.007200px;}
.ls0_c00105{letter-spacing:0.000000px;}
.ls6_c00105{letter-spacing:0.007200px;}
.lse_c00105{letter-spacing:0.158400px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00105{word-spacing:-3.045600px;}
.ws2_c00105{word-spacing:-2.937600px;}
.ws1e_c00105{word-spacing:-2.289600px;}
.ws1f_c00105{word-spacing:-2.275200px;}
.ws3_c00105{word-spacing:-0.144000px;}
.ws0_c00105{word-spacing:0.000000px;}
.wsa_c00105{word-spacing:0.151200px;}
.ws19_c00105{word-spacing:0.165600px;}
.ws1b_c00105{word-spacing:0.187200px;}
.ws1d_c00105{word-spacing:0.907200px;}
.ws1c_c00105{word-spacing:0.936000px;}
.ws16_c00105{word-spacing:1.936800px;}
.ws13_c00105{word-spacing:2.008800px;}
.ws17_c00105{word-spacing:2.016000px;}
.ws1a_c00105{word-spacing:2.707200px;}
.ws20_c00105{word-spacing:2.714400px;}
.wse_c00105{word-spacing:3.722400px;}
.wsd_c00105{word-spacing:3.823200px;}
.ws28_c00105{word-spacing:5.601600px;}
.ws14_c00105{word-spacing:5.860800px;}
.ws15_c00105{word-spacing:5.911200px;}
.ws22_c00105{word-spacing:6.969600px;}
.ws21_c00105{word-spacing:7.027200px;}
.ws9_c00105{word-spacing:8.812800px;}
.ws8_c00105{word-spacing:9.014400px;}
.ws5_c00105{word-spacing:9.561600px;}
.ws25_c00105{word-spacing:9.892800px;}
.ws24_c00105{word-spacing:9.914400px;}
.wsc_c00105{word-spacing:10.288800px;}
.wsb_c00105{word-spacing:10.296000px;}
.ws4_c00105{word-spacing:13.132800px;}
.ws30_c00105{word-spacing:13.154400px;}
.ws2f_c00105{word-spacing:13.183200px;}
.ws2e_c00105{word-spacing:13.860000px;}
.ws2d_c00105{word-spacing:13.939200px;}
.ws12_c00105{word-spacing:14.234400px;}
.ws11_c00105{word-spacing:14.328000px;}
.ws18_c00105{word-spacing:14.644800px;}
.ws2b_c00105{word-spacing:19.612800px;}
.ws2c_c00105{word-spacing:19.620000px;}
.wsf_c00105{word-spacing:19.929600px;}
.ws10_c00105{word-spacing:19.987200px;}
.ws23_c00105{word-spacing:22.147200px;}
.ws29_c00105{word-spacing:24.235200px;}
.ws2a_c00105{word-spacing:24.357600px;}
.ws7_c00105{word-spacing:25.056000px;}
.ws27_c00105{word-spacing:26.640000px;}
.ws26_c00105{word-spacing:26.863200px;}
.ws31_c00105{word-spacing:28.274400px;}
.ws32_c00105{word-spacing:28.281600px;}
.ws6_c00105{word-spacing:30.060000px;}
._0_c00105{width:1.245600px;}
.fc0_c00105{color:rgb(0,0,0);}
.fs0_c00105{font-size:72.000000px;}
.y0_c00105{bottom:0.000000px;}
.y2_c00105{bottom:46.830450px;}
.y1_c00105{bottom:67.530450px;}
.y25_c00105{bottom:137.730450px;}
.y24_c00105{bottom:168.780450px;}
.y23_c00105{bottom:199.830450px;}
.y22_c00105{bottom:230.880450px;}
.y21_c00105{bottom:261.930450px;}
.y20_c00105{bottom:292.980450px;}
.y1f_c00105{bottom:324.030450px;}
.y1e_c00105{bottom:355.080450px;}
.y1d_c00105{bottom:386.040450px;}
.y1c_c00105{bottom:417.090450px;}
.y1b_c00105{bottom:448.140450px;}
.y1a_c00105{bottom:479.190450px;}
.y19_c00105{bottom:510.240450px;}
.y18_c00105{bottom:541.290450px;}
.y17_c00105{bottom:572.340450px;}
.y16_c00105{bottom:603.390450px;}
.y15_c00105{bottom:624.090450px;}
.y14_c00105{bottom:644.790450px;}
.y13_c00105{bottom:665.490450px;}
.y12_c00105{bottom:686.190450px;}
.y11_c00105{bottom:706.890450px;}
.y10_c00105{bottom:727.590450px;}
.yf_c00105{bottom:748.290450px;}
.ye_c00105{bottom:768.990450px;}
.yd_c00105{bottom:789.690450px;}
.yc_c00105{bottom:810.390450px;}
.yb_c00105{bottom:831.090450px;}
.ya_c00105{bottom:880.140450px;}
.y9_c00105{bottom:911.190450px;}
.y8_c00105{bottom:942.240450px;}
.y7_c00105{bottom:973.290450px;}
.y6_c00105{bottom:1004.340450px;}
.y5_c00105{bottom:1035.390450px;}
.y4_c00105{bottom:1066.440450px;}
.y3_c00105{bottom:1097.490450px;}
.h1_c00105{height:63.175781px;}
.h2_c00105{height:64.546875px;}
.h3_c00105{height:75.093750px;}
.h0_c00105{height:1263.000000px;}
.w1_c00105{width:892.500000px;}
.w0_c00105{width:892.830000px;}
.x0_c00105{left:0.000000px;}
.x2_c00105{left:127.620000px;}
.x3_c00105{left:148.950000px;}
.x1_c00105{left:695.880000px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.lsc_c00105{letter-spacing:-0.076800pt;}
.lsd_c00105{letter-spacing:-0.070400pt;}
.lsb_c00105{letter-spacing:-0.064000pt;}
.ls8_c00105{letter-spacing:-0.057600pt;}
.ls3_c00105{letter-spacing:-0.051200pt;}
.ls7_c00105{letter-spacing:-0.044800pt;}
.ls5_c00105{letter-spacing:-0.038400pt;}
.ls1_c00105{letter-spacing:-0.032000pt;}
.ls9_c00105{letter-spacing:-0.025600pt;}
.ls2_c00105{letter-spacing:-0.019200pt;}
.ls4_c00105{letter-spacing:-0.012800pt;}
.lsa_c00105{letter-spacing:-0.006400pt;}
.ls0_c00105{letter-spacing:0.000000pt;}
.ls6_c00105{letter-spacing:0.006400pt;}
.lse_c00105{letter-spacing:0.140800pt;}
.ws1_c00105{word-spacing:-2.707200pt;}
.ws2_c00105{word-spacing:-2.611200pt;}
.ws1e_c00105{word-spacing:-2.035200pt;}
.ws1f_c00105{word-spacing:-2.022400pt;}
.ws3_c00105{word-spacing:-0.128000pt;}
.ws0_c00105{word-spacing:0.000000pt;}
.wsa_c00105{word-spacing:0.134400pt;}
.ws19_c00105{word-spacing:0.147200pt;}
.ws1b_c00105{word-spacing:0.166400pt;}
.ws1d_c00105{word-spacing:0.806400pt;}
.ws1c_c00105{word-spacing:0.832000pt;}
.ws16_c00105{word-spacing:1.721600pt;}
.ws13_c00105{word-spacing:1.785600pt;}
.ws17_c00105{word-spacing:1.792000pt;}
.ws1a_c00105{word-spacing:2.406400pt;}
.ws20_c00105{word-spacing:2.412800pt;}
.wse_c00105{word-spacing:3.308800pt;}
.wsd_c00105{word-spacing:3.398400pt;}
.ws28_c00105{word-spacing:4.979200pt;}
.ws14_c00105{word-spacing:5.209600pt;}
.ws15_c00105{word-spacing:5.254400pt;}
.ws22_c00105{word-spacing:6.195200pt;}
.ws21_c00105{word-spacing:6.246400pt;}
.ws9_c00105{word-spacing:7.833600pt;}
.ws8_c00105{word-spacing:8.012800pt;}
.ws5_c00105{word-spacing:8.499200pt;}
.ws25_c00105{word-spacing:8.793600pt;}
.ws24_c00105{word-spacing:8.812800pt;}
.wsc_c00105{word-spacing:9.145600pt;}
.wsb_c00105{word-spacing:9.152000pt;}
.ws4_c00105{word-spacing:11.673600pt;}
.ws30_c00105{word-spacing:11.692800pt;}
.ws2f_c00105{word-spacing:11.718400pt;}
.ws2e_c00105{word-spacing:12.320000pt;}
.ws2d_c00105{word-spacing:12.390400pt;}
.ws12_c00105{word-spacing:12.652800pt;}
.ws11_c00105{word-spacing:12.736000pt;}
.ws18_c00105{word-spacing:13.017600pt;}
.ws2b_c00105{word-spacing:17.433600pt;}
.ws2c_c00105{word-spacing:17.440000pt;}
.wsf_c00105{word-spacing:17.715200pt;}
.ws10_c00105{word-spacing:17.766400pt;}
.ws23_c00105{word-spacing:19.686400pt;}
.ws29_c00105{word-spacing:21.542400pt;}
.ws2a_c00105{word-spacing:21.651200pt;}
.ws7_c00105{word-spacing:22.272000pt;}
.ws27_c00105{word-spacing:23.680000pt;}
.ws26_c00105{word-spacing:23.878400pt;}
.ws31_c00105{word-spacing:25.132800pt;}
.ws32_c00105{word-spacing:25.139200pt;}
.ws6_c00105{word-spacing:26.720000pt;}
._0_c00105{width:1.107200pt;}
.fs0_c00105{font-size:64.000000pt;}
.y0_c00105{bottom:0.000000pt;}
.y2_c00105{bottom:41.627067pt;}
.y1_c00105{bottom:60.027067pt;}
.y25_c00105{bottom:122.427067pt;}
.y24_c00105{bottom:150.027067pt;}
.y23_c00105{bottom:177.627067pt;}
.y22_c00105{bottom:205.227067pt;}
.y21_c00105{bottom:232.827067pt;}
.y20_c00105{bottom:260.427067pt;}
.y1f_c00105{bottom:288.027067pt;}
.y1e_c00105{bottom:315.627067pt;}
.y1d_c00105{bottom:343.147067pt;}
.y1c_c00105{bottom:370.747067pt;}
.y1b_c00105{bottom:398.347067pt;}
.y1a_c00105{bottom:425.947067pt;}
.y19_c00105{bottom:453.547067pt;}
.y18_c00105{bottom:481.147067pt;}
.y17_c00105{bottom:508.747067pt;}
.y16_c00105{bottom:536.347067pt;}
.y15_c00105{bottom:554.747067pt;}
.y14_c00105{bottom:573.147067pt;}
.y13_c00105{bottom:591.547067pt;}
.y12_c00105{bottom:609.947067pt;}
.y11_c00105{bottom:628.347067pt;}
.y10_c00105{bottom:646.747067pt;}
.yf_c00105{bottom:665.147067pt;}
.ye_c00105{bottom:683.547067pt;}
.yd_c00105{bottom:701.947067pt;}
.yc_c00105{bottom:720.347067pt;}
.yb_c00105{bottom:738.747067pt;}
.ya_c00105{bottom:782.347067pt;}
.y9_c00105{bottom:809.947067pt;}
.y8_c00105{bottom:837.547067pt;}
.y7_c00105{bottom:865.147067pt;}
.y6_c00105{bottom:892.747067pt;}
.y5_c00105{bottom:920.347067pt;}
.y4_c00105{bottom:947.947067pt;}
.y3_c00105{bottom:975.547067pt;}
.h1_c00105{height:56.156250pt;}
.h2_c00105{height:57.375000pt;}
.h3_c00105{height:66.750000pt;}
.h0_c00105{height:1122.666667pt;}
.w1_c00105{width:793.333333pt;}
.w0_c00105{width:793.626667pt;}
.x0_c00105{left:0.000000pt;}
.x2_c00105{left:113.440000pt;}
.x3_c00105{left:132.400000pt;}
.x1_c00105{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4c07241f03539b19bfdfb706.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.093262;font-style:normal;font-weight:normal;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_bce73bfe2703a8e056dd1e80.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.lsc_c00106{letter-spacing:-0.108000px;}
.ls5_c00106{letter-spacing:-0.064800px;}
.ls2_c00106{letter-spacing:-0.057600px;}
.lsb_c00106{letter-spacing:-0.050400px;}
.ls1_c00106{letter-spacing:-0.043200px;}
.ls8_c00106{letter-spacing:-0.036000px;}
.ls7_c00106{letter-spacing:-0.028800px;}
.ls6_c00106{letter-spacing:-0.021600px;}
.ls4_c00106{letter-spacing:-0.014400px;}
.ls3_c00106{letter-spacing:-0.007200px;}
.ls0_c00106{letter-spacing:0.000000px;}
.lsa_c00106{letter-spacing:0.007200px;}
.ls9_c00106{letter-spacing:0.014400px;}
.lsd_c00106{letter-spacing:0.036000px;}
.lse_c00106{letter-spacing:843.998400px;}
.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;}
}
.ws32_c00106{word-spacing:-1.684800px;}
.ws33_c00106{word-spacing:-1.512000px;}
.ws20_c00106{word-spacing:-1.252800px;}
.ws1f_c00106{word-spacing:-1.238400px;}
.ws19_c00106{word-spacing:-0.892800px;}
.ws8_c00106{word-spacing:-0.640800px;}
.ws9_c00106{word-spacing:-0.604800px;}
.ws1b_c00106{word-spacing:-0.475200px;}
.ws1c_c00106{word-spacing:-0.453600px;}
.ws31_c00106{word-spacing:-0.180000px;}
.ws0_c00106{word-spacing:0.000000px;}
.ws18_c00106{word-spacing:0.144000px;}
.ws2d_c00106{word-spacing:0.151200px;}
.ws29_c00106{word-spacing:0.172800px;}
.wsa_c00106{word-spacing:0.180000px;}
.ws2a_c00106{word-spacing:0.194400px;}
.ws1a_c00106{word-spacing:0.554400px;}
.ws4_c00106{word-spacing:1.432800px;}
.ws5_c00106{word-spacing:1.598400px;}
.ws23_c00106{word-spacing:1.994400px;}
.ws24_c00106{word-spacing:2.008800px;}
.ws17_c00106{word-spacing:2.016000px;}
.ws26_c00106{word-spacing:2.368800px;}
.ws25_c00106{word-spacing:2.426400px;}
.ws15_c00106{word-spacing:2.584800px;}
.ws2c_c00106{word-spacing:2.700000px;}
.ws14_c00106{word-spacing:2.707200px;}
.ws2b_c00106{word-spacing:2.736000px;}
.ws13_c00106{word-spacing:3.081600px;}
.ws12_c00106{word-spacing:3.312000px;}
.ws1d_c00106{word-spacing:3.348000px;}
.ws1e_c00106{word-spacing:3.384000px;}
.ws11_c00106{word-spacing:3.441600px;}
.ws3_c00106{word-spacing:4.485600px;}
.ws1_c00106{word-spacing:4.521600px;}
.ws2_c00106{word-spacing:4.651200px;}
.ws16_c00106{word-spacing:6.307200px;}
.wsc_c00106{word-spacing:10.569600px;}
.wsb_c00106{word-spacing:10.713600px;}
.ws27_c00106{word-spacing:11.700000px;}
.ws28_c00106{word-spacing:11.714400px;}
.wsf_c00106{word-spacing:13.132800px;}
.ws10_c00106{word-spacing:13.226400px;}
.ws30_c00106{word-spacing:16.358400px;}
.ws2f_c00106{word-spacing:16.380000px;}
.ws22_c00106{word-spacing:17.791200px;}
.ws21_c00106{word-spacing:17.820000px;}
.wsd_c00106{word-spacing:19.980000px;}
.wse_c00106{word-spacing:20.001600px;}
.ws2e_c00106{word-spacing:26.136000px;}
.ws7_c00106{word-spacing:43.308000px;}
.ws6_c00106{word-spacing:43.423200px;}
._0_c00106{width:1.195200px;}
.fc0_c00106{color:rgb(0,0,0);}
.fs0_c00106{font-size:72.000000px;}
.y0_c00106{bottom:0.000000px;}
.y2_c00106{bottom:46.830450px;}
.y1_c00106{bottom:67.530450px;}
.y24_c00106{bottom:174.180450px;}
.y23_c00106{bottom:194.880450px;}
.y22_c00106{bottom:215.580450px;}
.y21_c00106{bottom:236.280450px;}
.y20_c00106{bottom:256.980450px;}
.y1f_c00106{bottom:277.680450px;}
.y1e_c00106{bottom:326.730450px;}
.y1d_c00106{bottom:357.690450px;}
.y1c_c00106{bottom:388.740450px;}
.y1b_c00106{bottom:419.790450px;}
.y1a_c00106{bottom:450.840450px;}
.y19_c00106{bottom:481.890450px;}
.y18_c00106{bottom:512.940450px;}
.y17_c00106{bottom:543.990450px;}
.y16_c00106{bottom:575.040450px;}
.y15_c00106{bottom:624.090450px;}
.y14_c00106{bottom:655.140450px;}
.y13_c00106{bottom:686.190450px;}
.y12_c00106{bottom:717.240450px;}
.y11_c00106{bottom:737.940450px;}
.y10_c00106{bottom:758.640450px;}
.yf_c00106{bottom:779.340450px;}
.ye_c00106{bottom:800.040450px;}
.yd_c00106{bottom:820.740450px;}
.yc_c00106{bottom:841.440450px;}
.yb_c00106{bottom:862.140450px;}
.ya_c00106{bottom:882.840450px;}
.y9_c00106{bottom:903.540450px;}
.y8_c00106{bottom:924.240450px;}
.y7_c00106{bottom:973.290450px;}
.y6_c00106{bottom:1004.340450px;}
.y5_c00106{bottom:1035.390450px;}
.y4_c00106{bottom:1066.440450px;}
.y3_c00106{bottom:1097.490450px;}
.h1_c00106{height:63.175781px;}
.h2_c00106{height:64.546875px;}
.h0_c00106{height:1263.000000px;}
.w1_c00106{width:892.500000px;}
.w0_c00106{width:892.830000px;}
.x0_c00106{left:0.000000px;}
.x2_c00106{left:170.100000px;}
.x3_c00106{left:191.430000px;}
.x1_c00106{left:738.360000px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.lsc_c00106{letter-spacing:-0.096000pt;}
.ls5_c00106{letter-spacing:-0.057600pt;}
.ls2_c00106{letter-spacing:-0.051200pt;}
.lsb_c00106{letter-spacing:-0.044800pt;}
.ls1_c00106{letter-spacing:-0.038400pt;}
.ls8_c00106{letter-spacing:-0.032000pt;}
.ls7_c00106{letter-spacing:-0.025600pt;}
.ls6_c00106{letter-spacing:-0.019200pt;}
.ls4_c00106{letter-spacing:-0.012800pt;}
.ls3_c00106{letter-spacing:-0.006400pt;}
.ls0_c00106{letter-spacing:0.000000pt;}
.lsa_c00106{letter-spacing:0.006400pt;}
.ls9_c00106{letter-spacing:0.012800pt;}
.lsd_c00106{letter-spacing:0.032000pt;}
.lse_c00106{letter-spacing:750.220800pt;}
.ws32_c00106{word-spacing:-1.497600pt;}
.ws33_c00106{word-spacing:-1.344000pt;}
.ws20_c00106{word-spacing:-1.113600pt;}
.ws1f_c00106{word-spacing:-1.100800pt;}
.ws19_c00106{word-spacing:-0.793600pt;}
.ws8_c00106{word-spacing:-0.569600pt;}
.ws9_c00106{word-spacing:-0.537600pt;}
.ws1b_c00106{word-spacing:-0.422400pt;}
.ws1c_c00106{word-spacing:-0.403200pt;}
.ws31_c00106{word-spacing:-0.160000pt;}
.ws0_c00106{word-spacing:0.000000pt;}
.ws18_c00106{word-spacing:0.128000pt;}
.ws2d_c00106{word-spacing:0.134400pt;}
.ws29_c00106{word-spacing:0.153600pt;}
.wsa_c00106{word-spacing:0.160000pt;}
.ws2a_c00106{word-spacing:0.172800pt;}
.ws1a_c00106{word-spacing:0.492800pt;}
.ws4_c00106{word-spacing:1.273600pt;}
.ws5_c00106{word-spacing:1.420800pt;}
.ws23_c00106{word-spacing:1.772800pt;}
.ws24_c00106{word-spacing:1.785600pt;}
.ws17_c00106{word-spacing:1.792000pt;}
.ws26_c00106{word-spacing:2.105600pt;}
.ws25_c00106{word-spacing:2.156800pt;}
.ws15_c00106{word-spacing:2.297600pt;}
.ws2c_c00106{word-spacing:2.400000pt;}
.ws14_c00106{word-spacing:2.406400pt;}
.ws2b_c00106{word-spacing:2.432000pt;}
.ws13_c00106{word-spacing:2.739200pt;}
.ws12_c00106{word-spacing:2.944000pt;}
.ws1d_c00106{word-spacing:2.976000pt;}
.ws1e_c00106{word-spacing:3.008000pt;}
.ws11_c00106{word-spacing:3.059200pt;}
.ws3_c00106{word-spacing:3.987200pt;}
.ws1_c00106{word-spacing:4.019200pt;}
.ws2_c00106{word-spacing:4.134400pt;}
.ws16_c00106{word-spacing:5.606400pt;}
.wsc_c00106{word-spacing:9.395200pt;}
.wsb_c00106{word-spacing:9.523200pt;}
.ws27_c00106{word-spacing:10.400000pt;}
.ws28_c00106{word-spacing:10.412800pt;}
.wsf_c00106{word-spacing:11.673600pt;}
.ws10_c00106{word-spacing:11.756800pt;}
.ws30_c00106{word-spacing:14.540800pt;}
.ws2f_c00106{word-spacing:14.560000pt;}
.ws22_c00106{word-spacing:15.814400pt;}
.ws21_c00106{word-spacing:15.840000pt;}
.wsd_c00106{word-spacing:17.760000pt;}
.wse_c00106{word-spacing:17.779200pt;}
.ws2e_c00106{word-spacing:23.232000pt;}
.ws7_c00106{word-spacing:38.496000pt;}
.ws6_c00106{word-spacing:38.598400pt;}
._0_c00106{width:1.062400pt;}
.fs0_c00106{font-size:64.000000pt;}
.y0_c00106{bottom:0.000000pt;}
.y2_c00106{bottom:41.627067pt;}
.y1_c00106{bottom:60.027067pt;}
.y24_c00106{bottom:154.827067pt;}
.y23_c00106{bottom:173.227067pt;}
.y22_c00106{bottom:191.627067pt;}
.y21_c00106{bottom:210.027067pt;}
.y20_c00106{bottom:228.427067pt;}
.y1f_c00106{bottom:246.827067pt;}
.y1e_c00106{bottom:290.427067pt;}
.y1d_c00106{bottom:317.947067pt;}
.y1c_c00106{bottom:345.547067pt;}
.y1b_c00106{bottom:373.147067pt;}
.y1a_c00106{bottom:400.747067pt;}
.y19_c00106{bottom:428.347067pt;}
.y18_c00106{bottom:455.947067pt;}
.y17_c00106{bottom:483.547067pt;}
.y16_c00106{bottom:511.147067pt;}
.y15_c00106{bottom:554.747067pt;}
.y14_c00106{bottom:582.347067pt;}
.y13_c00106{bottom:609.947067pt;}
.y12_c00106{bottom:637.547067pt;}
.y11_c00106{bottom:655.947067pt;}
.y10_c00106{bottom:674.347067pt;}
.yf_c00106{bottom:692.747067pt;}
.ye_c00106{bottom:711.147067pt;}
.yd_c00106{bottom:729.547067pt;}
.yc_c00106{bottom:747.947067pt;}
.yb_c00106{bottom:766.347067pt;}
.ya_c00106{bottom:784.747067pt;}
.y9_c00106{bottom:803.147067pt;}
.y8_c00106{bottom:821.547067pt;}
.y7_c00106{bottom:865.147067pt;}
.y6_c00106{bottom:892.747067pt;}
.y5_c00106{bottom:920.347067pt;}
.y4_c00106{bottom:947.947067pt;}
.y3_c00106{bottom:975.547067pt;}
.h1_c00106{height:56.156250pt;}
.h2_c00106{height:57.375000pt;}
.h0_c00106{height:1122.666667pt;}
.w1_c00106{width:793.333333pt;}
.w0_c00106{width:793.626667pt;}
.x0_c00106{left:0.000000pt;}
.x2_c00106{left:151.200000pt;}
.x3_c00106{left:170.160000pt;}
.x1_c00106{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_38744ba4030b3bd6283436b7.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.106934;font-style: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;}
.ls0_c00107{letter-spacing:0.000000px;}
.ls1_c00107{letter-spacing:843.998400px;}
.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;}
}
.ws0_c00107{word-spacing:0.000000px;}
.fc0_c00107{color:rgb(0,0,0);}
.fs0_c00107{font-size:72.000000px;}
.y0_c00107{bottom:0.000000px;}
.y2_c00107{bottom:46.830450px;}
.y1_c00107{bottom:67.530450px;}
.y3_c00107{bottom:1097.490450px;}
.h1_c00107{height:63.175781px;}
.h2_c00107{height:64.546875px;}
.h0_c00107{height:1263.000000px;}
.w1_c00107{width:892.500000px;}
.w0_c00107{width:892.830000px;}
.x0_c00107{left:0.000000px;}
.x2_c00107{left:127.620000px;}
.x1_c00107{left:695.880000px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls0_c00107{letter-spacing:0.000000pt;}
.ls1_c00107{letter-spacing:750.220800pt;}
.ws0_c00107{word-spacing:0.000000pt;}
.fs0_c00107{font-size:64.000000pt;}
.y0_c00107{bottom:0.000000pt;}
.y2_c00107{bottom:41.627067pt;}
.y1_c00107{bottom:60.027067pt;}
.y3_c00107{bottom:975.547067pt;}
.h1_c00107{height:56.156250pt;}
.h2_c00107{height:57.375000pt;}
.h0_c00107{height:1122.666667pt;}
.w1_c00107{width:793.333333pt;}
.w0_c00107{width:793.626667pt;}
.x0_c00107{left:0.000000pt;}
.x2_c00107{left:113.440000pt;}
.x1_c00107{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ef281ba2734bd3d0161fb39d.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.093262;font-style:normal;font-weight:normal;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_bbefa22be9f44e475feff687.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00108;src:url('chunks/assets/font_dc60bb97a2c7240ecee84787.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:1.106934;font-style:normal;font-weight:normal;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_08c4efa9c61cd22e215bebc6.woff2')format("woff");}.ff4_c00108{font-family:ff4_c00108;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls6_c00108{letter-spacing:-0.079200px;}
.ls8_c00108{letter-spacing:-0.064800px;}
.ls5_c00108{letter-spacing:-0.057600px;}
.lsb_c00108{letter-spacing:-0.050400px;}
.ls7_c00108{letter-spacing:-0.043200px;}
.ls3_c00108{letter-spacing:-0.036000px;}
.ls2_c00108{letter-spacing:-0.028800px;}
.ls4_c00108{letter-spacing:-0.021600px;}
.ls9_c00108{letter-spacing:-0.014400px;}
.lsa_c00108{letter-spacing:-0.007200px;}
.ls1_c00108{letter-spacing:0.000000px;}
.ls0_c00108{letter-spacing:0.025164px;}
.lsc_c00108{letter-spacing:0.144000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00108{word-spacing:-19.951200px;}
.ws38_c00108{word-spacing:-4.161600px;}
.ws37_c00108{word-spacing:-4.125600px;}
.ws2d_c00108{word-spacing:-3.837600px;}
.ws2e_c00108{word-spacing:-3.751200px;}
.ws16_c00108{word-spacing:-2.354400px;}
.ws15_c00108{word-spacing:-2.332800px;}
.ws14_c00108{word-spacing:-1.231200px;}
.ws18_c00108{word-spacing:-1.216800px;}
.ws19_c00108{word-spacing:-1.202400px;}
.ws13_c00108{word-spacing:-0.972000px;}
.ws1_c00108{word-spacing:0.000000px;}
.ws17_c00108{word-spacing:0.165600px;}
.ws21_c00108{word-spacing:0.216000px;}
.wse_c00108{word-spacing:0.907200px;}
.wsd_c00108{word-spacing:0.986400px;}
.ws2a_c00108{word-spacing:1.260000px;}
.ws35_c00108{word-spacing:1.526400px;}
.ws36_c00108{word-spacing:1.627200px;}
.ws34_c00108{word-spacing:1.634400px;}
.ws1c_c00108{word-spacing:2.232000px;}
.ws1d_c00108{word-spacing:2.289600px;}
.ws26_c00108{word-spacing:3.448800px;}
.ws2c_c00108{word-spacing:4.161600px;}
.ws2b_c00108{word-spacing:4.219200px;}
.ws11_c00108{word-spacing:4.867200px;}
.ws12_c00108{word-spacing:4.881600px;}
.ws30_c00108{word-spacing:7.293600px;}
.ws2f_c00108{word-spacing:7.401600px;}
.ws27_c00108{word-spacing:8.042400px;}
.ws28_c00108{word-spacing:8.100000px;}
.ws7_c00108{word-spacing:9.187200px;}
.ws8_c00108{word-spacing:9.266400px;}
.ws2_c00108{word-spacing:9.788796px;}
.ws5_c00108{word-spacing:10.627200px;}
.ws6_c00108{word-spacing:10.634400px;}
.wsb_c00108{word-spacing:12.434400px;}
.ws3_c00108{word-spacing:12.484800px;}
.ws4_c00108{word-spacing:12.513600px;}
.wsc_c00108{word-spacing:12.549600px;}
.wsa_c00108{word-spacing:12.607200px;}
.ws22_c00108{word-spacing:13.096800px;}
.ws23_c00108{word-spacing:13.154400px;}
.wsf_c00108{word-spacing:15.314400px;}
.ws10_c00108{word-spacing:15.408000px;}
.ws1e_c00108{word-spacing:19.288800px;}
.ws1b_c00108{word-spacing:19.634400px;}
.ws1a_c00108{word-spacing:19.699200px;}
.ws31_c00108{word-spacing:20.685600px;}
.ws33_c00108{word-spacing:20.707200px;}
.ws32_c00108{word-spacing:21.096000px;}
.ws29_c00108{word-spacing:22.039200px;}
.ws25_c00108{word-spacing:22.147200px;}
.ws24_c00108{word-spacing:22.154400px;}
.ws1f_c00108{word-spacing:25.020000px;}
.ws20_c00108{word-spacing:25.034400px;}
.ws9_c00108{word-spacing:26.100000px;}
._0_c00108{margin-left:-9.394560px;}
._1_c00108{width:1.152000px;}
._2_c00108{width:4.464000px;}
.fc0_c00108{color:rgb(0,0,0);}
.fs0_c00108{font-size:72.000000px;}
.fs1_c00108{font-size:83.880000px;}
.y0_c00108{bottom:0.000000px;}
.y2_c00108{bottom:46.830450px;}
.y1_c00108{bottom:67.530450px;}
.y23_c00108{bottom:139.620450px;}
.y22_c00108{bottom:170.670450px;}
.y21_c00108{bottom:201.720450px;}
.y20_c00108{bottom:232.770450px;}
.y1f_c00108{bottom:263.820450px;}
.y1e_c00108{bottom:294.870450px;}
.y1d_c00108{bottom:325.920450px;}
.y1c_c00108{bottom:356.970450px;}
.y1b_c00108{bottom:388.020450px;}
.y1a_c00108{bottom:419.070450px;}
.y19_c00108{bottom:450.120450px;}
.y18_c00108{bottom:481.170450px;}
.y17_c00108{bottom:501.870450px;}
.y16_c00108{bottom:522.570450px;}
.y15_c00108{bottom:543.270450px;}
.y14_c00108{bottom:563.970450px;}
.y13_c00108{bottom:584.670450px;}
.y12_c00108{bottom:605.370450px;}
.y11_c00108{bottom:626.070450px;}
.y10_c00108{bottom:646.770450px;}
.yf_c00108{bottom:695.820450px;}
.ye_c00108{bottom:726.870450px;}
.yd_c00108{bottom:757.920450px;}
.yc_c00108{bottom:788.970450px;}
.yb_c00108{bottom:820.020450px;}
.ya_c00108{bottom:851.070450px;}
.y9_c00108{bottom:882.120450px;}
.y8_c00108{bottom:913.170450px;}
.y7_c00108{bottom:944.220450px;}
.y6_c00108{bottom:975.270450px;}
.y5_c00108{bottom:1006.320450px;}
.y4_c00108{bottom:1055.370450px;}
.y3_c00108{bottom:1094.520450px;}
.h1_c00108{height:63.175781px;}
.h3_c00108{height:64.546875px;}
.h4_c00108{height:75.093750px;}
.h2_c00108{height:87.484219px;}
.h0_c00108{height:1263.000000px;}
.w1_c00108{width:892.500000px;}
.w0_c00108{width:892.830000px;}
.x0_c00108{left:0.000000px;}
.x2_c00108{left:170.100000px;}
.x4_c00108{left:191.430000px;}
.x3_c00108{left:251.100000px;}
.x1_c00108{left:738.360000px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls6_c00108{letter-spacing:-0.070400pt;}
.ls8_c00108{letter-spacing:-0.057600pt;}
.ls5_c00108{letter-spacing:-0.051200pt;}
.lsb_c00108{letter-spacing:-0.044800pt;}
.ls7_c00108{letter-spacing:-0.038400pt;}
.ls3_c00108{letter-spacing:-0.032000pt;}
.ls2_c00108{letter-spacing:-0.025600pt;}
.ls4_c00108{letter-spacing:-0.019200pt;}
.ls9_c00108{letter-spacing:-0.012800pt;}
.lsa_c00108{letter-spacing:-0.006400pt;}
.ls1_c00108{letter-spacing:0.000000pt;}
.ls0_c00108{letter-spacing:0.022368pt;}
.lsc_c00108{letter-spacing:0.128000pt;}
.ws0_c00108{word-spacing:-17.734400pt;}
.ws38_c00108{word-spacing:-3.699200pt;}
.ws37_c00108{word-spacing:-3.667200pt;}
.ws2d_c00108{word-spacing:-3.411200pt;}
.ws2e_c00108{word-spacing:-3.334400pt;}
.ws16_c00108{word-spacing:-2.092800pt;}
.ws15_c00108{word-spacing:-2.073600pt;}
.ws14_c00108{word-spacing:-1.094400pt;}
.ws18_c00108{word-spacing:-1.081600pt;}
.ws19_c00108{word-spacing:-1.068800pt;}
.ws13_c00108{word-spacing:-0.864000pt;}
.ws1_c00108{word-spacing:0.000000pt;}
.ws17_c00108{word-spacing:0.147200pt;}
.ws21_c00108{word-spacing:0.192000pt;}
.wse_c00108{word-spacing:0.806400pt;}
.wsd_c00108{word-spacing:0.876800pt;}
.ws2a_c00108{word-spacing:1.120000pt;}
.ws35_c00108{word-spacing:1.356800pt;}
.ws36_c00108{word-spacing:1.446400pt;}
.ws34_c00108{word-spacing:1.452800pt;}
.ws1c_c00108{word-spacing:1.984000pt;}
.ws1d_c00108{word-spacing:2.035200pt;}
.ws26_c00108{word-spacing:3.065600pt;}
.ws2c_c00108{word-spacing:3.699200pt;}
.ws2b_c00108{word-spacing:3.750400pt;}
.ws11_c00108{word-spacing:4.326400pt;}
.ws12_c00108{word-spacing:4.339200pt;}
.ws30_c00108{word-spacing:6.483200pt;}
.ws2f_c00108{word-spacing:6.579200pt;}
.ws27_c00108{word-spacing:7.148800pt;}
.ws28_c00108{word-spacing:7.200000pt;}
.ws7_c00108{word-spacing:8.166400pt;}
.ws8_c00108{word-spacing:8.236800pt;}
.ws2_c00108{word-spacing:8.701152pt;}
.ws5_c00108{word-spacing:9.446400pt;}
.ws6_c00108{word-spacing:9.452800pt;}
.wsb_c00108{word-spacing:11.052800pt;}
.ws3_c00108{word-spacing:11.097600pt;}
.ws4_c00108{word-spacing:11.123200pt;}
.wsc_c00108{word-spacing:11.155200pt;}
.wsa_c00108{word-spacing:11.206400pt;}
.ws22_c00108{word-spacing:11.641600pt;}
.ws23_c00108{word-spacing:11.692800pt;}
.wsf_c00108{word-spacing:13.612800pt;}
.ws10_c00108{word-spacing:13.696000pt;}
.ws1e_c00108{word-spacing:17.145600pt;}
.ws1b_c00108{word-spacing:17.452800pt;}
.ws1a_c00108{word-spacing:17.510400pt;}
.ws31_c00108{word-spacing:18.387200pt;}
.ws33_c00108{word-spacing:18.406400pt;}
.ws32_c00108{word-spacing:18.752000pt;}
.ws29_c00108{word-spacing:19.590400pt;}
.ws25_c00108{word-spacing:19.686400pt;}
.ws24_c00108{word-spacing:19.692800pt;}
.ws1f_c00108{word-spacing:22.240000pt;}
.ws20_c00108{word-spacing:22.252800pt;}
.ws9_c00108{word-spacing:23.200000pt;}
._0_c00108{margin-left:-8.350720pt;}
._1_c00108{width:1.024000pt;}
._2_c00108{width:3.968000pt;}
.fs0_c00108{font-size:64.000000pt;}
.fs1_c00108{font-size:74.560000pt;}
.y0_c00108{bottom:0.000000pt;}
.y2_c00108{bottom:41.627067pt;}
.y1_c00108{bottom:60.027067pt;}
.y23_c00108{bottom:124.107067pt;}
.y22_c00108{bottom:151.707067pt;}
.y21_c00108{bottom:179.307067pt;}
.y20_c00108{bottom:206.907067pt;}
.y1f_c00108{bottom:234.507067pt;}
.y1e_c00108{bottom:262.107067pt;}
.y1d_c00108{bottom:289.707067pt;}
.y1c_c00108{bottom:317.307067pt;}
.y1b_c00108{bottom:344.907067pt;}
.y1a_c00108{bottom:372.507067pt;}
.y19_c00108{bottom:400.107067pt;}
.y18_c00108{bottom:427.707067pt;}
.y17_c00108{bottom:446.107067pt;}
.y16_c00108{bottom:464.507067pt;}
.y15_c00108{bottom:482.907067pt;}
.y14_c00108{bottom:501.307067pt;}
.y13_c00108{bottom:519.707067pt;}
.y12_c00108{bottom:538.107067pt;}
.y11_c00108{bottom:556.507067pt;}
.y10_c00108{bottom:574.907067pt;}
.yf_c00108{bottom:618.507067pt;}
.ye_c00108{bottom:646.107067pt;}
.yd_c00108{bottom:673.707067pt;}
.yc_c00108{bottom:701.307067pt;}
.yb_c00108{bottom:728.907067pt;}
.ya_c00108{bottom:756.507067pt;}
.y9_c00108{bottom:784.107067pt;}
.y8_c00108{bottom:811.707067pt;}
.y7_c00108{bottom:839.307067pt;}
.y6_c00108{bottom:866.907067pt;}
.y5_c00108{bottom:894.507067pt;}
.y4_c00108{bottom:938.107067pt;}
.y3_c00108{bottom:972.907067pt;}
.h1_c00108{height:56.156250pt;}
.h3_c00108{height:57.375000pt;}
.h4_c00108{height:66.750000pt;}
.h2_c00108{height:77.763750pt;}
.h0_c00108{height:1122.666667pt;}
.w1_c00108{width:793.333333pt;}
.w0_c00108{width:793.626667pt;}
.x0_c00108{left:0.000000pt;}
.x2_c00108{left:151.200000pt;}
.x4_c00108{left:170.160000pt;}
.x3_c00108{left:223.200000pt;}
.x1_c00108{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f12d2db8739299dbcd64bb66.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.093262;font-style:normal;font-weight:normal;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_92c6cd978d9ab0086e593962.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.106934;font-style:normal;font-weight:normal;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_174f2c4533e507e50bfb4e76.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lse_c00109{letter-spacing:-0.158400px;}
.lsc_c00109{letter-spacing:-0.072000px;}
.ls7_c00109{letter-spacing:-0.064800px;}
.lsf_c00109{letter-spacing:-0.057600px;}
.ls9_c00109{letter-spacing:-0.050400px;}
.ls5_c00109{letter-spacing:-0.043200px;}
.ls4_c00109{letter-spacing:-0.036000px;}
.lsa_c00109{letter-spacing:-0.028800px;}
.ls8_c00109{letter-spacing:-0.021600px;}
.lsb_c00109{letter-spacing:-0.014400px;}
.ls6_c00109{letter-spacing:-0.007200px;}
.ls3_c00109{letter-spacing:0.000000px;}
.lsd_c00109{letter-spacing:0.007200px;}
.ls0_c00109{letter-spacing:0.014400px;}
.ls1_c00109{letter-spacing:0.021600px;}
.ls2_c00109{letter-spacing:12.405600px;}
.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;}
}
.ws7_c00109{word-spacing:-4.896000px;}
.ws6_c00109{word-spacing:-4.860000px;}
.ws2_c00109{word-spacing:-4.536000px;}
.ws1_c00109{word-spacing:-4.428000px;}
.ws23_c00109{word-spacing:-3.477600px;}
.ws2a_c00109{word-spacing:-3.456000px;}
.ws24_c00109{word-spacing:-3.441600px;}
.ws22_c00109{word-spacing:-3.427200px;}
.ws29_c00109{word-spacing:-3.420000px;}
.ws2b_c00109{word-spacing:-3.391200px;}
.ws21_c00109{word-spacing:-2.649600px;}
.wsb_c00109{word-spacing:-1.980000px;}
.wsa_c00109{word-spacing:-1.951200px;}
.ws34_c00109{word-spacing:-1.663200px;}
.ws20_c00109{word-spacing:-1.641600px;}
.ws35_c00109{word-spacing:-1.620000px;}
.ws0_c00109{word-spacing:0.000000px;}
.ws1c_c00109{word-spacing:0.122400px;}
.ws26_c00109{word-spacing:0.151200px;}
.ws16_c00109{word-spacing:0.165600px;}
.ws25_c00109{word-spacing:0.201600px;}
.ws1b_c00109{word-spacing:0.230400px;}
.ws15_c00109{word-spacing:0.273600px;}
.ws1d_c00109{word-spacing:0.590400px;}
.ws31_c00109{word-spacing:1.634400px;}
.ws32_c00109{word-spacing:1.663200px;}
.ws1a_c00109{word-spacing:3.801600px;}
.ws19_c00109{word-spacing:3.888000px;}
.ws39_c00109{word-spacing:4.507200px;}
.ws3a_c00109{word-spacing:4.521600px;}
.ws1f_c00109{word-spacing:5.572800px;}
.ws1e_c00109{word-spacing:5.601600px;}
.ws4_c00109{word-spacing:6.285600px;}
.ws5_c00109{word-spacing:6.300000px;}
.ws33_c00109{word-spacing:6.307200px;}
.ws3_c00109{word-spacing:6.314400px;}
.wsc_c00109{word-spacing:7.725600px;}
.wsd_c00109{word-spacing:7.797600px;}
.ws12_c00109{word-spacing:9.108000px;}
.ws13_c00109{word-spacing:9.165600px;}
.ws18_c00109{word-spacing:10.267200px;}
.ws17_c00109{word-spacing:10.274400px;}
.ws2c_c00109{word-spacing:12.376800px;}
.ws2d_c00109{word-spacing:12.398400px;}
.ws2e_c00109{word-spacing:12.448800px;}
.ws11_c00109{word-spacing:15.588000px;}
.ws10_c00109{word-spacing:15.652800px;}
.ws14_c00109{word-spacing:19.605600px;}
.wsf_c00109{word-spacing:29.944800px;}
.wse_c00109{word-spacing:30.067200px;}
.ws30_c00109{word-spacing:33.573600px;}
.ws2f_c00109{word-spacing:33.674400px;}
.ws8_c00109{word-spacing:35.366400px;}
.ws9_c00109{word-spacing:35.460000px;}
.ws28_c00109{word-spacing:38.332800px;}
.ws27_c00109{word-spacing:38.347200px;}
.ws38_c00109{word-spacing:39.261600px;}
.ws36_c00109{word-spacing:39.427200px;}
.ws37_c00109{word-spacing:39.456000px;}
._3_c00109{margin-left:-2.664000px;}
._1_c00109{width:1.310400px;}
._0_c00109{width:6.415200px;}
._2_c00109{width:29.700000px;}
.fc0_c00109{color:rgb(0,0,0);}
.fs0_c00109{font-size:72.000000px;}
.y0_c00109{bottom:0.000000px;}
.y2_c00109{bottom:46.830450px;}
.y1_c00109{bottom:67.530450px;}
.y25_c00109{bottom:140.340450px;}
.y24_c00109{bottom:171.480450px;}
.y23_c00109{bottom:202.530450px;}
.y22_c00109{bottom:233.580450px;}
.y21_c00109{bottom:264.630450px;}
.y20_c00109{bottom:295.680450px;}
.y1f_c00109{bottom:326.730450px;}
.y1e_c00109{bottom:357.690450px;}
.y1d_c00109{bottom:388.740450px;}
.y1c_c00109{bottom:409.440450px;}
.y1b_c00109{bottom:430.140450px;}
.y1a_c00109{bottom:450.840450px;}
.y19_c00109{bottom:471.540450px;}
.y18_c00109{bottom:492.240450px;}
.y17_c00109{bottom:512.940450px;}
.y16_c00109{bottom:533.640450px;}
.y15_c00109{bottom:554.340450px;}
.y14_c00109{bottom:603.390450px;}
.y13_c00109{bottom:624.090450px;}
.y12_c00109{bottom:644.790450px;}
.y11_c00109{bottom:665.490450px;}
.y10_c00109{bottom:686.190450px;}
.yf_c00109{bottom:706.890450px;}
.ye_c00109{bottom:755.940450px;}
.yd_c00109{bottom:786.990450px;}
.yc_c00109{bottom:818.040450px;}
.yb_c00109{bottom:849.090450px;}
.ya_c00109{bottom:880.140450px;}
.y9_c00109{bottom:911.190450px;}
.y8_c00109{bottom:942.240450px;}
.y7_c00109{bottom:973.290450px;}
.y6_c00109{bottom:1004.340450px;}
.y5_c00109{bottom:1035.390450px;}
.y4_c00109{bottom:1066.440450px;}
.y3_c00109{bottom:1097.490450px;}
.h1_c00109{height:63.175781px;}
.h2_c00109{height:64.546875px;}
.h3_c00109{height:75.093750px;}
.h0_c00109{height:1263.000000px;}
.w1_c00109{width:892.500000px;}
.w0_c00109{width:892.830000px;}
.x0_c00109{left:0.000000px;}
.x2_c00109{left:127.620000px;}
.x3_c00109{left:148.950000px;}
.x1_c00109{left:695.880000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.lse_c00109{letter-spacing:-0.140800pt;}
.lsc_c00109{letter-spacing:-0.064000pt;}
.ls7_c00109{letter-spacing:-0.057600pt;}
.lsf_c00109{letter-spacing:-0.051200pt;}
.ls9_c00109{letter-spacing:-0.044800pt;}
.ls5_c00109{letter-spacing:-0.038400pt;}
.ls4_c00109{letter-spacing:-0.032000pt;}
.lsa_c00109{letter-spacing:-0.025600pt;}
.ls8_c00109{letter-spacing:-0.019200pt;}
.lsb_c00109{letter-spacing:-0.012800pt;}
.ls6_c00109{letter-spacing:-0.006400pt;}
.ls3_c00109{letter-spacing:0.000000pt;}
.lsd_c00109{letter-spacing:0.006400pt;}
.ls0_c00109{letter-spacing:0.012800pt;}
.ls1_c00109{letter-spacing:0.019200pt;}
.ls2_c00109{letter-spacing:11.027200pt;}
.ws7_c00109{word-spacing:-4.352000pt;}
.ws6_c00109{word-spacing:-4.320000pt;}
.ws2_c00109{word-spacing:-4.032000pt;}
.ws1_c00109{word-spacing:-3.936000pt;}
.ws23_c00109{word-spacing:-3.091200pt;}
.ws2a_c00109{word-spacing:-3.072000pt;}
.ws24_c00109{word-spacing:-3.059200pt;}
.ws22_c00109{word-spacing:-3.046400pt;}
.ws29_c00109{word-spacing:-3.040000pt;}
.ws2b_c00109{word-spacing:-3.014400pt;}
.ws21_c00109{word-spacing:-2.355200pt;}
.wsb_c00109{word-spacing:-1.760000pt;}
.wsa_c00109{word-spacing:-1.734400pt;}
.ws34_c00109{word-spacing:-1.478400pt;}
.ws20_c00109{word-spacing:-1.459200pt;}
.ws35_c00109{word-spacing:-1.440000pt;}
.ws0_c00109{word-spacing:0.000000pt;}
.ws1c_c00109{word-spacing:0.108800pt;}
.ws26_c00109{word-spacing:0.134400pt;}
.ws16_c00109{word-spacing:0.147200pt;}
.ws25_c00109{word-spacing:0.179200pt;}
.ws1b_c00109{word-spacing:0.204800pt;}
.ws15_c00109{word-spacing:0.243200pt;}
.ws1d_c00109{word-spacing:0.524800pt;}
.ws31_c00109{word-spacing:1.452800pt;}
.ws32_c00109{word-spacing:1.478400pt;}
.ws1a_c00109{word-spacing:3.379200pt;}
.ws19_c00109{word-spacing:3.456000pt;}
.ws39_c00109{word-spacing:4.006400pt;}
.ws3a_c00109{word-spacing:4.019200pt;}
.ws1f_c00109{word-spacing:4.953600pt;}
.ws1e_c00109{word-spacing:4.979200pt;}
.ws4_c00109{word-spacing:5.587200pt;}
.ws5_c00109{word-spacing:5.600000pt;}
.ws33_c00109{word-spacing:5.606400pt;}
.ws3_c00109{word-spacing:5.612800pt;}
.wsc_c00109{word-spacing:6.867200pt;}
.wsd_c00109{word-spacing:6.931200pt;}
.ws12_c00109{word-spacing:8.096000pt;}
.ws13_c00109{word-spacing:8.147200pt;}
.ws18_c00109{word-spacing:9.126400pt;}
.ws17_c00109{word-spacing:9.132800pt;}
.ws2c_c00109{word-spacing:11.001600pt;}
.ws2d_c00109{word-spacing:11.020800pt;}
.ws2e_c00109{word-spacing:11.065600pt;}
.ws11_c00109{word-spacing:13.856000pt;}
.ws10_c00109{word-spacing:13.913600pt;}
.ws14_c00109{word-spacing:17.427200pt;}
.wsf_c00109{word-spacing:26.617600pt;}
.wse_c00109{word-spacing:26.726400pt;}
.ws30_c00109{word-spacing:29.843200pt;}
.ws2f_c00109{word-spacing:29.932800pt;}
.ws8_c00109{word-spacing:31.436800pt;}
.ws9_c00109{word-spacing:31.520000pt;}
.ws28_c00109{word-spacing:34.073600pt;}
.ws27_c00109{word-spacing:34.086400pt;}
.ws38_c00109{word-spacing:34.899200pt;}
.ws36_c00109{word-spacing:35.046400pt;}
.ws37_c00109{word-spacing:35.072000pt;}
._3_c00109{margin-left:-2.368000pt;}
._1_c00109{width:1.164800pt;}
._0_c00109{width:5.702400pt;}
._2_c00109{width:26.400000pt;}
.fs0_c00109{font-size:64.000000pt;}
.y0_c00109{bottom:0.000000pt;}
.y2_c00109{bottom:41.627067pt;}
.y1_c00109{bottom:60.027067pt;}
.y25_c00109{bottom:124.747067pt;}
.y24_c00109{bottom:152.427067pt;}
.y23_c00109{bottom:180.027067pt;}
.y22_c00109{bottom:207.627067pt;}
.y21_c00109{bottom:235.227067pt;}
.y20_c00109{bottom:262.827067pt;}
.y1f_c00109{bottom:290.427067pt;}
.y1e_c00109{bottom:317.947067pt;}
.y1d_c00109{bottom:345.547067pt;}
.y1c_c00109{bottom:363.947067pt;}
.y1b_c00109{bottom:382.347067pt;}
.y1a_c00109{bottom:400.747067pt;}
.y19_c00109{bottom:419.147067pt;}
.y18_c00109{bottom:437.547067pt;}
.y17_c00109{bottom:455.947067pt;}
.y16_c00109{bottom:474.347067pt;}
.y15_c00109{bottom:492.747067pt;}
.y14_c00109{bottom:536.347067pt;}
.y13_c00109{bottom:554.747067pt;}
.y12_c00109{bottom:573.147067pt;}
.y11_c00109{bottom:591.547067pt;}
.y10_c00109{bottom:609.947067pt;}
.yf_c00109{bottom:628.347067pt;}
.ye_c00109{bottom:671.947067pt;}
.yd_c00109{bottom:699.547067pt;}
.yc_c00109{bottom:727.147067pt;}
.yb_c00109{bottom:754.747067pt;}
.ya_c00109{bottom:782.347067pt;}
.y9_c00109{bottom:809.947067pt;}
.y8_c00109{bottom:837.547067pt;}
.y7_c00109{bottom:865.147067pt;}
.y6_c00109{bottom:892.747067pt;}
.y5_c00109{bottom:920.347067pt;}
.y4_c00109{bottom:947.947067pt;}
.y3_c00109{bottom:975.547067pt;}
.h1_c00109{height:56.156250pt;}
.h2_c00109{height:57.375000pt;}
.h3_c00109{height:66.750000pt;}
.h0_c00109{height:1122.666667pt;}
.w1_c00109{width:793.333333pt;}
.w0_c00109{width:793.626667pt;}
.x0_c00109{left:0.000000pt;}
.x2_c00109{left:113.440000pt;}
.x3_c00109{left:132.400000pt;}
.x1_c00109{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9e94e0da380f674f71db2af3.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.093262;font-style:normal;font-weight:normal;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_df015dc8aa4dcd3eb6440d75.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00110;src:url('chunks/assets/font_0572363dfa5da9cae30a5dcd.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00110{vertical-align:0.000000px;}
.ls8_c00110{letter-spacing:-0.100800px;}
.lsb_c00110{letter-spacing:-0.086400px;}
.lsc_c00110{letter-spacing:-0.064800px;}
.ls9_c00110{letter-spacing:-0.057600px;}
.ls2_c00110{letter-spacing:-0.050400px;}
.ls5_c00110{letter-spacing:-0.043200px;}
.ls6_c00110{letter-spacing:-0.036000px;}
.ls3_c00110{letter-spacing:-0.028800px;}
.ls4_c00110{letter-spacing:-0.021600px;}
.ls1_c00110{letter-spacing:-0.014400px;}
.ls7_c00110{letter-spacing:-0.007200px;}
.ls0_c00110{letter-spacing:0.000000px;}
.lsa_c00110{letter-spacing:0.158400px;}
.lsd_c00110{letter-spacing:843.998400px;}
.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;}
}
.ws1_c00110{word-spacing:-4.867200px;}
.ws3_c00110{word-spacing:-4.852800px;}
.ws2_c00110{word-spacing:-4.831200px;}
.ws5_c00110{word-spacing:-4.651200px;}
.ws4_c00110{word-spacing:-4.564800px;}
.ws26_c00110{word-spacing:-4.500000px;}
.ws18_c00110{word-spacing:-3.052800px;}
.ws17_c00110{word-spacing:-3.038400px;}
.wsb_c00110{word-spacing:-2.354400px;}
.wsa_c00110{word-spacing:-2.311200px;}
.wsc_c00110{word-spacing:-2.260800px;}
.ws23_c00110{word-spacing:-0.554400px;}
.ws1e_c00110{word-spacing:-0.518400px;}
.ws1d_c00110{word-spacing:-0.496800px;}
.ws24_c00110{word-spacing:-0.460800px;}
.ws0_c00110{word-spacing:0.000000px;}
.ws14_c00110{word-spacing:0.014400px;}
.ws1f_c00110{word-spacing:0.108000px;}
.ws13_c00110{word-spacing:0.172800px;}
.ws15_c00110{word-spacing:0.187200px;}
.ws12_c00110{word-spacing:0.194400px;}
.ws20_c00110{word-spacing:0.208800px;}
.wsd_c00110{word-spacing:0.561600px;}
.ws1c_c00110{word-spacing:1.533600px;}
.ws1b_c00110{word-spacing:1.627200px;}
.ws25_c00110{word-spacing:2.721600px;}
.ws6_c00110{word-spacing:3.420000px;}
.ws7_c00110{word-spacing:3.470400px;}
.ws16_c00110{word-spacing:4.125600px;}
.ws9_c00110{word-spacing:7.034400px;}
.ws8_c00110{word-spacing:7.041600px;}
.ws21_c00110{word-spacing:7.754400px;}
.ws22_c00110{word-spacing:7.761600px;}
.ws1a_c00110{word-spacing:10.987200px;}
.ws10_c00110{word-spacing:17.805600px;}
.wse_c00110{word-spacing:17.841600px;}
.ws11_c00110{word-spacing:17.856000px;}
.wsf_c00110{word-spacing:17.964000px;}
.ws19_c00110{word-spacing:36.561600px;}
._0_c00110{width:1.281600px;}
.fc0_c00110{color:rgb(0,0,0);}
.fs0_c00110{font-size:72.000000px;}
.y0_c00110{bottom:0.000000px;}
.y2_c00110{bottom:46.830450px;}
.y1_c00110{bottom:67.530450px;}
.y19_c00110{bottom:512.940450px;}
.y18_c00110{bottom:533.640450px;}
.y17_c00110{bottom:554.340450px;}
.y16_c00110{bottom:575.040450px;}
.y15_c00110{bottom:595.740450px;}
.y14_c00110{bottom:616.440450px;}
.y13_c00110{bottom:637.140450px;}
.y12_c00110{bottom:657.840450px;}
.y11_c00110{bottom:678.540450px;}
.y10_c00110{bottom:699.240450px;}
.yf_c00110{bottom:719.940450px;}
.ye_c00110{bottom:740.640450px;}
.yd_c00110{bottom:761.340450px;}
.yc_c00110{bottom:782.040450px;}
.yb_c00110{bottom:831.090450px;}
.ya_c00110{bottom:880.140450px;}
.y9_c00110{bottom:911.190450px;}
.y8_c00110{bottom:942.240450px;}
.y7_c00110{bottom:973.290450px;}
.y6_c00110{bottom:1004.340450px;}
.y5_c00110{bottom:1035.390450px;}
.y4_c00110{bottom:1066.440450px;}
.y3_c00110{bottom:1097.490450px;}
.h1_c00110{height:63.175781px;}
.h3_c00110{height:64.546875px;}
.h2_c00110{height:75.093750px;}
.h0_c00110{height:1263.000000px;}
.w1_c00110{width:892.500000px;}
.w0_c00110{width:892.830000px;}
.x0_c00110{left:0.000000px;}
.x2_c00110{left:170.100000px;}
.x3_c00110{left:191.430000px;}
.x1_c00110{left:738.360000px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls8_c00110{letter-spacing:-0.089600pt;}
.lsb_c00110{letter-spacing:-0.076800pt;}
.lsc_c00110{letter-spacing:-0.057600pt;}
.ls9_c00110{letter-spacing:-0.051200pt;}
.ls2_c00110{letter-spacing:-0.044800pt;}
.ls5_c00110{letter-spacing:-0.038400pt;}
.ls6_c00110{letter-spacing:-0.032000pt;}
.ls3_c00110{letter-spacing:-0.025600pt;}
.ls4_c00110{letter-spacing:-0.019200pt;}
.ls1_c00110{letter-spacing:-0.012800pt;}
.ls7_c00110{letter-spacing:-0.006400pt;}
.ls0_c00110{letter-spacing:0.000000pt;}
.lsa_c00110{letter-spacing:0.140800pt;}
.lsd_c00110{letter-spacing:750.220800pt;}
.ws1_c00110{word-spacing:-4.326400pt;}
.ws3_c00110{word-spacing:-4.313600pt;}
.ws2_c00110{word-spacing:-4.294400pt;}
.ws5_c00110{word-spacing:-4.134400pt;}
.ws4_c00110{word-spacing:-4.057600pt;}
.ws26_c00110{word-spacing:-4.000000pt;}
.ws18_c00110{word-spacing:-2.713600pt;}
.ws17_c00110{word-spacing:-2.700800pt;}
.wsb_c00110{word-spacing:-2.092800pt;}
.wsa_c00110{word-spacing:-2.054400pt;}
.wsc_c00110{word-spacing:-2.009600pt;}
.ws23_c00110{word-spacing:-0.492800pt;}
.ws1e_c00110{word-spacing:-0.460800pt;}
.ws1d_c00110{word-spacing:-0.441600pt;}
.ws24_c00110{word-spacing:-0.409600pt;}
.ws0_c00110{word-spacing:0.000000pt;}
.ws14_c00110{word-spacing:0.012800pt;}
.ws1f_c00110{word-spacing:0.096000pt;}
.ws13_c00110{word-spacing:0.153600pt;}
.ws15_c00110{word-spacing:0.166400pt;}
.ws12_c00110{word-spacing:0.172800pt;}
.ws20_c00110{word-spacing:0.185600pt;}
.wsd_c00110{word-spacing:0.499200pt;}
.ws1c_c00110{word-spacing:1.363200pt;}
.ws1b_c00110{word-spacing:1.446400pt;}
.ws25_c00110{word-spacing:2.419200pt;}
.ws6_c00110{word-spacing:3.040000pt;}
.ws7_c00110{word-spacing:3.084800pt;}
.ws16_c00110{word-spacing:3.667200pt;}
.ws9_c00110{word-spacing:6.252800pt;}
.ws8_c00110{word-spacing:6.259200pt;}
.ws21_c00110{word-spacing:6.892800pt;}
.ws22_c00110{word-spacing:6.899200pt;}
.ws1a_c00110{word-spacing:9.766400pt;}
.ws10_c00110{word-spacing:15.827200pt;}
.wse_c00110{word-spacing:15.859200pt;}
.ws11_c00110{word-spacing:15.872000pt;}
.wsf_c00110{word-spacing:15.968000pt;}
.ws19_c00110{word-spacing:32.499200pt;}
._0_c00110{width:1.139200pt;}
.fs0_c00110{font-size:64.000000pt;}
.y0_c00110{bottom:0.000000pt;}
.y2_c00110{bottom:41.627067pt;}
.y1_c00110{bottom:60.027067pt;}
.y19_c00110{bottom:455.947067pt;}
.y18_c00110{bottom:474.347067pt;}
.y17_c00110{bottom:492.747067pt;}
.y16_c00110{bottom:511.147067pt;}
.y15_c00110{bottom:529.547067pt;}
.y14_c00110{bottom:547.947067pt;}
.y13_c00110{bottom:566.347067pt;}
.y12_c00110{bottom:584.747067pt;}
.y11_c00110{bottom:603.147067pt;}
.y10_c00110{bottom:621.547067pt;}
.yf_c00110{bottom:639.947067pt;}
.ye_c00110{bottom:658.347067pt;}
.yd_c00110{bottom:676.747067pt;}
.yc_c00110{bottom:695.147067pt;}
.yb_c00110{bottom:738.747067pt;}
.ya_c00110{bottom:782.347067pt;}
.y9_c00110{bottom:809.947067pt;}
.y8_c00110{bottom:837.547067pt;}
.y7_c00110{bottom:865.147067pt;}
.y6_c00110{bottom:892.747067pt;}
.y5_c00110{bottom:920.347067pt;}
.y4_c00110{bottom:947.947067pt;}
.y3_c00110{bottom:975.547067pt;}
.h1_c00110{height:56.156250pt;}
.h3_c00110{height:57.375000pt;}
.h2_c00110{height:66.750000pt;}
.h0_c00110{height:1122.666667pt;}
.w1_c00110{width:793.333333pt;}
.w0_c00110{width:793.626667pt;}
.x0_c00110{left:0.000000pt;}
.x2_c00110{left:151.200000pt;}
.x3_c00110{left:170.160000pt;}
.x1_c00110{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4f549f30217a07fa2078b6ad.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.106934;font-style: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;}
.ls0_c00111{letter-spacing:0.000000px;}
.sc__c00111{text-shadow:none;}
.sc0_c00111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00111{-webkit-text-stroke:0px transparent;}
.sc0_c00111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00111{word-spacing:0.000000px;}
.fc0_c00111{color:rgb(0,0,0);}
.fs0_c00111{font-size:72.000000px;}
.y0_c00111{bottom:0.000000px;}
.y2_c00111{bottom:46.830450px;}
.y1_c00111{bottom:67.530450px;}
.y3_c00111{bottom:1097.490450px;}
.h1_c00111{height:63.175781px;}
.h2_c00111{height:64.546875px;}
.h0_c00111{height:1263.000000px;}
.w1_c00111{width:892.500000px;}
.w0_c00111{width:892.830000px;}
.x0_c00111{left:0.000000px;}
.x2_c00111{left:127.620000px;}
.x3_c00111{left:148.950000px;}
.x1_c00111{left:695.880000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls0_c00111{letter-spacing:0.000000pt;}
.ws0_c00111{word-spacing:0.000000pt;}
.fs0_c00111{font-size:64.000000pt;}
.y0_c00111{bottom:0.000000pt;}
.y2_c00111{bottom:41.627067pt;}
.y1_c00111{bottom:60.027067pt;}
.y3_c00111{bottom:975.547067pt;}
.h1_c00111{height:56.156250pt;}
.h2_c00111{height:57.375000pt;}
.h0_c00111{height:1122.666667pt;}
.w1_c00111{width:793.333333pt;}
.w0_c00111{width:793.626667pt;}
.x0_c00111{left:0.000000pt;}
.x2_c00111{left:113.440000pt;}
.x3_c00111{left:132.400000pt;}
.x1_c00111{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bf2c5b642a66d5e6b9e265bc.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.093262;font-style:normal;font-weight:normal;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_b6208809d22ef1e0d4c5c218.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00112;src:url('chunks/assets/font_d660e204be12dcfdc909c214.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:1.106934;font-style:normal;font-weight:normal;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_06c615182d105e9e498dde0f.woff2')format("woff");}.ff4_c00112{font-family:ff4_c00112;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00112{letter-spacing:-0.086400px;}
.ls8_c00112{letter-spacing:-0.072000px;}
.ls6_c00112{letter-spacing:-0.064800px;}
.ls9_c00112{letter-spacing:-0.057600px;}
.ls4_c00112{letter-spacing:-0.050400px;}
.ls7_c00112{letter-spacing:-0.043200px;}
.lsa_c00112{letter-spacing:-0.036000px;}
.lsb_c00112{letter-spacing:-0.028800px;}
.ls5_c00112{letter-spacing:-0.021600px;}
.ls3_c00112{letter-spacing:-0.014400px;}
.lsc_c00112{letter-spacing:-0.007200px;}
.ls2_c00112{letter-spacing:0.000000px;}
.ls1_c00112{letter-spacing:0.021600px;}
.ls0_c00112{letter-spacing:0.075492px;}
.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;}
}
.ws15_c00112{word-spacing:-4.183200px;}
.ws16_c00112{word-spacing:-4.154400px;}
.ws17_c00112{word-spacing:-2.872800px;}
.ws18_c00112{word-spacing:-2.671200px;}
.ws14_c00112{word-spacing:-2.354400px;}
.ws22_c00112{word-spacing:-2.347200px;}
.ws13_c00112{word-spacing:-2.311200px;}
.ws21_c00112{word-spacing:-2.268000px;}
.ws29_c00112{word-spacing:-2.001600px;}
.ws28_c00112{word-spacing:-1.850400px;}
.ws7_c00112{word-spacing:-1.627200px;}
.ws11_c00112{word-spacing:-1.310400px;}
.ws10_c00112{word-spacing:-1.238400px;}
.ws6_c00112{word-spacing:-1.159200px;}
.ws24_c00112{word-spacing:-0.907200px;}
.ws23_c00112{word-spacing:-0.878400px;}
.ws20_c00112{word-spacing:-0.828000px;}
.ws1_c00112{word-spacing:-0.100656px;}
.ws0_c00112{word-spacing:0.000000px;}
.ws5_c00112{word-spacing:0.180000px;}
.wsa_c00112{word-spacing:1.792800px;}
.ws1f_c00112{word-spacing:1.980000px;}
.ws9_c00112{word-spacing:2.001600px;}
.ws2a_c00112{word-spacing:3.427200px;}
.ws2c_c00112{word-spacing:3.456000px;}
.ws2b_c00112{word-spacing:3.556800px;}
.ws2_c00112{word-spacing:3.772800px;}
.ws3_c00112{word-spacing:3.808800px;}
.ws4_c00112{word-spacing:3.916800px;}
.ws12_c00112{word-spacing:5.580000px;}
.ws25_c00112{word-spacing:5.940000px;}
.ws32_c00112{word-spacing:6.264000px;}
.ws31_c00112{word-spacing:6.307200px;}
.ws26_c00112{word-spacing:9.532800px;}
.ws27_c00112{word-spacing:9.964800px;}
.wsd_c00112{word-spacing:11.563200px;}
.wsb_c00112{word-spacing:11.613600px;}
.ws1a_c00112{word-spacing:11.642400px;}
.wsc_c00112{word-spacing:11.721600px;}
.ws2f_c00112{word-spacing:12.398400px;}
.wsf_c00112{word-spacing:12.470400px;}
.ws30_c00112{word-spacing:12.528000px;}
.ws2d_c00112{word-spacing:13.514400px;}
.ws2e_c00112{word-spacing:13.528800px;}
.ws1d_c00112{word-spacing:15.242400px;}
.ws1e_c00112{word-spacing:15.321600px;}
.ws19_c00112{word-spacing:19.987200px;}
.ws8_c00112{word-spacing:23.234400px;}
.wse_c00112{word-spacing:32.205600px;}
.ws1b_c00112{word-spacing:38.196000px;}
.ws1c_c00112{word-spacing:38.361600px;}
._1_c00112{width:1.310400px;}
._0_c00112{width:9.813960px;}
.fc0_c00112{color:rgb(0,0,0);}
.fs0_c00112{font-size:72.000000px;}
.fs1_c00112{font-size:83.880000px;}
.y0_c00112{bottom:0.000000px;}
.y2_c00112{bottom:46.830450px;}
.y1_c00112{bottom:67.530450px;}
.y26_c00112{bottom:160.320450px;}
.y25_c00112{bottom:191.370450px;}
.y24_c00112{bottom:222.420450px;}
.y23_c00112{bottom:253.470450px;}
.y22_c00112{bottom:284.520450px;}
.y21_c00112{bottom:315.480450px;}
.y20_c00112{bottom:346.620450px;}
.y1f_c00112{bottom:377.670450px;}
.y1e_c00112{bottom:408.720450px;}
.y1d_c00112{bottom:439.770450px;}
.y1c_c00112{bottom:470.820450px;}
.y1b_c00112{bottom:501.870450px;}
.y1a_c00112{bottom:532.920450px;}
.y19_c00112{bottom:553.620450px;}
.y18_c00112{bottom:574.320450px;}
.y17_c00112{bottom:595.020450px;}
.y16_c00112{bottom:615.720450px;}
.y15_c00112{bottom:636.420450px;}
.y14_c00112{bottom:657.120450px;}
.y13_c00112{bottom:677.820450px;}
.y12_c00112{bottom:698.520450px;}
.y11_c00112{bottom:719.220450px;}
.y10_c00112{bottom:739.920450px;}
.yf_c00112{bottom:760.620450px;}
.ye_c00112{bottom:781.320450px;}
.yd_c00112{bottom:802.020450px;}
.yc_c00112{bottom:822.720450px;}
.yb_c00112{bottom:843.420450px;}
.ya_c00112{bottom:864.120450px;}
.y9_c00112{bottom:884.820450px;}
.y8_c00112{bottom:905.520450px;}
.y7_c00112{bottom:926.220450px;}
.y6_c00112{bottom:975.270450px;}
.y5_c00112{bottom:1006.320450px;}
.y4_c00112{bottom:1055.370450px;}
.y3_c00112{bottom:1094.520450px;}
.h1_c00112{height:63.175781px;}
.h3_c00112{height:64.546875px;}
.h4_c00112{height:75.093750px;}
.h2_c00112{height:87.484219px;}
.h0_c00112{height:1263.000000px;}
.w1_c00112{width:892.500000px;}
.w0_c00112{width:892.830000px;}
.x0_c00112{left:0.000000px;}
.x2_c00112{left:170.100000px;}
.x4_c00112{left:191.430000px;}
.x3_c00112{left:251.100000px;}
.x1_c00112{left:738.360000px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.lsd_c00112{letter-spacing:-0.076800pt;}
.ls8_c00112{letter-spacing:-0.064000pt;}
.ls6_c00112{letter-spacing:-0.057600pt;}
.ls9_c00112{letter-spacing:-0.051200pt;}
.ls4_c00112{letter-spacing:-0.044800pt;}
.ls7_c00112{letter-spacing:-0.038400pt;}
.lsa_c00112{letter-spacing:-0.032000pt;}
.lsb_c00112{letter-spacing:-0.025600pt;}
.ls5_c00112{letter-spacing:-0.019200pt;}
.ls3_c00112{letter-spacing:-0.012800pt;}
.lsc_c00112{letter-spacing:-0.006400pt;}
.ls2_c00112{letter-spacing:0.000000pt;}
.ls1_c00112{letter-spacing:0.019200pt;}
.ls0_c00112{letter-spacing:0.067104pt;}
.ws15_c00112{word-spacing:-3.718400pt;}
.ws16_c00112{word-spacing:-3.692800pt;}
.ws17_c00112{word-spacing:-2.553600pt;}
.ws18_c00112{word-spacing:-2.374400pt;}
.ws14_c00112{word-spacing:-2.092800pt;}
.ws22_c00112{word-spacing:-2.086400pt;}
.ws13_c00112{word-spacing:-2.054400pt;}
.ws21_c00112{word-spacing:-2.016000pt;}
.ws29_c00112{word-spacing:-1.779200pt;}
.ws28_c00112{word-spacing:-1.644800pt;}
.ws7_c00112{word-spacing:-1.446400pt;}
.ws11_c00112{word-spacing:-1.164800pt;}
.ws10_c00112{word-spacing:-1.100800pt;}
.ws6_c00112{word-spacing:-1.030400pt;}
.ws24_c00112{word-spacing:-0.806400pt;}
.ws23_c00112{word-spacing:-0.780800pt;}
.ws20_c00112{word-spacing:-0.736000pt;}
.ws1_c00112{word-spacing:-0.089472pt;}
.ws0_c00112{word-spacing:0.000000pt;}
.ws5_c00112{word-spacing:0.160000pt;}
.wsa_c00112{word-spacing:1.593600pt;}
.ws1f_c00112{word-spacing:1.760000pt;}
.ws9_c00112{word-spacing:1.779200pt;}
.ws2a_c00112{word-spacing:3.046400pt;}
.ws2c_c00112{word-spacing:3.072000pt;}
.ws2b_c00112{word-spacing:3.161600pt;}
.ws2_c00112{word-spacing:3.353600pt;}
.ws3_c00112{word-spacing:3.385600pt;}
.ws4_c00112{word-spacing:3.481600pt;}
.ws12_c00112{word-spacing:4.960000pt;}
.ws25_c00112{word-spacing:5.280000pt;}
.ws32_c00112{word-spacing:5.568000pt;}
.ws31_c00112{word-spacing:5.606400pt;}
.ws26_c00112{word-spacing:8.473600pt;}
.ws27_c00112{word-spacing:8.857600pt;}
.wsd_c00112{word-spacing:10.278400pt;}
.wsb_c00112{word-spacing:10.323200pt;}
.ws1a_c00112{word-spacing:10.348800pt;}
.wsc_c00112{word-spacing:10.419200pt;}
.ws2f_c00112{word-spacing:11.020800pt;}
.wsf_c00112{word-spacing:11.084800pt;}
.ws30_c00112{word-spacing:11.136000pt;}
.ws2d_c00112{word-spacing:12.012800pt;}
.ws2e_c00112{word-spacing:12.025600pt;}
.ws1d_c00112{word-spacing:13.548800pt;}
.ws1e_c00112{word-spacing:13.619200pt;}
.ws19_c00112{word-spacing:17.766400pt;}
.ws8_c00112{word-spacing:20.652800pt;}
.wse_c00112{word-spacing:28.627200pt;}
.ws1b_c00112{word-spacing:33.952000pt;}
.ws1c_c00112{word-spacing:34.099200pt;}
._1_c00112{width:1.164800pt;}
._0_c00112{width:8.723520pt;}
.fs0_c00112{font-size:64.000000pt;}
.fs1_c00112{font-size:74.560000pt;}
.y0_c00112{bottom:0.000000pt;}
.y2_c00112{bottom:41.627067pt;}
.y1_c00112{bottom:60.027067pt;}
.y26_c00112{bottom:142.507067pt;}
.y25_c00112{bottom:170.107067pt;}
.y24_c00112{bottom:197.707067pt;}
.y23_c00112{bottom:225.307067pt;}
.y22_c00112{bottom:252.907067pt;}
.y21_c00112{bottom:280.427067pt;}
.y20_c00112{bottom:308.107067pt;}
.y1f_c00112{bottom:335.707067pt;}
.y1e_c00112{bottom:363.307067pt;}
.y1d_c00112{bottom:390.907067pt;}
.y1c_c00112{bottom:418.507067pt;}
.y1b_c00112{bottom:446.107067pt;}
.y1a_c00112{bottom:473.707067pt;}
.y19_c00112{bottom:492.107067pt;}
.y18_c00112{bottom:510.507067pt;}
.y17_c00112{bottom:528.907067pt;}
.y16_c00112{bottom:547.307067pt;}
.y15_c00112{bottom:565.707067pt;}
.y14_c00112{bottom:584.107067pt;}
.y13_c00112{bottom:602.507067pt;}
.y12_c00112{bottom:620.907067pt;}
.y11_c00112{bottom:639.307067pt;}
.y10_c00112{bottom:657.707067pt;}
.yf_c00112{bottom:676.107067pt;}
.ye_c00112{bottom:694.507067pt;}
.yd_c00112{bottom:712.907067pt;}
.yc_c00112{bottom:731.307067pt;}
.yb_c00112{bottom:749.707067pt;}
.ya_c00112{bottom:768.107067pt;}
.y9_c00112{bottom:786.507067pt;}
.y8_c00112{bottom:804.907067pt;}
.y7_c00112{bottom:823.307067pt;}
.y6_c00112{bottom:866.907067pt;}
.y5_c00112{bottom:894.507067pt;}
.y4_c00112{bottom:938.107067pt;}
.y3_c00112{bottom:972.907067pt;}
.h1_c00112{height:56.156250pt;}
.h3_c00112{height:57.375000pt;}
.h4_c00112{height:66.750000pt;}
.h2_c00112{height:77.763750pt;}
.h0_c00112{height:1122.666667pt;}
.w1_c00112{width:793.333333pt;}
.w0_c00112{width:793.626667pt;}
.x0_c00112{left:0.000000pt;}
.x2_c00112{left:151.200000pt;}
.x4_c00112{left:170.160000pt;}
.x3_c00112{left:223.200000pt;}
.x1_c00112{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_894502163021d0ff90c5d0f9.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.093262;font-style:normal;font-weight:normal;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_651db1f8b52ce6a2efecbc32.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:1.106934;font-style:normal;font-weight:normal;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_0eef452de7c986c2a26e26c6.woff2')format("woff");}.ff3_c00113{font-family:ff3_c00113;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00113{letter-spacing:-0.072000px;}
.lsb_c00113{letter-spacing:-0.064800px;}
.ls6_c00113{letter-spacing:-0.057600px;}
.ls4_c00113{letter-spacing:-0.050400px;}
.ls2_c00113{letter-spacing:-0.043200px;}
.ls7_c00113{letter-spacing:-0.036000px;}
.ls3_c00113{letter-spacing:-0.028800px;}
.ls8_c00113{letter-spacing:-0.021600px;}
.ls5_c00113{letter-spacing:-0.014400px;}
.lsa_c00113{letter-spacing:-0.007200px;}
.ls1_c00113{letter-spacing:0.000000px;}
.ls0_c00113{letter-spacing:0.007200px;}
.sc__c00113{text-shadow:none;}
.sc0_c00113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00113{-webkit-text-stroke:0px transparent;}
.sc0_c00113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00113{word-spacing:-19.951200px;}
.ws25_c00113{word-spacing:-3.477600px;}
.ws24_c00113{word-spacing:-3.391200px;}
.ws35_c00113{word-spacing:-2.692800px;}
.ws37_c00113{word-spacing:-1.605600px;}
.ws36_c00113{word-spacing:-1.569600px;}
.ws1_c00113{word-spacing:0.000000px;}
.ws29_c00113{word-spacing:0.007200px;}
.ws14_c00113{word-spacing:0.079200px;}
.ws28_c00113{word-spacing:0.093600px;}
.ws11_c00113{word-spacing:0.165600px;}
.ws21_c00113{word-spacing:0.180000px;}
.ws6_c00113{word-spacing:0.187200px;}
.ws1e_c00113{word-spacing:0.208800px;}
.ws20_c00113{word-spacing:0.252000px;}
.wsc_c00113{word-spacing:1.317600px;}
.wsb_c00113{word-spacing:1.332000px;}
.ws26_c00113{word-spacing:1.641600px;}
.ws27_c00113{word-spacing:1.663200px;}
.ws4_c00113{word-spacing:3.427200px;}
.ws5_c00113{word-spacing:3.448800px;}
.ws32_c00113{word-spacing:4.824000px;}
.ws31_c00113{word-spacing:4.881600px;}
.ws2a_c00113{word-spacing:4.888800px;}
.ws2b_c00113{word-spacing:4.939200px;}
.ws16_c00113{word-spacing:6.292800px;}
.ws15_c00113{word-spacing:6.300000px;}
.wse_c00113{word-spacing:7.387200px;}
.wsd_c00113{word-spacing:7.430400px;}
.ws2e_c00113{word-spacing:9.216000px;}
.ws2f_c00113{word-spacing:9.230400px;}
.ws23_c00113{word-spacing:9.482400px;}
.ws19_c00113{word-spacing:9.532800px;}
.ws22_c00113{word-spacing:9.554400px;}
.ws1a_c00113{word-spacing:9.640800px;}
.ws10_c00113{word-spacing:10.620000px;}
.wsf_c00113{word-spacing:10.641600px;}
.ws1b_c00113{word-spacing:11.332800px;}
.ws1c_c00113{word-spacing:11.361600px;}
.ws30_c00113{word-spacing:13.881600px;}
.ws18_c00113{word-spacing:15.674400px;}
.ws17_c00113{word-spacing:15.696000px;}
.ws34_c00113{word-spacing:16.740000px;}
.ws2d_c00113{word-spacing:16.776000px;}
.ws2c_c00113{word-spacing:16.862400px;}
.wsa_c00113{word-spacing:18.784800px;}
.ws9_c00113{word-spacing:18.936000px;}
.ws33_c00113{word-spacing:19.274400px;}
.ws1d_c00113{word-spacing:19.562400px;}
.ws7_c00113{word-spacing:19.612800px;}
.ws8_c00113{word-spacing:19.670400px;}
.ws13_c00113{word-spacing:21.420000px;}
.ws12_c00113{word-spacing:21.456000px;}
.ws1f_c00113{word-spacing:21.736800px;}
.ws2_c00113{word-spacing:31.816800px;}
.ws3_c00113{word-spacing:31.881600px;}
._0_c00113{width:1.137600px;}
.fc0_c00113{color:rgb(0,0,0);}
.fs0_c00113{font-size:72.000000px;}
.y0_c00113{bottom:0.000000px;}
.y2_c00113{bottom:46.830450px;}
.y1_c00113{bottom:67.530450px;}
.y27_c00113{bottom:135.480450px;}
.y26_c00113{bottom:156.180450px;}
.y25_c00113{bottom:176.880450px;}
.y24_c00113{bottom:197.580450px;}
.y23_c00113{bottom:218.280450px;}
.y22_c00113{bottom:238.980450px;}
.y21_c00113{bottom:259.680450px;}
.y20_c00113{bottom:308.730450px;}
.y1f_c00113{bottom:339.690450px;}
.y1e_c00113{bottom:370.740450px;}
.y1d_c00113{bottom:401.790450px;}
.y1c_c00113{bottom:432.840450px;}
.y1b_c00113{bottom:463.890450px;}
.y1a_c00113{bottom:494.940450px;}
.y19_c00113{bottom:525.990450px;}
.y18_c00113{bottom:546.690450px;}
.y17_c00113{bottom:567.390450px;}
.y16_c00113{bottom:588.090450px;}
.y15_c00113{bottom:608.790450px;}
.y14_c00113{bottom:629.490450px;}
.y13_c00113{bottom:650.190450px;}
.y12_c00113{bottom:670.890450px;}
.y11_c00113{bottom:691.590450px;}
.y10_c00113{bottom:712.290450px;}
.yf_c00113{bottom:732.990450px;}
.ye_c00113{bottom:782.040450px;}
.yd_c00113{bottom:813.090450px;}
.yc_c00113{bottom:862.140450px;}
.yb_c00113{bottom:882.840450px;}
.ya_c00113{bottom:903.540450px;}
.y9_c00113{bottom:924.240450px;}
.y8_c00113{bottom:944.940450px;}
.y7_c00113{bottom:965.640450px;}
.y6_c00113{bottom:986.340450px;}
.y5_c00113{bottom:1035.390450px;}
.y4_c00113{bottom:1066.440450px;}
.y3_c00113{bottom:1097.490450px;}
.h1_c00113{height:63.175781px;}
.h2_c00113{height:64.546875px;}
.h3_c00113{height:75.093750px;}
.h0_c00113{height:1263.000000px;}
.w1_c00113{width:892.500000px;}
.w0_c00113{width:892.830000px;}
.x0_c00113{left:0.000000px;}
.x2_c00113{left:127.620000px;}
.x3_c00113{left:148.950000px;}
.x1_c00113{left:695.880000px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls9_c00113{letter-spacing:-0.064000pt;}
.lsb_c00113{letter-spacing:-0.057600pt;}
.ls6_c00113{letter-spacing:-0.051200pt;}
.ls4_c00113{letter-spacing:-0.044800pt;}
.ls2_c00113{letter-spacing:-0.038400pt;}
.ls7_c00113{letter-spacing:-0.032000pt;}
.ls3_c00113{letter-spacing:-0.025600pt;}
.ls8_c00113{letter-spacing:-0.019200pt;}
.ls5_c00113{letter-spacing:-0.012800pt;}
.lsa_c00113{letter-spacing:-0.006400pt;}
.ls1_c00113{letter-spacing:0.000000pt;}
.ls0_c00113{letter-spacing:0.006400pt;}
.ws0_c00113{word-spacing:-17.734400pt;}
.ws25_c00113{word-spacing:-3.091200pt;}
.ws24_c00113{word-spacing:-3.014400pt;}
.ws35_c00113{word-spacing:-2.393600pt;}
.ws37_c00113{word-spacing:-1.427200pt;}
.ws36_c00113{word-spacing:-1.395200pt;}
.ws1_c00113{word-spacing:0.000000pt;}
.ws29_c00113{word-spacing:0.006400pt;}
.ws14_c00113{word-spacing:0.070400pt;}
.ws28_c00113{word-spacing:0.083200pt;}
.ws11_c00113{word-spacing:0.147200pt;}
.ws21_c00113{word-spacing:0.160000pt;}
.ws6_c00113{word-spacing:0.166400pt;}
.ws1e_c00113{word-spacing:0.185600pt;}
.ws20_c00113{word-spacing:0.224000pt;}
.wsc_c00113{word-spacing:1.171200pt;}
.wsb_c00113{word-spacing:1.184000pt;}
.ws26_c00113{word-spacing:1.459200pt;}
.ws27_c00113{word-spacing:1.478400pt;}
.ws4_c00113{word-spacing:3.046400pt;}
.ws5_c00113{word-spacing:3.065600pt;}
.ws32_c00113{word-spacing:4.288000pt;}
.ws31_c00113{word-spacing:4.339200pt;}
.ws2a_c00113{word-spacing:4.345600pt;}
.ws2b_c00113{word-spacing:4.390400pt;}
.ws16_c00113{word-spacing:5.593600pt;}
.ws15_c00113{word-spacing:5.600000pt;}
.wse_c00113{word-spacing:6.566400pt;}
.wsd_c00113{word-spacing:6.604800pt;}
.ws2e_c00113{word-spacing:8.192000pt;}
.ws2f_c00113{word-spacing:8.204800pt;}
.ws23_c00113{word-spacing:8.428800pt;}
.ws19_c00113{word-spacing:8.473600pt;}
.ws22_c00113{word-spacing:8.492800pt;}
.ws1a_c00113{word-spacing:8.569600pt;}
.ws10_c00113{word-spacing:9.440000pt;}
.wsf_c00113{word-spacing:9.459200pt;}
.ws1b_c00113{word-spacing:10.073600pt;}
.ws1c_c00113{word-spacing:10.099200pt;}
.ws30_c00113{word-spacing:12.339200pt;}
.ws18_c00113{word-spacing:13.932800pt;}
.ws17_c00113{word-spacing:13.952000pt;}
.ws34_c00113{word-spacing:14.880000pt;}
.ws2d_c00113{word-spacing:14.912000pt;}
.ws2c_c00113{word-spacing:14.988800pt;}
.wsa_c00113{word-spacing:16.697600pt;}
.ws9_c00113{word-spacing:16.832000pt;}
.ws33_c00113{word-spacing:17.132800pt;}
.ws1d_c00113{word-spacing:17.388800pt;}
.ws7_c00113{word-spacing:17.433600pt;}
.ws8_c00113{word-spacing:17.484800pt;}
.ws13_c00113{word-spacing:19.040000pt;}
.ws12_c00113{word-spacing:19.072000pt;}
.ws1f_c00113{word-spacing:19.321600pt;}
.ws2_c00113{word-spacing:28.281600pt;}
.ws3_c00113{word-spacing:28.339200pt;}
._0_c00113{width:1.011200pt;}
.fs0_c00113{font-size:64.000000pt;}
.y0_c00113{bottom:0.000000pt;}
.y2_c00113{bottom:41.627067pt;}
.y1_c00113{bottom:60.027067pt;}
.y27_c00113{bottom:120.427067pt;}
.y26_c00113{bottom:138.827067pt;}
.y25_c00113{bottom:157.227067pt;}
.y24_c00113{bottom:175.627067pt;}
.y23_c00113{bottom:194.027067pt;}
.y22_c00113{bottom:212.427067pt;}
.y21_c00113{bottom:230.827067pt;}
.y20_c00113{bottom:274.427067pt;}
.y1f_c00113{bottom:301.947067pt;}
.y1e_c00113{bottom:329.547067pt;}
.y1d_c00113{bottom:357.147067pt;}
.y1c_c00113{bottom:384.747067pt;}
.y1b_c00113{bottom:412.347067pt;}
.y1a_c00113{bottom:439.947067pt;}
.y19_c00113{bottom:467.547067pt;}
.y18_c00113{bottom:485.947067pt;}
.y17_c00113{bottom:504.347067pt;}
.y16_c00113{bottom:522.747067pt;}
.y15_c00113{bottom:541.147067pt;}
.y14_c00113{bottom:559.547067pt;}
.y13_c00113{bottom:577.947067pt;}
.y12_c00113{bottom:596.347067pt;}
.y11_c00113{bottom:614.747067pt;}
.y10_c00113{bottom:633.147067pt;}
.yf_c00113{bottom:651.547067pt;}
.ye_c00113{bottom:695.147067pt;}
.yd_c00113{bottom:722.747067pt;}
.yc_c00113{bottom:766.347067pt;}
.yb_c00113{bottom:784.747067pt;}
.ya_c00113{bottom:803.147067pt;}
.y9_c00113{bottom:821.547067pt;}
.y8_c00113{bottom:839.947067pt;}
.y7_c00113{bottom:858.347067pt;}
.y6_c00113{bottom:876.747067pt;}
.y5_c00113{bottom:920.347067pt;}
.y4_c00113{bottom:947.947067pt;}
.y3_c00113{bottom:975.547067pt;}
.h1_c00113{height:56.156250pt;}
.h2_c00113{height:57.375000pt;}
.h3_c00113{height:66.750000pt;}
.h0_c00113{height:1122.666667pt;}
.w1_c00113{width:793.333333pt;}
.w0_c00113{width:793.626667pt;}
.x0_c00113{left:0.000000pt;}
.x2_c00113{left:113.440000pt;}
.x3_c00113{left:132.400000pt;}
.x1_c00113{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_375c2b428f4e988ed7497751.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.093262;font-style:normal;font-weight:normal;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_75a49b9e5230617bb2d67526.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.106934;font-style:normal;font-weight:normal;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_e15905b9445e42ac5af8366a.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00114;src:url('chunks/assets/font_43804a121db969f2b49ee9bf.woff2')format("woff");}.ff4_c00114{font-family:ff4_c00114;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00114{vertical-align:-20.880000px;}
.v0_c00114{vertical-align:0.000000px;}
.v1_c00114{vertical-align:24.120000px;}
.lse_c00114{letter-spacing:-0.180000px;}
.ls19_c00114{letter-spacing:-0.150300px;}
.ls18_c00114{letter-spacing:-0.120240px;}
.ls17_c00114{letter-spacing:-0.102204px;}
.lsb_c00114{letter-spacing:-0.093600px;}
.lsf_c00114{letter-spacing:-0.086400px;}
.ls8_c00114{letter-spacing:-0.079200px;}
.ls11_c00114{letter-spacing:-0.064800px;}
.lsd_c00114{letter-spacing:-0.057600px;}
.ls7_c00114{letter-spacing:-0.050400px;}
.ls10_c00114{letter-spacing:-0.043200px;}
.lsa_c00114{letter-spacing:-0.036000px;}
.ls6_c00114{letter-spacing:-0.028800px;}
.lsc_c00114{letter-spacing:-0.021600px;}
.ls9_c00114{letter-spacing:-0.014400px;}
.ls15_c00114{letter-spacing:-0.012024px;}
.ls13_c00114{letter-spacing:-0.007200px;}
.ls14_c00114{letter-spacing:-0.006012px;}
.ls5_c00114{letter-spacing:0.000000px;}
.ls0_c00114{letter-spacing:0.014400px;}
.ls1_c00114{letter-spacing:0.018720px;}
.ls12_c00114{letter-spacing:0.028800px;}
.ls2_c00114{letter-spacing:0.066132px;}
.ls4_c00114{letter-spacing:0.084168px;}
.ls3_c00114{letter-spacing:0.096192px;}
.ls16_c00114{letter-spacing:0.102204px;}
.sc__c00114{text-shadow:none;}
.sc0_c00114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00114{-webkit-text-stroke:0px transparent;}
.sc0_c00114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00114{word-spacing:-19.951200px;}
.ws1_c00114{word-spacing:-9.720000px;}
.ws18_c00114{word-spacing:-3.405600px;}
.ws19_c00114{word-spacing:-3.384000px;}
.ws37_c00114{word-spacing:-1.809612px;}
.ws35_c00114{word-spacing:-1.701396px;}
.ws3_c00114{word-spacing:-1.252800px;}
.ws4_c00114{word-spacing:-1.173600px;}
.ws34_c00114{word-spacing:-0.547200px;}
.ws1c_c00114{word-spacing:-0.532800px;}
.ws33_c00114{word-spacing:-0.518400px;}
.ws1b_c00114{word-spacing:-0.511200px;}
.ws2_c00114{word-spacing:0.000000px;}
.ws3d_c00114{word-spacing:0.006012px;}
.ws3a_c00114{word-spacing:0.024048px;}
.ws36_c00114{word-spacing:0.102204px;}
.ws20_c00114{word-spacing:0.129600px;}
.ws2e_c00114{word-spacing:0.158400px;}
.ws1a_c00114{word-spacing:0.187200px;}
.ws24_c00114{word-spacing:0.446400px;}
.ws25_c00114{word-spacing:0.525600px;}
.ws23_c00114{word-spacing:0.576000px;}
.ws26_c00114{word-spacing:0.842400px;}
.ws22_c00114{word-spacing:0.849600px;}
.ws27_c00114{word-spacing:0.892800px;}
.ws38_c00114{word-spacing:0.913824px;}
.ws39_c00114{word-spacing:0.931860px;}
.ws21_c00114{word-spacing:0.943200px;}
.ws31_c00114{word-spacing:1.252800px;}
.ws2a_c00114{word-spacing:1.288800px;}
.ws2b_c00114{word-spacing:1.317600px;}
.ws32_c00114{word-spacing:1.346400px;}
.ws3c_c00114{word-spacing:2.152296px;}
.ws15_c00114{word-spacing:2.354400px;}
.ws14_c00114{word-spacing:2.404800px;}
.ws10_c00114{word-spacing:2.606400px;}
.wsf_c00114{word-spacing:2.736000px;}
.ws13_c00114{word-spacing:3.060000px;}
.ws12_c00114{word-spacing:3.074400px;}
.ws17_c00114{word-spacing:5.176800px;}
.ws11_c00114{word-spacing:5.227200px;}
.ws16_c00114{word-spacing:5.234400px;}
.ws2c_c00114{word-spacing:6.660000px;}
.ws2d_c00114{word-spacing:6.674400px;}
.ws29_c00114{word-spacing:6.681600px;}
.ws28_c00114{word-spacing:6.688800px;}
.ws1e_c00114{word-spacing:7.740000px;}
.ws1d_c00114{word-spacing:7.768800px;}
.ws1f_c00114{word-spacing:7.848000px;}
.wsc_c00114{word-spacing:11.296800px;}
.wsb_c00114{word-spacing:11.412000px;}
.ws30_c00114{word-spacing:12.045600px;}
.ws2f_c00114{word-spacing:12.103200px;}
.ws8_c00114{word-spacing:15.472800px;}
.wsa_c00114{word-spacing:15.674400px;}
.ws9_c00114{word-spacing:15.688800px;}
.ws3b_c00114{word-spacing:26.158212px;}
.ws6_c00114{word-spacing:30.924000px;}
.ws5_c00114{word-spacing:31.161600px;}
.ws7_c00114{word-spacing:31.197600px;}
.wse_c00114{word-spacing:49.838400px;}
.wsd_c00114{word-spacing:49.860000px;}
._0_c00114{margin-left:-49.521600px;}
._2_c00114{margin-left:-1.296000px;}
._1_c00114{width:1.180800px;}
.fc0_c00114{color:rgb(0,0,0);}
.fs2_c00114{font-size:38.880000px;}
.fs1_c00114{font-size:47.880000px;}
.fs3_c00114{font-size:60.120000px;}
.fs0_c00114{font-size:72.000000px;}
.y0_c00114{bottom:0.000000px;}
.y2_c00114{bottom:46.830450px;}
.y1_c00114{bottom:67.530450px;}
.y27_c00114{bottom:131.133810px;}
.y26_c00114{bottom:148.418310px;}
.y25_c00114{bottom:165.702810px;}
.y24_c00114{bottom:182.897130px;}
.y23_c00114{bottom:200.181630px;}
.y22_c00114{bottom:217.466130px;}
.y21_c00114{bottom:239.880450px;}
.y20_c00114{bottom:252.570450px;}
.y1f_c00114{bottom:305.940450px;}
.y1e_c00114{bottom:337.080450px;}
.y1d_c00114{bottom:368.040450px;}
.y1c_c00114{bottom:388.740450px;}
.y1b_c00114{bottom:409.440450px;}
.y1a_c00114{bottom:430.140450px;}
.y19_c00114{bottom:450.840450px;}
.y18_c00114{bottom:471.540450px;}
.y17_c00114{bottom:492.240450px;}
.y16_c00114{bottom:512.940450px;}
.y15_c00114{bottom:533.640450px;}
.y14_c00114{bottom:554.340450px;}
.y13_c00114{bottom:603.390450px;}
.y12_c00114{bottom:634.440450px;}
.y11_c00114{bottom:665.490450px;}
.y10_c00114{bottom:714.540450px;}
.yf_c00114{bottom:745.590450px;}
.ye_c00114{bottom:776.640450px;}
.yd_c00114{bottom:807.690450px;}
.yc_c00114{bottom:838.740450px;}
.yb_c00114{bottom:869.700450px;}
.ya_c00114{bottom:900.840450px;}
.y9_c00114{bottom:931.890450px;}
.y8_c00114{bottom:962.940450px;}
.y7_c00114{bottom:993.990450px;}
.y6_c00114{bottom:1025.040450px;}
.y5_c00114{bottom:1056.090450px;}
.y4_c00114{bottom:1076.790450px;}
.y3_c00114{bottom:1097.490450px;}
.h5_c00114{height:39.709687px;}
.h6_c00114{height:52.751777px;}
.h1_c00114{height:63.175781px;}
.h2_c00114{height:64.546875px;}
.h4_c00114{height:67.043672px;}
.h3_c00114{height:75.093750px;}
.h0_c00114{height:1263.000000px;}
.w1_c00114{width:892.500000px;}
.w0_c00114{width:892.830000px;}
.x0_c00114{left:0.000000px;}
.x2_c00114{left:170.100000px;}
.x3_c00114{left:191.430000px;}
.x1_c00114{left:738.360000px;}
@media print{
.v2_c00114{vertical-align:-18.560000pt;}
.v0_c00114{vertical-align:0.000000pt;}
.v1_c00114{vertical-align:21.440000pt;}
.lse_c00114{letter-spacing:-0.160000pt;}
.ls19_c00114{letter-spacing:-0.133600pt;}
.ls18_c00114{letter-spacing:-0.106880pt;}
.ls17_c00114{letter-spacing:-0.090848pt;}
.lsb_c00114{letter-spacing:-0.083200pt;}
.lsf_c00114{letter-spacing:-0.076800pt;}
.ls8_c00114{letter-spacing:-0.070400pt;}
.ls11_c00114{letter-spacing:-0.057600pt;}
.lsd_c00114{letter-spacing:-0.051200pt;}
.ls7_c00114{letter-spacing:-0.044800pt;}
.ls10_c00114{letter-spacing:-0.038400pt;}
.lsa_c00114{letter-spacing:-0.032000pt;}
.ls6_c00114{letter-spacing:-0.025600pt;}
.lsc_c00114{letter-spacing:-0.019200pt;}
.ls9_c00114{letter-spacing:-0.012800pt;}
.ls15_c00114{letter-spacing:-0.010688pt;}
.ls13_c00114{letter-spacing:-0.006400pt;}
.ls14_c00114{letter-spacing:-0.005344pt;}
.ls5_c00114{letter-spacing:0.000000pt;}
.ls0_c00114{letter-spacing:0.012800pt;}
.ls1_c00114{letter-spacing:0.016640pt;}
.ls12_c00114{letter-spacing:0.025600pt;}
.ls2_c00114{letter-spacing:0.058784pt;}
.ls4_c00114{letter-spacing:0.074816pt;}
.ls3_c00114{letter-spacing:0.085504pt;}
.ls16_c00114{letter-spacing:0.090848pt;}
.ws0_c00114{word-spacing:-17.734400pt;}
.ws1_c00114{word-spacing:-8.640000pt;}
.ws18_c00114{word-spacing:-3.027200pt;}
.ws19_c00114{word-spacing:-3.008000pt;}
.ws37_c00114{word-spacing:-1.608544pt;}
.ws35_c00114{word-spacing:-1.512352pt;}
.ws3_c00114{word-spacing:-1.113600pt;}
.ws4_c00114{word-spacing:-1.043200pt;}
.ws34_c00114{word-spacing:-0.486400pt;}
.ws1c_c00114{word-spacing:-0.473600pt;}
.ws33_c00114{word-spacing:-0.460800pt;}
.ws1b_c00114{word-spacing:-0.454400pt;}
.ws2_c00114{word-spacing:0.000000pt;}
.ws3d_c00114{word-spacing:0.005344pt;}
.ws3a_c00114{word-spacing:0.021376pt;}
.ws36_c00114{word-spacing:0.090848pt;}
.ws20_c00114{word-spacing:0.115200pt;}
.ws2e_c00114{word-spacing:0.140800pt;}
.ws1a_c00114{word-spacing:0.166400pt;}
.ws24_c00114{word-spacing:0.396800pt;}
.ws25_c00114{word-spacing:0.467200pt;}
.ws23_c00114{word-spacing:0.512000pt;}
.ws26_c00114{word-spacing:0.748800pt;}
.ws22_c00114{word-spacing:0.755200pt;}
.ws27_c00114{word-spacing:0.793600pt;}
.ws38_c00114{word-spacing:0.812288pt;}
.ws39_c00114{word-spacing:0.828320pt;}
.ws21_c00114{word-spacing:0.838400pt;}
.ws31_c00114{word-spacing:1.113600pt;}
.ws2a_c00114{word-spacing:1.145600pt;}
.ws2b_c00114{word-spacing:1.171200pt;}
.ws32_c00114{word-spacing:1.196800pt;}
.ws3c_c00114{word-spacing:1.913152pt;}
.ws15_c00114{word-spacing:2.092800pt;}
.ws14_c00114{word-spacing:2.137600pt;}
.ws10_c00114{word-spacing:2.316800pt;}
.wsf_c00114{word-spacing:2.432000pt;}
.ws13_c00114{word-spacing:2.720000pt;}
.ws12_c00114{word-spacing:2.732800pt;}
.ws17_c00114{word-spacing:4.601600pt;}
.ws11_c00114{word-spacing:4.646400pt;}
.ws16_c00114{word-spacing:4.652800pt;}
.ws2c_c00114{word-spacing:5.920000pt;}
.ws2d_c00114{word-spacing:5.932800pt;}
.ws29_c00114{word-spacing:5.939200pt;}
.ws28_c00114{word-spacing:5.945600pt;}
.ws1e_c00114{word-spacing:6.880000pt;}
.ws1d_c00114{word-spacing:6.905600pt;}
.ws1f_c00114{word-spacing:6.976000pt;}
.wsc_c00114{word-spacing:10.041600pt;}
.wsb_c00114{word-spacing:10.144000pt;}
.ws30_c00114{word-spacing:10.707200pt;}
.ws2f_c00114{word-spacing:10.758400pt;}
.ws8_c00114{word-spacing:13.753600pt;}
.wsa_c00114{word-spacing:13.932800pt;}
.ws9_c00114{word-spacing:13.945600pt;}
.ws3b_c00114{word-spacing:23.251744pt;}
.ws6_c00114{word-spacing:27.488000pt;}
.ws5_c00114{word-spacing:27.699200pt;}
.ws7_c00114{word-spacing:27.731200pt;}
.wse_c00114{word-spacing:44.300800pt;}
.wsd_c00114{word-spacing:44.320000pt;}
._0_c00114{margin-left:-44.019200pt;}
._2_c00114{margin-left:-1.152000pt;}
._1_c00114{width:1.049600pt;}
.fs2_c00114{font-size:34.560000pt;}
.fs1_c00114{font-size:42.560000pt;}
.fs3_c00114{font-size:53.440000pt;}
.fs0_c00114{font-size:64.000000pt;}
.y0_c00114{bottom:0.000000pt;}
.y2_c00114{bottom:41.627067pt;}
.y1_c00114{bottom:60.027067pt;}
.y27_c00114{bottom:116.563387pt;}
.y26_c00114{bottom:131.927387pt;}
.y25_c00114{bottom:147.291387pt;}
.y24_c00114{bottom:162.575227pt;}
.y23_c00114{bottom:177.939227pt;}
.y22_c00114{bottom:193.303227pt;}
.y21_c00114{bottom:213.227067pt;}
.y20_c00114{bottom:224.507067pt;}
.y1f_c00114{bottom:271.947067pt;}
.y1e_c00114{bottom:299.627067pt;}
.y1d_c00114{bottom:327.147067pt;}
.y1c_c00114{bottom:345.547067pt;}
.y1b_c00114{bottom:363.947067pt;}
.y1a_c00114{bottom:382.347067pt;}
.y19_c00114{bottom:400.747067pt;}
.y18_c00114{bottom:419.147067pt;}
.y17_c00114{bottom:437.547067pt;}
.y16_c00114{bottom:455.947067pt;}
.y15_c00114{bottom:474.347067pt;}
.y14_c00114{bottom:492.747067pt;}
.y13_c00114{bottom:536.347067pt;}
.y12_c00114{bottom:563.947067pt;}
.y11_c00114{bottom:591.547067pt;}
.y10_c00114{bottom:635.147067pt;}
.yf_c00114{bottom:662.747067pt;}
.ye_c00114{bottom:690.347067pt;}
.yd_c00114{bottom:717.947067pt;}
.yc_c00114{bottom:745.547067pt;}
.yb_c00114{bottom:773.067067pt;}
.ya_c00114{bottom:800.747067pt;}
.y9_c00114{bottom:828.347067pt;}
.y8_c00114{bottom:855.947067pt;}
.y7_c00114{bottom:883.547067pt;}
.y6_c00114{bottom:911.147067pt;}
.y5_c00114{bottom:938.747067pt;}
.y4_c00114{bottom:957.147067pt;}
.y3_c00114{bottom:975.547067pt;}
.h5_c00114{height:35.297500pt;}
.h6_c00114{height:46.890469pt;}
.h1_c00114{height:56.156250pt;}
.h2_c00114{height:57.375000pt;}
.h4_c00114{height:59.594375pt;}
.h3_c00114{height:66.750000pt;}
.h0_c00114{height:1122.666667pt;}
.w1_c00114{width:793.333333pt;}
.w0_c00114{width:793.626667pt;}
.x0_c00114{left:0.000000pt;}
.x2_c00114{left:151.200000pt;}
.x3_c00114{left:170.160000pt;}
.x1_c00114{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c14ef6021a0cbae5b883f7d1.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.093262;font-style:normal;font-weight:normal;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_4eaf88a69197dde1752de99e.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00115;src:url('chunks/assets/font_050336a1381e4f0a1ccaf3d9.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:1.106934;font-style: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;}
.lsb_c00115{letter-spacing:-0.201600px;}
.ls6_c00115{letter-spacing:-0.194400px;}
.ls8_c00115{letter-spacing:-0.064800px;}
.ls9_c00115{letter-spacing:-0.057600px;}
.ls5_c00115{letter-spacing:-0.050400px;}
.ls3_c00115{letter-spacing:-0.043200px;}
.ls2_c00115{letter-spacing:-0.036000px;}
.lsa_c00115{letter-spacing:-0.028800px;}
.ls1_c00115{letter-spacing:-0.021600px;}
.ls4_c00115{letter-spacing:-0.014400px;}
.ls0_c00115{letter-spacing:0.000000px;}
.ls7_c00115{letter-spacing:0.108000px;}
.lsc_c00115{letter-spacing:843.998400px;}
.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;}
}
.ws0_c00115{word-spacing:-19.821600px;}
.ws10_c00115{word-spacing:-3.420000px;}
.ws1_c00115{word-spacing:0.000000px;}
.ws3_c00115{word-spacing:0.158400px;}
.ws2_c00115{word-spacing:0.180000px;}
.ws4_c00115{word-spacing:0.194400px;}
.ws13_c00115{word-spacing:0.208800px;}
.ws12_c00115{word-spacing:4.874400px;}
.ws11_c00115{word-spacing:5.011200px;}
.wsb_c00115{word-spacing:7.351200px;}
.wsa_c00115{word-spacing:7.423200px;}
.ws6_c00115{word-spacing:11.260800px;}
.ws5_c00115{word-spacing:11.361600px;}
.wse_c00115{word-spacing:11.721600px;}
.wsf_c00115{word-spacing:11.800800px;}
.wsd_c00115{word-spacing:25.732800px;}
.wsc_c00115{word-spacing:25.984800px;}
.ws9_c00115{word-spacing:36.770400px;}
.ws7_c00115{word-spacing:36.892800px;}
.ws8_c00115{word-spacing:36.928800px;}
._0_c00115{width:1.080000px;}
.fc0_c00115{color:rgb(0,0,0);}
.fs0_c00115{font-size:72.000000px;}
.y0_c00115{bottom:0.000000px;}
.y2_c00115{bottom:46.830450px;}
.y1_c00115{bottom:67.530450px;}
.yd_c00115{bottom:768.990450px;}
.yc_c00115{bottom:817.950450px;}
.yb_c00115{bottom:849.000450px;}
.ya_c00115{bottom:880.140450px;}
.y9_c00115{bottom:911.190450px;}
.y8_c00115{bottom:942.240450px;}
.y7_c00115{bottom:973.290450px;}
.y6_c00115{bottom:1004.340450px;}
.y5_c00115{bottom:1035.390450px;}
.y4_c00115{bottom:1066.440450px;}
.y3_c00115{bottom:1097.490450px;}
.h1_c00115{height:63.175781px;}
.h3_c00115{height:64.546875px;}
.h2_c00115{height:75.093750px;}
.h0_c00115{height:1263.000000px;}
.w1_c00115{width:892.500000px;}
.w0_c00115{width:892.830000px;}
.x0_c00115{left:0.000000px;}
.x2_c00115{left:127.620000px;}
.x1_c00115{left:695.880000px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.lsb_c00115{letter-spacing:-0.179200pt;}
.ls6_c00115{letter-spacing:-0.172800pt;}
.ls8_c00115{letter-spacing:-0.057600pt;}
.ls9_c00115{letter-spacing:-0.051200pt;}
.ls5_c00115{letter-spacing:-0.044800pt;}
.ls3_c00115{letter-spacing:-0.038400pt;}
.ls2_c00115{letter-spacing:-0.032000pt;}
.lsa_c00115{letter-spacing:-0.025600pt;}
.ls1_c00115{letter-spacing:-0.019200pt;}
.ls4_c00115{letter-spacing:-0.012800pt;}
.ls0_c00115{letter-spacing:0.000000pt;}
.ls7_c00115{letter-spacing:0.096000pt;}
.lsc_c00115{letter-spacing:750.220800pt;}
.ws0_c00115{word-spacing:-17.619200pt;}
.ws10_c00115{word-spacing:-3.040000pt;}
.ws1_c00115{word-spacing:0.000000pt;}
.ws3_c00115{word-spacing:0.140800pt;}
.ws2_c00115{word-spacing:0.160000pt;}
.ws4_c00115{word-spacing:0.172800pt;}
.ws13_c00115{word-spacing:0.185600pt;}
.ws12_c00115{word-spacing:4.332800pt;}
.ws11_c00115{word-spacing:4.454400pt;}
.wsb_c00115{word-spacing:6.534400pt;}
.wsa_c00115{word-spacing:6.598400pt;}
.ws6_c00115{word-spacing:10.009600pt;}
.ws5_c00115{word-spacing:10.099200pt;}
.wse_c00115{word-spacing:10.419200pt;}
.wsf_c00115{word-spacing:10.489600pt;}
.wsd_c00115{word-spacing:22.873600pt;}
.wsc_c00115{word-spacing:23.097600pt;}
.ws9_c00115{word-spacing:32.684800pt;}
.ws7_c00115{word-spacing:32.793600pt;}
.ws8_c00115{word-spacing:32.825600pt;}
._0_c00115{width:0.960000pt;}
.fs0_c00115{font-size:64.000000pt;}
.y0_c00115{bottom:0.000000pt;}
.y2_c00115{bottom:41.627067pt;}
.y1_c00115{bottom:60.027067pt;}
.yd_c00115{bottom:683.547067pt;}
.yc_c00115{bottom:727.067067pt;}
.yb_c00115{bottom:754.667067pt;}
.ya_c00115{bottom:782.347067pt;}
.y9_c00115{bottom:809.947067pt;}
.y8_c00115{bottom:837.547067pt;}
.y7_c00115{bottom:865.147067pt;}
.y6_c00115{bottom:892.747067pt;}
.y5_c00115{bottom:920.347067pt;}
.y4_c00115{bottom:947.947067pt;}
.y3_c00115{bottom:975.547067pt;}
.h1_c00115{height:56.156250pt;}
.h3_c00115{height:57.375000pt;}
.h2_c00115{height:66.750000pt;}
.h0_c00115{height:1122.666667pt;}
.w1_c00115{width:793.333333pt;}
.w0_c00115{width:793.626667pt;}
.x0_c00115{left:0.000000pt;}
.x2_c00115{left:113.440000pt;}
.x1_c00115{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bffcae0b424ed7415b90055d.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.093262;font-style:normal;font-weight:normal;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_56c29fbd2fc6507a50df2659.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00116;src:url('chunks/assets/font_6bb176856d1b94ebef8f0a4f.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00116{vertical-align:0.000000px;}
.lsa_c00116{letter-spacing:-0.201600px;}
.ls4_c00116{letter-spacing:-0.100800px;}
.ls11_c00116{letter-spacing:-0.086400px;}
.ls10_c00116{letter-spacing:-0.079200px;}
.lse_c00116{letter-spacing:-0.072000px;}
.lsd_c00116{letter-spacing:-0.064800px;}
.ls9_c00116{letter-spacing:-0.057600px;}
.ls5_c00116{letter-spacing:-0.050400px;}
.lsb_c00116{letter-spacing:-0.043200px;}
.lsc_c00116{letter-spacing:-0.036000px;}
.ls6_c00116{letter-spacing:-0.028800px;}
.lsf_c00116{letter-spacing:-0.021600px;}
.ls8_c00116{letter-spacing:-0.014400px;}
.ls7_c00116{letter-spacing:-0.007200px;}
.ls2_c00116{letter-spacing:0.000000px;}
.ls1_c00116{letter-spacing:0.007200px;}
.ls0_c00116{letter-spacing:0.014400px;}
.ls12_c00116{letter-spacing:0.021600px;}
.ls3_c00116{letter-spacing:0.050328px;}
.sc__c00116{text-shadow:none;}
.sc0_c00116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00116{-webkit-text-stroke:0px transparent;}
.sc0_c00116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00116{word-spacing:-19.965600px;}
.ws3f_c00116{word-spacing:-4.183200px;}
.ws3e_c00116{word-spacing:-4.140000px;}
.ws2c_c00116{word-spacing:-3.168000px;}
.ws2b_c00116{word-spacing:-3.045600px;}
.ws31_c00116{word-spacing:-2.750400px;}
.ws32_c00116{word-spacing:-2.649600px;}
.ws1d_c00116{word-spacing:-1.605600px;}
.ws1c_c00116{word-spacing:-1.526400px;}
.ws23_c00116{word-spacing:-0.540000px;}
.ws22_c00116{word-spacing:-0.460800px;}
.ws2d_c00116{word-spacing:-0.194400px;}
.ws2e_c00116{word-spacing:-0.122400px;}
.ws1_c00116{word-spacing:0.000000px;}
.ws9_c00116{word-spacing:0.165600px;}
.wsa_c00116{word-spacing:0.172800px;}
.ws11_c00116{word-spacing:0.482400px;}
.wsc_c00116{word-spacing:0.504000px;}
.ws10_c00116{word-spacing:0.568800px;}
.wsb_c00116{word-spacing:0.619200px;}
.ws19_c00116{word-spacing:2.008800px;}
.ws1b_c00116{word-spacing:2.016000px;}
.ws1a_c00116{word-spacing:2.174400px;}
.ws26_c00116{word-spacing:2.332800px;}
.ws27_c00116{word-spacing:2.347200px;}
.ws15_c00116{word-spacing:3.002400px;}
.ws14_c00116{word-spacing:3.074400px;}
.ws16_c00116{word-spacing:3.081600px;}
.ws34_c00116{word-spacing:3.088800px;}
.ws33_c00116{word-spacing:3.096000px;}
.ws2a_c00116{word-spacing:3.398400px;}
.ws3b_c00116{word-spacing:3.412800px;}
.ws3a_c00116{word-spacing:3.477600px;}
.ws35_c00116{word-spacing:4.046400px;}
.ws37_c00116{word-spacing:4.147200px;}
.ws36_c00116{word-spacing:4.168800px;}
.ws38_c00116{word-spacing:4.190400px;}
.wse_c00116{word-spacing:4.334400px;}
.wsd_c00116{word-spacing:4.521600px;}
.ws30_c00116{word-spacing:4.831200px;}
.ws2f_c00116{word-spacing:4.888800px;}
.ws20_c00116{word-spacing:7.372800px;}
.ws21_c00116{word-spacing:7.408800px;}
.ws1f_c00116{word-spacing:7.416000px;}
.ws39_c00116{word-spacing:7.768800px;}
.ws17_c00116{word-spacing:11.001600px;}
.ws18_c00116{word-spacing:11.023200px;}
.ws3d_c00116{word-spacing:13.039200px;}
.ws3c_c00116{word-spacing:13.204800px;}
.ws12_c00116{word-spacing:18.547200px;}
.ws13_c00116{word-spacing:18.604800px;}
.ws4_c00116{word-spacing:20.728800px;}
.ws3_c00116{word-spacing:20.779200px;}
.ws24_c00116{word-spacing:21.772800px;}
.ws25_c00116{word-spacing:21.787200px;}
.ws1e_c00116{word-spacing:24.350400px;}
.wsf_c00116{word-spacing:26.114400px;}
.ws7_c00116{word-spacing:26.467200px;}
.ws8_c00116{word-spacing:26.488800px;}
.ws6_c00116{word-spacing:29.325600px;}
.ws5_c00116{word-spacing:29.347200px;}
.ws28_c00116{word-spacing:30.751200px;}
.ws29_c00116{word-spacing:30.902400px;}
.ws2_c00116{word-spacing:43.961508px;}
._0_c00116{width:1.094400px;}
.fc0_c00116{color:rgb(0,0,0);}
.fs0_c00116{font-size:72.000000px;}
.fs1_c00116{font-size:83.880000px;}
.y0_c00116{bottom:0.000000px;}
.y2_c00116{bottom:46.830450px;}
.y1_c00116{bottom:67.530450px;}
.y25_c00116{bottom:131.970450px;}
.y24_c00116{bottom:152.670450px;}
.y23_c00116{bottom:173.370450px;}
.y22_c00116{bottom:194.070450px;}
.y21_c00116{bottom:214.770450px;}
.y20_c00116{bottom:235.470450px;}
.y1f_c00116{bottom:256.170450px;}
.y1e_c00116{bottom:276.870450px;}
.y1d_c00116{bottom:297.570450px;}
.y1c_c00116{bottom:318.270450px;}
.y1b_c00116{bottom:338.970450px;}
.y1a_c00116{bottom:359.670450px;}
.y19_c00116{bottom:380.370450px;}
.y18_c00116{bottom:401.070450px;}
.y17_c00116{bottom:421.770450px;}
.y16_c00116{bottom:442.470450px;}
.y15_c00116{bottom:491.520450px;}
.y14_c00116{bottom:522.570450px;}
.y13_c00116{bottom:553.620450px;}
.y12_c00116{bottom:584.670450px;}
.y11_c00116{bottom:615.720450px;}
.y10_c00116{bottom:646.770450px;}
.yf_c00116{bottom:677.820450px;}
.ye_c00116{bottom:708.870450px;}
.yd_c00116{bottom:739.920450px;}
.yc_c00116{bottom:770.970450px;}
.yb_c00116{bottom:802.020450px;}
.ya_c00116{bottom:833.070450px;}
.y9_c00116{bottom:864.120450px;}
.y8_c00116{bottom:913.170450px;}
.y7_c00116{bottom:944.220450px;}
.y6_c00116{bottom:975.270450px;}
.y5_c00116{bottom:1006.320450px;}
.y4_c00116{bottom:1055.460450px;}
.y3_c00116{bottom:1094.520450px;}
.h1_c00116{height:63.175781px;}
.h3_c00116{height:64.546875px;}
.h4_c00116{height:75.093750px;}
.h2_c00116{height:87.484219px;}
.h0_c00116{height:1263.000000px;}
.w1_c00116{width:892.500000px;}
.w0_c00116{width:892.830000px;}
.x0_c00116{left:0.000000px;}
.x2_c00116{left:170.100000px;}
.x4_c00116{left:191.430000px;}
.x3_c00116{left:278.100000px;}
.x1_c00116{left:738.360000px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.lsa_c00116{letter-spacing:-0.179200pt;}
.ls4_c00116{letter-spacing:-0.089600pt;}
.ls11_c00116{letter-spacing:-0.076800pt;}
.ls10_c00116{letter-spacing:-0.070400pt;}
.lse_c00116{letter-spacing:-0.064000pt;}
.lsd_c00116{letter-spacing:-0.057600pt;}
.ls9_c00116{letter-spacing:-0.051200pt;}
.ls5_c00116{letter-spacing:-0.044800pt;}
.lsb_c00116{letter-spacing:-0.038400pt;}
.lsc_c00116{letter-spacing:-0.032000pt;}
.ls6_c00116{letter-spacing:-0.025600pt;}
.lsf_c00116{letter-spacing:-0.019200pt;}
.ls8_c00116{letter-spacing:-0.012800pt;}
.ls7_c00116{letter-spacing:-0.006400pt;}
.ls2_c00116{letter-spacing:0.000000pt;}
.ls1_c00116{letter-spacing:0.006400pt;}
.ls0_c00116{letter-spacing:0.012800pt;}
.ls12_c00116{letter-spacing:0.019200pt;}
.ls3_c00116{letter-spacing:0.044736pt;}
.ws0_c00116{word-spacing:-17.747200pt;}
.ws3f_c00116{word-spacing:-3.718400pt;}
.ws3e_c00116{word-spacing:-3.680000pt;}
.ws2c_c00116{word-spacing:-2.816000pt;}
.ws2b_c00116{word-spacing:-2.707200pt;}
.ws31_c00116{word-spacing:-2.444800pt;}
.ws32_c00116{word-spacing:-2.355200pt;}
.ws1d_c00116{word-spacing:-1.427200pt;}
.ws1c_c00116{word-spacing:-1.356800pt;}
.ws23_c00116{word-spacing:-0.480000pt;}
.ws22_c00116{word-spacing:-0.409600pt;}
.ws2d_c00116{word-spacing:-0.172800pt;}
.ws2e_c00116{word-spacing:-0.108800pt;}
.ws1_c00116{word-spacing:0.000000pt;}
.ws9_c00116{word-spacing:0.147200pt;}
.wsa_c00116{word-spacing:0.153600pt;}
.ws11_c00116{word-spacing:0.428800pt;}
.wsc_c00116{word-spacing:0.448000pt;}
.ws10_c00116{word-spacing:0.505600pt;}
.wsb_c00116{word-spacing:0.550400pt;}
.ws19_c00116{word-spacing:1.785600pt;}
.ws1b_c00116{word-spacing:1.792000pt;}
.ws1a_c00116{word-spacing:1.932800pt;}
.ws26_c00116{word-spacing:2.073600pt;}
.ws27_c00116{word-spacing:2.086400pt;}
.ws15_c00116{word-spacing:2.668800pt;}
.ws14_c00116{word-spacing:2.732800pt;}
.ws16_c00116{word-spacing:2.739200pt;}
.ws34_c00116{word-spacing:2.745600pt;}
.ws33_c00116{word-spacing:2.752000pt;}
.ws2a_c00116{word-spacing:3.020800pt;}
.ws3b_c00116{word-spacing:3.033600pt;}
.ws3a_c00116{word-spacing:3.091200pt;}
.ws35_c00116{word-spacing:3.596800pt;}
.ws37_c00116{word-spacing:3.686400pt;}
.ws36_c00116{word-spacing:3.705600pt;}
.ws38_c00116{word-spacing:3.724800pt;}
.wse_c00116{word-spacing:3.852800pt;}
.wsd_c00116{word-spacing:4.019200pt;}
.ws30_c00116{word-spacing:4.294400pt;}
.ws2f_c00116{word-spacing:4.345600pt;}
.ws20_c00116{word-spacing:6.553600pt;}
.ws21_c00116{word-spacing:6.585600pt;}
.ws1f_c00116{word-spacing:6.592000pt;}
.ws39_c00116{word-spacing:6.905600pt;}
.ws17_c00116{word-spacing:9.779200pt;}
.ws18_c00116{word-spacing:9.798400pt;}
.ws3d_c00116{word-spacing:11.590400pt;}
.ws3c_c00116{word-spacing:11.737600pt;}
.ws12_c00116{word-spacing:16.486400pt;}
.ws13_c00116{word-spacing:16.537600pt;}
.ws4_c00116{word-spacing:18.425600pt;}
.ws3_c00116{word-spacing:18.470400pt;}
.ws24_c00116{word-spacing:19.353600pt;}
.ws25_c00116{word-spacing:19.366400pt;}
.ws1e_c00116{word-spacing:21.644800pt;}
.wsf_c00116{word-spacing:23.212800pt;}
.ws7_c00116{word-spacing:23.526400pt;}
.ws8_c00116{word-spacing:23.545600pt;}
.ws6_c00116{word-spacing:26.067200pt;}
.ws5_c00116{word-spacing:26.086400pt;}
.ws28_c00116{word-spacing:27.334400pt;}
.ws29_c00116{word-spacing:27.468800pt;}
.ws2_c00116{word-spacing:39.076896pt;}
._0_c00116{width:0.972800pt;}
.fs0_c00116{font-size:64.000000pt;}
.fs1_c00116{font-size:74.560000pt;}
.y0_c00116{bottom:0.000000pt;}
.y2_c00116{bottom:41.627067pt;}
.y1_c00116{bottom:60.027067pt;}
.y25_c00116{bottom:117.307067pt;}
.y24_c00116{bottom:135.707067pt;}
.y23_c00116{bottom:154.107067pt;}
.y22_c00116{bottom:172.507067pt;}
.y21_c00116{bottom:190.907067pt;}
.y20_c00116{bottom:209.307067pt;}
.y1f_c00116{bottom:227.707067pt;}
.y1e_c00116{bottom:246.107067pt;}
.y1d_c00116{bottom:264.507067pt;}
.y1c_c00116{bottom:282.907067pt;}
.y1b_c00116{bottom:301.307067pt;}
.y1a_c00116{bottom:319.707067pt;}
.y19_c00116{bottom:338.107067pt;}
.y18_c00116{bottom:356.507067pt;}
.y17_c00116{bottom:374.907067pt;}
.y16_c00116{bottom:393.307067pt;}
.y15_c00116{bottom:436.907067pt;}
.y14_c00116{bottom:464.507067pt;}
.y13_c00116{bottom:492.107067pt;}
.y12_c00116{bottom:519.707067pt;}
.y11_c00116{bottom:547.307067pt;}
.y10_c00116{bottom:574.907067pt;}
.yf_c00116{bottom:602.507067pt;}
.ye_c00116{bottom:630.107067pt;}
.yd_c00116{bottom:657.707067pt;}
.yc_c00116{bottom:685.307067pt;}
.yb_c00116{bottom:712.907067pt;}
.ya_c00116{bottom:740.507067pt;}
.y9_c00116{bottom:768.107067pt;}
.y8_c00116{bottom:811.707067pt;}
.y7_c00116{bottom:839.307067pt;}
.y6_c00116{bottom:866.907067pt;}
.y5_c00116{bottom:894.507067pt;}
.y4_c00116{bottom:938.187067pt;}
.y3_c00116{bottom:972.907067pt;}
.h1_c00116{height:56.156250pt;}
.h3_c00116{height:57.375000pt;}
.h4_c00116{height:66.750000pt;}
.h2_c00116{height:77.763750pt;}
.h0_c00116{height:1122.666667pt;}
.w1_c00116{width:793.333333pt;}
.w0_c00116{width:793.626667pt;}
.x0_c00116{left:0.000000pt;}
.x2_c00116{left:151.200000pt;}
.x4_c00116{left:170.160000pt;}
.x3_c00116{left:247.200000pt;}
.x1_c00116{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_120594a67f6b1ac35edcc433.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.093262;font-style:normal;font-weight:normal;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_20d3f30943596cb5a8e089b4.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:1.106934;font-style:normal;font-weight:normal;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_d83ba7a389b0683914bb2d40.woff2')format("woff");}.ff3_c00117{font-family:ff3_c00117;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00117{letter-spacing:-0.108000px;}
.lsc_c00117{letter-spacing:-0.079200px;}
.lsa_c00117{letter-spacing:-0.072000px;}
.ls9_c00117{letter-spacing:-0.064800px;}
.ls3_c00117{letter-spacing:-0.057600px;}
.ls2_c00117{letter-spacing:-0.050400px;}
.ls8_c00117{letter-spacing:-0.043200px;}
.ls4_c00117{letter-spacing:-0.036000px;}
.ls1_c00117{letter-spacing:-0.028800px;}
.ls5_c00117{letter-spacing:-0.021600px;}
.ls6_c00117{letter-spacing:-0.014400px;}
.lsb_c00117{letter-spacing:-0.007200px;}
.ls0_c00117{letter-spacing:0.000000px;}
.ls7_c00117{letter-spacing:0.007200px;}
.lse_c00117{letter-spacing:843.998400px;}
.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;}
}
.wsc_c00117{word-spacing:-4.492800px;}
.wsb_c00117{word-spacing:-4.478400px;}
.ws39_c00117{word-spacing:-2.786400px;}
.ws24_c00117{word-spacing:-2.700000px;}
.ws23_c00117{word-spacing:-2.664000px;}
.ws2e_c00117{word-spacing:-2.354400px;}
.ws2d_c00117{word-spacing:-2.311200px;}
.ws3e_c00117{word-spacing:-1.231200px;}
.ws14_c00117{word-spacing:-0.540000px;}
.ws15_c00117{word-spacing:-0.424800px;}
.ws0_c00117{word-spacing:0.000000px;}
.ws34_c00117{word-spacing:0.180000px;}
.ws2c_c00117{word-spacing:0.244800px;}
.ws1c_c00117{word-spacing:0.482400px;}
.wsa_c00117{word-spacing:0.511200px;}
.ws8_c00117{word-spacing:0.554400px;}
.ws3_c00117{word-spacing:0.576000px;}
.ws1d_c00117{word-spacing:0.583200px;}
.ws9_c00117{word-spacing:0.669600px;}
.ws21_c00117{word-spacing:1.238400px;}
.ws22_c00117{word-spacing:1.296000px;}
.ws27_c00117{word-spacing:1.972800px;}
.ws28_c00117{word-spacing:2.001600px;}
.ws2f_c00117{word-spacing:2.354400px;}
.ws2b_c00117{word-spacing:2.534400px;}
.ws2a_c00117{word-spacing:2.721600px;}
.ws29_c00117{word-spacing:2.750400px;}
.ws37_c00117{word-spacing:3.376800px;}
.ws38_c00117{word-spacing:3.434400px;}
.ws16_c00117{word-spacing:4.521600px;}
.ws5_c00117{word-spacing:4.824000px;}
.ws7_c00117{word-spacing:4.852800px;}
.ws4_c00117{word-spacing:4.874400px;}
.ws6_c00117{word-spacing:4.917600px;}
.ws3d_c00117{word-spacing:5.234400px;}
.ws17_c00117{word-spacing:5.587200px;}
.ws36_c00117{word-spacing:6.285600px;}
.ws35_c00117{word-spacing:6.314400px;}
.ws31_c00117{word-spacing:6.645600px;}
.ws30_c00117{word-spacing:6.732000px;}
.ws32_c00117{word-spacing:8.100000px;}
.wsf_c00117{word-spacing:8.114400px;}
.ws33_c00117{word-spacing:8.121600px;}
.ws25_c00117{word-spacing:8.128800px;}
.ws26_c00117{word-spacing:8.136000px;}
.ws10_c00117{word-spacing:8.143200px;}
.ws1b_c00117{word-spacing:8.748000px;}
.ws1a_c00117{word-spacing:8.848800px;}
.ws11_c00117{word-spacing:11.340000px;}
.ws12_c00117{word-spacing:11.368800px;}
.wse_c00117{word-spacing:13.147200px;}
.wsd_c00117{word-spacing:13.161600px;}
.ws2_c00117{word-spacing:17.064000px;}
.ws1_c00117{word-spacing:17.107200px;}
.ws19_c00117{word-spacing:19.252800px;}
.ws18_c00117{word-spacing:19.281600px;}
.ws20_c00117{word-spacing:19.972800px;}
.ws1f_c00117{word-spacing:19.980000px;}
.ws1e_c00117{word-spacing:20.080800px;}
.ws3a_c00117{word-spacing:20.700000px;}
.ws3b_c00117{word-spacing:20.728800px;}
.ws3c_c00117{word-spacing:20.786400px;}
.ws13_c00117{word-spacing:28.648800px;}
._0_c00117{width:1.008000px;}
.fc0_c00117{color:rgb(0,0,0);}
.fs0_c00117{font-size:72.000000px;}
.y0_c00117{bottom:0.000000px;}
.y2_c00117{bottom:46.830450px;}
.y1_c00117{bottom:67.530450px;}
.y28_c00117{bottom:143.130450px;}
.y27_c00117{bottom:192.180450px;}
.y26_c00117{bottom:223.230450px;}
.y25_c00117{bottom:254.280450px;}
.y24_c00117{bottom:285.330450px;}
.y23_c00117{bottom:316.380450px;}
.y22_c00117{bottom:347.430450px;}
.y21_c00117{bottom:378.390450px;}
.y20_c00117{bottom:427.440450px;}
.y1f_c00117{bottom:458.490450px;}
.y1e_c00117{bottom:489.540450px;}
.y1d_c00117{bottom:520.590450px;}
.y1c_c00117{bottom:551.640450px;}
.y1b_c00117{bottom:600.690450px;}
.y1a_c00117{bottom:621.390450px;}
.y19_c00117{bottom:642.090450px;}
.y18_c00117{bottom:662.790450px;}
.y17_c00117{bottom:683.490450px;}
.y16_c00117{bottom:704.190450px;}
.y15_c00117{bottom:724.890450px;}
.y14_c00117{bottom:745.590450px;}
.y13_c00117{bottom:766.290450px;}
.y12_c00117{bottom:786.990450px;}
.y11_c00117{bottom:807.690450px;}
.y10_c00117{bottom:828.390450px;}
.yf_c00117{bottom:849.090450px;}
.ye_c00117{bottom:869.790450px;}
.yd_c00117{bottom:890.490450px;}
.yc_c00117{bottom:911.190450px;}
.yb_c00117{bottom:931.890450px;}
.ya_c00117{bottom:952.590450px;}
.y9_c00117{bottom:973.290450px;}
.y8_c00117{bottom:993.990450px;}
.y7_c00117{bottom:1014.690450px;}
.y6_c00117{bottom:1035.390450px;}
.y5_c00117{bottom:1056.090450px;}
.y4_c00117{bottom:1076.790450px;}
.y3_c00117{bottom:1097.490450px;}
.h1_c00117{height:63.175781px;}
.h2_c00117{height:64.546875px;}
.h3_c00117{height:75.093750px;}
.h0_c00117{height:1263.000000px;}
.w1_c00117{width:892.500000px;}
.w0_c00117{width:892.830000px;}
.x0_c00117{left:0.000000px;}
.x2_c00117{left:127.620000px;}
.x3_c00117{left:148.950000px;}
.x1_c00117{left:695.880000px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.lsd_c00117{letter-spacing:-0.096000pt;}
.lsc_c00117{letter-spacing:-0.070400pt;}
.lsa_c00117{letter-spacing:-0.064000pt;}
.ls9_c00117{letter-spacing:-0.057600pt;}
.ls3_c00117{letter-spacing:-0.051200pt;}
.ls2_c00117{letter-spacing:-0.044800pt;}
.ls8_c00117{letter-spacing:-0.038400pt;}
.ls4_c00117{letter-spacing:-0.032000pt;}
.ls1_c00117{letter-spacing:-0.025600pt;}
.ls5_c00117{letter-spacing:-0.019200pt;}
.ls6_c00117{letter-spacing:-0.012800pt;}
.lsb_c00117{letter-spacing:-0.006400pt;}
.ls0_c00117{letter-spacing:0.000000pt;}
.ls7_c00117{letter-spacing:0.006400pt;}
.lse_c00117{letter-spacing:750.220800pt;}
.wsc_c00117{word-spacing:-3.993600pt;}
.wsb_c00117{word-spacing:-3.980800pt;}
.ws39_c00117{word-spacing:-2.476800pt;}
.ws24_c00117{word-spacing:-2.400000pt;}
.ws23_c00117{word-spacing:-2.368000pt;}
.ws2e_c00117{word-spacing:-2.092800pt;}
.ws2d_c00117{word-spacing:-2.054400pt;}
.ws3e_c00117{word-spacing:-1.094400pt;}
.ws14_c00117{word-spacing:-0.480000pt;}
.ws15_c00117{word-spacing:-0.377600pt;}
.ws0_c00117{word-spacing:0.000000pt;}
.ws34_c00117{word-spacing:0.160000pt;}
.ws2c_c00117{word-spacing:0.217600pt;}
.ws1c_c00117{word-spacing:0.428800pt;}
.wsa_c00117{word-spacing:0.454400pt;}
.ws8_c00117{word-spacing:0.492800pt;}
.ws3_c00117{word-spacing:0.512000pt;}
.ws1d_c00117{word-spacing:0.518400pt;}
.ws9_c00117{word-spacing:0.595200pt;}
.ws21_c00117{word-spacing:1.100800pt;}
.ws22_c00117{word-spacing:1.152000pt;}
.ws27_c00117{word-spacing:1.753600pt;}
.ws28_c00117{word-spacing:1.779200pt;}
.ws2f_c00117{word-spacing:2.092800pt;}
.ws2b_c00117{word-spacing:2.252800pt;}
.ws2a_c00117{word-spacing:2.419200pt;}
.ws29_c00117{word-spacing:2.444800pt;}
.ws37_c00117{word-spacing:3.001600pt;}
.ws38_c00117{word-spacing:3.052800pt;}
.ws16_c00117{word-spacing:4.019200pt;}
.ws5_c00117{word-spacing:4.288000pt;}
.ws7_c00117{word-spacing:4.313600pt;}
.ws4_c00117{word-spacing:4.332800pt;}
.ws6_c00117{word-spacing:4.371200pt;}
.ws3d_c00117{word-spacing:4.652800pt;}
.ws17_c00117{word-spacing:4.966400pt;}
.ws36_c00117{word-spacing:5.587200pt;}
.ws35_c00117{word-spacing:5.612800pt;}
.ws31_c00117{word-spacing:5.907200pt;}
.ws30_c00117{word-spacing:5.984000pt;}
.ws32_c00117{word-spacing:7.200000pt;}
.wsf_c00117{word-spacing:7.212800pt;}
.ws33_c00117{word-spacing:7.219200pt;}
.ws25_c00117{word-spacing:7.225600pt;}
.ws26_c00117{word-spacing:7.232000pt;}
.ws10_c00117{word-spacing:7.238400pt;}
.ws1b_c00117{word-spacing:7.776000pt;}
.ws1a_c00117{word-spacing:7.865600pt;}
.ws11_c00117{word-spacing:10.080000pt;}
.ws12_c00117{word-spacing:10.105600pt;}
.wse_c00117{word-spacing:11.686400pt;}
.wsd_c00117{word-spacing:11.699200pt;}
.ws2_c00117{word-spacing:15.168000pt;}
.ws1_c00117{word-spacing:15.206400pt;}
.ws19_c00117{word-spacing:17.113600pt;}
.ws18_c00117{word-spacing:17.139200pt;}
.ws20_c00117{word-spacing:17.753600pt;}
.ws1f_c00117{word-spacing:17.760000pt;}
.ws1e_c00117{word-spacing:17.849600pt;}
.ws3a_c00117{word-spacing:18.400000pt;}
.ws3b_c00117{word-spacing:18.425600pt;}
.ws3c_c00117{word-spacing:18.476800pt;}
.ws13_c00117{word-spacing:25.465600pt;}
._0_c00117{width:0.896000pt;}
.fs0_c00117{font-size:64.000000pt;}
.y0_c00117{bottom:0.000000pt;}
.y2_c00117{bottom:41.627067pt;}
.y1_c00117{bottom:60.027067pt;}
.y28_c00117{bottom:127.227067pt;}
.y27_c00117{bottom:170.827067pt;}
.y26_c00117{bottom:198.427067pt;}
.y25_c00117{bottom:226.027067pt;}
.y24_c00117{bottom:253.627067pt;}
.y23_c00117{bottom:281.227067pt;}
.y22_c00117{bottom:308.827067pt;}
.y21_c00117{bottom:336.347067pt;}
.y20_c00117{bottom:379.947067pt;}
.y1f_c00117{bottom:407.547067pt;}
.y1e_c00117{bottom:435.147067pt;}
.y1d_c00117{bottom:462.747067pt;}
.y1c_c00117{bottom:490.347067pt;}
.y1b_c00117{bottom:533.947067pt;}
.y1a_c00117{bottom:552.347067pt;}
.y19_c00117{bottom:570.747067pt;}
.y18_c00117{bottom:589.147067pt;}
.y17_c00117{bottom:607.547067pt;}
.y16_c00117{bottom:625.947067pt;}
.y15_c00117{bottom:644.347067pt;}
.y14_c00117{bottom:662.747067pt;}
.y13_c00117{bottom:681.147067pt;}
.y12_c00117{bottom:699.547067pt;}
.y11_c00117{bottom:717.947067pt;}
.y10_c00117{bottom:736.347067pt;}
.yf_c00117{bottom:754.747067pt;}
.ye_c00117{bottom:773.147067pt;}
.yd_c00117{bottom:791.547067pt;}
.yc_c00117{bottom:809.947067pt;}
.yb_c00117{bottom:828.347067pt;}
.ya_c00117{bottom:846.747067pt;}
.y9_c00117{bottom:865.147067pt;}
.y8_c00117{bottom:883.547067pt;}
.y7_c00117{bottom:901.947067pt;}
.y6_c00117{bottom:920.347067pt;}
.y5_c00117{bottom:938.747067pt;}
.y4_c00117{bottom:957.147067pt;}
.y3_c00117{bottom:975.547067pt;}
.h1_c00117{height:56.156250pt;}
.h2_c00117{height:57.375000pt;}
.h3_c00117{height:66.750000pt;}
.h0_c00117{height:1122.666667pt;}
.w1_c00117{width:793.333333pt;}
.w0_c00117{width:793.626667pt;}
.x0_c00117{left:0.000000pt;}
.x2_c00117{left:113.440000pt;}
.x3_c00117{left:132.400000pt;}
.x1_c00117{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4531fc8bf4d169313a4bc836.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.093262;font-style:normal;font-weight:normal;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_e64bb239c6d2a4cab3dc9de6.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00118;src:url('chunks/assets/font_33e0cd4fee86d1bbaebd7ee5.woff2')format("woff");}.ff3_c00118{font-family:ff3_c00118;line-height:1.106934;font-style:normal;font-weight:normal;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_d308dbd314bf5e673cee1123.woff2')format("woff");}.ff4_c00118{font-family:ff4_c00118;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsf_c00118{letter-spacing:-0.100800px;}
.lsc_c00118{letter-spacing:-0.079200px;}
.ls8_c00118{letter-spacing:-0.072000px;}
.ls5_c00118{letter-spacing:-0.064800px;}
.lsd_c00118{letter-spacing:-0.057600px;}
.ls9_c00118{letter-spacing:-0.050400px;}
.ls4_c00118{letter-spacing:-0.043200px;}
.ls2_c00118{letter-spacing:-0.036000px;}
.ls3_c00118{letter-spacing:-0.028800px;}
.ls7_c00118{letter-spacing:-0.021600px;}
.ls6_c00118{letter-spacing:-0.014400px;}
.lsa_c00118{letter-spacing:-0.007200px;}
.ls1_c00118{letter-spacing:0.000000px;}
.lse_c00118{letter-spacing:0.007200px;}
.lsb_c00118{letter-spacing:0.014400px;}
.ls0_c00118{letter-spacing:0.050328px;}
.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;}
}
.ws2d_c00118{word-spacing:-4.536000px;}
.ws2e_c00118{word-spacing:-4.514400px;}
.ws24_c00118{word-spacing:-3.744000px;}
.wsd_c00118{word-spacing:-2.656800px;}
.ws11_c00118{word-spacing:-1.612800px;}
.ws12_c00118{word-spacing:-1.562400px;}
.ws14_c00118{word-spacing:-0.936000px;}
.ws13_c00118{word-spacing:-0.914400px;}
.ws2_c00118{word-spacing:-0.109044px;}
.ws0_c00118{word-spacing:0.000000px;}
.ws1_c00118{word-spacing:0.041940px;}
.ws2a_c00118{word-spacing:0.151200px;}
.ws3_c00118{word-spacing:0.194400px;}
.ws1e_c00118{word-spacing:0.374400px;}
.wsf_c00118{word-spacing:0.554400px;}
.ws27_c00118{word-spacing:0.568800px;}
.wse_c00118{word-spacing:0.590400px;}
.ws10_c00118{word-spacing:0.655200px;}
.ws22_c00118{word-spacing:1.296000px;}
.ws21_c00118{word-spacing:1.360800px;}
.ws29_c00118{word-spacing:2.023200px;}
.ws28_c00118{word-spacing:2.037600px;}
.ws18_c00118{word-spacing:4.154400px;}
.ws17_c00118{word-spacing:4.183200px;}
.ws7_c00118{word-spacing:4.478400px;}
.ws6_c00118{word-spacing:4.500000px;}
.ws2b_c00118{word-spacing:4.816800px;}
.ws2c_c00118{word-spacing:4.888800px;}
.ws1a_c00118{word-spacing:7.682400px;}
.ws19_c00118{word-spacing:7.725600px;}
.wsa_c00118{word-spacing:8.092800px;}
.ws26_c00118{word-spacing:8.359200px;}
.ws25_c00118{word-spacing:8.496000px;}
.wsc_c00118{word-spacing:8.798400px;}
.wsb_c00118{word-spacing:8.827200px;}
.ws20_c00118{word-spacing:10.274400px;}
.ws1f_c00118{word-spacing:10.396800px;}
.ws1b_c00118{word-spacing:14.220000px;}
.ws1d_c00118{word-spacing:14.241600px;}
.ws1c_c00118{word-spacing:14.263200px;}
.ws23_c00118{word-spacing:14.594400px;}
.ws4_c00118{word-spacing:15.674400px;}
.ws5_c00118{word-spacing:15.739200px;}
.ws2f_c00118{word-spacing:17.733600px;}
.ws30_c00118{word-spacing:17.834400px;}
.ws16_c00118{word-spacing:21.693600px;}
.ws15_c00118{word-spacing:21.772800px;}
.ws8_c00118{word-spacing:25.401600px;}
.ws9_c00118{word-spacing:25.495200px;}
._1_c00118{width:1.317600px;}
._0_c00118{width:9.730080px;}
.fc0_c00118{color:rgb(0,0,0);}
.fs0_c00118{font-size:72.000000px;}
.fs1_c00118{font-size:83.880000px;}
.y0_c00118{bottom:0.000000px;}
.y2_c00118{bottom:46.830450px;}
.y1_c00118{bottom:67.530450px;}
.y23_c00118{bottom:156.180450px;}
.y22_c00118{bottom:187.230450px;}
.y21_c00118{bottom:218.280450px;}
.y20_c00118{bottom:238.980450px;}
.y1f_c00118{bottom:259.680450px;}
.y1e_c00118{bottom:280.380450px;}
.y1d_c00118{bottom:301.080450px;}
.y1c_c00118{bottom:321.690450px;}
.y1b_c00118{bottom:342.390450px;}
.y1a_c00118{bottom:363.090450px;}
.y19_c00118{bottom:383.790450px;}
.y18_c00118{bottom:404.490450px;}
.y17_c00118{bottom:425.190450px;}
.y16_c00118{bottom:474.240450px;}
.y15_c00118{bottom:505.290450px;}
.y14_c00118{bottom:536.340450px;}
.y13_c00118{bottom:585.390450px;}
.y12_c00118{bottom:616.440450px;}
.y11_c00118{bottom:647.490450px;}
.y10_c00118{bottom:678.540450px;}
.yf_c00118{bottom:709.590450px;}
.ye_c00118{bottom:740.640450px;}
.yd_c00118{bottom:771.690450px;}
.yc_c00118{bottom:802.740450px;}
.yb_c00118{bottom:833.790450px;}
.ya_c00118{bottom:864.840450px;}
.y9_c00118{bottom:895.890450px;}
.y8_c00118{bottom:926.940450px;}
.y7_c00118{bottom:957.990450px;}
.y6_c00118{bottom:1007.040450px;}
.y5_c00118{bottom:1046.184600px;}
.y4_c00118{bottom:1070.404950px;}
.y3_c00118{bottom:1094.520450px;}
.h1_c00118{height:63.175781px;}
.h3_c00118{height:64.546875px;}
.h4_c00118{height:75.093750px;}
.h2_c00118{height:87.484219px;}
.h0_c00118{height:1263.000000px;}
.w1_c00118{width:892.500000px;}
.w0_c00118{width:892.830000px;}
.x0_c00118{left:0.000000px;}
.x2_c00118{left:170.100000px;}
.x5_c00118{left:191.430000px;}
.x3_c00118{left:251.100000px;}
.x4_c00118{left:299.708460px;}
.x1_c00118{left:738.360000px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.lsf_c00118{letter-spacing:-0.089600pt;}
.lsc_c00118{letter-spacing:-0.070400pt;}
.ls8_c00118{letter-spacing:-0.064000pt;}
.ls5_c00118{letter-spacing:-0.057600pt;}
.lsd_c00118{letter-spacing:-0.051200pt;}
.ls9_c00118{letter-spacing:-0.044800pt;}
.ls4_c00118{letter-spacing:-0.038400pt;}
.ls2_c00118{letter-spacing:-0.032000pt;}
.ls3_c00118{letter-spacing:-0.025600pt;}
.ls7_c00118{letter-spacing:-0.019200pt;}
.ls6_c00118{letter-spacing:-0.012800pt;}
.lsa_c00118{letter-spacing:-0.006400pt;}
.ls1_c00118{letter-spacing:0.000000pt;}
.lse_c00118{letter-spacing:0.006400pt;}
.lsb_c00118{letter-spacing:0.012800pt;}
.ls0_c00118{letter-spacing:0.044736pt;}
.ws2d_c00118{word-spacing:-4.032000pt;}
.ws2e_c00118{word-spacing:-4.012800pt;}
.ws24_c00118{word-spacing:-3.328000pt;}
.wsd_c00118{word-spacing:-2.361600pt;}
.ws11_c00118{word-spacing:-1.433600pt;}
.ws12_c00118{word-spacing:-1.388800pt;}
.ws14_c00118{word-spacing:-0.832000pt;}
.ws13_c00118{word-spacing:-0.812800pt;}
.ws2_c00118{word-spacing:-0.096928pt;}
.ws0_c00118{word-spacing:0.000000pt;}
.ws1_c00118{word-spacing:0.037280pt;}
.ws2a_c00118{word-spacing:0.134400pt;}
.ws3_c00118{word-spacing:0.172800pt;}
.ws1e_c00118{word-spacing:0.332800pt;}
.wsf_c00118{word-spacing:0.492800pt;}
.ws27_c00118{word-spacing:0.505600pt;}
.wse_c00118{word-spacing:0.524800pt;}
.ws10_c00118{word-spacing:0.582400pt;}
.ws22_c00118{word-spacing:1.152000pt;}
.ws21_c00118{word-spacing:1.209600pt;}
.ws29_c00118{word-spacing:1.798400pt;}
.ws28_c00118{word-spacing:1.811200pt;}
.ws18_c00118{word-spacing:3.692800pt;}
.ws17_c00118{word-spacing:3.718400pt;}
.ws7_c00118{word-spacing:3.980800pt;}
.ws6_c00118{word-spacing:4.000000pt;}
.ws2b_c00118{word-spacing:4.281600pt;}
.ws2c_c00118{word-spacing:4.345600pt;}
.ws1a_c00118{word-spacing:6.828800pt;}
.ws19_c00118{word-spacing:6.867200pt;}
.wsa_c00118{word-spacing:7.193600pt;}
.ws26_c00118{word-spacing:7.430400pt;}
.ws25_c00118{word-spacing:7.552000pt;}
.wsc_c00118{word-spacing:7.820800pt;}
.wsb_c00118{word-spacing:7.846400pt;}
.ws20_c00118{word-spacing:9.132800pt;}
.ws1f_c00118{word-spacing:9.241600pt;}
.ws1b_c00118{word-spacing:12.640000pt;}
.ws1d_c00118{word-spacing:12.659200pt;}
.ws1c_c00118{word-spacing:12.678400pt;}
.ws23_c00118{word-spacing:12.972800pt;}
.ws4_c00118{word-spacing:13.932800pt;}
.ws5_c00118{word-spacing:13.990400pt;}
.ws2f_c00118{word-spacing:15.763200pt;}
.ws30_c00118{word-spacing:15.852800pt;}
.ws16_c00118{word-spacing:19.283200pt;}
.ws15_c00118{word-spacing:19.353600pt;}
.ws8_c00118{word-spacing:22.579200pt;}
.ws9_c00118{word-spacing:22.662400pt;}
._1_c00118{width:1.171200pt;}
._0_c00118{width:8.648960pt;}
.fs0_c00118{font-size:64.000000pt;}
.fs1_c00118{font-size:74.560000pt;}
.y0_c00118{bottom:0.000000pt;}
.y2_c00118{bottom:41.627067pt;}
.y1_c00118{bottom:60.027067pt;}
.y23_c00118{bottom:138.827067pt;}
.y22_c00118{bottom:166.427067pt;}
.y21_c00118{bottom:194.027067pt;}
.y20_c00118{bottom:212.427067pt;}
.y1f_c00118{bottom:230.827067pt;}
.y1e_c00118{bottom:249.227067pt;}
.y1d_c00118{bottom:267.627067pt;}
.y1c_c00118{bottom:285.947067pt;}
.y1b_c00118{bottom:304.347067pt;}
.y1a_c00118{bottom:322.747067pt;}
.y19_c00118{bottom:341.147067pt;}
.y18_c00118{bottom:359.547067pt;}
.y17_c00118{bottom:377.947067pt;}
.y16_c00118{bottom:421.547067pt;}
.y15_c00118{bottom:449.147067pt;}
.y14_c00118{bottom:476.747067pt;}
.y13_c00118{bottom:520.347067pt;}
.y12_c00118{bottom:547.947067pt;}
.y11_c00118{bottom:575.547067pt;}
.y10_c00118{bottom:603.147067pt;}
.yf_c00118{bottom:630.747067pt;}
.ye_c00118{bottom:658.347067pt;}
.yd_c00118{bottom:685.947067pt;}
.yc_c00118{bottom:713.547067pt;}
.yb_c00118{bottom:741.147067pt;}
.ya_c00118{bottom:768.747067pt;}
.y9_c00118{bottom:796.347067pt;}
.y8_c00118{bottom:823.947067pt;}
.y7_c00118{bottom:851.547067pt;}
.y6_c00118{bottom:895.147067pt;}
.y5_c00118{bottom:929.941867pt;}
.y4_c00118{bottom:951.471067pt;}
.y3_c00118{bottom:972.907067pt;}
.h1_c00118{height:56.156250pt;}
.h3_c00118{height:57.375000pt;}
.h4_c00118{height:66.750000pt;}
.h2_c00118{height:77.763750pt;}
.h0_c00118{height:1122.666667pt;}
.w1_c00118{width:793.333333pt;}
.w0_c00118{width:793.626667pt;}
.x0_c00118{left:0.000000pt;}
.x2_c00118{left:151.200000pt;}
.x5_c00118{left:170.160000pt;}
.x3_c00118{left:223.200000pt;}
.x4_c00118{left:266.407520pt;}
.x1_c00118{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7f1e1cbb911a91dbb831282d.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.093262;font-style:normal;font-weight:normal;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_0c2502df5de8913f2d8d1432.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.106934;font-style:normal;font-weight:normal;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_0d888fd137a75194b082d29a.woff2')format("woff");}.ff3_c00119{font-family:ff3_c00119;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls7_c00119{letter-spacing:-0.093600px;}
.ls10_c00119{letter-spacing:-0.086400px;}
.lse_c00119{letter-spacing:-0.079200px;}
.ls5_c00119{letter-spacing:-0.072000px;}
.lsf_c00119{letter-spacing:-0.064800px;}
.lsc_c00119{letter-spacing:-0.057600px;}
.ls6_c00119{letter-spacing:-0.050400px;}
.lsd_c00119{letter-spacing:-0.043200px;}
.ls4_c00119{letter-spacing:-0.036000px;}
.ls8_c00119{letter-spacing:-0.028800px;}
.lsa_c00119{letter-spacing:-0.021600px;}
.ls9_c00119{letter-spacing:-0.014400px;}
.lsb_c00119{letter-spacing:-0.007200px;}
.ls3_c00119{letter-spacing:0.000000px;}
.ls11_c00119{letter-spacing:0.007200px;}
.ls2_c00119{letter-spacing:0.014400px;}
.ls1_c00119{letter-spacing:0.144000px;}
.ls0_c00119{letter-spacing:8.784000px;}
.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;}
}
.ws0_c00119{word-spacing:-20.001600px;}
.ws2_c00119{word-spacing:-19.994400px;}
.ws1_c00119{word-spacing:-19.951200px;}
.wsd_c00119{word-spacing:-3.844800px;}
.wsb_c00119{word-spacing:-3.780000px;}
.wsa_c00119{word-spacing:-3.765600px;}
.ws22_c00119{word-spacing:-3.758400px;}
.wsc_c00119{word-spacing:-3.751200px;}
.ws15_c00119{word-spacing:-3.088800px;}
.ws14_c00119{word-spacing:-3.060000px;}
.ws1a_c00119{word-spacing:-2.347200px;}
.ws1b_c00119{word-spacing:-2.318400px;}
.ws2e_c00119{word-spacing:-1.987200px;}
.ws11_c00119{word-spacing:-1.980000px;}
.ws2f_c00119{word-spacing:-1.828800px;}
.ws27_c00119{word-spacing:-1.274400px;}
.ws26_c00119{word-spacing:-1.260000px;}
.ws25_c00119{word-spacing:-1.137600px;}
.ws19_c00119{word-spacing:-0.972000px;}
.ws18_c00119{word-spacing:-0.871200px;}
.ws39_c00119{word-spacing:-0.028800px;}
.ws3_c00119{word-spacing:0.000000px;}
.ws33_c00119{word-spacing:0.093600px;}
.ws32_c00119{word-spacing:0.158400px;}
.wse_c00119{word-spacing:0.165600px;}
.ws38_c00119{word-spacing:0.180000px;}
.wsf_c00119{word-spacing:1.339200px;}
.ws10_c00119{word-spacing:1.368000px;}
.ws23_c00119{word-spacing:1.620000px;}
.ws24_c00119{word-spacing:1.684800px;}
.ws1f_c00119{word-spacing:1.936800px;}
.ws12_c00119{word-spacing:1.987200px;}
.ws1e_c00119{word-spacing:1.994400px;}
.ws13_c00119{word-spacing:2.001600px;}
.ws1c_c00119{word-spacing:2.340000px;}
.ws1d_c00119{word-spacing:2.354400px;}
.ws6_c00119{word-spacing:3.088800px;}
.ws7_c00119{word-spacing:3.132000px;}
.ws37_c00119{word-spacing:5.580000px;}
.ws4_c00119{word-spacing:6.530400px;}
.ws5_c00119{word-spacing:6.710400px;}
.ws29_c00119{word-spacing:8.805600px;}
.ws2a_c00119{word-spacing:8.812800px;}
.ws28_c00119{word-spacing:9.007200px;}
.ws2b_c00119{word-spacing:11.714400px;}
.ws36_c00119{word-spacing:15.688800px;}
.ws30_c00119{word-spacing:19.627200px;}
.ws31_c00119{word-spacing:19.713600px;}
.ws16_c00119{word-spacing:20.340000px;}
.ws17_c00119{word-spacing:20.354400px;}
.ws9_c00119{word-spacing:21.412800px;}
.ws8_c00119{word-spacing:21.427200px;}
.ws34_c00119{word-spacing:26.064000px;}
.ws35_c00119{word-spacing:26.085600px;}
.ws2d_c00119{word-spacing:43.725600px;}
.ws2c_c00119{word-spacing:43.797600px;}
.ws21_c00119{word-spacing:50.940000px;}
.ws20_c00119{word-spacing:50.954400px;}
._0_c00119{width:1.310400px;}
._1_c00119{width:11.779200px;}
.fc0_c00119{color:rgb(0,0,0);}
.fs0_c00119{font-size:72.000000px;}
.y0_c00119{bottom:0.000000px;}
.y2_c00119{bottom:46.830450px;}
.y1_c00119{bottom:67.530450px;}
.y20_c00119{bottom:192.180450px;}
.y1f_c00119{bottom:212.880450px;}
.y1e_c00119{bottom:233.580450px;}
.y1d_c00119{bottom:254.280450px;}
.y1c_c00119{bottom:303.330450px;}
.y1b_c00119{bottom:334.380450px;}
.y1a_c00119{bottom:365.430450px;}
.y19_c00119{bottom:396.390450px;}
.y18_c00119{bottom:427.440450px;}
.y17_c00119{bottom:458.490450px;}
.y16_c00119{bottom:489.540450px;}
.y15_c00119{bottom:520.590450px;}
.y14_c00119{bottom:551.640450px;}
.y13_c00119{bottom:582.690450px;}
.y12_c00119{bottom:613.740450px;}
.y11_c00119{bottom:644.790450px;}
.y10_c00119{bottom:675.840450px;}
.yf_c00119{bottom:706.890450px;}
.ye_c00119{bottom:737.940450px;}
.yd_c00119{bottom:768.990450px;}
.yc_c00119{bottom:800.040450px;}
.yb_c00119{bottom:831.090450px;}
.ya_c00119{bottom:862.140450px;}
.y9_c00119{bottom:893.190450px;}
.y8_c00119{bottom:942.240450px;}
.y7_c00119{bottom:973.290450px;}
.y6_c00119{bottom:1004.340450px;}
.y5_c00119{bottom:1035.390450px;}
.y4_c00119{bottom:1066.440450px;}
.y3_c00119{bottom:1097.490450px;}
.h1_c00119{height:63.175781px;}
.h2_c00119{height:64.546875px;}
.h3_c00119{height:75.093750px;}
.h0_c00119{height:1263.000000px;}
.w1_c00119{width:892.500000px;}
.w0_c00119{width:892.830000px;}
.x0_c00119{left:0.000000px;}
.x2_c00119{left:127.620000px;}
.x3_c00119{left:148.950000px;}
.x1_c00119{left:695.880000px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls7_c00119{letter-spacing:-0.083200pt;}
.ls10_c00119{letter-spacing:-0.076800pt;}
.lse_c00119{letter-spacing:-0.070400pt;}
.ls5_c00119{letter-spacing:-0.064000pt;}
.lsf_c00119{letter-spacing:-0.057600pt;}
.lsc_c00119{letter-spacing:-0.051200pt;}
.ls6_c00119{letter-spacing:-0.044800pt;}
.lsd_c00119{letter-spacing:-0.038400pt;}
.ls4_c00119{letter-spacing:-0.032000pt;}
.ls8_c00119{letter-spacing:-0.025600pt;}
.lsa_c00119{letter-spacing:-0.019200pt;}
.ls9_c00119{letter-spacing:-0.012800pt;}
.lsb_c00119{letter-spacing:-0.006400pt;}
.ls3_c00119{letter-spacing:0.000000pt;}
.ls11_c00119{letter-spacing:0.006400pt;}
.ls2_c00119{letter-spacing:0.012800pt;}
.ls1_c00119{letter-spacing:0.128000pt;}
.ls0_c00119{letter-spacing:7.808000pt;}
.ws0_c00119{word-spacing:-17.779200pt;}
.ws2_c00119{word-spacing:-17.772800pt;}
.ws1_c00119{word-spacing:-17.734400pt;}
.wsd_c00119{word-spacing:-3.417600pt;}
.wsb_c00119{word-spacing:-3.360000pt;}
.wsa_c00119{word-spacing:-3.347200pt;}
.ws22_c00119{word-spacing:-3.340800pt;}
.wsc_c00119{word-spacing:-3.334400pt;}
.ws15_c00119{word-spacing:-2.745600pt;}
.ws14_c00119{word-spacing:-2.720000pt;}
.ws1a_c00119{word-spacing:-2.086400pt;}
.ws1b_c00119{word-spacing:-2.060800pt;}
.ws2e_c00119{word-spacing:-1.766400pt;}
.ws11_c00119{word-spacing:-1.760000pt;}
.ws2f_c00119{word-spacing:-1.625600pt;}
.ws27_c00119{word-spacing:-1.132800pt;}
.ws26_c00119{word-spacing:-1.120000pt;}
.ws25_c00119{word-spacing:-1.011200pt;}
.ws19_c00119{word-spacing:-0.864000pt;}
.ws18_c00119{word-spacing:-0.774400pt;}
.ws39_c00119{word-spacing:-0.025600pt;}
.ws3_c00119{word-spacing:0.000000pt;}
.ws33_c00119{word-spacing:0.083200pt;}
.ws32_c00119{word-spacing:0.140800pt;}
.wse_c00119{word-spacing:0.147200pt;}
.ws38_c00119{word-spacing:0.160000pt;}
.wsf_c00119{word-spacing:1.190400pt;}
.ws10_c00119{word-spacing:1.216000pt;}
.ws23_c00119{word-spacing:1.440000pt;}
.ws24_c00119{word-spacing:1.497600pt;}
.ws1f_c00119{word-spacing:1.721600pt;}
.ws12_c00119{word-spacing:1.766400pt;}
.ws1e_c00119{word-spacing:1.772800pt;}
.ws13_c00119{word-spacing:1.779200pt;}
.ws1c_c00119{word-spacing:2.080000pt;}
.ws1d_c00119{word-spacing:2.092800pt;}
.ws6_c00119{word-spacing:2.745600pt;}
.ws7_c00119{word-spacing:2.784000pt;}
.ws37_c00119{word-spacing:4.960000pt;}
.ws4_c00119{word-spacing:5.804800pt;}
.ws5_c00119{word-spacing:5.964800pt;}
.ws29_c00119{word-spacing:7.827200pt;}
.ws2a_c00119{word-spacing:7.833600pt;}
.ws28_c00119{word-spacing:8.006400pt;}
.ws2b_c00119{word-spacing:10.412800pt;}
.ws36_c00119{word-spacing:13.945600pt;}
.ws30_c00119{word-spacing:17.446400pt;}
.ws31_c00119{word-spacing:17.523200pt;}
.ws16_c00119{word-spacing:18.080000pt;}
.ws17_c00119{word-spacing:18.092800pt;}
.ws9_c00119{word-spacing:19.033600pt;}
.ws8_c00119{word-spacing:19.046400pt;}
.ws34_c00119{word-spacing:23.168000pt;}
.ws35_c00119{word-spacing:23.187200pt;}
.ws2d_c00119{word-spacing:38.867200pt;}
.ws2c_c00119{word-spacing:38.931200pt;}
.ws21_c00119{word-spacing:45.280000pt;}
.ws20_c00119{word-spacing:45.292800pt;}
._0_c00119{width:1.164800pt;}
._1_c00119{width:10.470400pt;}
.fs0_c00119{font-size:64.000000pt;}
.y0_c00119{bottom:0.000000pt;}
.y2_c00119{bottom:41.627067pt;}
.y1_c00119{bottom:60.027067pt;}
.y20_c00119{bottom:170.827067pt;}
.y1f_c00119{bottom:189.227067pt;}
.y1e_c00119{bottom:207.627067pt;}
.y1d_c00119{bottom:226.027067pt;}
.y1c_c00119{bottom:269.627067pt;}
.y1b_c00119{bottom:297.227067pt;}
.y1a_c00119{bottom:324.827067pt;}
.y19_c00119{bottom:352.347067pt;}
.y18_c00119{bottom:379.947067pt;}
.y17_c00119{bottom:407.547067pt;}
.y16_c00119{bottom:435.147067pt;}
.y15_c00119{bottom:462.747067pt;}
.y14_c00119{bottom:490.347067pt;}
.y13_c00119{bottom:517.947067pt;}
.y12_c00119{bottom:545.547067pt;}
.y11_c00119{bottom:573.147067pt;}
.y10_c00119{bottom:600.747067pt;}
.yf_c00119{bottom:628.347067pt;}
.ye_c00119{bottom:655.947067pt;}
.yd_c00119{bottom:683.547067pt;}
.yc_c00119{bottom:711.147067pt;}
.yb_c00119{bottom:738.747067pt;}
.ya_c00119{bottom:766.347067pt;}
.y9_c00119{bottom:793.947067pt;}
.y8_c00119{bottom:837.547067pt;}
.y7_c00119{bottom:865.147067pt;}
.y6_c00119{bottom:892.747067pt;}
.y5_c00119{bottom:920.347067pt;}
.y4_c00119{bottom:947.947067pt;}
.y3_c00119{bottom:975.547067pt;}
.h1_c00119{height:56.156250pt;}
.h2_c00119{height:57.375000pt;}
.h3_c00119{height:66.750000pt;}
.h0_c00119{height:1122.666667pt;}
.w1_c00119{width:793.333333pt;}
.w0_c00119{width:793.626667pt;}
.x0_c00119{left:0.000000pt;}
.x2_c00119{left:113.440000pt;}
.x3_c00119{left:132.400000pt;}
.x1_c00119{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4f549f30217a07fa2078b6ad.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.093262;font-style:normal;font-weight:normal;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_54bfb6095408576dc4f5052a.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00120;src:url('chunks/assets/font_06c24e71aea591818835bc4d.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:1.106934;font-style:normal;font-weight:normal;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_4fd8fa8cd698eeadb0afde98.woff2')format("woff");}.ff4_c00120{font-family:ff4_c00120;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls5_c00120{letter-spacing:-0.086400px;}
.ls3_c00120{letter-spacing:-0.079200px;}
.lsd_c00120{letter-spacing:-0.064800px;}
.ls8_c00120{letter-spacing:-0.057600px;}
.ls9_c00120{letter-spacing:-0.050400px;}
.ls6_c00120{letter-spacing:-0.043200px;}
.ls7_c00120{letter-spacing:-0.036000px;}
.ls4_c00120{letter-spacing:-0.028800px;}
.lsc_c00120{letter-spacing:-0.021600px;}
.lsa_c00120{letter-spacing:-0.014400px;}
.lsb_c00120{letter-spacing:-0.007200px;}
.ls1_c00120{letter-spacing:0.000000px;}
.lse_c00120{letter-spacing:0.014400px;}
.ls0_c00120{letter-spacing:0.016776px;}
.ls2_c00120{letter-spacing:0.025164px;}
.lsf_c00120{letter-spacing:0.028800px;}
.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;}
}
.ws8_c00120{word-spacing:-4.125600px;}
.ws9_c00120{word-spacing:-4.104000px;}
.ws12_c00120{word-spacing:-3.052800px;}
.ws38_c00120{word-spacing:-3.038400px;}
.ws11_c00120{word-spacing:-3.031200px;}
.ws33_c00120{word-spacing:-2.052000px;}
.ws32_c00120{word-spacing:-1.944000px;}
.ws2d_c00120{word-spacing:-1.375200px;}
.ws2c_c00120{word-spacing:-1.231200px;}
.ws2_c00120{word-spacing:-0.025164px;}
.ws0_c00120{word-spacing:0.000000px;}
.ws3_c00120{word-spacing:0.058716px;}
.wse_c00120{word-spacing:0.172800px;}
.ws15_c00120{word-spacing:0.180000px;}
.ws1_c00120{word-spacing:0.218088px;}
.ws28_c00120{word-spacing:0.396000px;}
.ws1f_c00120{word-spacing:0.489600px;}
.ws20_c00120{word-spacing:0.540000px;}
.ws25_c00120{word-spacing:0.568800px;}
.ws29_c00120{word-spacing:0.576000px;}
.ws5_c00120{word-spacing:1.144800px;}
.ws4_c00120{word-spacing:1.317600px;}
.ws6_c00120{word-spacing:1.324800px;}
.ws37_c00120{word-spacing:2.347200px;}
.ws1a_c00120{word-spacing:3.060000px;}
.ws2a_c00120{word-spacing:3.067200px;}
.ws2b_c00120{word-spacing:3.074400px;}
.ws1b_c00120{word-spacing:3.175200px;}
.ws22_c00120{word-spacing:3.369600px;}
.ws1c_c00120{word-spacing:3.384000px;}
.ws21_c00120{word-spacing:3.448800px;}
.wsc_c00120{word-spacing:4.860000px;}
.wsd_c00120{word-spacing:4.874400px;}
.ws14_c00120{word-spacing:6.645600px;}
.ws13_c00120{word-spacing:6.703200px;}
.ws7_c00120{word-spacing:6.717600px;}
.wsf_c00120{word-spacing:7.408800px;}
.ws10_c00120{word-spacing:7.416000px;}
.wsb_c00120{word-spacing:8.107200px;}
.wsa_c00120{word-spacing:8.128800px;}
.ws34_c00120{word-spacing:10.288800px;}
.ws24_c00120{word-spacing:10.965600px;}
.ws23_c00120{word-spacing:10.980000px;}
.ws27_c00120{word-spacing:12.420000px;}
.ws26_c00120{word-spacing:12.441600px;}
.ws31_c00120{word-spacing:12.751200px;}
.ws30_c00120{word-spacing:12.772800px;}
.ws2e_c00120{word-spacing:12.801600px;}
.ws2f_c00120{word-spacing:13.147200px;}
.ws17_c00120{word-spacing:18.432000px;}
.ws16_c00120{word-spacing:18.532800px;}
.ws35_c00120{word-spacing:18.900000px;}
.ws36_c00120{word-spacing:18.907200px;}
.ws1d_c00120{word-spacing:20.678400px;}
.ws1e_c00120{word-spacing:20.728800px;}
.ws18_c00120{word-spacing:31.780800px;}
.ws19_c00120{word-spacing:31.881600px;}
._1_c00120{width:1.224000px;}
._0_c00120{width:187.387920px;}
.fc0_c00120{color:rgb(0,0,0);}
.fs0_c00120{font-size:72.000000px;}
.fs1_c00120{font-size:83.880000px;}
.y0_c00120{bottom:0.000000px;}
.y2_c00120{bottom:46.830450px;}
.y1_c00120{bottom:67.530450px;}
.y26_c00120{bottom:138.900450px;}
.y25_c00120{bottom:159.600450px;}
.y24_c00120{bottom:180.300450px;}
.y23_c00120{bottom:201.000450px;}
.y22_c00120{bottom:221.700450px;}
.y21_c00120{bottom:242.400450px;}
.y20_c00120{bottom:263.100450px;}
.y1f_c00120{bottom:283.800450px;}
.y1e_c00120{bottom:304.500450px;}
.y1d_c00120{bottom:325.200450px;}
.y1c_c00120{bottom:345.900450px;}
.y1b_c00120{bottom:366.600450px;}
.y1a_c00120{bottom:387.300450px;}
.y19_c00120{bottom:436.350450px;}
.y18_c00120{bottom:467.400450px;}
.y17_c00120{bottom:498.450450px;}
.y16_c00120{bottom:529.500450px;}
.y15_c00120{bottom:560.550450px;}
.y14_c00120{bottom:591.600450px;}
.y13_c00120{bottom:622.650450px;}
.y12_c00120{bottom:653.700450px;}
.y11_c00120{bottom:674.400450px;}
.y10_c00120{bottom:695.010450px;}
.yf_c00120{bottom:715.710450px;}
.ye_c00120{bottom:736.410450px;}
.yd_c00120{bottom:757.110450px;}
.yc_c00120{bottom:777.810450px;}
.yb_c00120{bottom:826.860450px;}
.ya_c00120{bottom:857.910450px;}
.y9_c00120{bottom:888.960450px;}
.y8_c00120{bottom:920.010450px;}
.y7_c00120{bottom:951.060450px;}
.y6_c00120{bottom:982.110450px;}
.y5_c00120{bottom:1031.160450px;}
.y4_c00120{bottom:1070.404950px;}
.y3_c00120{bottom:1094.520450px;}
.h1_c00120{height:63.175781px;}
.h3_c00120{height:64.546875px;}
.h4_c00120{height:75.093750px;}
.h2_c00120{height:87.484219px;}
.h0_c00120{height:1263.000000px;}
.w1_c00120{width:892.500000px;}
.w0_c00120{width:892.830000px;}
.x0_c00120{left:0.000000px;}
.x2_c00120{left:170.100000px;}
.x5_c00120{left:191.430000px;}
.x3_c00120{left:224.100000px;}
.x4_c00120{left:261.887940px;}
.x1_c00120{left:738.360000px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls5_c00120{letter-spacing:-0.076800pt;}
.ls3_c00120{letter-spacing:-0.070400pt;}
.lsd_c00120{letter-spacing:-0.057600pt;}
.ls8_c00120{letter-spacing:-0.051200pt;}
.ls9_c00120{letter-spacing:-0.044800pt;}
.ls6_c00120{letter-spacing:-0.038400pt;}
.ls7_c00120{letter-spacing:-0.032000pt;}
.ls4_c00120{letter-spacing:-0.025600pt;}
.lsc_c00120{letter-spacing:-0.019200pt;}
.lsa_c00120{letter-spacing:-0.012800pt;}
.lsb_c00120{letter-spacing:-0.006400pt;}
.ls1_c00120{letter-spacing:0.000000pt;}
.lse_c00120{letter-spacing:0.012800pt;}
.ls0_c00120{letter-spacing:0.014912pt;}
.ls2_c00120{letter-spacing:0.022368pt;}
.lsf_c00120{letter-spacing:0.025600pt;}
.ws8_c00120{word-spacing:-3.667200pt;}
.ws9_c00120{word-spacing:-3.648000pt;}
.ws12_c00120{word-spacing:-2.713600pt;}
.ws38_c00120{word-spacing:-2.700800pt;}
.ws11_c00120{word-spacing:-2.694400pt;}
.ws33_c00120{word-spacing:-1.824000pt;}
.ws32_c00120{word-spacing:-1.728000pt;}
.ws2d_c00120{word-spacing:-1.222400pt;}
.ws2c_c00120{word-spacing:-1.094400pt;}
.ws2_c00120{word-spacing:-0.022368pt;}
.ws0_c00120{word-spacing:0.000000pt;}
.ws3_c00120{word-spacing:0.052192pt;}
.wse_c00120{word-spacing:0.153600pt;}
.ws15_c00120{word-spacing:0.160000pt;}
.ws1_c00120{word-spacing:0.193856pt;}
.ws28_c00120{word-spacing:0.352000pt;}
.ws1f_c00120{word-spacing:0.435200pt;}
.ws20_c00120{word-spacing:0.480000pt;}
.ws25_c00120{word-spacing:0.505600pt;}
.ws29_c00120{word-spacing:0.512000pt;}
.ws5_c00120{word-spacing:1.017600pt;}
.ws4_c00120{word-spacing:1.171200pt;}
.ws6_c00120{word-spacing:1.177600pt;}
.ws37_c00120{word-spacing:2.086400pt;}
.ws1a_c00120{word-spacing:2.720000pt;}
.ws2a_c00120{word-spacing:2.726400pt;}
.ws2b_c00120{word-spacing:2.732800pt;}
.ws1b_c00120{word-spacing:2.822400pt;}
.ws22_c00120{word-spacing:2.995200pt;}
.ws1c_c00120{word-spacing:3.008000pt;}
.ws21_c00120{word-spacing:3.065600pt;}
.wsc_c00120{word-spacing:4.320000pt;}
.wsd_c00120{word-spacing:4.332800pt;}
.ws14_c00120{word-spacing:5.907200pt;}
.ws13_c00120{word-spacing:5.958400pt;}
.ws7_c00120{word-spacing:5.971200pt;}
.wsf_c00120{word-spacing:6.585600pt;}
.ws10_c00120{word-spacing:6.592000pt;}
.wsb_c00120{word-spacing:7.206400pt;}
.wsa_c00120{word-spacing:7.225600pt;}
.ws34_c00120{word-spacing:9.145600pt;}
.ws24_c00120{word-spacing:9.747200pt;}
.ws23_c00120{word-spacing:9.760000pt;}
.ws27_c00120{word-spacing:11.040000pt;}
.ws26_c00120{word-spacing:11.059200pt;}
.ws31_c00120{word-spacing:11.334400pt;}
.ws30_c00120{word-spacing:11.353600pt;}
.ws2e_c00120{word-spacing:11.379200pt;}
.ws2f_c00120{word-spacing:11.686400pt;}
.ws17_c00120{word-spacing:16.384000pt;}
.ws16_c00120{word-spacing:16.473600pt;}
.ws35_c00120{word-spacing:16.800000pt;}
.ws36_c00120{word-spacing:16.806400pt;}
.ws1d_c00120{word-spacing:18.380800pt;}
.ws1e_c00120{word-spacing:18.425600pt;}
.ws18_c00120{word-spacing:28.249600pt;}
.ws19_c00120{word-spacing:28.339200pt;}
._1_c00120{width:1.088000pt;}
._0_c00120{width:166.567040pt;}
.fs0_c00120{font-size:64.000000pt;}
.fs1_c00120{font-size:74.560000pt;}
.y0_c00120{bottom:0.000000pt;}
.y2_c00120{bottom:41.627067pt;}
.y1_c00120{bottom:60.027067pt;}
.y26_c00120{bottom:123.467067pt;}
.y25_c00120{bottom:141.867067pt;}
.y24_c00120{bottom:160.267067pt;}
.y23_c00120{bottom:178.667067pt;}
.y22_c00120{bottom:197.067067pt;}
.y21_c00120{bottom:215.467067pt;}
.y20_c00120{bottom:233.867067pt;}
.y1f_c00120{bottom:252.267067pt;}
.y1e_c00120{bottom:270.667067pt;}
.y1d_c00120{bottom:289.067067pt;}
.y1c_c00120{bottom:307.467067pt;}
.y1b_c00120{bottom:325.867067pt;}
.y1a_c00120{bottom:344.267067pt;}
.y19_c00120{bottom:387.867067pt;}
.y18_c00120{bottom:415.467067pt;}
.y17_c00120{bottom:443.067067pt;}
.y16_c00120{bottom:470.667067pt;}
.y15_c00120{bottom:498.267067pt;}
.y14_c00120{bottom:525.867067pt;}
.y13_c00120{bottom:553.467067pt;}
.y12_c00120{bottom:581.067067pt;}
.y11_c00120{bottom:599.467067pt;}
.y10_c00120{bottom:617.787067pt;}
.yf_c00120{bottom:636.187067pt;}
.ye_c00120{bottom:654.587067pt;}
.yd_c00120{bottom:672.987067pt;}
.yc_c00120{bottom:691.387067pt;}
.yb_c00120{bottom:734.987067pt;}
.ya_c00120{bottom:762.587067pt;}
.y9_c00120{bottom:790.187067pt;}
.y8_c00120{bottom:817.787067pt;}
.y7_c00120{bottom:845.387067pt;}
.y6_c00120{bottom:872.987067pt;}
.y5_c00120{bottom:916.587067pt;}
.y4_c00120{bottom:951.471067pt;}
.y3_c00120{bottom:972.907067pt;}
.h1_c00120{height:56.156250pt;}
.h3_c00120{height:57.375000pt;}
.h4_c00120{height:66.750000pt;}
.h2_c00120{height:77.763750pt;}
.h0_c00120{height:1122.666667pt;}
.w1_c00120{width:793.333333pt;}
.w0_c00120{width:793.626667pt;}
.x0_c00120{left:0.000000pt;}
.x2_c00120{left:151.200000pt;}
.x5_c00120{left:170.160000pt;}
.x3_c00120{left:199.200000pt;}
.x4_c00120{left:232.789280pt;}
.x1_c00120{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4f549f30217a07fa2078b6ad.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.093262;font-style:normal;font-weight:normal;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_fe731ab7633122e1542670e3.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.106934;font-style:normal;font-weight:normal;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_cc84a19a6df76554407596c8.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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.100800px;}
.lsc_c00121{letter-spacing:-0.072000px;}
.lse_c00121{letter-spacing:-0.064800px;}
.ls9_c00121{letter-spacing:-0.057600px;}
.ls3_c00121{letter-spacing:-0.050400px;}
.ls8_c00121{letter-spacing:-0.043200px;}
.ls7_c00121{letter-spacing:-0.036000px;}
.lsa_c00121{letter-spacing:-0.028800px;}
.ls5_c00121{letter-spacing:-0.021600px;}
.ls2_c00121{letter-spacing:-0.014400px;}
.ls6_c00121{letter-spacing:-0.007200px;}
.ls1_c00121{letter-spacing:0.000000px;}
.lsd_c00121{letter-spacing:0.007200px;}
.lsb_c00121{letter-spacing:0.014400px;}
.ls0_c00121{letter-spacing:0.144000px;}
.sc__c00121{text-shadow:none;}
.sc0_c00121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00121{-webkit-text-stroke:0px transparent;}
.sc0_c00121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00121{word-spacing:-19.987200px;}
.ws26_c00121{word-spacing:-4.456800px;}
.ws27_c00121{word-spacing:-4.413600px;}
.ws25_c00121{word-spacing:-4.125600px;}
.ws3_c00121{word-spacing:-3.823200px;}
.ws4_c00121{word-spacing:-3.700800px;}
.ws8_c00121{word-spacing:-3.513600px;}
.ws9_c00121{word-spacing:-3.398400px;}
.wse_c00121{word-spacing:-1.670400px;}
.ws11_c00121{word-spacing:-1.634400px;}
.wsf_c00121{word-spacing:-1.591200px;}
.ws10_c00121{word-spacing:-1.260000px;}
.ws2a_c00121{word-spacing:-0.957600px;}
.ws2b_c00121{word-spacing:-0.892800px;}
.ws15_c00121{word-spacing:-0.619200px;}
.ws14_c00121{word-spacing:-0.525600px;}
.ws1_c00121{word-spacing:0.000000px;}
.ws20_c00121{word-spacing:0.093600px;}
.wsd_c00121{word-spacing:0.144000px;}
.ws2e_c00121{word-spacing:0.187200px;}
.ws2f_c00121{word-spacing:0.201600px;}
.ws1b_c00121{word-spacing:0.252000px;}
.ws24_c00121{word-spacing:2.340000px;}
.ws23_c00121{word-spacing:2.448000px;}
.ws32_c00121{word-spacing:3.074400px;}
.ws33_c00121{word-spacing:3.110400px;}
.ws30_c00121{word-spacing:3.772800px;}
.ws31_c00121{word-spacing:3.830400px;}
.ws1f_c00121{word-spacing:4.492800px;}
.wsb_c00121{word-spacing:8.395200px;}
.ws21_c00121{word-spacing:8.467200px;}
.ws22_c00121{word-spacing:8.474400px;}
.ws1a_c00121{word-spacing:8.481600px;}
.wsa_c00121{word-spacing:8.496000px;}
.ws1c_c00121{word-spacing:9.194400px;}
.ws1d_c00121{word-spacing:9.201600px;}
.ws12_c00121{word-spacing:11.678400px;}
.ws13_c00121{word-spacing:11.750400px;}
.ws2d_c00121{word-spacing:13.104000px;}
.ws2c_c00121{word-spacing:13.147200px;}
.ws1e_c00121{word-spacing:14.565600px;}
.wsc_c00121{word-spacing:16.034400px;}
.ws5_c00121{word-spacing:16.740000px;}
.ws18_c00121{word-spacing:20.037600px;}
.ws16_c00121{word-spacing:27.172800px;}
.ws17_c00121{word-spacing:27.194400px;}
.ws29_c00121{word-spacing:27.525600px;}
.ws28_c00121{word-spacing:27.532800px;}
.ws2_c00121{word-spacing:27.892800px;}
.ws19_c00121{word-spacing:31.543200px;}
.ws7_c00121{word-spacing:34.272000px;}
.ws6_c00121{word-spacing:34.365600px;}
._0_c00121{width:1.310400px;}
._1_c00121{width:3.153600px;}
.fc0_c00121{color:rgb(0,0,0);}
.fs0_c00121{font-size:72.000000px;}
.y0_c00121{bottom:0.000000px;}
.y2_c00121{bottom:46.830450px;}
.y1_c00121{bottom:67.530450px;}
.y23_c00121{bottom:153.480450px;}
.y22_c00121{bottom:184.530450px;}
.y21_c00121{bottom:233.580450px;}
.y20_c00121{bottom:264.630450px;}
.y1f_c00121{bottom:295.680450px;}
.y1e_c00121{bottom:326.730450px;}
.y1d_c00121{bottom:357.690450px;}
.y1c_c00121{bottom:388.740450px;}
.y1b_c00121{bottom:419.790450px;}
.y1a_c00121{bottom:450.840450px;}
.y19_c00121{bottom:499.890450px;}
.y18_c00121{bottom:530.940450px;}
.y17_c00121{bottom:561.990450px;}
.y16_c00121{bottom:593.040450px;}
.y15_c00121{bottom:642.090450px;}
.y14_c00121{bottom:673.140450px;}
.y13_c00121{bottom:704.190450px;}
.y12_c00121{bottom:735.240450px;}
.y11_c00121{bottom:766.290450px;}
.y10_c00121{bottom:797.340450px;}
.yf_c00121{bottom:828.390450px;}
.ye_c00121{bottom:859.440450px;}
.yd_c00121{bottom:890.490450px;}
.yc_c00121{bottom:911.190450px;}
.yb_c00121{bottom:931.890450px;}
.ya_c00121{bottom:952.590450px;}
.y9_c00121{bottom:973.290450px;}
.y8_c00121{bottom:993.990450px;}
.y7_c00121{bottom:1014.690450px;}
.y6_c00121{bottom:1035.390450px;}
.y5_c00121{bottom:1056.090450px;}
.y4_c00121{bottom:1076.790450px;}
.y3_c00121{bottom:1097.490450px;}
.h1_c00121{height:63.175781px;}
.h2_c00121{height:64.546875px;}
.h3_c00121{height:75.093750px;}
.h0_c00121{height:1263.000000px;}
.w1_c00121{width:892.500000px;}
.w0_c00121{width:892.830000px;}
.x0_c00121{left:0.000000px;}
.x2_c00121{left:127.620000px;}
.x3_c00121{left:148.950000px;}
.x1_c00121{left:695.880000px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls4_c00121{letter-spacing:-0.089600pt;}
.lsc_c00121{letter-spacing:-0.064000pt;}
.lse_c00121{letter-spacing:-0.057600pt;}
.ls9_c00121{letter-spacing:-0.051200pt;}
.ls3_c00121{letter-spacing:-0.044800pt;}
.ls8_c00121{letter-spacing:-0.038400pt;}
.ls7_c00121{letter-spacing:-0.032000pt;}
.lsa_c00121{letter-spacing:-0.025600pt;}
.ls5_c00121{letter-spacing:-0.019200pt;}
.ls2_c00121{letter-spacing:-0.012800pt;}
.ls6_c00121{letter-spacing:-0.006400pt;}
.ls1_c00121{letter-spacing:0.000000pt;}
.lsd_c00121{letter-spacing:0.006400pt;}
.lsb_c00121{letter-spacing:0.012800pt;}
.ls0_c00121{letter-spacing:0.128000pt;}
.ws0_c00121{word-spacing:-17.766400pt;}
.ws26_c00121{word-spacing:-3.961600pt;}
.ws27_c00121{word-spacing:-3.923200pt;}
.ws25_c00121{word-spacing:-3.667200pt;}
.ws3_c00121{word-spacing:-3.398400pt;}
.ws4_c00121{word-spacing:-3.289600pt;}
.ws8_c00121{word-spacing:-3.123200pt;}
.ws9_c00121{word-spacing:-3.020800pt;}
.wse_c00121{word-spacing:-1.484800pt;}
.ws11_c00121{word-spacing:-1.452800pt;}
.wsf_c00121{word-spacing:-1.414400pt;}
.ws10_c00121{word-spacing:-1.120000pt;}
.ws2a_c00121{word-spacing:-0.851200pt;}
.ws2b_c00121{word-spacing:-0.793600pt;}
.ws15_c00121{word-spacing:-0.550400pt;}
.ws14_c00121{word-spacing:-0.467200pt;}
.ws1_c00121{word-spacing:0.000000pt;}
.ws20_c00121{word-spacing:0.083200pt;}
.wsd_c00121{word-spacing:0.128000pt;}
.ws2e_c00121{word-spacing:0.166400pt;}
.ws2f_c00121{word-spacing:0.179200pt;}
.ws1b_c00121{word-spacing:0.224000pt;}
.ws24_c00121{word-spacing:2.080000pt;}
.ws23_c00121{word-spacing:2.176000pt;}
.ws32_c00121{word-spacing:2.732800pt;}
.ws33_c00121{word-spacing:2.764800pt;}
.ws30_c00121{word-spacing:3.353600pt;}
.ws31_c00121{word-spacing:3.404800pt;}
.ws1f_c00121{word-spacing:3.993600pt;}
.wsb_c00121{word-spacing:7.462400pt;}
.ws21_c00121{word-spacing:7.526400pt;}
.ws22_c00121{word-spacing:7.532800pt;}
.ws1a_c00121{word-spacing:7.539200pt;}
.wsa_c00121{word-spacing:7.552000pt;}
.ws1c_c00121{word-spacing:8.172800pt;}
.ws1d_c00121{word-spacing:8.179200pt;}
.ws12_c00121{word-spacing:10.380800pt;}
.ws13_c00121{word-spacing:10.444800pt;}
.ws2d_c00121{word-spacing:11.648000pt;}
.ws2c_c00121{word-spacing:11.686400pt;}
.ws1e_c00121{word-spacing:12.947200pt;}
.wsc_c00121{word-spacing:14.252800pt;}
.ws5_c00121{word-spacing:14.880000pt;}
.ws18_c00121{word-spacing:17.811200pt;}
.ws16_c00121{word-spacing:24.153600pt;}
.ws17_c00121{word-spacing:24.172800pt;}
.ws29_c00121{word-spacing:24.467200pt;}
.ws28_c00121{word-spacing:24.473600pt;}
.ws2_c00121{word-spacing:24.793600pt;}
.ws19_c00121{word-spacing:28.038400pt;}
.ws7_c00121{word-spacing:30.464000pt;}
.ws6_c00121{word-spacing:30.547200pt;}
._0_c00121{width:1.164800pt;}
._1_c00121{width:2.803200pt;}
.fs0_c00121{font-size:64.000000pt;}
.y0_c00121{bottom:0.000000pt;}
.y2_c00121{bottom:41.627067pt;}
.y1_c00121{bottom:60.027067pt;}
.y23_c00121{bottom:136.427067pt;}
.y22_c00121{bottom:164.027067pt;}
.y21_c00121{bottom:207.627067pt;}
.y20_c00121{bottom:235.227067pt;}
.y1f_c00121{bottom:262.827067pt;}
.y1e_c00121{bottom:290.427067pt;}
.y1d_c00121{bottom:317.947067pt;}
.y1c_c00121{bottom:345.547067pt;}
.y1b_c00121{bottom:373.147067pt;}
.y1a_c00121{bottom:400.747067pt;}
.y19_c00121{bottom:444.347067pt;}
.y18_c00121{bottom:471.947067pt;}
.y17_c00121{bottom:499.547067pt;}
.y16_c00121{bottom:527.147067pt;}
.y15_c00121{bottom:570.747067pt;}
.y14_c00121{bottom:598.347067pt;}
.y13_c00121{bottom:625.947067pt;}
.y12_c00121{bottom:653.547067pt;}
.y11_c00121{bottom:681.147067pt;}
.y10_c00121{bottom:708.747067pt;}
.yf_c00121{bottom:736.347067pt;}
.ye_c00121{bottom:763.947067pt;}
.yd_c00121{bottom:791.547067pt;}
.yc_c00121{bottom:809.947067pt;}
.yb_c00121{bottom:828.347067pt;}
.ya_c00121{bottom:846.747067pt;}
.y9_c00121{bottom:865.147067pt;}
.y8_c00121{bottom:883.547067pt;}
.y7_c00121{bottom:901.947067pt;}
.y6_c00121{bottom:920.347067pt;}
.y5_c00121{bottom:938.747067pt;}
.y4_c00121{bottom:957.147067pt;}
.y3_c00121{bottom:975.547067pt;}
.h1_c00121{height:56.156250pt;}
.h2_c00121{height:57.375000pt;}
.h3_c00121{height:66.750000pt;}
.h0_c00121{height:1122.666667pt;}
.w1_c00121{width:793.333333pt;}
.w0_c00121{width:793.626667pt;}
.x0_c00121{left:0.000000pt;}
.x2_c00121{left:113.440000pt;}
.x3_c00121{left:132.400000pt;}
.x1_c00121{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_17ee88d1f45a5db004b4be30.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.093262;font-style:normal;font-weight:normal;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_c2b04384f76b89bb83ecd7f7.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.106934;font-style:normal;font-weight:normal;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_4e68d1818044cbac078e62df.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lse_c00122{letter-spacing:-0.100800px;}
.ls4_c00122{letter-spacing:-0.064800px;}
.ls5_c00122{letter-spacing:-0.057600px;}
.ls9_c00122{letter-spacing:-0.050400px;}
.lsd_c00122{letter-spacing:-0.043200px;}
.lsb_c00122{letter-spacing:-0.036000px;}
.lsc_c00122{letter-spacing:-0.028800px;}
.lsa_c00122{letter-spacing:-0.021600px;}
.ls7_c00122{letter-spacing:-0.014400px;}
.ls6_c00122{letter-spacing:-0.007200px;}
.ls3_c00122{letter-spacing:0.000000px;}
.ls2_c00122{letter-spacing:0.007200px;}
.ls8_c00122{letter-spacing:0.021600px;}
.lsf_c00122{letter-spacing:0.036000px;}
.ls0_c00122{letter-spacing:0.144000px;}
.ls1_c00122{letter-spacing:4.104000px;}
.ls10_c00122{letter-spacing:843.998400px;}
.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;}
}
.ws0_c00122{word-spacing:-19.951200px;}
.ws20_c00122{word-spacing:-4.125600px;}
.ws21_c00122{word-spacing:-4.053600px;}
.ws33_c00122{word-spacing:-3.067200px;}
.ws4_c00122{word-spacing:-2.714400px;}
.ws3_c00122{word-spacing:-2.664000px;}
.ws2_c00122{word-spacing:-2.563200px;}
.ws15_c00122{word-spacing:-2.404800px;}
.ws16_c00122{word-spacing:-2.354400px;}
.ws14_c00122{word-spacing:-2.332800px;}
.ws31_c00122{word-spacing:-2.030400px;}
.ws32_c00122{word-spacing:-2.008800px;}
.ws26_c00122{word-spacing:-1.958400px;}
.ws35_c00122{word-spacing:-0.900000px;}
.ws34_c00122{word-spacing:-0.806400px;}
.ws1_c00122{word-spacing:0.000000px;}
.ws17_c00122{word-spacing:0.151200px;}
.ws1c_c00122{word-spacing:0.165600px;}
.ws1b_c00122{word-spacing:0.172800px;}
.ws30_c00122{word-spacing:0.180000px;}
.ws18_c00122{word-spacing:0.194400px;}
.ws28_c00122{word-spacing:0.921600px;}
.ws29_c00122{word-spacing:0.928800px;}
.ws1f_c00122{word-spacing:1.195200px;}
.ws1e_c00122{word-spacing:1.274400px;}
.ws27_c00122{word-spacing:1.699200px;}
.wsa_c00122{word-spacing:2.016000px;}
.ws1d_c00122{word-spacing:2.023200px;}
.ws13_c00122{word-spacing:3.031200px;}
.ws12_c00122{word-spacing:3.196800px;}
.ws24_c00122{word-spacing:3.333600px;}
.ws25_c00122{word-spacing:3.420000px;}
.ws23_c00122{word-spacing:3.456000px;}
.ws7_c00122{word-spacing:4.096800px;}
.ws9_c00122{word-spacing:4.168800px;}
.ws8_c00122{word-spacing:4.183200px;}
.ws2a_c00122{word-spacing:4.485600px;}
.ws2b_c00122{word-spacing:4.507200px;}
.ws1a_c00122{word-spacing:5.220000px;}
.ws19_c00122{word-spacing:5.241600px;}
.ws22_c00122{word-spacing:5.954400px;}
.ws10_c00122{word-spacing:11.325600px;}
.wsf_c00122{word-spacing:11.340000px;}
.ws11_c00122{word-spacing:11.484000px;}
.wsd_c00122{word-spacing:12.434400px;}
.wse_c00122{word-spacing:12.506400px;}
.wsb_c00122{word-spacing:19.980000px;}
.wsc_c00122{word-spacing:20.023200px;}
.ws6_c00122{word-spacing:23.558400px;}
.ws5_c00122{word-spacing:23.572800px;}
.ws2f_c00122{word-spacing:37.555200px;}
.ws2e_c00122{word-spacing:37.641600px;}
.ws2d_c00122{word-spacing:40.413600px;}
.ws2c_c00122{word-spacing:40.492800px;}
._1_c00122{margin-left:-11.160000px;}
._2_c00122{margin-left:-1.123200px;}
._0_c00122{width:1.180800px;}
.fc0_c00122{color:rgb(0,0,0);}
.fs0_c00122{font-size:72.000000px;}
.y0_c00122{bottom:0.000000px;}
.y2_c00122{bottom:46.830450px;}
.y1_c00122{bottom:67.530450px;}
.y21_c00122{bottom:246.630450px;}
.y20_c00122{bottom:267.330450px;}
.y1f_c00122{bottom:288.030450px;}
.y1e_c00122{bottom:308.730450px;}
.y1d_c00122{bottom:329.430450px;}
.y1c_c00122{bottom:350.040450px;}
.y1b_c00122{bottom:370.740450px;}
.y1a_c00122{bottom:391.440450px;}
.y19_c00122{bottom:412.140450px;}
.y18_c00122{bottom:432.840450px;}
.y17_c00122{bottom:453.540450px;}
.y16_c00122{bottom:474.240450px;}
.y15_c00122{bottom:494.940450px;}
.y14_c00122{bottom:515.640450px;}
.y13_c00122{bottom:564.690450px;}
.y12_c00122{bottom:595.740450px;}
.y11_c00122{bottom:626.790450px;}
.y10_c00122{bottom:657.840450px;}
.yf_c00122{bottom:706.890450px;}
.ye_c00122{bottom:737.940450px;}
.yd_c00122{bottom:768.990450px;}
.yc_c00122{bottom:800.040450px;}
.yb_c00122{bottom:831.090450px;}
.ya_c00122{bottom:862.140450px;}
.y9_c00122{bottom:911.190450px;}
.y8_c00122{bottom:942.240450px;}
.y7_c00122{bottom:973.290450px;}
.y6_c00122{bottom:1004.250450px;}
.y5_c00122{bottom:1035.390450px;}
.y4_c00122{bottom:1066.440450px;}
.y3_c00122{bottom:1097.490450px;}
.h1_c00122{height:63.175781px;}
.h3_c00122{height:64.546875px;}
.h2_c00122{height:75.093750px;}
.h0_c00122{height:1263.000000px;}
.w1_c00122{width:892.500000px;}
.w0_c00122{width:892.830000px;}
.x0_c00122{left:0.000000px;}
.x2_c00122{left:170.100000px;}
.x3_c00122{left:191.430000px;}
.x1_c00122{left:738.360000px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.lse_c00122{letter-spacing:-0.089600pt;}
.ls4_c00122{letter-spacing:-0.057600pt;}
.ls5_c00122{letter-spacing:-0.051200pt;}
.ls9_c00122{letter-spacing:-0.044800pt;}
.lsd_c00122{letter-spacing:-0.038400pt;}
.lsb_c00122{letter-spacing:-0.032000pt;}
.lsc_c00122{letter-spacing:-0.025600pt;}
.lsa_c00122{letter-spacing:-0.019200pt;}
.ls7_c00122{letter-spacing:-0.012800pt;}
.ls6_c00122{letter-spacing:-0.006400pt;}
.ls3_c00122{letter-spacing:0.000000pt;}
.ls2_c00122{letter-spacing:0.006400pt;}
.ls8_c00122{letter-spacing:0.019200pt;}
.lsf_c00122{letter-spacing:0.032000pt;}
.ls0_c00122{letter-spacing:0.128000pt;}
.ls1_c00122{letter-spacing:3.648000pt;}
.ls10_c00122{letter-spacing:750.220800pt;}
.ws0_c00122{word-spacing:-17.734400pt;}
.ws20_c00122{word-spacing:-3.667200pt;}
.ws21_c00122{word-spacing:-3.603200pt;}
.ws33_c00122{word-spacing:-2.726400pt;}
.ws4_c00122{word-spacing:-2.412800pt;}
.ws3_c00122{word-spacing:-2.368000pt;}
.ws2_c00122{word-spacing:-2.278400pt;}
.ws15_c00122{word-spacing:-2.137600pt;}
.ws16_c00122{word-spacing:-2.092800pt;}
.ws14_c00122{word-spacing:-2.073600pt;}
.ws31_c00122{word-spacing:-1.804800pt;}
.ws32_c00122{word-spacing:-1.785600pt;}
.ws26_c00122{word-spacing:-1.740800pt;}
.ws35_c00122{word-spacing:-0.800000pt;}
.ws34_c00122{word-spacing:-0.716800pt;}
.ws1_c00122{word-spacing:0.000000pt;}
.ws17_c00122{word-spacing:0.134400pt;}
.ws1c_c00122{word-spacing:0.147200pt;}
.ws1b_c00122{word-spacing:0.153600pt;}
.ws30_c00122{word-spacing:0.160000pt;}
.ws18_c00122{word-spacing:0.172800pt;}
.ws28_c00122{word-spacing:0.819200pt;}
.ws29_c00122{word-spacing:0.825600pt;}
.ws1f_c00122{word-spacing:1.062400pt;}
.ws1e_c00122{word-spacing:1.132800pt;}
.ws27_c00122{word-spacing:1.510400pt;}
.wsa_c00122{word-spacing:1.792000pt;}
.ws1d_c00122{word-spacing:1.798400pt;}
.ws13_c00122{word-spacing:2.694400pt;}
.ws12_c00122{word-spacing:2.841600pt;}
.ws24_c00122{word-spacing:2.963200pt;}
.ws25_c00122{word-spacing:3.040000pt;}
.ws23_c00122{word-spacing:3.072000pt;}
.ws7_c00122{word-spacing:3.641600pt;}
.ws9_c00122{word-spacing:3.705600pt;}
.ws8_c00122{word-spacing:3.718400pt;}
.ws2a_c00122{word-spacing:3.987200pt;}
.ws2b_c00122{word-spacing:4.006400pt;}
.ws1a_c00122{word-spacing:4.640000pt;}
.ws19_c00122{word-spacing:4.659200pt;}
.ws22_c00122{word-spacing:5.292800pt;}
.ws10_c00122{word-spacing:10.067200pt;}
.wsf_c00122{word-spacing:10.080000pt;}
.ws11_c00122{word-spacing:10.208000pt;}
.wsd_c00122{word-spacing:11.052800pt;}
.wse_c00122{word-spacing:11.116800pt;}
.wsb_c00122{word-spacing:17.760000pt;}
.wsc_c00122{word-spacing:17.798400pt;}
.ws6_c00122{word-spacing:20.940800pt;}
.ws5_c00122{word-spacing:20.953600pt;}
.ws2f_c00122{word-spacing:33.382400pt;}
.ws2e_c00122{word-spacing:33.459200pt;}
.ws2d_c00122{word-spacing:35.923200pt;}
.ws2c_c00122{word-spacing:35.993600pt;}
._1_c00122{margin-left:-9.920000pt;}
._2_c00122{margin-left:-0.998400pt;}
._0_c00122{width:1.049600pt;}
.fs0_c00122{font-size:64.000000pt;}
.y0_c00122{bottom:0.000000pt;}
.y2_c00122{bottom:41.627067pt;}
.y1_c00122{bottom:60.027067pt;}
.y21_c00122{bottom:219.227067pt;}
.y20_c00122{bottom:237.627067pt;}
.y1f_c00122{bottom:256.027067pt;}
.y1e_c00122{bottom:274.427067pt;}
.y1d_c00122{bottom:292.827067pt;}
.y1c_c00122{bottom:311.147067pt;}
.y1b_c00122{bottom:329.547067pt;}
.y1a_c00122{bottom:347.947067pt;}
.y19_c00122{bottom:366.347067pt;}
.y18_c00122{bottom:384.747067pt;}
.y17_c00122{bottom:403.147067pt;}
.y16_c00122{bottom:421.547067pt;}
.y15_c00122{bottom:439.947067pt;}
.y14_c00122{bottom:458.347067pt;}
.y13_c00122{bottom:501.947067pt;}
.y12_c00122{bottom:529.547067pt;}
.y11_c00122{bottom:557.147067pt;}
.y10_c00122{bottom:584.747067pt;}
.yf_c00122{bottom:628.347067pt;}
.ye_c00122{bottom:655.947067pt;}
.yd_c00122{bottom:683.547067pt;}
.yc_c00122{bottom:711.147067pt;}
.yb_c00122{bottom:738.747067pt;}
.ya_c00122{bottom:766.347067pt;}
.y9_c00122{bottom:809.947067pt;}
.y8_c00122{bottom:837.547067pt;}
.y7_c00122{bottom:865.147067pt;}
.y6_c00122{bottom:892.667067pt;}
.y5_c00122{bottom:920.347067pt;}
.y4_c00122{bottom:947.947067pt;}
.y3_c00122{bottom:975.547067pt;}
.h1_c00122{height:56.156250pt;}
.h3_c00122{height:57.375000pt;}
.h2_c00122{height:66.750000pt;}
.h0_c00122{height:1122.666667pt;}
.w1_c00122{width:793.333333pt;}
.w0_c00122{width:793.626667pt;}
.x0_c00122{left:0.000000pt;}
.x2_c00122{left:151.200000pt;}
.x3_c00122{left:170.160000pt;}
.x1_c00122{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e48f61418c2ce975c7ab6000.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:1.106934;font-style: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;}
.ls0_c00123{letter-spacing:0.000000px;}
.ls1_c00123{letter-spacing:843.998400px;}
.sc__c00123{text-shadow:none;}
.sc0_c00123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00123{-webkit-text-stroke:0px transparent;}
.sc0_c00123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00123{word-spacing:0.000000px;}
.fc0_c00123{color:rgb(0,0,0);}
.fs0_c00123{font-size:72.000000px;}
.y0_c00123{bottom:0.000000px;}
.y2_c00123{bottom:46.830450px;}
.y1_c00123{bottom:67.530450px;}
.y3_c00123{bottom:1097.490450px;}
.h1_c00123{height:63.175781px;}
.h2_c00123{height:64.546875px;}
.h0_c00123{height:1263.000000px;}
.w1_c00123{width:892.500000px;}
.w0_c00123{width:892.830000px;}
.x0_c00123{left:0.000000px;}
.x2_c00123{left:127.620000px;}
.x1_c00123{left:695.880000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls0_c00123{letter-spacing:0.000000pt;}
.ls1_c00123{letter-spacing:750.220800pt;}
.ws0_c00123{word-spacing:0.000000pt;}
.fs0_c00123{font-size:64.000000pt;}
.y0_c00123{bottom:0.000000pt;}
.y2_c00123{bottom:41.627067pt;}
.y1_c00123{bottom:60.027067pt;}
.y3_c00123{bottom:975.547067pt;}
.h1_c00123{height:56.156250pt;}
.h2_c00123{height:57.375000pt;}
.h0_c00123{height:1122.666667pt;}
.w1_c00123{width:793.333333pt;}
.w0_c00123{width:793.626667pt;}
.x0_c00123{left:0.000000pt;}
.x2_c00123{left:113.440000pt;}
.x1_c00123{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_82018bd6c7bc5c644a10a97b.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.093262;font-style:normal;font-weight:normal;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_4eeb5d46fc3bfea1f4a5be2e.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00124;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00124;src:url('chunks/assets/font_06b0230f8eb99612b1a132f5.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;line-height:1.106934;font-style:normal;font-weight:normal;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_a90e453aeac56ec87e0bd8fe.woff2')format("woff");}.ff5_c00124{font-family:ff5_c00124;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00124{letter-spacing:-0.057600px;}
.ls4_c00124{letter-spacing:-0.050400px;}
.ls8_c00124{letter-spacing:-0.043200px;}
.ls6_c00124{letter-spacing:-0.036000px;}
.lsa_c00124{letter-spacing:-0.028800px;}
.ls5_c00124{letter-spacing:-0.021600px;}
.ls7_c00124{letter-spacing:-0.014400px;}
.lsb_c00124{letter-spacing:-0.007200px;}
.ls3_c00124{letter-spacing:0.000000px;}
.ls2_c00124{letter-spacing:0.007200px;}
.ls1_c00124{letter-spacing:0.028800px;}
.ls0_c00124{letter-spacing:0.050328px;}
.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;}
}
.ws18_c00124{word-spacing:-4.147200px;}
.ws17_c00124{word-spacing:-3.924000px;}
.ws8_c00124{word-spacing:-3.578400px;}
.ws6_c00124{word-spacing:-3.405600px;}
.ws7_c00124{word-spacing:-3.391200px;}
.ws24_c00124{word-spacing:-3.384000px;}
.ws28_c00124{word-spacing:-1.180800px;}
.ws29_c00124{word-spacing:-1.152000px;}
.ws2e_c00124{word-spacing:-1.015200px;}
.ws2d_c00124{word-spacing:-0.964800px;}
.ws10_c00124{word-spacing:-0.547200px;}
.ws11_c00124{word-spacing:-0.518400px;}
.ws0_c00124{word-spacing:0.000000px;}
.ws1_c00124{word-spacing:0.041940px;}
.ws22_c00124{word-spacing:0.115200px;}
.ws2b_c00124{word-spacing:0.122400px;}
.ws16_c00124{word-spacing:0.158400px;}
.ws1c_c00124{word-spacing:0.165600px;}
.ws27_c00124{word-spacing:0.172800px;}
.ws21_c00124{word-spacing:0.180000px;}
.ws1b_c00124{word-spacing:0.187200px;}
.ws2f_c00124{word-spacing:0.194400px;}
.ws2a_c00124{word-spacing:0.201600px;}
.ws1d_c00124{word-spacing:1.612800px;}
.ws2_c00124{word-spacing:1.648800px;}
.ws25_c00124{word-spacing:7.020000px;}
.ws2c_c00124{word-spacing:7.034400px;}
.ws1f_c00124{word-spacing:9.871200px;}
.ws1e_c00124{word-spacing:9.885600px;}
.ws20_c00124{word-spacing:10.008000px;}
.ws13_c00124{word-spacing:10.260000px;}
.ws12_c00124{word-spacing:10.425600px;}
.ws4_c00124{word-spacing:13.140000px;}
.ws5_c00124{word-spacing:13.168800px;}
.ws3_c00124{word-spacing:13.500000px;}
.ws15_c00124{word-spacing:15.580800px;}
.ws14_c00124{word-spacing:15.631200px;}
.ws19_c00124{word-spacing:21.319200px;}
.ws26_c00124{word-spacing:21.412800px;}
.ws1a_c00124{word-spacing:21.427200px;}
.ws23_c00124{word-spacing:25.056000px;}
.wsf_c00124{word-spacing:29.340000px;}
.wse_c00124{word-spacing:29.354400px;}
.wsa_c00124{word-spacing:40.809600px;}
.ws9_c00124{word-spacing:40.860000px;}
.wsc_c00124{word-spacing:60.609600px;}
.wsd_c00124{word-spacing:60.660000px;}
.wsb_c00124{word-spacing:60.674400px;}
._2_c00124{margin-left:-24.840000px;}
._1_c00124{width:1.346400px;}
._0_c00124{width:9.730080px;}
._3_c00124{width:16.920000px;}
.fc0_c00124{color:rgb(0,0,0);}
.fs0_c00124{font-size:72.000000px;}
.fs1_c00124{font-size:83.880000px;}
.y0_c00124{bottom:0.000000px;}
.y2_c00124{bottom:46.830450px;}
.y1_c00124{bottom:67.530450px;}
.y21_c00124{bottom:167.520450px;}
.y20_c00124{bottom:198.570450px;}
.y1f_c00124{bottom:229.620450px;}
.y1e_c00124{bottom:269.670450px;}
.y1d_c00124{bottom:300.720450px;}
.y1c_c00124{bottom:340.770450px;}
.y1b_c00124{bottom:371.820450px;}
.y1a_c00124{bottom:402.870450px;}
.y19_c00124{bottom:433.920450px;}
.y18_c00124{bottom:464.970450px;}
.y17_c00124{bottom:505.020450px;}
.y16_c00124{bottom:536.070450px;}
.y15_c00124{bottom:567.120450px;}
.y14_c00124{bottom:598.170450px;}
.y13_c00124{bottom:618.870450px;}
.y12_c00124{bottom:639.570450px;}
.y11_c00124{bottom:660.270450px;}
.y10_c00124{bottom:680.970450px;}
.yf_c00124{bottom:701.670450px;}
.ye_c00124{bottom:750.720450px;}
.yd_c00124{bottom:781.770450px;}
.yc_c00124{bottom:812.820450px;}
.yb_c00124{bottom:843.870450px;}
.ya_c00124{bottom:874.920450px;}
.y9_c00124{bottom:905.970450px;}
.y8_c00124{bottom:937.020450px;}
.y7_c00124{bottom:968.070450px;}
.y6_c00124{bottom:999.120450px;}
.y5_c00124{bottom:1030.170450px;}
.y4_c00124{bottom:1068.780450px;}
.y3_c00124{bottom:1094.520450px;}
.h1_c00124{height:63.175781px;}
.h4_c00124{height:64.546875px;}
.h3_c00124{height:75.093750px;}
.h2_c00124{height:87.484219px;}
.h0_c00124{height:1263.000000px;}
.w1_c00124{width:892.500000px;}
.w0_c00124{width:892.830000px;}
.x0_c00124{left:0.000000px;}
.x2_c00124{left:170.100000px;}
.x4_c00124{left:191.430000px;}
.x5_c00124{left:197.100000px;}
.x6_c00124{left:224.100000px;}
.x3_c00124{left:251.100000px;}
.x1_c00124{left:738.360000px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls9_c00124{letter-spacing:-0.051200pt;}
.ls4_c00124{letter-spacing:-0.044800pt;}
.ls8_c00124{letter-spacing:-0.038400pt;}
.ls6_c00124{letter-spacing:-0.032000pt;}
.lsa_c00124{letter-spacing:-0.025600pt;}
.ls5_c00124{letter-spacing:-0.019200pt;}
.ls7_c00124{letter-spacing:-0.012800pt;}
.lsb_c00124{letter-spacing:-0.006400pt;}
.ls3_c00124{letter-spacing:0.000000pt;}
.ls2_c00124{letter-spacing:0.006400pt;}
.ls1_c00124{letter-spacing:0.025600pt;}
.ls0_c00124{letter-spacing:0.044736pt;}
.ws18_c00124{word-spacing:-3.686400pt;}
.ws17_c00124{word-spacing:-3.488000pt;}
.ws8_c00124{word-spacing:-3.180800pt;}
.ws6_c00124{word-spacing:-3.027200pt;}
.ws7_c00124{word-spacing:-3.014400pt;}
.ws24_c00124{word-spacing:-3.008000pt;}
.ws28_c00124{word-spacing:-1.049600pt;}
.ws29_c00124{word-spacing:-1.024000pt;}
.ws2e_c00124{word-spacing:-0.902400pt;}
.ws2d_c00124{word-spacing:-0.857600pt;}
.ws10_c00124{word-spacing:-0.486400pt;}
.ws11_c00124{word-spacing:-0.460800pt;}
.ws0_c00124{word-spacing:0.000000pt;}
.ws1_c00124{word-spacing:0.037280pt;}
.ws22_c00124{word-spacing:0.102400pt;}
.ws2b_c00124{word-spacing:0.108800pt;}
.ws16_c00124{word-spacing:0.140800pt;}
.ws1c_c00124{word-spacing:0.147200pt;}
.ws27_c00124{word-spacing:0.153600pt;}
.ws21_c00124{word-spacing:0.160000pt;}
.ws1b_c00124{word-spacing:0.166400pt;}
.ws2f_c00124{word-spacing:0.172800pt;}
.ws2a_c00124{word-spacing:0.179200pt;}
.ws1d_c00124{word-spacing:1.433600pt;}
.ws2_c00124{word-spacing:1.465600pt;}
.ws25_c00124{word-spacing:6.240000pt;}
.ws2c_c00124{word-spacing:6.252800pt;}
.ws1f_c00124{word-spacing:8.774400pt;}
.ws1e_c00124{word-spacing:8.787200pt;}
.ws20_c00124{word-spacing:8.896000pt;}
.ws13_c00124{word-spacing:9.120000pt;}
.ws12_c00124{word-spacing:9.267200pt;}
.ws4_c00124{word-spacing:11.680000pt;}
.ws5_c00124{word-spacing:11.705600pt;}
.ws3_c00124{word-spacing:12.000000pt;}
.ws15_c00124{word-spacing:13.849600pt;}
.ws14_c00124{word-spacing:13.894400pt;}
.ws19_c00124{word-spacing:18.950400pt;}
.ws26_c00124{word-spacing:19.033600pt;}
.ws1a_c00124{word-spacing:19.046400pt;}
.ws23_c00124{word-spacing:22.272000pt;}
.wsf_c00124{word-spacing:26.080000pt;}
.wse_c00124{word-spacing:26.092800pt;}
.wsa_c00124{word-spacing:36.275200pt;}
.ws9_c00124{word-spacing:36.320000pt;}
.wsc_c00124{word-spacing:53.875200pt;}
.wsd_c00124{word-spacing:53.920000pt;}
.wsb_c00124{word-spacing:53.932800pt;}
._2_c00124{margin-left:-22.080000pt;}
._1_c00124{width:1.196800pt;}
._0_c00124{width:8.648960pt;}
._3_c00124{width:15.040000pt;}
.fs0_c00124{font-size:64.000000pt;}
.fs1_c00124{font-size:74.560000pt;}
.y0_c00124{bottom:0.000000pt;}
.y2_c00124{bottom:41.627067pt;}
.y1_c00124{bottom:60.027067pt;}
.y21_c00124{bottom:148.907067pt;}
.y20_c00124{bottom:176.507067pt;}
.y1f_c00124{bottom:204.107067pt;}
.y1e_c00124{bottom:239.707067pt;}
.y1d_c00124{bottom:267.307067pt;}
.y1c_c00124{bottom:302.907067pt;}
.y1b_c00124{bottom:330.507067pt;}
.y1a_c00124{bottom:358.107067pt;}
.y19_c00124{bottom:385.707067pt;}
.y18_c00124{bottom:413.307067pt;}
.y17_c00124{bottom:448.907067pt;}
.y16_c00124{bottom:476.507067pt;}
.y15_c00124{bottom:504.107067pt;}
.y14_c00124{bottom:531.707067pt;}
.y13_c00124{bottom:550.107067pt;}
.y12_c00124{bottom:568.507067pt;}
.y11_c00124{bottom:586.907067pt;}
.y10_c00124{bottom:605.307067pt;}
.yf_c00124{bottom:623.707067pt;}
.ye_c00124{bottom:667.307067pt;}
.yd_c00124{bottom:694.907067pt;}
.yc_c00124{bottom:722.507067pt;}
.yb_c00124{bottom:750.107067pt;}
.ya_c00124{bottom:777.707067pt;}
.y9_c00124{bottom:805.307067pt;}
.y8_c00124{bottom:832.907067pt;}
.y7_c00124{bottom:860.507067pt;}
.y6_c00124{bottom:888.107067pt;}
.y5_c00124{bottom:915.707067pt;}
.y4_c00124{bottom:950.027067pt;}
.y3_c00124{bottom:972.907067pt;}
.h1_c00124{height:56.156250pt;}
.h4_c00124{height:57.375000pt;}
.h3_c00124{height:66.750000pt;}
.h2_c00124{height:77.763750pt;}
.h0_c00124{height:1122.666667pt;}
.w1_c00124{width:793.333333pt;}
.w0_c00124{width:793.626667pt;}
.x0_c00124{left:0.000000pt;}
.x2_c00124{left:151.200000pt;}
.x4_c00124{left:170.160000pt;}
.x5_c00124{left:175.200000pt;}
.x6_c00124{left:199.200000pt;}
.x3_c00124{left:223.200000pt;}
.x1_c00124{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0aaacdb224baac00e362f9ff.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.093262;font-style:normal;font-weight:normal;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_cbf4a4e02af9ef9bdccc8156.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.106934;font-style:normal;font-weight:normal;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_44c076910da8efa8b5578553.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsf_c00125{letter-spacing:-0.086400px;}
.lsb_c00125{letter-spacing:-0.079200px;}
.lse_c00125{letter-spacing:-0.072000px;}
.ls10_c00125{letter-spacing:-0.064800px;}
.lsc_c00125{letter-spacing:-0.057600px;}
.ls9_c00125{letter-spacing:-0.050400px;}
.ls8_c00125{letter-spacing:-0.043200px;}
.lsa_c00125{letter-spacing:-0.036000px;}
.ls6_c00125{letter-spacing:-0.028800px;}
.ls7_c00125{letter-spacing:-0.021600px;}
.ls5_c00125{letter-spacing:-0.014400px;}
.ls4_c00125{letter-spacing:-0.007200px;}
.ls3_c00125{letter-spacing:0.000000px;}
.ls2_c00125{letter-spacing:0.007200px;}
.ls0_c00125{letter-spacing:0.028800px;}
.lsd_c00125{letter-spacing:0.036000px;}
.ls1_c00125{letter-spacing:0.043200px;}
.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;}
}
.ws1d_c00125{word-spacing:-3.571200px;}
.wsf_c00125{word-spacing:-3.405600px;}
.ws2b_c00125{word-spacing:-3.391200px;}
.ws10_c00125{word-spacing:-3.384000px;}
.ws1c_c00125{word-spacing:-3.312000px;}
.ws1e_c00125{word-spacing:-3.297600px;}
.ws8_c00125{word-spacing:-2.023200px;}
.ws7_c00125{word-spacing:-2.008800px;}
.ws2_c00125{word-spacing:-1.310400px;}
.ws5_c00125{word-spacing:-0.914400px;}
.ws4_c00125{word-spacing:-0.900000px;}
.ws0_c00125{word-spacing:0.000000px;}
.ws14_c00125{word-spacing:0.122400px;}
.wsd_c00125{word-spacing:0.165600px;}
.ws15_c00125{word-spacing:0.172800px;}
.ws31_c00125{word-spacing:0.180000px;}
.ws3_c00125{word-spacing:0.187200px;}
.ws13_c00125{word-spacing:0.194400px;}
.ws6_c00125{word-spacing:0.201600px;}
.ws9_c00125{word-spacing:0.244800px;}
.ws23_c00125{word-spacing:2.246400px;}
.ws22_c00125{word-spacing:2.289600px;}
.ws24_c00125{word-spacing:2.692800px;}
.ws2c_c00125{word-spacing:2.707200px;}
.ws2d_c00125{word-spacing:2.757600px;}
.ws25_c00125{word-spacing:2.764800px;}
.ws18_c00125{word-spacing:3.794400px;}
.ws19_c00125{word-spacing:3.830400px;}
.ws1_c00125{word-spacing:8.085600px;}
.ws21_c00125{word-spacing:9.165600px;}
.ws11_c00125{word-spacing:9.864000px;}
.ws12_c00125{word-spacing:9.928800px;}
.ws30_c00125{word-spacing:11.714400px;}
.ws1a_c00125{word-spacing:13.874400px;}
.ws1b_c00125{word-spacing:14.032800px;}
.ws1f_c00125{word-spacing:20.340000px;}
.wsa_c00125{word-spacing:20.397600px;}
.ws20_c00125{word-spacing:20.412000px;}
.ws26_c00125{word-spacing:24.451200px;}
.ws28_c00125{word-spacing:24.667200px;}
.ws27_c00125{word-spacing:24.703200px;}
.wse_c00125{word-spacing:25.387200px;}
.wsb_c00125{word-spacing:26.892000px;}
.ws2a_c00125{word-spacing:27.900000px;}
.ws29_c00125{word-spacing:32.594400px;}
.ws2e_c00125{word-spacing:42.998400px;}
.ws2f_c00125{word-spacing:43.128000px;}
.ws16_c00125{word-spacing:52.365600px;}
.ws17_c00125{word-spacing:52.387200px;}
.wsc_c00125{word-spacing:68.954400px;}
._3_c00125{margin-left:-19.584000px;}
._4_c00125{margin-left:-1.368000px;}
._2_c00125{width:1.224000px;}
._0_c00125{width:15.840000px;}
._1_c00125{width:23.889600px;}
.fc1_c00125{color:rgb(34,34,34);}
.fc0_c00125{color:rgb(0,0,0);}
.fs0_c00125{font-size:72.000000px;}
.y0_c00125{bottom:0.000000px;}
.y2_c00125{bottom:46.830450px;}
.y1_c00125{bottom:67.530450px;}
.y26_c00125{bottom:158.430450px;}
.y25_c00125{bottom:179.130450px;}
.y24_c00125{bottom:199.830450px;}
.y23_c00125{bottom:220.530450px;}
.y22_c00125{bottom:241.230450px;}
.y21_c00125{bottom:261.930450px;}
.y20_c00125{bottom:282.630450px;}
.y1f_c00125{bottom:303.330450px;}
.y1e_c00125{bottom:324.030450px;}
.y1d_c00125{bottom:344.730450px;}
.y1c_c00125{bottom:365.430450px;}
.y1b_c00125{bottom:386.040450px;}
.y1a_c00125{bottom:406.740450px;}
.y19_c00125{bottom:427.440450px;}
.y18_c00125{bottom:448.140450px;}
.y17_c00125{bottom:468.840450px;}
.y16_c00125{bottom:489.540450px;}
.y15_c00125{bottom:529.590450px;}
.y14_c00125{bottom:560.640450px;}
.y13_c00125{bottom:591.690450px;}
.y12_c00125{bottom:631.740450px;}
.y11_c00125{bottom:662.790450px;}
.y10_c00125{bottom:693.840450px;}
.yf_c00125{bottom:724.890450px;}
.ye_c00125{bottom:755.940450px;}
.yd_c00125{bottom:786.990450px;}
.yc_c00125{bottom:818.040600px;}
.yb_c00125{bottom:849.090450px;}
.ya_c00125{bottom:880.140450px;}
.y9_c00125{bottom:911.190450px;}
.y8_c00125{bottom:942.240450px;}
.y7_c00125{bottom:973.290600px;}
.y6_c00125{bottom:1004.340450px;}
.y5_c00125{bottom:1035.390450px;}
.y4_c00125{bottom:1066.440450px;}
.y3_c00125{bottom:1097.490450px;}
.h1_c00125{height:63.175781px;}
.h2_c00125{height:64.546875px;}
.h3_c00125{height:75.093750px;}
.h0_c00125{height:1263.000000px;}
.w1_c00125{width:892.500000px;}
.w0_c00125{width:892.830000px;}
.x0_c00125{left:0.000000px;}
.x2_c00125{left:127.620000px;}
.x5_c00125{left:148.950000px;}
.x3_c00125{left:154.620000px;}
.x4_c00125{left:181.620000px;}
.x1_c00125{left:695.880000px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.lsf_c00125{letter-spacing:-0.076800pt;}
.lsb_c00125{letter-spacing:-0.070400pt;}
.lse_c00125{letter-spacing:-0.064000pt;}
.ls10_c00125{letter-spacing:-0.057600pt;}
.lsc_c00125{letter-spacing:-0.051200pt;}
.ls9_c00125{letter-spacing:-0.044800pt;}
.ls8_c00125{letter-spacing:-0.038400pt;}
.lsa_c00125{letter-spacing:-0.032000pt;}
.ls6_c00125{letter-spacing:-0.025600pt;}
.ls7_c00125{letter-spacing:-0.019200pt;}
.ls5_c00125{letter-spacing:-0.012800pt;}
.ls4_c00125{letter-spacing:-0.006400pt;}
.ls3_c00125{letter-spacing:0.000000pt;}
.ls2_c00125{letter-spacing:0.006400pt;}
.ls0_c00125{letter-spacing:0.025600pt;}
.lsd_c00125{letter-spacing:0.032000pt;}
.ls1_c00125{letter-spacing:0.038400pt;}
.ws1d_c00125{word-spacing:-3.174400pt;}
.wsf_c00125{word-spacing:-3.027200pt;}
.ws2b_c00125{word-spacing:-3.014400pt;}
.ws10_c00125{word-spacing:-3.008000pt;}
.ws1c_c00125{word-spacing:-2.944000pt;}
.ws1e_c00125{word-spacing:-2.931200pt;}
.ws8_c00125{word-spacing:-1.798400pt;}
.ws7_c00125{word-spacing:-1.785600pt;}
.ws2_c00125{word-spacing:-1.164800pt;}
.ws5_c00125{word-spacing:-0.812800pt;}
.ws4_c00125{word-spacing:-0.800000pt;}
.ws0_c00125{word-spacing:0.000000pt;}
.ws14_c00125{word-spacing:0.108800pt;}
.wsd_c00125{word-spacing:0.147200pt;}
.ws15_c00125{word-spacing:0.153600pt;}
.ws31_c00125{word-spacing:0.160000pt;}
.ws3_c00125{word-spacing:0.166400pt;}
.ws13_c00125{word-spacing:0.172800pt;}
.ws6_c00125{word-spacing:0.179200pt;}
.ws9_c00125{word-spacing:0.217600pt;}
.ws23_c00125{word-spacing:1.996800pt;}
.ws22_c00125{word-spacing:2.035200pt;}
.ws24_c00125{word-spacing:2.393600pt;}
.ws2c_c00125{word-spacing:2.406400pt;}
.ws2d_c00125{word-spacing:2.451200pt;}
.ws25_c00125{word-spacing:2.457600pt;}
.ws18_c00125{word-spacing:3.372800pt;}
.ws19_c00125{word-spacing:3.404800pt;}
.ws1_c00125{word-spacing:7.187200pt;}
.ws21_c00125{word-spacing:8.147200pt;}
.ws11_c00125{word-spacing:8.768000pt;}
.ws12_c00125{word-spacing:8.825600pt;}
.ws30_c00125{word-spacing:10.412800pt;}
.ws1a_c00125{word-spacing:12.332800pt;}
.ws1b_c00125{word-spacing:12.473600pt;}
.ws1f_c00125{word-spacing:18.080000pt;}
.wsa_c00125{word-spacing:18.131200pt;}
.ws20_c00125{word-spacing:18.144000pt;}
.ws26_c00125{word-spacing:21.734400pt;}
.ws28_c00125{word-spacing:21.926400pt;}
.ws27_c00125{word-spacing:21.958400pt;}
.wse_c00125{word-spacing:22.566400pt;}
.wsb_c00125{word-spacing:23.904000pt;}
.ws2a_c00125{word-spacing:24.800000pt;}
.ws29_c00125{word-spacing:28.972800pt;}
.ws2e_c00125{word-spacing:38.220800pt;}
.ws2f_c00125{word-spacing:38.336000pt;}
.ws16_c00125{word-spacing:46.547200pt;}
.ws17_c00125{word-spacing:46.566400pt;}
.wsc_c00125{word-spacing:61.292800pt;}
._3_c00125{margin-left:-17.408000pt;}
._4_c00125{margin-left:-1.216000pt;}
._2_c00125{width:1.088000pt;}
._0_c00125{width:14.080000pt;}
._1_c00125{width:21.235200pt;}
.fs0_c00125{font-size:64.000000pt;}
.y0_c00125{bottom:0.000000pt;}
.y2_c00125{bottom:41.627067pt;}
.y1_c00125{bottom:60.027067pt;}
.y26_c00125{bottom:140.827067pt;}
.y25_c00125{bottom:159.227067pt;}
.y24_c00125{bottom:177.627067pt;}
.y23_c00125{bottom:196.027067pt;}
.y22_c00125{bottom:214.427067pt;}
.y21_c00125{bottom:232.827067pt;}
.y20_c00125{bottom:251.227067pt;}
.y1f_c00125{bottom:269.627067pt;}
.y1e_c00125{bottom:288.027067pt;}
.y1d_c00125{bottom:306.427067pt;}
.y1c_c00125{bottom:324.827067pt;}
.y1b_c00125{bottom:343.147067pt;}
.y1a_c00125{bottom:361.547067pt;}
.y19_c00125{bottom:379.947067pt;}
.y18_c00125{bottom:398.347067pt;}
.y17_c00125{bottom:416.747067pt;}
.y16_c00125{bottom:435.147067pt;}
.y15_c00125{bottom:470.747067pt;}
.y14_c00125{bottom:498.347067pt;}
.y13_c00125{bottom:525.947067pt;}
.y12_c00125{bottom:561.547067pt;}
.y11_c00125{bottom:589.147067pt;}
.y10_c00125{bottom:616.747067pt;}
.yf_c00125{bottom:644.347067pt;}
.ye_c00125{bottom:671.947067pt;}
.yd_c00125{bottom:699.547067pt;}
.yc_c00125{bottom:727.147200pt;}
.yb_c00125{bottom:754.747067pt;}
.ya_c00125{bottom:782.347067pt;}
.y9_c00125{bottom:809.947067pt;}
.y8_c00125{bottom:837.547067pt;}
.y7_c00125{bottom:865.147200pt;}
.y6_c00125{bottom:892.747067pt;}
.y5_c00125{bottom:920.347067pt;}
.y4_c00125{bottom:947.947067pt;}
.y3_c00125{bottom:975.547067pt;}
.h1_c00125{height:56.156250pt;}
.h2_c00125{height:57.375000pt;}
.h3_c00125{height:66.750000pt;}
.h0_c00125{height:1122.666667pt;}
.w1_c00125{width:793.333333pt;}
.w0_c00125{width:793.626667pt;}
.x0_c00125{left:0.000000pt;}
.x2_c00125{left:113.440000pt;}
.x5_c00125{left:132.400000pt;}
.x3_c00125{left:137.440000pt;}
.x4_c00125{left:161.440000pt;}
.x1_c00125{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_79c10387674845492a104a58.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.093262;font-style:normal;font-weight:normal;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_873811cbb79c0948d6d7f672.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00126{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00126{vertical-align:0.000000px;}
.ls2_c00126{letter-spacing:-0.057600px;}
.ls4_c00126{letter-spacing:-0.043200px;}
.ls1_c00126{letter-spacing:-0.036000px;}
.ls5_c00126{letter-spacing:-0.028800px;}
.ls3_c00126{letter-spacing:-0.014400px;}
.ls0_c00126{letter-spacing:0.000000px;}
.ls6_c00126{letter-spacing:843.998400px;}
.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;}
}
.ws6_c00126{word-spacing:-1.958400px;}
.ws0_c00126{word-spacing:0.000000px;}
.ws7_c00126{word-spacing:0.201600px;}
.ws1_c00126{word-spacing:4.910400px;}
.ws3_c00126{word-spacing:10.612800px;}
.ws2_c00126{word-spacing:10.728000px;}
.ws5_c00126{word-spacing:14.227200px;}
.ws4_c00126{word-spacing:14.241600px;}
._0_c00126{width:1.036800px;}
.fc0_c00126{color:rgb(0,0,0);}
.fs0_c00126{font-size:72.000000px;}
.y0_c00126{bottom:0.000000px;}
.y2_c00126{bottom:46.830450px;}
.y1_c00126{bottom:67.530450px;}
.y8_c00126{bottom:933.240450px;}
.y7_c00126{bottom:973.290450px;}
.y6_c00126{bottom:1004.340450px;}
.y5_c00126{bottom:1035.390450px;}
.y4_c00126{bottom:1066.440450px;}
.y3_c00126{bottom:1097.490450px;}
.h1_c00126{height:63.175781px;}
.h2_c00126{height:64.546875px;}
.h0_c00126{height:1263.000000px;}
.w1_c00126{width:892.500000px;}
.w0_c00126{width:892.830000px;}
.x0_c00126{left:0.000000px;}
.x2_c00126{left:170.100000px;}
.x3_c00126{left:197.100000px;}
.x1_c00126{left:738.360000px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls2_c00126{letter-spacing:-0.051200pt;}
.ls4_c00126{letter-spacing:-0.038400pt;}
.ls1_c00126{letter-spacing:-0.032000pt;}
.ls5_c00126{letter-spacing:-0.025600pt;}
.ls3_c00126{letter-spacing:-0.012800pt;}
.ls0_c00126{letter-spacing:0.000000pt;}
.ls6_c00126{letter-spacing:750.220800pt;}
.ws6_c00126{word-spacing:-1.740800pt;}
.ws0_c00126{word-spacing:0.000000pt;}
.ws7_c00126{word-spacing:0.179200pt;}
.ws1_c00126{word-spacing:4.364800pt;}
.ws3_c00126{word-spacing:9.433600pt;}
.ws2_c00126{word-spacing:9.536000pt;}
.ws5_c00126{word-spacing:12.646400pt;}
.ws4_c00126{word-spacing:12.659200pt;}
._0_c00126{width:0.921600pt;}
.fs0_c00126{font-size:64.000000pt;}
.y0_c00126{bottom:0.000000pt;}
.y2_c00126{bottom:41.627067pt;}
.y1_c00126{bottom:60.027067pt;}
.y8_c00126{bottom:829.547067pt;}
.y7_c00126{bottom:865.147067pt;}
.y6_c00126{bottom:892.747067pt;}
.y5_c00126{bottom:920.347067pt;}
.y4_c00126{bottom:947.947067pt;}
.y3_c00126{bottom:975.547067pt;}
.h1_c00126{height:56.156250pt;}
.h2_c00126{height:57.375000pt;}
.h0_c00126{height:1122.666667pt;}
.w1_c00126{width:793.333333pt;}
.w0_c00126{width:793.626667pt;}
.x0_c00126{left:0.000000pt;}
.x2_c00126{left:151.200000pt;}
.x3_c00126{left:175.200000pt;}
.x1_c00126{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c9287e626e2dc90ef724bd9c.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.106934;font-style: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;}
.ls0_c00127{letter-spacing:0.000000px;}
.ls1_c00127{letter-spacing:843.998400px;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00127{word-spacing:0.000000px;}
.fc0_c00127{color:rgb(0,0,0);}
.fs0_c00127{font-size:72.000000px;}
.y0_c00127{bottom:0.000000px;}
.y2_c00127{bottom:46.830450px;}
.y1_c00127{bottom:67.530450px;}
.y3_c00127{bottom:1097.490450px;}
.h1_c00127{height:63.175781px;}
.h2_c00127{height:64.546875px;}
.h0_c00127{height:1263.000000px;}
.w1_c00127{width:892.500000px;}
.w0_c00127{width:892.830000px;}
.x0_c00127{left:0.000000px;}
.x2_c00127{left:127.620000px;}
.x1_c00127{left:695.880000px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls0_c00127{letter-spacing:0.000000pt;}
.ls1_c00127{letter-spacing:750.220800pt;}
.ws0_c00127{word-spacing:0.000000pt;}
.fs0_c00127{font-size:64.000000pt;}
.y0_c00127{bottom:0.000000pt;}
.y2_c00127{bottom:41.627067pt;}
.y1_c00127{bottom:60.027067pt;}
.y3_c00127{bottom:975.547067pt;}
.h1_c00127{height:56.156250pt;}
.h2_c00127{height:57.375000pt;}
.h0_c00127{height:1122.666667pt;}
.w1_c00127{width:793.333333pt;}
.w0_c00127{width:793.626667pt;}
.x0_c00127{left:0.000000pt;}
.x2_c00127{left:113.440000pt;}
.x1_c00127{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_645a640ca2074584866b8a2e.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.093262;font-style:normal;font-weight:normal;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_600968dbe04141370f4ed0f2.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.106934;font-style:normal;font-weight:normal;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_53aaf6adc8c0393fc21a793b.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00128;src:url('chunks/assets/font_0a16329b9fee1c007f7779c4.woff2')format("woff");}.ff4_c00128{font-family:ff4_c00128;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsa_c00128{letter-spacing:-0.086400px;}
.ls10_c00128{letter-spacing:-0.079200px;}
.lsc_c00128{letter-spacing:-0.072000px;}
.lsb_c00128{letter-spacing:-0.064800px;}
.lsf_c00128{letter-spacing:-0.057600px;}
.lsd_c00128{letter-spacing:-0.050400px;}
.ls7_c00128{letter-spacing:-0.043200px;}
.ls8_c00128{letter-spacing:-0.036000px;}
.ls9_c00128{letter-spacing:-0.028800px;}
.ls5_c00128{letter-spacing:-0.021600px;}
.ls6_c00128{letter-spacing:-0.014400px;}
.ls4_c00128{letter-spacing:-0.007200px;}
.ls3_c00128{letter-spacing:0.000000px;}
.ls1_c00128{letter-spacing:0.007200px;}
.ls0_c00128{letter-spacing:0.050328px;}
.lse_c00128{letter-spacing:0.144000px;}
.ls2_c00128{letter-spacing:0.864000px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00128{word-spacing:-20.023200px;}
.ws2_c00128{word-spacing:-16.034400px;}
.wsc_c00128{word-spacing:-4.867200px;}
.wsb_c00128{word-spacing:-4.773600px;}
.ws34_c00128{word-spacing:-3.744000px;}
.ws33_c00128{word-spacing:-3.736800px;}
.ws12_c00128{word-spacing:-2.498400px;}
.ws13_c00128{word-spacing:-2.296800px;}
.ws11_c00128{word-spacing:-2.275200px;}
.ws1_c00128{word-spacing:0.000000px;}
.ws3_c00128{word-spacing:0.041940px;}
.ws10_c00128{word-spacing:0.165600px;}
.wsf_c00128{word-spacing:0.180000px;}
.ws27_c00128{word-spacing:0.856800px;}
.ws26_c00128{word-spacing:0.871200px;}
.ws37_c00128{word-spacing:0.885600px;}
.ws8_c00128{word-spacing:0.921600px;}
.ws38_c00128{word-spacing:0.943200px;}
.ws6_c00128{word-spacing:2.332800px;}
.wse_c00128{word-spacing:3.787200px;}
.wsd_c00128{word-spacing:3.852000px;}
.ws22_c00128{word-spacing:4.500000px;}
.ws23_c00128{word-spacing:4.507200px;}
.ws21_c00128{word-spacing:4.528800px;}
.ws2c_c00128{word-spacing:4.867200px;}
.ws2b_c00128{word-spacing:4.881600px;}
.ws2a_c00128{word-spacing:4.896000px;}
.ws29_c00128{word-spacing:6.328800px;}
.ws31_c00128{word-spacing:6.336000px;}
.ws32_c00128{word-spacing:6.350400px;}
.ws28_c00128{word-spacing:6.357600px;}
.ws1d_c00128{word-spacing:7.020000px;}
.ws1c_c00128{word-spacing:7.048800px;}
.ws25_c00128{word-spacing:8.092800px;}
.ws24_c00128{word-spacing:8.193600px;}
.ws2e_c00128{word-spacing:10.188000px;}
.ws2d_c00128{word-spacing:10.288800px;}
.ws30_c00128{word-spacing:10.569600px;}
.ws2f_c00128{word-spacing:10.713600px;}
.wsa_c00128{word-spacing:11.332800px;}
.ws9_c00128{word-spacing:11.419200px;}
.ws17_c00128{word-spacing:12.420000px;}
.ws16_c00128{word-spacing:12.506400px;}
.ws14_c00128{word-spacing:13.089600px;}
.ws15_c00128{word-spacing:13.190400px;}
.ws36_c00128{word-spacing:13.471200px;}
.ws35_c00128{word-spacing:13.600800px;}
.ws5_c00128{word-spacing:16.725600px;}
.ws4_c00128{word-spacing:16.740000px;}
.ws1f_c00128{word-spacing:23.882400px;}
.ws1e_c00128{word-spacing:23.954400px;}
.ws20_c00128{word-spacing:23.990400px;}
.ws7_c00128{word-spacing:26.827200px;}
.ws18_c00128{word-spacing:28.288800px;}
.ws19_c00128{word-spacing:28.303200px;}
.ws1a_c00128{word-spacing:30.362400px;}
.ws1b_c00128{word-spacing:30.427200px;}
._1_c00128{width:1.166400px;}
._0_c00128{width:9.730080px;}
.fc0_c00128{color:rgb(0,0,0);}
.fs0_c00128{font-size:72.000000px;}
.fs1_c00128{font-size:83.880000px;}
.y0_c00128{bottom:0.000000px;}
.y2_c00128{bottom:46.830450px;}
.y1_c00128{bottom:67.530450px;}
.y21_c00128{bottom:143.850450px;}
.y20_c00128{bottom:174.900450px;}
.y1f_c00128{bottom:205.950450px;}
.y1e_c00128{bottom:237.000450px;}
.y1d_c00128{bottom:268.050450px;}
.y1c_c00128{bottom:299.100450px;}
.y1b_c00128{bottom:330.150450px;}
.y1a_c00128{bottom:361.200450px;}
.y19_c00128{bottom:392.250450px;}
.y18_c00128{bottom:423.300450px;}
.y17_c00128{bottom:454.350450px;}
.y16_c00128{bottom:485.400450px;}
.y15_c00128{bottom:516.450450px;}
.y14_c00128{bottom:547.500450px;}
.y13_c00128{bottom:578.550450px;}
.y12_c00128{bottom:609.600450px;}
.y11_c00128{bottom:640.650450px;}
.y10_c00128{bottom:671.700450px;}
.yf_c00128{bottom:702.750450px;}
.ye_c00128{bottom:733.710450px;}
.yd_c00128{bottom:764.760450px;}
.yc_c00128{bottom:795.810450px;}
.yb_c00128{bottom:826.860450px;}
.ya_c00128{bottom:857.910450px;}
.y9_c00128{bottom:888.960450px;}
.y8_c00128{bottom:920.010450px;}
.y7_c00128{bottom:951.060450px;}
.y6_c00128{bottom:991.110450px;}
.y5_c00128{bottom:1021.354950px;}
.y4_c00128{bottom:1045.470450px;}
.y3_c00128{bottom:1097.490450px;}
.h1_c00128{height:63.175781px;}
.h2_c00128{height:64.546875px;}
.h4_c00128{height:75.093750px;}
.h3_c00128{height:87.484219px;}
.h0_c00128{height:1263.000000px;}
.w1_c00128{width:892.500000px;}
.w0_c00128{width:892.830000px;}
.x0_c00128{left:0.000000px;}
.x2_c00128{left:170.100000px;}
.x3_c00128{left:197.100000px;}
.x4_c00128{left:251.100000px;}
.x5_c00128{left:299.708460px;}
.x1_c00128{left:738.360000px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.lsa_c00128{letter-spacing:-0.076800pt;}
.ls10_c00128{letter-spacing:-0.070400pt;}
.lsc_c00128{letter-spacing:-0.064000pt;}
.lsb_c00128{letter-spacing:-0.057600pt;}
.lsf_c00128{letter-spacing:-0.051200pt;}
.lsd_c00128{letter-spacing:-0.044800pt;}
.ls7_c00128{letter-spacing:-0.038400pt;}
.ls8_c00128{letter-spacing:-0.032000pt;}
.ls9_c00128{letter-spacing:-0.025600pt;}
.ls5_c00128{letter-spacing:-0.019200pt;}
.ls6_c00128{letter-spacing:-0.012800pt;}
.ls4_c00128{letter-spacing:-0.006400pt;}
.ls3_c00128{letter-spacing:0.000000pt;}
.ls1_c00128{letter-spacing:0.006400pt;}
.ls0_c00128{letter-spacing:0.044736pt;}
.lse_c00128{letter-spacing:0.128000pt;}
.ls2_c00128{letter-spacing:0.768000pt;}
.ws0_c00128{word-spacing:-17.798400pt;}
.ws2_c00128{word-spacing:-14.252800pt;}
.wsc_c00128{word-spacing:-4.326400pt;}
.wsb_c00128{word-spacing:-4.243200pt;}
.ws34_c00128{word-spacing:-3.328000pt;}
.ws33_c00128{word-spacing:-3.321600pt;}
.ws12_c00128{word-spacing:-2.220800pt;}
.ws13_c00128{word-spacing:-2.041600pt;}
.ws11_c00128{word-spacing:-2.022400pt;}
.ws1_c00128{word-spacing:0.000000pt;}
.ws3_c00128{word-spacing:0.037280pt;}
.ws10_c00128{word-spacing:0.147200pt;}
.wsf_c00128{word-spacing:0.160000pt;}
.ws27_c00128{word-spacing:0.761600pt;}
.ws26_c00128{word-spacing:0.774400pt;}
.ws37_c00128{word-spacing:0.787200pt;}
.ws8_c00128{word-spacing:0.819200pt;}
.ws38_c00128{word-spacing:0.838400pt;}
.ws6_c00128{word-spacing:2.073600pt;}
.wse_c00128{word-spacing:3.366400pt;}
.wsd_c00128{word-spacing:3.424000pt;}
.ws22_c00128{word-spacing:4.000000pt;}
.ws23_c00128{word-spacing:4.006400pt;}
.ws21_c00128{word-spacing:4.025600pt;}
.ws2c_c00128{word-spacing:4.326400pt;}
.ws2b_c00128{word-spacing:4.339200pt;}
.ws2a_c00128{word-spacing:4.352000pt;}
.ws29_c00128{word-spacing:5.625600pt;}
.ws31_c00128{word-spacing:5.632000pt;}
.ws32_c00128{word-spacing:5.644800pt;}
.ws28_c00128{word-spacing:5.651200pt;}
.ws1d_c00128{word-spacing:6.240000pt;}
.ws1c_c00128{word-spacing:6.265600pt;}
.ws25_c00128{word-spacing:7.193600pt;}
.ws24_c00128{word-spacing:7.283200pt;}
.ws2e_c00128{word-spacing:9.056000pt;}
.ws2d_c00128{word-spacing:9.145600pt;}
.ws30_c00128{word-spacing:9.395200pt;}
.ws2f_c00128{word-spacing:9.523200pt;}
.wsa_c00128{word-spacing:10.073600pt;}
.ws9_c00128{word-spacing:10.150400pt;}
.ws17_c00128{word-spacing:11.040000pt;}
.ws16_c00128{word-spacing:11.116800pt;}
.ws14_c00128{word-spacing:11.635200pt;}
.ws15_c00128{word-spacing:11.724800pt;}
.ws36_c00128{word-spacing:11.974400pt;}
.ws35_c00128{word-spacing:12.089600pt;}
.ws5_c00128{word-spacing:14.867200pt;}
.ws4_c00128{word-spacing:14.880000pt;}
.ws1f_c00128{word-spacing:21.228800pt;}
.ws1e_c00128{word-spacing:21.292800pt;}
.ws20_c00128{word-spacing:21.324800pt;}
.ws7_c00128{word-spacing:23.846400pt;}
.ws18_c00128{word-spacing:25.145600pt;}
.ws19_c00128{word-spacing:25.158400pt;}
.ws1a_c00128{word-spacing:26.988800pt;}
.ws1b_c00128{word-spacing:27.046400pt;}
._1_c00128{width:1.036800pt;}
._0_c00128{width:8.648960pt;}
.fs0_c00128{font-size:64.000000pt;}
.fs1_c00128{font-size:74.560000pt;}
.y0_c00128{bottom:0.000000pt;}
.y2_c00128{bottom:41.627067pt;}
.y1_c00128{bottom:60.027067pt;}
.y21_c00128{bottom:127.867067pt;}
.y20_c00128{bottom:155.467067pt;}
.y1f_c00128{bottom:183.067067pt;}
.y1e_c00128{bottom:210.667067pt;}
.y1d_c00128{bottom:238.267067pt;}
.y1c_c00128{bottom:265.867067pt;}
.y1b_c00128{bottom:293.467067pt;}
.y1a_c00128{bottom:321.067067pt;}
.y19_c00128{bottom:348.667067pt;}
.y18_c00128{bottom:376.267067pt;}
.y17_c00128{bottom:403.867067pt;}
.y16_c00128{bottom:431.467067pt;}
.y15_c00128{bottom:459.067067pt;}
.y14_c00128{bottom:486.667067pt;}
.y13_c00128{bottom:514.267067pt;}
.y12_c00128{bottom:541.867067pt;}
.y11_c00128{bottom:569.467067pt;}
.y10_c00128{bottom:597.067067pt;}
.yf_c00128{bottom:624.667067pt;}
.ye_c00128{bottom:652.187067pt;}
.yd_c00128{bottom:679.787067pt;}
.yc_c00128{bottom:707.387067pt;}
.yb_c00128{bottom:734.987067pt;}
.ya_c00128{bottom:762.587067pt;}
.y9_c00128{bottom:790.187067pt;}
.y8_c00128{bottom:817.787067pt;}
.y7_c00128{bottom:845.387067pt;}
.y6_c00128{bottom:880.987067pt;}
.y5_c00128{bottom:907.871067pt;}
.y4_c00128{bottom:929.307067pt;}
.y3_c00128{bottom:975.547067pt;}
.h1_c00128{height:56.156250pt;}
.h2_c00128{height:57.375000pt;}
.h4_c00128{height:66.750000pt;}
.h3_c00128{height:77.763750pt;}
.h0_c00128{height:1122.666667pt;}
.w1_c00128{width:793.333333pt;}
.w0_c00128{width:793.626667pt;}
.x0_c00128{left:0.000000pt;}
.x2_c00128{left:151.200000pt;}
.x3_c00128{left:175.200000pt;}
.x4_c00128{left:223.200000pt;}
.x5_c00128{left:266.407520pt;}
.x1_c00128{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c4bb2040648a5049d4763117.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.093262;font-style:normal;font-weight:normal;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_da2f13f2bade600dc08be8e1.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.106934;font-style:normal;font-weight:normal;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_4198e6cc1c274411c309bd5a.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls7_c00129{letter-spacing:-0.122400px;}
.lsc_c00129{letter-spacing:-0.086400px;}
.lse_c00129{letter-spacing:-0.079200px;}
.lsf_c00129{letter-spacing:-0.072000px;}
.ls8_c00129{letter-spacing:-0.064800px;}
.lsb_c00129{letter-spacing:-0.057600px;}
.ls6_c00129{letter-spacing:-0.050400px;}
.ls9_c00129{letter-spacing:-0.043200px;}
.ls4_c00129{letter-spacing:-0.036000px;}
.ls5_c00129{letter-spacing:-0.028800px;}
.ls3_c00129{letter-spacing:-0.021600px;}
.lsa_c00129{letter-spacing:-0.014400px;}
.lsd_c00129{letter-spacing:-0.007200px;}
.ls2_c00129{letter-spacing:0.000000px;}
.ls0_c00129{letter-spacing:0.014400px;}
.ls10_c00129{letter-spacing:0.028800px;}
.ls1_c00129{letter-spacing:0.144000px;}
.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;}
}
.wsd_c00129{word-spacing:-4.881600px;}
.wse_c00129{word-spacing:-4.867200px;}
.ws22_c00129{word-spacing:-4.140000px;}
.ws21_c00129{word-spacing:-4.075200px;}
.ws1d_c00129{word-spacing:-3.060000px;}
.ws1c_c00129{word-spacing:-2.937600px;}
.ws5_c00129{word-spacing:-2.397600px;}
.ws6_c00129{word-spacing:-2.368800px;}
.ws2c_c00129{word-spacing:-1.987200px;}
.ws2b_c00129{word-spacing:-1.958400px;}
.ws29_c00129{word-spacing:-0.950400px;}
.ws2a_c00129{word-spacing:-0.842400px;}
.ws31_c00129{word-spacing:-0.144000px;}
.ws0_c00129{word-spacing:0.000000px;}
.ws37_c00129{word-spacing:0.129600px;}
.ws1a_c00129{word-spacing:0.165600px;}
.ws1b_c00129{word-spacing:0.172800px;}
.ws13_c00129{word-spacing:0.187200px;}
.ws2d_c00129{word-spacing:0.259200px;}
.ws23_c00129{word-spacing:1.274400px;}
.ws33_c00129{word-spacing:2.318400px;}
.ws14_c00129{word-spacing:2.332800px;}
.ws32_c00129{word-spacing:2.340000px;}
.ws15_c00129{word-spacing:2.404800px;}
.ws3_c00129{word-spacing:3.067200px;}
.ws4_c00129{word-spacing:3.160800px;}
.ws2f_c00129{word-spacing:3.780000px;}
.ws2e_c00129{word-spacing:3.794400px;}
.ws30_c00129{word-spacing:3.823200px;}
.ws28_c00129{word-spacing:4.161600px;}
.wsf_c00129{word-spacing:6.321600px;}
.ws10_c00129{word-spacing:6.336000px;}
.ws27_c00129{word-spacing:6.948000px;}
.ws26_c00129{word-spacing:7.106400px;}
.ws1_c00129{word-spacing:8.100000px;}
.ws2_c00129{word-spacing:8.114400px;}
.ws9_c00129{word-spacing:8.308800px;}
.ws7_c00129{word-spacing:8.481600px;}
.ws8_c00129{word-spacing:8.488800px;}
.ws1e_c00129{word-spacing:10.022400px;}
.ws1f_c00129{word-spacing:10.087200px;}
.ws35_c00129{word-spacing:10.288800px;}
.ws34_c00129{word-spacing:10.310400px;}
.ws36_c00129{word-spacing:11.354400px;}
.wsc_c00129{word-spacing:17.424000px;}
.wsa_c00129{word-spacing:17.452800px;}
.wsb_c00129{word-spacing:17.596800px;}
.ws17_c00129{word-spacing:17.820000px;}
.ws16_c00129{word-spacing:17.848800px;}
.ws20_c00129{word-spacing:21.052800px;}
.ws24_c00129{word-spacing:23.587200px;}
.ws25_c00129{word-spacing:23.608800px;}
.ws11_c00129{word-spacing:36.172800px;}
.ws12_c00129{word-spacing:36.194400px;}
.ws18_c00129{word-spacing:44.812800px;}
.ws19_c00129{word-spacing:44.820000px;}
._0_c00129{margin-left:-2.224800px;}
._1_c00129{width:1.051200px;}
.fc0_c00129{color:rgb(0,0,0);}
.fs0_c00129{font-size:72.000000px;}
.y0_c00129{bottom:0.000000px;}
.y2_c00129{bottom:46.830450px;}
.y1_c00129{bottom:67.530450px;}
.y27_c00129{bottom:159.780450px;}
.y26_c00129{bottom:199.830450px;}
.y25_c00129{bottom:230.880450px;}
.y24_c00129{bottom:261.930450px;}
.y23_c00129{bottom:292.980450px;}
.y22_c00129{bottom:324.030450px;}
.y21_c00129{bottom:355.080450px;}
.y20_c00129{bottom:375.690450px;}
.y1f_c00129{bottom:396.390450px;}
.y1e_c00129{bottom:417.090450px;}
.y1d_c00129{bottom:437.790450px;}
.y1c_c00129{bottom:458.490450px;}
.y1b_c00129{bottom:479.190450px;}
.y1a_c00129{bottom:499.890450px;}
.y19_c00129{bottom:520.590450px;}
.y18_c00129{bottom:541.290450px;}
.y17_c00129{bottom:561.990450px;}
.y16_c00129{bottom:582.690450px;}
.y15_c00129{bottom:603.390450px;}
.y14_c00129{bottom:624.090450px;}
.y13_c00129{bottom:644.790450px;}
.y12_c00129{bottom:684.840450px;}
.y11_c00129{bottom:705.540450px;}
.y10_c00129{bottom:726.240450px;}
.yf_c00129{bottom:746.940450px;}
.ye_c00129{bottom:767.640450px;}
.yd_c00129{bottom:788.340450px;}
.yc_c00129{bottom:809.040450px;}
.yb_c00129{bottom:849.090450px;}
.ya_c00129{bottom:880.140450px;}
.y9_c00129{bottom:911.190450px;}
.y8_c00129{bottom:942.240450px;}
.y7_c00129{bottom:973.290450px;}
.y6_c00129{bottom:1004.340450px;}
.y5_c00129{bottom:1035.390450px;}
.y4_c00129{bottom:1066.440450px;}
.y3_c00129{bottom:1097.490450px;}
.h1_c00129{height:63.175781px;}
.h2_c00129{height:64.546875px;}
.h3_c00129{height:75.093750px;}
.h0_c00129{height:1263.000000px;}
.w1_c00129{width:892.500000px;}
.w0_c00129{width:892.830000px;}
.x0_c00129{left:0.000000px;}
.x2_c00129{left:127.620000px;}
.x3_c00129{left:148.950000px;}
.x1_c00129{left:695.880000px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls7_c00129{letter-spacing:-0.108800pt;}
.lsc_c00129{letter-spacing:-0.076800pt;}
.lse_c00129{letter-spacing:-0.070400pt;}
.lsf_c00129{letter-spacing:-0.064000pt;}
.ls8_c00129{letter-spacing:-0.057600pt;}
.lsb_c00129{letter-spacing:-0.051200pt;}
.ls6_c00129{letter-spacing:-0.044800pt;}
.ls9_c00129{letter-spacing:-0.038400pt;}
.ls4_c00129{letter-spacing:-0.032000pt;}
.ls5_c00129{letter-spacing:-0.025600pt;}
.ls3_c00129{letter-spacing:-0.019200pt;}
.lsa_c00129{letter-spacing:-0.012800pt;}
.lsd_c00129{letter-spacing:-0.006400pt;}
.ls2_c00129{letter-spacing:0.000000pt;}
.ls0_c00129{letter-spacing:0.012800pt;}
.ls10_c00129{letter-spacing:0.025600pt;}
.ls1_c00129{letter-spacing:0.128000pt;}
.wsd_c00129{word-spacing:-4.339200pt;}
.wse_c00129{word-spacing:-4.326400pt;}
.ws22_c00129{word-spacing:-3.680000pt;}
.ws21_c00129{word-spacing:-3.622400pt;}
.ws1d_c00129{word-spacing:-2.720000pt;}
.ws1c_c00129{word-spacing:-2.611200pt;}
.ws5_c00129{word-spacing:-2.131200pt;}
.ws6_c00129{word-spacing:-2.105600pt;}
.ws2c_c00129{word-spacing:-1.766400pt;}
.ws2b_c00129{word-spacing:-1.740800pt;}
.ws29_c00129{word-spacing:-0.844800pt;}
.ws2a_c00129{word-spacing:-0.748800pt;}
.ws31_c00129{word-spacing:-0.128000pt;}
.ws0_c00129{word-spacing:0.000000pt;}
.ws37_c00129{word-spacing:0.115200pt;}
.ws1a_c00129{word-spacing:0.147200pt;}
.ws1b_c00129{word-spacing:0.153600pt;}
.ws13_c00129{word-spacing:0.166400pt;}
.ws2d_c00129{word-spacing:0.230400pt;}
.ws23_c00129{word-spacing:1.132800pt;}
.ws33_c00129{word-spacing:2.060800pt;}
.ws14_c00129{word-spacing:2.073600pt;}
.ws32_c00129{word-spacing:2.080000pt;}
.ws15_c00129{word-spacing:2.137600pt;}
.ws3_c00129{word-spacing:2.726400pt;}
.ws4_c00129{word-spacing:2.809600pt;}
.ws2f_c00129{word-spacing:3.360000pt;}
.ws2e_c00129{word-spacing:3.372800pt;}
.ws30_c00129{word-spacing:3.398400pt;}
.ws28_c00129{word-spacing:3.699200pt;}
.wsf_c00129{word-spacing:5.619200pt;}
.ws10_c00129{word-spacing:5.632000pt;}
.ws27_c00129{word-spacing:6.176000pt;}
.ws26_c00129{word-spacing:6.316800pt;}
.ws1_c00129{word-spacing:7.200000pt;}
.ws2_c00129{word-spacing:7.212800pt;}
.ws9_c00129{word-spacing:7.385600pt;}
.ws7_c00129{word-spacing:7.539200pt;}
.ws8_c00129{word-spacing:7.545600pt;}
.ws1e_c00129{word-spacing:8.908800pt;}
.ws1f_c00129{word-spacing:8.966400pt;}
.ws35_c00129{word-spacing:9.145600pt;}
.ws34_c00129{word-spacing:9.164800pt;}
.ws36_c00129{word-spacing:10.092800pt;}
.wsc_c00129{word-spacing:15.488000pt;}
.wsa_c00129{word-spacing:15.513600pt;}
.wsb_c00129{word-spacing:15.641600pt;}
.ws17_c00129{word-spacing:15.840000pt;}
.ws16_c00129{word-spacing:15.865600pt;}
.ws20_c00129{word-spacing:18.713600pt;}
.ws24_c00129{word-spacing:20.966400pt;}
.ws25_c00129{word-spacing:20.985600pt;}
.ws11_c00129{word-spacing:32.153600pt;}
.ws12_c00129{word-spacing:32.172800pt;}
.ws18_c00129{word-spacing:39.833600pt;}
.ws19_c00129{word-spacing:39.840000pt;}
._0_c00129{margin-left:-1.977600pt;}
._1_c00129{width:0.934400pt;}
.fs0_c00129{font-size:64.000000pt;}
.y0_c00129{bottom:0.000000pt;}
.y2_c00129{bottom:41.627067pt;}
.y1_c00129{bottom:60.027067pt;}
.y27_c00129{bottom:142.027067pt;}
.y26_c00129{bottom:177.627067pt;}
.y25_c00129{bottom:205.227067pt;}
.y24_c00129{bottom:232.827067pt;}
.y23_c00129{bottom:260.427067pt;}
.y22_c00129{bottom:288.027067pt;}
.y21_c00129{bottom:315.627067pt;}
.y20_c00129{bottom:333.947067pt;}
.y1f_c00129{bottom:352.347067pt;}
.y1e_c00129{bottom:370.747067pt;}
.y1d_c00129{bottom:389.147067pt;}
.y1c_c00129{bottom:407.547067pt;}
.y1b_c00129{bottom:425.947067pt;}
.y1a_c00129{bottom:444.347067pt;}
.y19_c00129{bottom:462.747067pt;}
.y18_c00129{bottom:481.147067pt;}
.y17_c00129{bottom:499.547067pt;}
.y16_c00129{bottom:517.947067pt;}
.y15_c00129{bottom:536.347067pt;}
.y14_c00129{bottom:554.747067pt;}
.y13_c00129{bottom:573.147067pt;}
.y12_c00129{bottom:608.747067pt;}
.y11_c00129{bottom:627.147067pt;}
.y10_c00129{bottom:645.547067pt;}
.yf_c00129{bottom:663.947067pt;}
.ye_c00129{bottom:682.347067pt;}
.yd_c00129{bottom:700.747067pt;}
.yc_c00129{bottom:719.147067pt;}
.yb_c00129{bottom:754.747067pt;}
.ya_c00129{bottom:782.347067pt;}
.y9_c00129{bottom:809.947067pt;}
.y8_c00129{bottom:837.547067pt;}
.y7_c00129{bottom:865.147067pt;}
.y6_c00129{bottom:892.747067pt;}
.y5_c00129{bottom:920.347067pt;}
.y4_c00129{bottom:947.947067pt;}
.y3_c00129{bottom:975.547067pt;}
.h1_c00129{height:56.156250pt;}
.h2_c00129{height:57.375000pt;}
.h3_c00129{height:66.750000pt;}
.h0_c00129{height:1122.666667pt;}
.w1_c00129{width:793.333333pt;}
.w0_c00129{width:793.626667pt;}
.x0_c00129{left:0.000000pt;}
.x2_c00129{left:113.440000pt;}
.x3_c00129{left:132.400000pt;}
.x1_c00129{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bf2c5b642a66d5e6b9e265bc.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.093262;font-style:normal;font-weight:normal;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_a0df54a5d98a546fdc05f509.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.ls2_c00130{letter-spacing:-0.079200px;}
.ls8_c00130{letter-spacing:-0.072000px;}
.ls7_c00130{letter-spacing:-0.064800px;}
.ls1_c00130{letter-spacing:-0.057600px;}
.ls4_c00130{letter-spacing:-0.050400px;}
.ls9_c00130{letter-spacing:-0.043200px;}
.ls5_c00130{letter-spacing:-0.036000px;}
.lsa_c00130{letter-spacing:-0.028800px;}
.ls6_c00130{letter-spacing:-0.021600px;}
.ls3_c00130{letter-spacing:-0.014400px;}
.lsb_c00130{letter-spacing:-0.007200px;}
.ls0_c00130{letter-spacing:0.000000px;}
.sc__c00130{text-shadow:none;}
.sc0_c00130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00130{-webkit-text-stroke:0px transparent;}
.sc0_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00130{word-spacing:-4.867200px;}
.wsd_c00130{word-spacing:-4.759200px;}
.ws15_c00130{word-spacing:-4.485600px;}
.ws16_c00130{word-spacing:-4.478400px;}
.ws11_c00130{word-spacing:-3.787200px;}
.ws13_c00130{word-spacing:-3.780000px;}
.ws12_c00130{word-spacing:-3.751200px;}
.ws9_c00130{word-spacing:-3.117600px;}
.wsa_c00130{word-spacing:-3.009600px;}
.ws8_c00130{word-spacing:-2.700000px;}
.ws7_c00130{word-spacing:-2.635200px;}
.ws31_c00130{word-spacing:-2.376000px;}
.ws32_c00130{word-spacing:-2.332800px;}
.ws39_c00130{word-spacing:-0.892800px;}
.ws5_c00130{word-spacing:-0.439200px;}
.ws6_c00130{word-spacing:-0.403200px;}
.ws2b_c00130{word-spacing:-0.223200px;}
.ws2c_c00130{word-spacing:-0.129600px;}
.ws0_c00130{word-spacing:0.000000px;}
.ws10_c00130{word-spacing:0.093600px;}
.ws30_c00130{word-spacing:0.165600px;}
.ws1b_c00130{word-spacing:0.172800px;}
.ws3a_c00130{word-spacing:0.187200px;}
.ws1c_c00130{word-spacing:0.532800px;}
.ws1d_c00130{word-spacing:0.547200px;}
.ws26_c00130{word-spacing:0.561600px;}
.ws2a_c00130{word-spacing:1.231200px;}
.ws29_c00130{word-spacing:1.296000px;}
.ws34_c00130{word-spacing:1.504800px;}
.ws35_c00130{word-spacing:1.555200px;}
.ws33_c00130{word-spacing:1.605600px;}
.ws1f_c00130{word-spacing:3.067200px;}
.ws20_c00130{word-spacing:3.074400px;}
.ws18_c00130{word-spacing:3.448800px;}
.ws17_c00130{word-spacing:3.499200px;}
.ws2f_c00130{word-spacing:3.686400px;}
.ws2e_c00130{word-spacing:3.722400px;}
.wsb_c00130{word-spacing:8.870400px;}
.ws27_c00130{word-spacing:12.074400px;}
.ws28_c00130{word-spacing:12.081600px;}
.ws24_c00130{word-spacing:14.947200px;}
.ws25_c00130{word-spacing:14.983200px;}
.ws1a_c00130{word-spacing:16.682400px;}
.ws19_c00130{word-spacing:16.776000px;}
.ws36_c00130{word-spacing:17.136000px;}
.ws3_c00130{word-spacing:21.290400px;}
.ws4_c00130{word-spacing:21.448800px;}
.ws22_c00130{word-spacing:22.132800px;}
.ws23_c00130{word-spacing:22.140000px;}
.ws21_c00130{word-spacing:22.154400px;}
.ws14_c00130{word-spacing:25.012800px;}
.ws38_c00130{word-spacing:28.627200px;}
.ws37_c00130{word-spacing:28.634400px;}
.ws1_c00130{word-spacing:28.656000px;}
.ws2_c00130{word-spacing:28.677600px;}
.wse_c00130{word-spacing:32.212800px;}
.wsf_c00130{word-spacing:32.248800px;}
.ws2d_c00130{word-spacing:44.503200px;}
.ws1e_c00130{word-spacing:49.903200px;}
._0_c00130{width:1.310400px;}
.fc0_c00130{color:rgb(0,0,0);}
.fs0_c00130{font-size:72.000000px;}
.y0_c00130{bottom:0.000000px;}
.y2_c00130{bottom:46.830450px;}
.y1_c00130{bottom:67.530450px;}
.y29_c00130{bottom:177.780450px;}
.y28_c00130{bottom:208.830450px;}
.y27_c00130{bottom:239.880450px;}
.y26_c00130{bottom:270.930450px;}
.y25_c00130{bottom:301.980450px;}
.y24_c00130{bottom:333.030450px;}
.y23_c00130{bottom:364.080450px;}
.y22_c00130{bottom:384.690450px;}
.y21_c00130{bottom:405.390450px;}
.y20_c00130{bottom:426.090450px;}
.y1f_c00130{bottom:446.790450px;}
.y1e_c00130{bottom:467.490450px;}
.y1d_c00130{bottom:488.190450px;}
.y1c_c00130{bottom:508.890450px;}
.y1b_c00130{bottom:529.590450px;}
.y1a_c00130{bottom:550.290450px;}
.y19_c00130{bottom:570.990450px;}
.y18_c00130{bottom:591.690450px;}
.y17_c00130{bottom:612.390450px;}
.y16_c00130{bottom:633.090450px;}
.y15_c00130{bottom:653.790450px;}
.y14_c00130{bottom:674.490450px;}
.y13_c00130{bottom:714.540450px;}
.y12_c00130{bottom:745.590450px;}
.y11_c00130{bottom:776.640450px;}
.y10_c00130{bottom:807.690450px;}
.yf_c00130{bottom:838.740450px;}
.ye_c00130{bottom:869.790450px;}
.yd_c00130{bottom:890.490450px;}
.yc_c00130{bottom:911.190450px;}
.yb_c00130{bottom:931.890450px;}
.ya_c00130{bottom:952.590450px;}
.y9_c00130{bottom:973.290450px;}
.y8_c00130{bottom:993.990450px;}
.y7_c00130{bottom:1014.690450px;}
.y6_c00130{bottom:1035.390450px;}
.y5_c00130{bottom:1056.090450px;}
.y4_c00130{bottom:1076.790450px;}
.y3_c00130{bottom:1097.490450px;}
.h1_c00130{height:63.175781px;}
.h2_c00130{height:64.546875px;}
.h0_c00130{height:1263.000000px;}
.w1_c00130{width:892.500000px;}
.w0_c00130{width:892.830000px;}
.x0_c00130{left:0.000000px;}
.x2_c00130{left:170.100000px;}
.x3_c00130{left:191.430000px;}
.x1_c00130{left:738.360000px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls2_c00130{letter-spacing:-0.070400pt;}
.ls8_c00130{letter-spacing:-0.064000pt;}
.ls7_c00130{letter-spacing:-0.057600pt;}
.ls1_c00130{letter-spacing:-0.051200pt;}
.ls4_c00130{letter-spacing:-0.044800pt;}
.ls9_c00130{letter-spacing:-0.038400pt;}
.ls5_c00130{letter-spacing:-0.032000pt;}
.lsa_c00130{letter-spacing:-0.025600pt;}
.ls6_c00130{letter-spacing:-0.019200pt;}
.ls3_c00130{letter-spacing:-0.012800pt;}
.lsb_c00130{letter-spacing:-0.006400pt;}
.ls0_c00130{letter-spacing:0.000000pt;}
.wsc_c00130{word-spacing:-4.326400pt;}
.wsd_c00130{word-spacing:-4.230400pt;}
.ws15_c00130{word-spacing:-3.987200pt;}
.ws16_c00130{word-spacing:-3.980800pt;}
.ws11_c00130{word-spacing:-3.366400pt;}
.ws13_c00130{word-spacing:-3.360000pt;}
.ws12_c00130{word-spacing:-3.334400pt;}
.ws9_c00130{word-spacing:-2.771200pt;}
.wsa_c00130{word-spacing:-2.675200pt;}
.ws8_c00130{word-spacing:-2.400000pt;}
.ws7_c00130{word-spacing:-2.342400pt;}
.ws31_c00130{word-spacing:-2.112000pt;}
.ws32_c00130{word-spacing:-2.073600pt;}
.ws39_c00130{word-spacing:-0.793600pt;}
.ws5_c00130{word-spacing:-0.390400pt;}
.ws6_c00130{word-spacing:-0.358400pt;}
.ws2b_c00130{word-spacing:-0.198400pt;}
.ws2c_c00130{word-spacing:-0.115200pt;}
.ws0_c00130{word-spacing:0.000000pt;}
.ws10_c00130{word-spacing:0.083200pt;}
.ws30_c00130{word-spacing:0.147200pt;}
.ws1b_c00130{word-spacing:0.153600pt;}
.ws3a_c00130{word-spacing:0.166400pt;}
.ws1c_c00130{word-spacing:0.473600pt;}
.ws1d_c00130{word-spacing:0.486400pt;}
.ws26_c00130{word-spacing:0.499200pt;}
.ws2a_c00130{word-spacing:1.094400pt;}
.ws29_c00130{word-spacing:1.152000pt;}
.ws34_c00130{word-spacing:1.337600pt;}
.ws35_c00130{word-spacing:1.382400pt;}
.ws33_c00130{word-spacing:1.427200pt;}
.ws1f_c00130{word-spacing:2.726400pt;}
.ws20_c00130{word-spacing:2.732800pt;}
.ws18_c00130{word-spacing:3.065600pt;}
.ws17_c00130{word-spacing:3.110400pt;}
.ws2f_c00130{word-spacing:3.276800pt;}
.ws2e_c00130{word-spacing:3.308800pt;}
.wsb_c00130{word-spacing:7.884800pt;}
.ws27_c00130{word-spacing:10.732800pt;}
.ws28_c00130{word-spacing:10.739200pt;}
.ws24_c00130{word-spacing:13.286400pt;}
.ws25_c00130{word-spacing:13.318400pt;}
.ws1a_c00130{word-spacing:14.828800pt;}
.ws19_c00130{word-spacing:14.912000pt;}
.ws36_c00130{word-spacing:15.232000pt;}
.ws3_c00130{word-spacing:18.924800pt;}
.ws4_c00130{word-spacing:19.065600pt;}
.ws22_c00130{word-spacing:19.673600pt;}
.ws23_c00130{word-spacing:19.680000pt;}
.ws21_c00130{word-spacing:19.692800pt;}
.ws14_c00130{word-spacing:22.233600pt;}
.ws38_c00130{word-spacing:25.446400pt;}
.ws37_c00130{word-spacing:25.452800pt;}
.ws1_c00130{word-spacing:25.472000pt;}
.ws2_c00130{word-spacing:25.491200pt;}
.wse_c00130{word-spacing:28.633600pt;}
.wsf_c00130{word-spacing:28.665600pt;}
.ws2d_c00130{word-spacing:39.558400pt;}
.ws1e_c00130{word-spacing:44.358400pt;}
._0_c00130{width:1.164800pt;}
.fs0_c00130{font-size:64.000000pt;}
.y0_c00130{bottom:0.000000pt;}
.y2_c00130{bottom:41.627067pt;}
.y1_c00130{bottom:60.027067pt;}
.y29_c00130{bottom:158.027067pt;}
.y28_c00130{bottom:185.627067pt;}
.y27_c00130{bottom:213.227067pt;}
.y26_c00130{bottom:240.827067pt;}
.y25_c00130{bottom:268.427067pt;}
.y24_c00130{bottom:296.027067pt;}
.y23_c00130{bottom:323.627067pt;}
.y22_c00130{bottom:341.947067pt;}
.y21_c00130{bottom:360.347067pt;}
.y20_c00130{bottom:378.747067pt;}
.y1f_c00130{bottom:397.147067pt;}
.y1e_c00130{bottom:415.547067pt;}
.y1d_c00130{bottom:433.947067pt;}
.y1c_c00130{bottom:452.347067pt;}
.y1b_c00130{bottom:470.747067pt;}
.y1a_c00130{bottom:489.147067pt;}
.y19_c00130{bottom:507.547067pt;}
.y18_c00130{bottom:525.947067pt;}
.y17_c00130{bottom:544.347067pt;}
.y16_c00130{bottom:562.747067pt;}
.y15_c00130{bottom:581.147067pt;}
.y14_c00130{bottom:599.547067pt;}
.y13_c00130{bottom:635.147067pt;}
.y12_c00130{bottom:662.747067pt;}
.y11_c00130{bottom:690.347067pt;}
.y10_c00130{bottom:717.947067pt;}
.yf_c00130{bottom:745.547067pt;}
.ye_c00130{bottom:773.147067pt;}
.yd_c00130{bottom:791.547067pt;}
.yc_c00130{bottom:809.947067pt;}
.yb_c00130{bottom:828.347067pt;}
.ya_c00130{bottom:846.747067pt;}
.y9_c00130{bottom:865.147067pt;}
.y8_c00130{bottom:883.547067pt;}
.y7_c00130{bottom:901.947067pt;}
.y6_c00130{bottom:920.347067pt;}
.y5_c00130{bottom:938.747067pt;}
.y4_c00130{bottom:957.147067pt;}
.y3_c00130{bottom:975.547067pt;}
.h1_c00130{height:56.156250pt;}
.h2_c00130{height:57.375000pt;}
.h0_c00130{height:1122.666667pt;}
.w1_c00130{width:793.333333pt;}
.w0_c00130{width:793.626667pt;}
.x0_c00130{left:0.000000pt;}
.x2_c00130{left:151.200000pt;}
.x3_c00130{left:170.160000pt;}
.x1_c00130{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_17ee88d1f45a5db004b4be30.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.093262;font-style:normal;font-weight:normal;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_278ec10552778fc6ea3a2bb5.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.106934;font-style:normal;font-weight:normal;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_5709bf0e92270e357a43df55.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls6_c00131{letter-spacing:-0.093600px;}
.ls3_c00131{letter-spacing:-0.086400px;}
.ls5_c00131{letter-spacing:-0.064800px;}
.lsa_c00131{letter-spacing:-0.050400px;}
.ls2_c00131{letter-spacing:-0.043200px;}
.ls4_c00131{letter-spacing:-0.036000px;}
.ls8_c00131{letter-spacing:-0.021600px;}
.ls9_c00131{letter-spacing:-0.014400px;}
.ls7_c00131{letter-spacing:-0.007200px;}
.ls1_c00131{letter-spacing:0.000000px;}
.ls0_c00131{letter-spacing:0.115200px;}
.lsb_c00131{letter-spacing:843.998400px;}
.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;}
}
.wsd_c00131{word-spacing:-3.196800px;}
.wsb_c00131{word-spacing:-3.067200px;}
.wsc_c00131{word-spacing:-3.031200px;}
.ws0_c00131{word-spacing:0.000000px;}
.ws2_c00131{word-spacing:0.158400px;}
.ws1_c00131{word-spacing:0.201600px;}
.ws4_c00131{word-spacing:2.354400px;}
.ws3_c00131{word-spacing:2.404800px;}
.ws9_c00131{word-spacing:4.500000px;}
.wsa_c00131{word-spacing:4.550400px;}
.ws6_c00131{word-spacing:7.754400px;}
.ws5_c00131{word-spacing:7.783200px;}
.ws8_c00131{word-spacing:26.085600px;}
.ws7_c00131{word-spacing:26.121600px;}
._1_c00131{margin-left:-1.346400px;}
._0_c00131{width:1.238400px;}
.fc0_c00131{color:rgb(0,0,0);}
.fs0_c00131{font-size:72.000000px;}
.y0_c00131{bottom:0.000000px;}
.y2_c00131{bottom:46.830450px;}
.y1_c00131{bottom:67.530450px;}
.y9_c00131{bottom:902.190450px;}
.y8_c00131{bottom:942.240450px;}
.y7_c00131{bottom:973.290450px;}
.y6_c00131{bottom:1004.340450px;}
.y5_c00131{bottom:1035.390450px;}
.y4_c00131{bottom:1066.440450px;}
.y3_c00131{bottom:1097.490450px;}
.h1_c00131{height:63.175781px;}
.h2_c00131{height:64.546875px;}
.h3_c00131{height:75.093750px;}
.h0_c00131{height:1263.000000px;}
.w1_c00131{width:892.500000px;}
.w0_c00131{width:892.830000px;}
.x0_c00131{left:0.000000px;}
.x2_c00131{left:127.620000px;}
.x1_c00131{left:695.880000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls6_c00131{letter-spacing:-0.083200pt;}
.ls3_c00131{letter-spacing:-0.076800pt;}
.ls5_c00131{letter-spacing:-0.057600pt;}
.lsa_c00131{letter-spacing:-0.044800pt;}
.ls2_c00131{letter-spacing:-0.038400pt;}
.ls4_c00131{letter-spacing:-0.032000pt;}
.ls8_c00131{letter-spacing:-0.019200pt;}
.ls9_c00131{letter-spacing:-0.012800pt;}
.ls7_c00131{letter-spacing:-0.006400pt;}
.ls1_c00131{letter-spacing:0.000000pt;}
.ls0_c00131{letter-spacing:0.102400pt;}
.lsb_c00131{letter-spacing:750.220800pt;}
.wsd_c00131{word-spacing:-2.841600pt;}
.wsb_c00131{word-spacing:-2.726400pt;}
.wsc_c00131{word-spacing:-2.694400pt;}
.ws0_c00131{word-spacing:0.000000pt;}
.ws2_c00131{word-spacing:0.140800pt;}
.ws1_c00131{word-spacing:0.179200pt;}
.ws4_c00131{word-spacing:2.092800pt;}
.ws3_c00131{word-spacing:2.137600pt;}
.ws9_c00131{word-spacing:4.000000pt;}
.wsa_c00131{word-spacing:4.044800pt;}
.ws6_c00131{word-spacing:6.892800pt;}
.ws5_c00131{word-spacing:6.918400pt;}
.ws8_c00131{word-spacing:23.187200pt;}
.ws7_c00131{word-spacing:23.219200pt;}
._1_c00131{margin-left:-1.196800pt;}
._0_c00131{width:1.100800pt;}
.fs0_c00131{font-size:64.000000pt;}
.y0_c00131{bottom:0.000000pt;}
.y2_c00131{bottom:41.627067pt;}
.y1_c00131{bottom:60.027067pt;}
.y9_c00131{bottom:801.947067pt;}
.y8_c00131{bottom:837.547067pt;}
.y7_c00131{bottom:865.147067pt;}
.y6_c00131{bottom:892.747067pt;}
.y5_c00131{bottom:920.347067pt;}
.y4_c00131{bottom:947.947067pt;}
.y3_c00131{bottom:975.547067pt;}
.h1_c00131{height:56.156250pt;}
.h2_c00131{height:57.375000pt;}
.h3_c00131{height:66.750000pt;}
.h0_c00131{height:1122.666667pt;}
.w1_c00131{width:793.333333pt;}
.w0_c00131{width:793.626667pt;}
.x0_c00131{left:0.000000pt;}
.x2_c00131{left:113.440000pt;}
.x1_c00131{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bf2c5b642a66d5e6b9e265bc.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.093262;font-style:normal;font-weight:normal;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_9e9ec27d59fcd36cdaaecffb.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00132;src:url('chunks/assets/font_909270d57068296064663843.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:1.106934;font-style:normal;font-weight:normal;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_061b3baae5bd16718bf3e970.woff2')format("woff");}.ff4_c00132{font-family:ff4_c00132;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lse_c00132{letter-spacing:-0.072000px;}
.ls9_c00132{letter-spacing:-0.064800px;}
.ls8_c00132{letter-spacing:-0.057600px;}
.ls5_c00132{letter-spacing:-0.050400px;}
.lsb_c00132{letter-spacing:-0.043200px;}
.ls6_c00132{letter-spacing:-0.036000px;}
.ls4_c00132{letter-spacing:-0.028800px;}
.lsc_c00132{letter-spacing:-0.021600px;}
.lsd_c00132{letter-spacing:-0.014400px;}
.lsa_c00132{letter-spacing:-0.007200px;}
.ls3_c00132{letter-spacing:0.000000px;}
.ls1_c00132{letter-spacing:0.007200px;}
.ls2_c00132{letter-spacing:0.014400px;}
.ls7_c00132{letter-spacing:0.036000px;}
.ls0_c00132{letter-spacing:0.058716px;}
.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;}
}
.ws1_c00132{word-spacing:-20.030400px;}
.ws0_c00132{word-spacing:-19.965600px;}
.ws18_c00132{word-spacing:-4.881600px;}
.ws17_c00132{word-spacing:-4.874400px;}
.ws19_c00132{word-spacing:-4.860000px;}
.ws2d_c00132{word-spacing:-4.507200px;}
.ws2e_c00132{word-spacing:-4.492800px;}
.wsa_c00132{word-spacing:-3.801600px;}
.wsb_c00132{word-spacing:-3.744000px;}
.ws2b_c00132{word-spacing:-3.110400px;}
.ws2c_c00132{word-spacing:-3.088800px;}
.ws34_c00132{word-spacing:-2.340000px;}
.ws33_c00132{word-spacing:-2.275200px;}
.ws2f_c00132{word-spacing:-0.547200px;}
.ws30_c00132{word-spacing:-0.525600px;}
.ws2_c00132{word-spacing:0.000000px;}
.ws1c_c00132{word-spacing:0.115200px;}
.ws12_c00132{word-spacing:0.165600px;}
.ws1d_c00132{word-spacing:0.180000px;}
.ws13_c00132{word-spacing:0.187200px;}
.ws21_c00132{word-spacing:1.648800px;}
.ws16_c00132{word-spacing:2.289600px;}
.ws31_c00132{word-spacing:2.700000px;}
.ws32_c00132{word-spacing:2.750400px;}
.ws1f_c00132{word-spacing:3.384000px;}
.ws20_c00132{word-spacing:3.412800px;}
.ws27_c00132{word-spacing:3.787200px;}
.ws28_c00132{word-spacing:3.801600px;}
.wsf_c00132{word-spacing:5.875200px;}
.wse_c00132{word-spacing:5.947200px;}
.wsc_c00132{word-spacing:6.336000px;}
.wsd_c00132{word-spacing:6.343200px;}
.ws23_c00132{word-spacing:7.264800px;}
.ws11_c00132{word-spacing:7.315200px;}
.ws24_c00132{word-spacing:7.351200px;}
.ws22_c00132{word-spacing:7.394400px;}
.ws10_c00132{word-spacing:7.408800px;}
.ws1a_c00132{word-spacing:8.740800px;}
.ws1b_c00132{word-spacing:8.791200px;}
.ws3_c00132{word-spacing:9.755244px;}
.ws1e_c00132{word-spacing:13.514400px;}
.ws26_c00132{word-spacing:23.212800px;}
.ws25_c00132{word-spacing:23.407200px;}
.ws6_c00132{word-spacing:30.254400px;}
.ws7_c00132{word-spacing:30.434400px;}
.ws4_c00132{word-spacing:31.147200px;}
.ws5_c00132{word-spacing:31.168800px;}
.ws9_c00132{word-spacing:31.442400px;}
.ws8_c00132{word-spacing:31.593600px;}
.ws29_c00132{word-spacing:34.380000px;}
.ws2a_c00132{word-spacing:34.394400px;}
.ws14_c00132{word-spacing:34.711200px;}
.ws15_c00132{word-spacing:34.804800px;}
._2_c00132{margin-left:-13.320000px;}
._0_c00132{margin-left:-9.730080px;}
._3_c00132{margin-left:-3.211200px;}
._1_c00132{width:1.080000px;}
.fc0_c00132{color:rgb(0,0,0);}
.fs0_c00132{font-size:72.000000px;}
.fs1_c00132{font-size:83.880000px;}
.y0_c00132{bottom:0.000000px;}
.y2_c00132{bottom:46.830450px;}
.y1_c00132{bottom:67.530450px;}
.y21_c00132{bottom:190.020450px;}
.y20_c00132{bottom:221.070450px;}
.y1f_c00132{bottom:252.120450px;}
.y1e_c00132{bottom:283.170450px;}
.y1d_c00132{bottom:314.220450px;}
.y1c_c00132{bottom:345.270450px;}
.y1b_c00132{bottom:376.320450px;}
.y1a_c00132{bottom:416.280450px;}
.y19_c00132{bottom:447.330450px;}
.y18_c00132{bottom:478.470450px;}
.y17_c00132{bottom:499.170450px;}
.y16_c00132{bottom:519.870450px;}
.y15_c00132{bottom:540.570450px;}
.y14_c00132{bottom:561.270450px;}
.y13_c00132{bottom:581.970450px;}
.y12_c00132{bottom:602.670450px;}
.y11_c00132{bottom:642.720450px;}
.y10_c00132{bottom:673.770450px;}
.yf_c00132{bottom:704.820450px;}
.ye_c00132{bottom:735.870450px;}
.yd_c00132{bottom:766.920450px;}
.yc_c00132{bottom:806.970450px;}
.yb_c00132{bottom:838.020450px;}
.ya_c00132{bottom:869.070450px;}
.y9_c00132{bottom:900.120450px;}
.y8_c00132{bottom:931.170450px;}
.y7_c00132{bottom:962.220450px;}
.y6_c00132{bottom:993.270450px;}
.y5_c00132{bottom:1024.320450px;}
.y4_c00132{bottom:1064.370450px;}
.y3_c00132{bottom:1094.520450px;}
.h1_c00132{height:63.175781px;}
.h3_c00132{height:64.546875px;}
.h4_c00132{height:75.093750px;}
.h2_c00132{height:87.484219px;}
.h0_c00132{height:1263.000000px;}
.w1_c00132{width:892.500000px;}
.w0_c00132{width:892.830000px;}
.x0_c00132{left:0.000000px;}
.x2_c00132{left:170.100000px;}
.x4_c00132{left:191.430000px;}
.x3_c00132{left:251.100000px;}
.x1_c00132{left:738.360000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.lse_c00132{letter-spacing:-0.064000pt;}
.ls9_c00132{letter-spacing:-0.057600pt;}
.ls8_c00132{letter-spacing:-0.051200pt;}
.ls5_c00132{letter-spacing:-0.044800pt;}
.lsb_c00132{letter-spacing:-0.038400pt;}
.ls6_c00132{letter-spacing:-0.032000pt;}
.ls4_c00132{letter-spacing:-0.025600pt;}
.lsc_c00132{letter-spacing:-0.019200pt;}
.lsd_c00132{letter-spacing:-0.012800pt;}
.lsa_c00132{letter-spacing:-0.006400pt;}
.ls3_c00132{letter-spacing:0.000000pt;}
.ls1_c00132{letter-spacing:0.006400pt;}
.ls2_c00132{letter-spacing:0.012800pt;}
.ls7_c00132{letter-spacing:0.032000pt;}
.ls0_c00132{letter-spacing:0.052192pt;}
.ws1_c00132{word-spacing:-17.804800pt;}
.ws0_c00132{word-spacing:-17.747200pt;}
.ws18_c00132{word-spacing:-4.339200pt;}
.ws17_c00132{word-spacing:-4.332800pt;}
.ws19_c00132{word-spacing:-4.320000pt;}
.ws2d_c00132{word-spacing:-4.006400pt;}
.ws2e_c00132{word-spacing:-3.993600pt;}
.wsa_c00132{word-spacing:-3.379200pt;}
.wsb_c00132{word-spacing:-3.328000pt;}
.ws2b_c00132{word-spacing:-2.764800pt;}
.ws2c_c00132{word-spacing:-2.745600pt;}
.ws34_c00132{word-spacing:-2.080000pt;}
.ws33_c00132{word-spacing:-2.022400pt;}
.ws2f_c00132{word-spacing:-0.486400pt;}
.ws30_c00132{word-spacing:-0.467200pt;}
.ws2_c00132{word-spacing:0.000000pt;}
.ws1c_c00132{word-spacing:0.102400pt;}
.ws12_c00132{word-spacing:0.147200pt;}
.ws1d_c00132{word-spacing:0.160000pt;}
.ws13_c00132{word-spacing:0.166400pt;}
.ws21_c00132{word-spacing:1.465600pt;}
.ws16_c00132{word-spacing:2.035200pt;}
.ws31_c00132{word-spacing:2.400000pt;}
.ws32_c00132{word-spacing:2.444800pt;}
.ws1f_c00132{word-spacing:3.008000pt;}
.ws20_c00132{word-spacing:3.033600pt;}
.ws27_c00132{word-spacing:3.366400pt;}
.ws28_c00132{word-spacing:3.379200pt;}
.wsf_c00132{word-spacing:5.222400pt;}
.wse_c00132{word-spacing:5.286400pt;}
.wsc_c00132{word-spacing:5.632000pt;}
.wsd_c00132{word-spacing:5.638400pt;}
.ws23_c00132{word-spacing:6.457600pt;}
.ws11_c00132{word-spacing:6.502400pt;}
.ws24_c00132{word-spacing:6.534400pt;}
.ws22_c00132{word-spacing:6.572800pt;}
.ws10_c00132{word-spacing:6.585600pt;}
.ws1a_c00132{word-spacing:7.769600pt;}
.ws1b_c00132{word-spacing:7.814400pt;}
.ws3_c00132{word-spacing:8.671328pt;}
.ws1e_c00132{word-spacing:12.012800pt;}
.ws26_c00132{word-spacing:20.633600pt;}
.ws25_c00132{word-spacing:20.806400pt;}
.ws6_c00132{word-spacing:26.892800pt;}
.ws7_c00132{word-spacing:27.052800pt;}
.ws4_c00132{word-spacing:27.686400pt;}
.ws5_c00132{word-spacing:27.705600pt;}
.ws9_c00132{word-spacing:27.948800pt;}
.ws8_c00132{word-spacing:28.083200pt;}
.ws29_c00132{word-spacing:30.560000pt;}
.ws2a_c00132{word-spacing:30.572800pt;}
.ws14_c00132{word-spacing:30.854400pt;}
.ws15_c00132{word-spacing:30.937600pt;}
._2_c00132{margin-left:-11.840000pt;}
._0_c00132{margin-left:-8.648960pt;}
._3_c00132{margin-left:-2.854400pt;}
._1_c00132{width:0.960000pt;}
.fs0_c00132{font-size:64.000000pt;}
.fs1_c00132{font-size:74.560000pt;}
.y0_c00132{bottom:0.000000pt;}
.y2_c00132{bottom:41.627067pt;}
.y1_c00132{bottom:60.027067pt;}
.y21_c00132{bottom:168.907067pt;}
.y20_c00132{bottom:196.507067pt;}
.y1f_c00132{bottom:224.107067pt;}
.y1e_c00132{bottom:251.707067pt;}
.y1d_c00132{bottom:279.307067pt;}
.y1c_c00132{bottom:306.907067pt;}
.y1b_c00132{bottom:334.507067pt;}
.y1a_c00132{bottom:370.027067pt;}
.y19_c00132{bottom:397.627067pt;}
.y18_c00132{bottom:425.307067pt;}
.y17_c00132{bottom:443.707067pt;}
.y16_c00132{bottom:462.107067pt;}
.y15_c00132{bottom:480.507067pt;}
.y14_c00132{bottom:498.907067pt;}
.y13_c00132{bottom:517.307067pt;}
.y12_c00132{bottom:535.707067pt;}
.y11_c00132{bottom:571.307067pt;}
.y10_c00132{bottom:598.907067pt;}
.yf_c00132{bottom:626.507067pt;}
.ye_c00132{bottom:654.107067pt;}
.yd_c00132{bottom:681.707067pt;}
.yc_c00132{bottom:717.307067pt;}
.yb_c00132{bottom:744.907067pt;}
.ya_c00132{bottom:772.507067pt;}
.y9_c00132{bottom:800.107067pt;}
.y8_c00132{bottom:827.707067pt;}
.y7_c00132{bottom:855.307067pt;}
.y6_c00132{bottom:882.907067pt;}
.y5_c00132{bottom:910.507067pt;}
.y4_c00132{bottom:946.107067pt;}
.y3_c00132{bottom:972.907067pt;}
.h1_c00132{height:56.156250pt;}
.h3_c00132{height:57.375000pt;}
.h4_c00132{height:66.750000pt;}
.h2_c00132{height:77.763750pt;}
.h0_c00132{height:1122.666667pt;}
.w1_c00132{width:793.333333pt;}
.w0_c00132{width:793.626667pt;}
.x0_c00132{left:0.000000pt;}
.x2_c00132{left:151.200000pt;}
.x4_c00132{left:170.160000pt;}
.x3_c00132{left:223.200000pt;}
.x1_c00132{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e17566220d3494508a0aca85.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.093262;font-style:normal;font-weight:normal;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_102d97f850fe04ea207088fd.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.106934;font-style:normal;font-weight:normal;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_e931a47140c04c2208871b52.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lse_c00133{letter-spacing:-0.100800px;}
.lsc_c00133{letter-spacing:-0.086400px;}
.ls3_c00133{letter-spacing:-0.079200px;}
.ls9_c00133{letter-spacing:-0.072000px;}
.ls4_c00133{letter-spacing:-0.064800px;}
.lsa_c00133{letter-spacing:-0.057600px;}
.lsd_c00133{letter-spacing:-0.050400px;}
.ls6_c00133{letter-spacing:-0.043200px;}
.lsb_c00133{letter-spacing:-0.036000px;}
.ls7_c00133{letter-spacing:-0.028800px;}
.ls8_c00133{letter-spacing:-0.021600px;}
.ls2_c00133{letter-spacing:-0.014400px;}
.ls5_c00133{letter-spacing:-0.007200px;}
.ls1_c00133{letter-spacing:0.000000px;}
.ls0_c00133{letter-spacing:0.007200px;}
.sc__c00133{text-shadow:none;}
.sc0_c00133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00133{-webkit-text-stroke:0px transparent;}
.sc0_c00133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00133{word-spacing:-19.915200px;}
.ws19_c00133{word-spacing:-3.528000px;}
.ws1b_c00133{word-spacing:-3.484800px;}
.ws1a_c00133{word-spacing:-3.427200px;}
.ws7_c00133{word-spacing:-3.412800px;}
.ws6_c00133{word-spacing:-3.333600px;}
.ws11_c00133{word-spacing:-0.892800px;}
.ws10_c00133{word-spacing:-0.820800px;}
.ws14_c00133{word-spacing:-0.525600px;}
.ws28_c00133{word-spacing:-0.511200px;}
.ws15_c00133{word-spacing:-0.504000px;}
.ws20_c00133{word-spacing:-0.144000px;}
.ws1f_c00133{word-spacing:-0.115200px;}
.ws1_c00133{word-spacing:0.000000px;}
.ws38_c00133{word-spacing:0.086400px;}
.ws5_c00133{word-spacing:0.165600px;}
.ws1c_c00133{word-spacing:0.172800px;}
.ws39_c00133{word-spacing:0.187200px;}
.ws37_c00133{word-spacing:0.194400px;}
.ws2d_c00133{word-spacing:0.525600px;}
.ws2e_c00133{word-spacing:0.554400px;}
.ws2b_c00133{word-spacing:0.561600px;}
.ws2c_c00133{word-spacing:0.640800px;}
.ws2a_c00133{word-spacing:0.914400px;}
.ws29_c00133{word-spacing:0.957600px;}
.ws2f_c00133{word-spacing:1.260000px;}
.ws30_c00133{word-spacing:1.332000px;}
.wsb_c00133{word-spacing:1.548000px;}
.wsa_c00133{word-spacing:1.620000px;}
.wsc_c00133{word-spacing:1.656000px;}
.ws1e_c00133{word-spacing:2.246400px;}
.ws1d_c00133{word-spacing:2.282400px;}
.ws16_c00133{word-spacing:2.340000px;}
.ws17_c00133{word-spacing:2.347200px;}
.ws18_c00133{word-spacing:2.397600px;}
.wsf_c00133{word-spacing:2.692800px;}
.wse_c00133{word-spacing:2.707200px;}
.ws26_c00133{word-spacing:3.060000px;}
.ws27_c00133{word-spacing:3.088800px;}
.ws2_c00133{word-spacing:3.412800px;}
.ws4_c00133{word-spacing:3.463200px;}
.ws3_c00133{word-spacing:3.477600px;}
.ws3b_c00133{word-spacing:3.787200px;}
.ws3a_c00133{word-spacing:3.801600px;}
.ws24_c00133{word-spacing:4.860000px;}
.ws25_c00133{word-spacing:4.888800px;}
.ws22_c00133{word-spacing:5.184000px;}
.ws23_c00133{word-spacing:5.227200px;}
.ws21_c00133{word-spacing:5.234400px;}
.ws35_c00133{word-spacing:11.001600px;}
.ws36_c00133{word-spacing:11.088000px;}
.ws13_c00133{word-spacing:14.212800px;}
.ws12_c00133{word-spacing:14.284800px;}
.wsd_c00133{word-spacing:15.660000px;}
.ws9_c00133{word-spacing:21.405600px;}
.ws8_c00133{word-spacing:21.528000px;}
.ws33_c00133{word-spacing:21.729600px;}
.ws34_c00133{word-spacing:21.765600px;}
.ws31_c00133{word-spacing:22.377600px;}
.ws32_c00133{word-spacing:22.536000px;}
._2_c00133{margin-left:-1.440000px;}
._0_c00133{width:1.476000px;}
._1_c00133{width:3.888000px;}
.fc0_c00133{color:rgb(0,0,0);}
.fs0_c00133{font-size:72.000000px;}
.y0_c00133{bottom:0.000000px;}
.y2_c00133{bottom:46.830450px;}
.y1_c00133{bottom:67.530450px;}
.y23_c00133{bottom:170.130450px;}
.y22_c00133{bottom:201.180450px;}
.y21_c00133{bottom:241.230450px;}
.y20_c00133{bottom:272.280450px;}
.y1f_c00133{bottom:303.330450px;}
.y1e_c00133{bottom:334.380450px;}
.y1d_c00133{bottom:365.430450px;}
.y1c_c00133{bottom:396.390450px;}
.y1b_c00133{bottom:427.440450px;}
.y1a_c00133{bottom:458.490450px;}
.y19_c00133{bottom:479.190450px;}
.y18_c00133{bottom:499.890450px;}
.y17_c00133{bottom:520.590450px;}
.y16_c00133{bottom:541.290450px;}
.y15_c00133{bottom:561.990450px;}
.y14_c00133{bottom:582.690450px;}
.y13_c00133{bottom:603.390450px;}
.y12_c00133{bottom:624.090450px;}
.y11_c00133{bottom:644.790450px;}
.y10_c00133{bottom:684.840450px;}
.yf_c00133{bottom:715.890450px;}
.ye_c00133{bottom:746.940450px;}
.yd_c00133{bottom:777.990450px;}
.yc_c00133{bottom:809.040450px;}
.yb_c00133{bottom:840.090450px;}
.ya_c00133{bottom:871.140450px;}
.y9_c00133{bottom:902.190450px;}
.y8_c00133{bottom:933.240450px;}
.y7_c00133{bottom:964.290450px;}
.y6_c00133{bottom:995.340450px;}
.y5_c00133{bottom:1026.390450px;}
.y4_c00133{bottom:1066.440450px;}
.y3_c00133{bottom:1097.490450px;}
.h1_c00133{height:63.175781px;}
.h3_c00133{height:64.546875px;}
.h2_c00133{height:75.093750px;}
.h0_c00133{height:1263.000000px;}
.w1_c00133{width:892.500000px;}
.w0_c00133{width:892.830000px;}
.x0_c00133{left:0.000000px;}
.x2_c00133{left:127.620000px;}
.x3_c00133{left:148.950000px;}
.x1_c00133{left:695.880000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.lse_c00133{letter-spacing:-0.089600pt;}
.lsc_c00133{letter-spacing:-0.076800pt;}
.ls3_c00133{letter-spacing:-0.070400pt;}
.ls9_c00133{letter-spacing:-0.064000pt;}
.ls4_c00133{letter-spacing:-0.057600pt;}
.lsa_c00133{letter-spacing:-0.051200pt;}
.lsd_c00133{letter-spacing:-0.044800pt;}
.ls6_c00133{letter-spacing:-0.038400pt;}
.lsb_c00133{letter-spacing:-0.032000pt;}
.ls7_c00133{letter-spacing:-0.025600pt;}
.ls8_c00133{letter-spacing:-0.019200pt;}
.ls2_c00133{letter-spacing:-0.012800pt;}
.ls5_c00133{letter-spacing:-0.006400pt;}
.ls1_c00133{letter-spacing:0.000000pt;}
.ls0_c00133{letter-spacing:0.006400pt;}
.ws0_c00133{word-spacing:-17.702400pt;}
.ws19_c00133{word-spacing:-3.136000pt;}
.ws1b_c00133{word-spacing:-3.097600pt;}
.ws1a_c00133{word-spacing:-3.046400pt;}
.ws7_c00133{word-spacing:-3.033600pt;}
.ws6_c00133{word-spacing:-2.963200pt;}
.ws11_c00133{word-spacing:-0.793600pt;}
.ws10_c00133{word-spacing:-0.729600pt;}
.ws14_c00133{word-spacing:-0.467200pt;}
.ws28_c00133{word-spacing:-0.454400pt;}
.ws15_c00133{word-spacing:-0.448000pt;}
.ws20_c00133{word-spacing:-0.128000pt;}
.ws1f_c00133{word-spacing:-0.102400pt;}
.ws1_c00133{word-spacing:0.000000pt;}
.ws38_c00133{word-spacing:0.076800pt;}
.ws5_c00133{word-spacing:0.147200pt;}
.ws1c_c00133{word-spacing:0.153600pt;}
.ws39_c00133{word-spacing:0.166400pt;}
.ws37_c00133{word-spacing:0.172800pt;}
.ws2d_c00133{word-spacing:0.467200pt;}
.ws2e_c00133{word-spacing:0.492800pt;}
.ws2b_c00133{word-spacing:0.499200pt;}
.ws2c_c00133{word-spacing:0.569600pt;}
.ws2a_c00133{word-spacing:0.812800pt;}
.ws29_c00133{word-spacing:0.851200pt;}
.ws2f_c00133{word-spacing:1.120000pt;}
.ws30_c00133{word-spacing:1.184000pt;}
.wsb_c00133{word-spacing:1.376000pt;}
.wsa_c00133{word-spacing:1.440000pt;}
.wsc_c00133{word-spacing:1.472000pt;}
.ws1e_c00133{word-spacing:1.996800pt;}
.ws1d_c00133{word-spacing:2.028800pt;}
.ws16_c00133{word-spacing:2.080000pt;}
.ws17_c00133{word-spacing:2.086400pt;}
.ws18_c00133{word-spacing:2.131200pt;}
.wsf_c00133{word-spacing:2.393600pt;}
.wse_c00133{word-spacing:2.406400pt;}
.ws26_c00133{word-spacing:2.720000pt;}
.ws27_c00133{word-spacing:2.745600pt;}
.ws2_c00133{word-spacing:3.033600pt;}
.ws4_c00133{word-spacing:3.078400pt;}
.ws3_c00133{word-spacing:3.091200pt;}
.ws3b_c00133{word-spacing:3.366400pt;}
.ws3a_c00133{word-spacing:3.379200pt;}
.ws24_c00133{word-spacing:4.320000pt;}
.ws25_c00133{word-spacing:4.345600pt;}
.ws22_c00133{word-spacing:4.608000pt;}
.ws23_c00133{word-spacing:4.646400pt;}
.ws21_c00133{word-spacing:4.652800pt;}
.ws35_c00133{word-spacing:9.779200pt;}
.ws36_c00133{word-spacing:9.856000pt;}
.ws13_c00133{word-spacing:12.633600pt;}
.ws12_c00133{word-spacing:12.697600pt;}
.wsd_c00133{word-spacing:13.920000pt;}
.ws9_c00133{word-spacing:19.027200pt;}
.ws8_c00133{word-spacing:19.136000pt;}
.ws33_c00133{word-spacing:19.315200pt;}
.ws34_c00133{word-spacing:19.347200pt;}
.ws31_c00133{word-spacing:19.891200pt;}
.ws32_c00133{word-spacing:20.032000pt;}
._2_c00133{margin-left:-1.280000pt;}
._0_c00133{width:1.312000pt;}
._1_c00133{width:3.456000pt;}
.fs0_c00133{font-size:64.000000pt;}
.y0_c00133{bottom:0.000000pt;}
.y2_c00133{bottom:41.627067pt;}
.y1_c00133{bottom:60.027067pt;}
.y23_c00133{bottom:151.227067pt;}
.y22_c00133{bottom:178.827067pt;}
.y21_c00133{bottom:214.427067pt;}
.y20_c00133{bottom:242.027067pt;}
.y1f_c00133{bottom:269.627067pt;}
.y1e_c00133{bottom:297.227067pt;}
.y1d_c00133{bottom:324.827067pt;}
.y1c_c00133{bottom:352.347067pt;}
.y1b_c00133{bottom:379.947067pt;}
.y1a_c00133{bottom:407.547067pt;}
.y19_c00133{bottom:425.947067pt;}
.y18_c00133{bottom:444.347067pt;}
.y17_c00133{bottom:462.747067pt;}
.y16_c00133{bottom:481.147067pt;}
.y15_c00133{bottom:499.547067pt;}
.y14_c00133{bottom:517.947067pt;}
.y13_c00133{bottom:536.347067pt;}
.y12_c00133{bottom:554.747067pt;}
.y11_c00133{bottom:573.147067pt;}
.y10_c00133{bottom:608.747067pt;}
.yf_c00133{bottom:636.347067pt;}
.ye_c00133{bottom:663.947067pt;}
.yd_c00133{bottom:691.547067pt;}
.yc_c00133{bottom:719.147067pt;}
.yb_c00133{bottom:746.747067pt;}
.ya_c00133{bottom:774.347067pt;}
.y9_c00133{bottom:801.947067pt;}
.y8_c00133{bottom:829.547067pt;}
.y7_c00133{bottom:857.147067pt;}
.y6_c00133{bottom:884.747067pt;}
.y5_c00133{bottom:912.347067pt;}
.y4_c00133{bottom:947.947067pt;}
.y3_c00133{bottom:975.547067pt;}
.h1_c00133{height:56.156250pt;}
.h3_c00133{height:57.375000pt;}
.h2_c00133{height:66.750000pt;}
.h0_c00133{height:1122.666667pt;}
.w1_c00133{width:793.333333pt;}
.w0_c00133{width:793.626667pt;}
.x0_c00133{left:0.000000pt;}
.x2_c00133{left:113.440000pt;}
.x3_c00133{left:132.400000pt;}
.x1_c00133{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8d02a196d85ff9d6760a8f4e.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.093262;font-style:normal;font-weight:normal;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_36ac34a0a9717ea632ba65fd.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.106934;font-style:normal;font-weight:normal;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_d93f0d1097827064197029b9.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls3_c00134{letter-spacing:-0.079200px;}
.ls5_c00134{letter-spacing:-0.072000px;}
.lsc_c00134{letter-spacing:-0.064800px;}
.lsb_c00134{letter-spacing:-0.057600px;}
.ls8_c00134{letter-spacing:-0.050400px;}
.ls6_c00134{letter-spacing:-0.043200px;}
.ls2_c00134{letter-spacing:-0.036000px;}
.ls7_c00134{letter-spacing:-0.028800px;}
.ls4_c00134{letter-spacing:-0.021600px;}
.lsa_c00134{letter-spacing:-0.014400px;}
.ls9_c00134{letter-spacing:-0.007200px;}
.ls1_c00134{letter-spacing:0.000000px;}
.lsd_c00134{letter-spacing:0.021600px;}
.ls0_c00134{letter-spacing:0.028800px;}
.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:-20.016000px;}
.ws1_c00134{word-spacing:-19.951200px;}
.ws1f_c00134{word-spacing:-3.427200px;}
.ws1e_c00134{word-spacing:-3.362400px;}
.ws36_c00134{word-spacing:-2.692800px;}
.ws37_c00134{word-spacing:-2.671200px;}
.ws31_c00134{word-spacing:-2.404800px;}
.ws32_c00134{word-spacing:-2.311200px;}
.ws2b_c00134{word-spacing:-1.634400px;}
.ws2a_c00134{word-spacing:-1.612800px;}
.ws6_c00134{word-spacing:-0.180000px;}
.ws2_c00134{word-spacing:0.000000px;}
.ws22_c00134{word-spacing:0.100800px;}
.ws1d_c00134{word-spacing:0.172800px;}
.ws13_c00134{word-spacing:0.180000px;}
.ws1c_c00134{word-spacing:0.295200px;}
.ws11_c00134{word-spacing:0.561600px;}
.ws12_c00134{word-spacing:1.245600px;}
.ws23_c00134{word-spacing:1.641600px;}
.ws24_c00134{word-spacing:1.699200px;}
.wsb_c00134{word-spacing:2.707200px;}
.wsa_c00134{word-spacing:2.721600px;}
.ws29_c00134{word-spacing:2.779200px;}
.ws28_c00134{word-spacing:3.736800px;}
.ws18_c00134{word-spacing:3.787200px;}
.ws27_c00134{word-spacing:3.801600px;}
.ws17_c00134{word-spacing:3.931200px;}
.ws30_c00134{word-spacing:4.852800px;}
.ws2f_c00134{word-spacing:4.881600px;}
.ws2c_c00134{word-spacing:7.617600px;}
.ws2d_c00134{word-spacing:7.747200px;}
.ws8_c00134{word-spacing:8.114400px;}
.ws9_c00134{word-spacing:8.150400px;}
.wsf_c00134{word-spacing:8.481600px;}
.ws10_c00134{word-spacing:8.488800px;}
.ws19_c00134{word-spacing:9.194400px;}
.wsd_c00134{word-spacing:9.849600px;}
.wsc_c00134{word-spacing:9.900000px;}
.ws7_c00134{word-spacing:9.950400px;}
.wse_c00134{word-spacing:10.166400px;}
.ws20_c00134{word-spacing:14.968800px;}
.ws26_c00134{word-spacing:15.645600px;}
.ws25_c00134{word-spacing:15.652800px;}
.ws35_c00134{word-spacing:18.518400px;}
.ws33_c00134{word-spacing:18.525600px;}
.ws34_c00134{word-spacing:18.640800px;}
.ws16_c00134{word-spacing:21.045600px;}
.ws14_c00134{word-spacing:21.074400px;}
.ws15_c00134{word-spacing:21.081600px;}
.ws21_c00134{word-spacing:23.918400px;}
.ws3_c00134{word-spacing:24.458400px;}
.ws4_c00134{word-spacing:24.674400px;}
.ws5_c00134{word-spacing:24.717600px;}
.ws1a_c00134{word-spacing:27.518400px;}
.ws1b_c00134{word-spacing:27.597600px;}
.ws2e_c00134{word-spacing:36.194400px;}
._1_c00134{margin-left:-18.360000px;}
._0_c00134{width:1.008000px;}
.fc0_c00134{color:rgb(0,0,0);}
.fs0_c00134{font-size:72.000000px;}
.y0_c00134{bottom:0.000000px;}
.y2_c00134{bottom:46.830450px;}
.y1_c00134{bottom:67.530450px;}
.y27_c00134{bottom:149.430450px;}
.y26_c00134{bottom:170.130450px;}
.y25_c00134{bottom:190.830450px;}
.y24_c00134{bottom:211.530450px;}
.y23_c00134{bottom:251.580450px;}
.y22_c00134{bottom:282.630450px;}
.y21_c00134{bottom:313.680450px;}
.y20_c00134{bottom:344.730450px;}
.y1f_c00134{bottom:375.690450px;}
.y1e_c00134{bottom:406.740450px;}
.y1d_c00134{bottom:437.790450px;}
.y1c_c00134{bottom:468.840450px;}
.y1b_c00134{bottom:499.890450px;}
.y1a_c00134{bottom:530.940450px;}
.y19_c00134{bottom:551.640450px;}
.y18_c00134{bottom:572.340450px;}
.y17_c00134{bottom:593.040450px;}
.y16_c00134{bottom:613.740450px;}
.y15_c00134{bottom:634.440450px;}
.y14_c00134{bottom:655.140450px;}
.y13_c00134{bottom:695.190450px;}
.y12_c00134{bottom:726.240450px;}
.y11_c00134{bottom:757.290450px;}
.y10_c00134{bottom:788.340450px;}
.yf_c00134{bottom:819.390450px;}
.ye_c00134{bottom:840.090450px;}
.yd_c00134{bottom:860.790450px;}
.yc_c00134{bottom:881.490450px;}
.yb_c00134{bottom:902.190450px;}
.ya_c00134{bottom:922.890450px;}
.y9_c00134{bottom:943.590450px;}
.y8_c00134{bottom:964.290450px;}
.y7_c00134{bottom:984.990450px;}
.y6_c00134{bottom:1005.690450px;}
.y5_c00134{bottom:1026.390450px;}
.y4_c00134{bottom:1066.440450px;}
.y3_c00134{bottom:1097.490450px;}
.h1_c00134{height:63.175781px;}
.h2_c00134{height:64.546875px;}
.h3_c00134{height:75.093750px;}
.h0_c00134{height:1263.000000px;}
.w1_c00134{width:892.500000px;}
.w0_c00134{width:892.830000px;}
.x0_c00134{left:0.000000px;}
.x2_c00134{left:170.100000px;}
.x3_c00134{left:191.430000px;}
.x1_c00134{left:738.360000px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls3_c00134{letter-spacing:-0.070400pt;}
.ls5_c00134{letter-spacing:-0.064000pt;}
.lsc_c00134{letter-spacing:-0.057600pt;}
.lsb_c00134{letter-spacing:-0.051200pt;}
.ls8_c00134{letter-spacing:-0.044800pt;}
.ls6_c00134{letter-spacing:-0.038400pt;}
.ls2_c00134{letter-spacing:-0.032000pt;}
.ls7_c00134{letter-spacing:-0.025600pt;}
.ls4_c00134{letter-spacing:-0.019200pt;}
.lsa_c00134{letter-spacing:-0.012800pt;}
.ls9_c00134{letter-spacing:-0.006400pt;}
.ls1_c00134{letter-spacing:0.000000pt;}
.lsd_c00134{letter-spacing:0.019200pt;}
.ls0_c00134{letter-spacing:0.025600pt;}
.ws0_c00134{word-spacing:-17.792000pt;}
.ws1_c00134{word-spacing:-17.734400pt;}
.ws1f_c00134{word-spacing:-3.046400pt;}
.ws1e_c00134{word-spacing:-2.988800pt;}
.ws36_c00134{word-spacing:-2.393600pt;}
.ws37_c00134{word-spacing:-2.374400pt;}
.ws31_c00134{word-spacing:-2.137600pt;}
.ws32_c00134{word-spacing:-2.054400pt;}
.ws2b_c00134{word-spacing:-1.452800pt;}
.ws2a_c00134{word-spacing:-1.433600pt;}
.ws6_c00134{word-spacing:-0.160000pt;}
.ws2_c00134{word-spacing:0.000000pt;}
.ws22_c00134{word-spacing:0.089600pt;}
.ws1d_c00134{word-spacing:0.153600pt;}
.ws13_c00134{word-spacing:0.160000pt;}
.ws1c_c00134{word-spacing:0.262400pt;}
.ws11_c00134{word-spacing:0.499200pt;}
.ws12_c00134{word-spacing:1.107200pt;}
.ws23_c00134{word-spacing:1.459200pt;}
.ws24_c00134{word-spacing:1.510400pt;}
.wsb_c00134{word-spacing:2.406400pt;}
.wsa_c00134{word-spacing:2.419200pt;}
.ws29_c00134{word-spacing:2.470400pt;}
.ws28_c00134{word-spacing:3.321600pt;}
.ws18_c00134{word-spacing:3.366400pt;}
.ws27_c00134{word-spacing:3.379200pt;}
.ws17_c00134{word-spacing:3.494400pt;}
.ws30_c00134{word-spacing:4.313600pt;}
.ws2f_c00134{word-spacing:4.339200pt;}
.ws2c_c00134{word-spacing:6.771200pt;}
.ws2d_c00134{word-spacing:6.886400pt;}
.ws8_c00134{word-spacing:7.212800pt;}
.ws9_c00134{word-spacing:7.244800pt;}
.wsf_c00134{word-spacing:7.539200pt;}
.ws10_c00134{word-spacing:7.545600pt;}
.ws19_c00134{word-spacing:8.172800pt;}
.wsd_c00134{word-spacing:8.755200pt;}
.wsc_c00134{word-spacing:8.800000pt;}
.ws7_c00134{word-spacing:8.844800pt;}
.wse_c00134{word-spacing:9.036800pt;}
.ws20_c00134{word-spacing:13.305600pt;}
.ws26_c00134{word-spacing:13.907200pt;}
.ws25_c00134{word-spacing:13.913600pt;}
.ws35_c00134{word-spacing:16.460800pt;}
.ws33_c00134{word-spacing:16.467200pt;}
.ws34_c00134{word-spacing:16.569600pt;}
.ws16_c00134{word-spacing:18.707200pt;}
.ws14_c00134{word-spacing:18.732800pt;}
.ws15_c00134{word-spacing:18.739200pt;}
.ws21_c00134{word-spacing:21.260800pt;}
.ws3_c00134{word-spacing:21.740800pt;}
.ws4_c00134{word-spacing:21.932800pt;}
.ws5_c00134{word-spacing:21.971200pt;}
.ws1a_c00134{word-spacing:24.460800pt;}
.ws1b_c00134{word-spacing:24.531200pt;}
.ws2e_c00134{word-spacing:32.172800pt;}
._1_c00134{margin-left:-16.320000pt;}
._0_c00134{width:0.896000pt;}
.fs0_c00134{font-size:64.000000pt;}
.y0_c00134{bottom:0.000000pt;}
.y2_c00134{bottom:41.627067pt;}
.y1_c00134{bottom:60.027067pt;}
.y27_c00134{bottom:132.827067pt;}
.y26_c00134{bottom:151.227067pt;}
.y25_c00134{bottom:169.627067pt;}
.y24_c00134{bottom:188.027067pt;}
.y23_c00134{bottom:223.627067pt;}
.y22_c00134{bottom:251.227067pt;}
.y21_c00134{bottom:278.827067pt;}
.y20_c00134{bottom:306.427067pt;}
.y1f_c00134{bottom:333.947067pt;}
.y1e_c00134{bottom:361.547067pt;}
.y1d_c00134{bottom:389.147067pt;}
.y1c_c00134{bottom:416.747067pt;}
.y1b_c00134{bottom:444.347067pt;}
.y1a_c00134{bottom:471.947067pt;}
.y19_c00134{bottom:490.347067pt;}
.y18_c00134{bottom:508.747067pt;}
.y17_c00134{bottom:527.147067pt;}
.y16_c00134{bottom:545.547067pt;}
.y15_c00134{bottom:563.947067pt;}
.y14_c00134{bottom:582.347067pt;}
.y13_c00134{bottom:617.947067pt;}
.y12_c00134{bottom:645.547067pt;}
.y11_c00134{bottom:673.147067pt;}
.y10_c00134{bottom:700.747067pt;}
.yf_c00134{bottom:728.347067pt;}
.ye_c00134{bottom:746.747067pt;}
.yd_c00134{bottom:765.147067pt;}
.yc_c00134{bottom:783.547067pt;}
.yb_c00134{bottom:801.947067pt;}
.ya_c00134{bottom:820.347067pt;}
.y9_c00134{bottom:838.747067pt;}
.y8_c00134{bottom:857.147067pt;}
.y7_c00134{bottom:875.547067pt;}
.y6_c00134{bottom:893.947067pt;}
.y5_c00134{bottom:912.347067pt;}
.y4_c00134{bottom:947.947067pt;}
.y3_c00134{bottom:975.547067pt;}
.h1_c00134{height:56.156250pt;}
.h2_c00134{height:57.375000pt;}
.h3_c00134{height:66.750000pt;}
.h0_c00134{height:1122.666667pt;}
.w1_c00134{width:793.333333pt;}
.w0_c00134{width:793.626667pt;}
.x0_c00134{left:0.000000pt;}
.x2_c00134{left:151.200000pt;}
.x3_c00134{left:170.160000pt;}
.x1_c00134{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f58327093c4a1731aa292b6b.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.093262;font-style:normal;font-weight:normal;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_048de6f624bf8d839ff1e04c.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.106934;font-style:normal;font-weight:normal;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_7aee27831a7baf9951a227ac.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00135{letter-spacing:-0.086400px;}
.lsa_c00135{letter-spacing:-0.072000px;}
.lsd_c00135{letter-spacing:-0.064800px;}
.lse_c00135{letter-spacing:-0.057600px;}
.ls8_c00135{letter-spacing:-0.050400px;}
.ls2_c00135{letter-spacing:-0.043200px;}
.ls5_c00135{letter-spacing:-0.036000px;}
.ls4_c00135{letter-spacing:-0.028800px;}
.ls6_c00135{letter-spacing:-0.021600px;}
.ls3_c00135{letter-spacing:-0.014400px;}
.lsc_c00135{letter-spacing:-0.007200px;}
.ls1_c00135{letter-spacing:0.000000px;}
.ls0_c00135{letter-spacing:0.007200px;}
.ls7_c00135{letter-spacing:0.028800px;}
.lsb_c00135{letter-spacing:0.036000px;}
.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;}
}
.ws2e_c00135{word-spacing:-4.147200px;}
.ws2f_c00135{word-spacing:-4.010400px;}
.ws30_c00135{word-spacing:-3.744000px;}
.wsa_c00135{word-spacing:-1.670400px;}
.ws9_c00135{word-spacing:-1.620000px;}
.ws2d_c00135{word-spacing:-1.432800px;}
.ws2b_c00135{word-spacing:-1.288800px;}
.ws34_c00135{word-spacing:-1.245600px;}
.ws2c_c00135{word-spacing:-1.216800px;}
.ws1e_c00135{word-spacing:-0.928800px;}
.ws1d_c00135{word-spacing:-0.900000px;}
.ws36_c00135{word-spacing:-0.532800px;}
.ws35_c00135{word-spacing:-0.511200px;}
.ws0_c00135{word-spacing:0.000000px;}
.ws3_c00135{word-spacing:0.100800px;}
.ws1f_c00135{word-spacing:0.158400px;}
.ws2a_c00135{word-spacing:0.165600px;}
.wsb_c00135{word-spacing:0.172800px;}
.ws19_c00135{word-spacing:0.187200px;}
.ws13_c00135{word-spacing:0.194400px;}
.ws16_c00135{word-spacing:0.201600px;}
.ws17_c00135{word-spacing:0.208800px;}
.ws23_c00135{word-spacing:0.525600px;}
.ws22_c00135{word-spacing:0.554400px;}
.ws33_c00135{word-spacing:1.634400px;}
.wsf_c00135{word-spacing:3.794400px;}
.wse_c00135{word-spacing:3.808800px;}
.ws2_c00135{word-spacing:4.111200px;}
.ws8_c00135{word-spacing:4.140000px;}
.ws29_c00135{word-spacing:4.147200px;}
.ws7_c00135{word-spacing:4.154400px;}
.ws1_c00135{word-spacing:4.161600px;}
.ws28_c00135{word-spacing:4.168800px;}
.ws6_c00135{word-spacing:4.471200px;}
.ws5_c00135{word-spacing:4.500000px;}
.ws10_c00135{word-spacing:4.766400px;}
.ws12_c00135{word-spacing:4.874400px;}
.ws11_c00135{word-spacing:4.924800px;}
.ws25_c00135{word-spacing:5.911200px;}
.ws24_c00135{word-spacing:5.940000px;}
.ws1c_c00135{word-spacing:6.573600px;}
.ws1a_c00135{word-spacing:6.660000px;}
.ws1b_c00135{word-spacing:6.681600px;}
.ws31_c00135{word-spacing:6.962400px;}
.ws32_c00135{word-spacing:6.976800px;}
.ws18_c00135{word-spacing:12.434400px;}
.ws4_c00135{word-spacing:13.507200px;}
.wsc_c00135{word-spacing:14.911200px;}
.wsd_c00135{word-spacing:14.932800px;}
.ws15_c00135{word-spacing:18.129600px;}
.ws14_c00135{word-spacing:18.230400px;}
.ws20_c00135{word-spacing:23.191200px;}
.ws21_c00135{word-spacing:23.234400px;}
.ws27_c00135{word-spacing:29.289600px;}
.ws26_c00135{word-spacing:29.368800px;}
._1_c00135{margin-left:-4.852800px;}
._0_c00135{margin-left:-3.052800px;}
._2_c00135{width:1.404000px;}
.fc0_c00135{color:rgb(0,0,0);}
.fs0_c00135{font-size:72.000000px;}
.y0_c00135{bottom:0.000000px;}
.y2_c00135{bottom:46.830450px;}
.y1_c00135{bottom:67.530450px;}
.y26_c00135{bottom:150.780450px;}
.y25_c00135{bottom:171.480450px;}
.y24_c00135{bottom:192.180450px;}
.y23_c00135{bottom:212.880450px;}
.y22_c00135{bottom:233.580450px;}
.y21_c00135{bottom:254.280450px;}
.y20_c00135{bottom:274.980450px;}
.y1f_c00135{bottom:315.030450px;}
.y1e_c00135{bottom:346.080450px;}
.y1d_c00135{bottom:377.040450px;}
.y1c_c00135{bottom:408.090450px;}
.y1b_c00135{bottom:439.140450px;}
.y1a_c00135{bottom:470.190450px;}
.y19_c00135{bottom:510.150450px;}
.y18_c00135{bottom:541.200450px;}
.y17_c00135{bottom:572.340450px;}
.y16_c00135{bottom:593.040450px;}
.y15_c00135{bottom:613.740450px;}
.y14_c00135{bottom:634.440450px;}
.y13_c00135{bottom:655.140450px;}
.y12_c00135{bottom:675.840450px;}
.y11_c00135{bottom:696.540450px;}
.y10_c00135{bottom:717.240450px;}
.yf_c00135{bottom:757.290450px;}
.ye_c00135{bottom:788.340450px;}
.yd_c00135{bottom:819.390450px;}
.yc_c00135{bottom:850.440450px;}
.yb_c00135{bottom:890.490450px;}
.ya_c00135{bottom:921.540450px;}
.y9_c00135{bottom:952.590450px;}
.y8_c00135{bottom:983.640450px;}
.y7_c00135{bottom:1014.690450px;}
.y6_c00135{bottom:1035.390450px;}
.y5_c00135{bottom:1056.090450px;}
.y4_c00135{bottom:1076.790450px;}
.y3_c00135{bottom:1097.490450px;}
.h1_c00135{height:63.175781px;}
.h2_c00135{height:64.546875px;}
.h3_c00135{height:75.093750px;}
.h0_c00135{height:1263.000000px;}
.w1_c00135{width:892.500000px;}
.w0_c00135{width:892.830000px;}
.x0_c00135{left:0.000000px;}
.x2_c00135{left:127.620000px;}
.x3_c00135{left:148.950000px;}
.x1_c00135{left:695.880000px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls9_c00135{letter-spacing:-0.076800pt;}
.lsa_c00135{letter-spacing:-0.064000pt;}
.lsd_c00135{letter-spacing:-0.057600pt;}
.lse_c00135{letter-spacing:-0.051200pt;}
.ls8_c00135{letter-spacing:-0.044800pt;}
.ls2_c00135{letter-spacing:-0.038400pt;}
.ls5_c00135{letter-spacing:-0.032000pt;}
.ls4_c00135{letter-spacing:-0.025600pt;}
.ls6_c00135{letter-spacing:-0.019200pt;}
.ls3_c00135{letter-spacing:-0.012800pt;}
.lsc_c00135{letter-spacing:-0.006400pt;}
.ls1_c00135{letter-spacing:0.000000pt;}
.ls0_c00135{letter-spacing:0.006400pt;}
.ls7_c00135{letter-spacing:0.025600pt;}
.lsb_c00135{letter-spacing:0.032000pt;}
.ws2e_c00135{word-spacing:-3.686400pt;}
.ws2f_c00135{word-spacing:-3.564800pt;}
.ws30_c00135{word-spacing:-3.328000pt;}
.wsa_c00135{word-spacing:-1.484800pt;}
.ws9_c00135{word-spacing:-1.440000pt;}
.ws2d_c00135{word-spacing:-1.273600pt;}
.ws2b_c00135{word-spacing:-1.145600pt;}
.ws34_c00135{word-spacing:-1.107200pt;}
.ws2c_c00135{word-spacing:-1.081600pt;}
.ws1e_c00135{word-spacing:-0.825600pt;}
.ws1d_c00135{word-spacing:-0.800000pt;}
.ws36_c00135{word-spacing:-0.473600pt;}
.ws35_c00135{word-spacing:-0.454400pt;}
.ws0_c00135{word-spacing:0.000000pt;}
.ws3_c00135{word-spacing:0.089600pt;}
.ws1f_c00135{word-spacing:0.140800pt;}
.ws2a_c00135{word-spacing:0.147200pt;}
.wsb_c00135{word-spacing:0.153600pt;}
.ws19_c00135{word-spacing:0.166400pt;}
.ws13_c00135{word-spacing:0.172800pt;}
.ws16_c00135{word-spacing:0.179200pt;}
.ws17_c00135{word-spacing:0.185600pt;}
.ws23_c00135{word-spacing:0.467200pt;}
.ws22_c00135{word-spacing:0.492800pt;}
.ws33_c00135{word-spacing:1.452800pt;}
.wsf_c00135{word-spacing:3.372800pt;}
.wse_c00135{word-spacing:3.385600pt;}
.ws2_c00135{word-spacing:3.654400pt;}
.ws8_c00135{word-spacing:3.680000pt;}
.ws29_c00135{word-spacing:3.686400pt;}
.ws7_c00135{word-spacing:3.692800pt;}
.ws1_c00135{word-spacing:3.699200pt;}
.ws28_c00135{word-spacing:3.705600pt;}
.ws6_c00135{word-spacing:3.974400pt;}
.ws5_c00135{word-spacing:4.000000pt;}
.ws10_c00135{word-spacing:4.236800pt;}
.ws12_c00135{word-spacing:4.332800pt;}
.ws11_c00135{word-spacing:4.377600pt;}
.ws25_c00135{word-spacing:5.254400pt;}
.ws24_c00135{word-spacing:5.280000pt;}
.ws1c_c00135{word-spacing:5.843200pt;}
.ws1a_c00135{word-spacing:5.920000pt;}
.ws1b_c00135{word-spacing:5.939200pt;}
.ws31_c00135{word-spacing:6.188800pt;}
.ws32_c00135{word-spacing:6.201600pt;}
.ws18_c00135{word-spacing:11.052800pt;}
.ws4_c00135{word-spacing:12.006400pt;}
.wsc_c00135{word-spacing:13.254400pt;}
.wsd_c00135{word-spacing:13.273600pt;}
.ws15_c00135{word-spacing:16.115200pt;}
.ws14_c00135{word-spacing:16.204800pt;}
.ws20_c00135{word-spacing:20.614400pt;}
.ws21_c00135{word-spacing:20.652800pt;}
.ws27_c00135{word-spacing:26.035200pt;}
.ws26_c00135{word-spacing:26.105600pt;}
._1_c00135{margin-left:-4.313600pt;}
._0_c00135{margin-left:-2.713600pt;}
._2_c00135{width:1.248000pt;}
.fs0_c00135{font-size:64.000000pt;}
.y0_c00135{bottom:0.000000pt;}
.y2_c00135{bottom:41.627067pt;}
.y1_c00135{bottom:60.027067pt;}
.y26_c00135{bottom:134.027067pt;}
.y25_c00135{bottom:152.427067pt;}
.y24_c00135{bottom:170.827067pt;}
.y23_c00135{bottom:189.227067pt;}
.y22_c00135{bottom:207.627067pt;}
.y21_c00135{bottom:226.027067pt;}
.y20_c00135{bottom:244.427067pt;}
.y1f_c00135{bottom:280.027067pt;}
.y1e_c00135{bottom:307.627067pt;}
.y1d_c00135{bottom:335.147067pt;}
.y1c_c00135{bottom:362.747067pt;}
.y1b_c00135{bottom:390.347067pt;}
.y1a_c00135{bottom:417.947067pt;}
.y19_c00135{bottom:453.467067pt;}
.y18_c00135{bottom:481.067067pt;}
.y17_c00135{bottom:508.747067pt;}
.y16_c00135{bottom:527.147067pt;}
.y15_c00135{bottom:545.547067pt;}
.y14_c00135{bottom:563.947067pt;}
.y13_c00135{bottom:582.347067pt;}
.y12_c00135{bottom:600.747067pt;}
.y11_c00135{bottom:619.147067pt;}
.y10_c00135{bottom:637.547067pt;}
.yf_c00135{bottom:673.147067pt;}
.ye_c00135{bottom:700.747067pt;}
.yd_c00135{bottom:728.347067pt;}
.yc_c00135{bottom:755.947067pt;}
.yb_c00135{bottom:791.547067pt;}
.ya_c00135{bottom:819.147067pt;}
.y9_c00135{bottom:846.747067pt;}
.y8_c00135{bottom:874.347067pt;}
.y7_c00135{bottom:901.947067pt;}
.y6_c00135{bottom:920.347067pt;}
.y5_c00135{bottom:938.747067pt;}
.y4_c00135{bottom:957.147067pt;}
.y3_c00135{bottom:975.547067pt;}
.h1_c00135{height:56.156250pt;}
.h2_c00135{height:57.375000pt;}
.h3_c00135{height:66.750000pt;}
.h0_c00135{height:1122.666667pt;}
.w1_c00135{width:793.333333pt;}
.w0_c00135{width:793.626667pt;}
.x0_c00135{left:0.000000pt;}
.x2_c00135{left:113.440000pt;}
.x3_c00135{left:132.400000pt;}
.x1_c00135{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_45d33aa7c73818ed897c26f0.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.093262;font-style:normal;font-weight:normal;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_3a5fcdc55d555e2b33b58388.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00136{vertical-align:0.000000px;}
.ls3_c00136{letter-spacing:-0.093600px;}
.ls2_c00136{letter-spacing:-0.043200px;}
.ls4_c00136{letter-spacing:-0.021600px;}
.ls1_c00136{letter-spacing:-0.014400px;}
.ls5_c00136{letter-spacing:-0.007200px;}
.ls0_c00136{letter-spacing:0.000000px;}
.ls6_c00136{letter-spacing:843.998400px;}
.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;}
}
.ws6_c00136{word-spacing:-4.514400px;}
.ws5_c00136{word-spacing:-4.500000px;}
.ws4_c00136{word-spacing:-2.700000px;}
.ws3_c00136{word-spacing:-2.671200px;}
.ws0_c00136{word-spacing:0.000000px;}
.ws1_c00136{word-spacing:5.932800px;}
.ws2_c00136{word-spacing:5.961600px;}
._0_c00136{width:1.195200px;}
.fc0_c00136{color:rgb(0,0,0);}
.fs0_c00136{font-size:72.000000px;}
.y0_c00136{bottom:0.000000px;}
.y2_c00136{bottom:46.830450px;}
.y1_c00136{bottom:67.530450px;}
.y7_c00136{bottom:995.340450px;}
.y6_c00136{bottom:1035.390450px;}
.y5_c00136{bottom:1056.090450px;}
.y4_c00136{bottom:1076.790450px;}
.y3_c00136{bottom:1097.490450px;}
.h1_c00136{height:63.175781px;}
.h2_c00136{height:64.546875px;}
.h0_c00136{height:1263.000000px;}
.w1_c00136{width:892.500000px;}
.w0_c00136{width:892.830000px;}
.x0_c00136{left:0.000000px;}
.x2_c00136{left:170.100000px;}
.x3_c00136{left:191.430000px;}
.x1_c00136{left:738.360000px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls3_c00136{letter-spacing:-0.083200pt;}
.ls2_c00136{letter-spacing:-0.038400pt;}
.ls4_c00136{letter-spacing:-0.019200pt;}
.ls1_c00136{letter-spacing:-0.012800pt;}
.ls5_c00136{letter-spacing:-0.006400pt;}
.ls0_c00136{letter-spacing:0.000000pt;}
.ls6_c00136{letter-spacing:750.220800pt;}
.ws6_c00136{word-spacing:-4.012800pt;}
.ws5_c00136{word-spacing:-4.000000pt;}
.ws4_c00136{word-spacing:-2.400000pt;}
.ws3_c00136{word-spacing:-2.374400pt;}
.ws0_c00136{word-spacing:0.000000pt;}
.ws1_c00136{word-spacing:5.273600pt;}
.ws2_c00136{word-spacing:5.299200pt;}
._0_c00136{width:1.062400pt;}
.fs0_c00136{font-size:64.000000pt;}
.y0_c00136{bottom:0.000000pt;}
.y2_c00136{bottom:41.627067pt;}
.y1_c00136{bottom:60.027067pt;}
.y7_c00136{bottom:884.747067pt;}
.y6_c00136{bottom:920.347067pt;}
.y5_c00136{bottom:938.747067pt;}
.y4_c00136{bottom:957.147067pt;}
.y3_c00136{bottom:975.547067pt;}
.h1_c00136{height:56.156250pt;}
.h2_c00136{height:57.375000pt;}
.h0_c00136{height:1122.666667pt;}
.w1_c00136{width:793.333333pt;}
.w0_c00136{width:793.626667pt;}
.x0_c00136{left:0.000000pt;}
.x2_c00136{left:151.200000pt;}
.x3_c00136{left:170.160000pt;}
.x1_c00136{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_06db7a9fd824543c4722556d.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.106934;font-style: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.000000px;}
.ls1_c00137{letter-spacing:843.998400px;}
.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;}
}
.ws0_c00137{word-spacing:0.000000px;}
.fc0_c00137{color:rgb(0,0,0);}
.fs0_c00137{font-size:72.000000px;}
.y0_c00137{bottom:0.000000px;}
.y2_c00137{bottom:46.830450px;}
.y1_c00137{bottom:67.530450px;}
.y3_c00137{bottom:1097.490450px;}
.h1_c00137{height:63.175781px;}
.h2_c00137{height:64.546875px;}
.h0_c00137{height:1263.000000px;}
.w1_c00137{width:892.500000px;}
.w0_c00137{width:892.830000px;}
.x0_c00137{left:0.000000px;}
.x2_c00137{left:127.620000px;}
.x1_c00137{left:695.880000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls0_c00137{letter-spacing:0.000000pt;}
.ls1_c00137{letter-spacing:750.220800pt;}
.ws0_c00137{word-spacing:0.000000pt;}
.fs0_c00137{font-size:64.000000pt;}
.y0_c00137{bottom:0.000000pt;}
.y2_c00137{bottom:41.627067pt;}
.y1_c00137{bottom:60.027067pt;}
.y3_c00137{bottom:975.547067pt;}
.h1_c00137{height:56.156250pt;}
.h2_c00137{height:57.375000pt;}
.h0_c00137{height:1122.666667pt;}
.w1_c00137{width:793.333333pt;}
.w0_c00137{width:793.626667pt;}
.x0_c00137{left:0.000000pt;}
.x2_c00137{left:113.440000pt;}
.x1_c00137{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_07f84d30d68a5daa588a7fd8.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.093262;font-style:normal;font-weight:normal;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_dd0d68b7fa3262a62ab4d912.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.106934;font-style:normal;font-weight:normal;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_509c1b7a547534eaead0dd03.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00138;src:url('chunks/assets/font_1d1a2c582ac88695c824e17b.woff2')format("woff");}.ff4_c00138{font-family:ff4_c00138;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00138{letter-spacing:-0.223200px;}
.ls14_c00138{letter-spacing:-0.158400px;}
.lsb_c00138{letter-spacing:-0.108000px;}
.lsa_c00138{letter-spacing:-0.086400px;}
.ls13_c00138{letter-spacing:-0.079200px;}
.lsf_c00138{letter-spacing:-0.072000px;}
.lse_c00138{letter-spacing:-0.064800px;}
.ls7_c00138{letter-spacing:-0.057600px;}
.ls8_c00138{letter-spacing:-0.050400px;}
.lsd_c00138{letter-spacing:-0.043200px;}
.ls5_c00138{letter-spacing:-0.036000px;}
.ls6_c00138{letter-spacing:-0.028800px;}
.ls12_c00138{letter-spacing:-0.021600px;}
.ls9_c00138{letter-spacing:-0.014400px;}
.ls10_c00138{letter-spacing:-0.007200px;}
.ls4_c00138{letter-spacing:0.000000px;}
.ls3_c00138{letter-spacing:0.007200px;}
.ls2_c00138{letter-spacing:0.014400px;}
.ls11_c00138{letter-spacing:0.036000px;}
.ls0_c00138{letter-spacing:0.058716px;}
.ls1_c00138{letter-spacing:0.864000px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00138{word-spacing:-19.980000px;}
.ws1_c00138{word-spacing:-19.857600px;}
.ws1a_c00138{word-spacing:-3.412800px;}
.ws18_c00138{word-spacing:-3.312000px;}
.ws19_c00138{word-spacing:-3.247200px;}
.ws2d_c00138{word-spacing:-3.060000px;}
.ws2c_c00138{word-spacing:-3.038400px;}
.ws30_c00138{word-spacing:-2.282400px;}
.ws31_c00138{word-spacing:-1.965600px;}
.ws32_c00138{word-spacing:-1.958400px;}
.ws1e_c00138{word-spacing:-1.634400px;}
.ws17_c00138{word-spacing:-1.584000px;}
.ws1f_c00138{word-spacing:-1.540800px;}
.ws16_c00138{word-spacing:-1.526400px;}
.ws4_c00138{word-spacing:-0.216000px;}
.ws5_c00138{word-spacing:-0.172800px;}
.wsf_c00138{word-spacing:-0.165600px;}
.ws10_c00138{word-spacing:-0.115200px;}
.ws2_c00138{word-spacing:0.000000px;}
.ws3_c00138{word-spacing:0.033552px;}
.ws15_c00138{word-spacing:0.180000px;}
.ws13_c00138{word-spacing:0.849600px;}
.ws14_c00138{word-spacing:0.907200px;}
.ws2f_c00138{word-spacing:0.914400px;}
.ws11_c00138{word-spacing:0.986400px;}
.ws12_c00138{word-spacing:1.101600px;}
.ws34_c00138{word-spacing:2.289600px;}
.ws33_c00138{word-spacing:2.311200px;}
.wse_c00138{word-spacing:2.764800px;}
.wsd_c00138{word-spacing:2.779200px;}
.ws1d_c00138{word-spacing:5.500800px;}
.ws2e_c00138{word-spacing:5.558400px;}
.ws1c_c00138{word-spacing:5.587200px;}
.ws35_c00138{word-spacing:5.608800px;}
.ws36_c00138{word-spacing:5.724000px;}
.ws25_c00138{word-spacing:6.984000px;}
.ws26_c00138{word-spacing:7.012800px;}
.ws2b_c00138{word-spacing:7.704000px;}
.ws2a_c00138{word-spacing:7.754400px;}
.ws29_c00138{word-spacing:8.121600px;}
.ws20_c00138{word-spacing:8.416800px;}
.ws21_c00138{word-spacing:8.438400px;}
.ws23_c00138{word-spacing:13.132800px;}
.ws24_c00138{word-spacing:13.147200px;}
.ws6_c00138{word-spacing:15.314400px;}
.ws7_c00138{word-spacing:15.336000px;}
.wsb_c00138{word-spacing:16.351200px;}
.wsa_c00138{word-spacing:16.394400px;}
.ws8_c00138{word-spacing:16.747200px;}
.ws9_c00138{word-spacing:16.768800px;}
.wsc_c00138{word-spacing:16.776000px;}
.ws37_c00138{word-spacing:21.420000px;}
.ws38_c00138{word-spacing:21.528000px;}
.ws1b_c00138{word-spacing:25.070400px;}
.ws27_c00138{word-spacing:28.116000px;}
.ws28_c00138{word-spacing:28.296000px;}
.ws22_c00138{word-spacing:30.067200px;}
._2_c00138{margin-left:-28.260000px;}
._3_c00138{margin-left:-1.368000px;}
._1_c00138{width:1.058400px;}
._0_c00138{width:43.953120px;}
.fc0_c00138{color:rgb(0,0,0);}
.fs0_c00138{font-size:72.000000px;}
.fs1_c00138{font-size:83.880000px;}
.y0_c00138{bottom:0.000000px;}
.y2_c00138{bottom:46.830450px;}
.y1_c00138{bottom:67.530450px;}
.y24_c00138{bottom:158.970450px;}
.y23_c00138{bottom:190.020450px;}
.y22_c00138{bottom:221.070450px;}
.y21_c00138{bottom:252.120450px;}
.y20_c00138{bottom:283.170450px;}
.y1f_c00138{bottom:314.220450px;}
.y1e_c00138{bottom:345.270450px;}
.y1d_c00138{bottom:376.320450px;}
.y1c_c00138{bottom:407.370450px;}
.y1b_c00138{bottom:438.420450px;}
.y1a_c00138{bottom:469.470450px;}
.y19_c00138{bottom:490.170450px;}
.y18_c00138{bottom:510.870450px;}
.y17_c00138{bottom:531.570450px;}
.y16_c00138{bottom:552.270450px;}
.y15_c00138{bottom:572.970450px;}
.y14_c00138{bottom:593.670450px;}
.y13_c00138{bottom:614.370450px;}
.y12_c00138{bottom:635.070450px;}
.y11_c00138{bottom:655.770450px;}
.y10_c00138{bottom:676.470450px;}
.yf_c00138{bottom:697.170450px;}
.ye_c00138{bottom:737.220450px;}
.yd_c00138{bottom:768.270450px;}
.yc_c00138{bottom:799.320450px;}
.yb_c00138{bottom:830.370450px;}
.ya_c00138{bottom:861.420450px;}
.y9_c00138{bottom:892.470450px;}
.y8_c00138{bottom:923.520450px;}
.y7_c00138{bottom:954.570450px;}
.y6_c00138{bottom:985.620450px;}
.y5_c00138{bottom:1025.670450px;}
.y4_c00138{bottom:1055.820450px;}
.y3_c00138{bottom:1097.490450px;}
.h1_c00138{height:63.175781px;}
.h2_c00138{height:64.546875px;}
.h4_c00138{height:75.093750px;}
.h3_c00138{height:87.484219px;}
.h0_c00138{height:1263.000000px;}
.w1_c00138{width:892.500000px;}
.w0_c00138{width:892.830000px;}
.x0_c00138{left:0.000000px;}
.x2_c00138{left:170.100000px;}
.x4_c00138{left:191.430000px;}
.x3_c00138{left:278.100000px;}
.x1_c00138{left:738.360000px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.lsc_c00138{letter-spacing:-0.198400pt;}
.ls14_c00138{letter-spacing:-0.140800pt;}
.lsb_c00138{letter-spacing:-0.096000pt;}
.lsa_c00138{letter-spacing:-0.076800pt;}
.ls13_c00138{letter-spacing:-0.070400pt;}
.lsf_c00138{letter-spacing:-0.064000pt;}
.lse_c00138{letter-spacing:-0.057600pt;}
.ls7_c00138{letter-spacing:-0.051200pt;}
.ls8_c00138{letter-spacing:-0.044800pt;}
.lsd_c00138{letter-spacing:-0.038400pt;}
.ls5_c00138{letter-spacing:-0.032000pt;}
.ls6_c00138{letter-spacing:-0.025600pt;}
.ls12_c00138{letter-spacing:-0.019200pt;}
.ls9_c00138{letter-spacing:-0.012800pt;}
.ls10_c00138{letter-spacing:-0.006400pt;}
.ls4_c00138{letter-spacing:0.000000pt;}
.ls3_c00138{letter-spacing:0.006400pt;}
.ls2_c00138{letter-spacing:0.012800pt;}
.ls11_c00138{letter-spacing:0.032000pt;}
.ls0_c00138{letter-spacing:0.052192pt;}
.ls1_c00138{letter-spacing:0.768000pt;}
.ws0_c00138{word-spacing:-17.760000pt;}
.ws1_c00138{word-spacing:-17.651200pt;}
.ws1a_c00138{word-spacing:-3.033600pt;}
.ws18_c00138{word-spacing:-2.944000pt;}
.ws19_c00138{word-spacing:-2.886400pt;}
.ws2d_c00138{word-spacing:-2.720000pt;}
.ws2c_c00138{word-spacing:-2.700800pt;}
.ws30_c00138{word-spacing:-2.028800pt;}
.ws31_c00138{word-spacing:-1.747200pt;}
.ws32_c00138{word-spacing:-1.740800pt;}
.ws1e_c00138{word-spacing:-1.452800pt;}
.ws17_c00138{word-spacing:-1.408000pt;}
.ws1f_c00138{word-spacing:-1.369600pt;}
.ws16_c00138{word-spacing:-1.356800pt;}
.ws4_c00138{word-spacing:-0.192000pt;}
.ws5_c00138{word-spacing:-0.153600pt;}
.wsf_c00138{word-spacing:-0.147200pt;}
.ws10_c00138{word-spacing:-0.102400pt;}
.ws2_c00138{word-spacing:0.000000pt;}
.ws3_c00138{word-spacing:0.029824pt;}
.ws15_c00138{word-spacing:0.160000pt;}
.ws13_c00138{word-spacing:0.755200pt;}
.ws14_c00138{word-spacing:0.806400pt;}
.ws2f_c00138{word-spacing:0.812800pt;}
.ws11_c00138{word-spacing:0.876800pt;}
.ws12_c00138{word-spacing:0.979200pt;}
.ws34_c00138{word-spacing:2.035200pt;}
.ws33_c00138{word-spacing:2.054400pt;}
.wse_c00138{word-spacing:2.457600pt;}
.wsd_c00138{word-spacing:2.470400pt;}
.ws1d_c00138{word-spacing:4.889600pt;}
.ws2e_c00138{word-spacing:4.940800pt;}
.ws1c_c00138{word-spacing:4.966400pt;}
.ws35_c00138{word-spacing:4.985600pt;}
.ws36_c00138{word-spacing:5.088000pt;}
.ws25_c00138{word-spacing:6.208000pt;}
.ws26_c00138{word-spacing:6.233600pt;}
.ws2b_c00138{word-spacing:6.848000pt;}
.ws2a_c00138{word-spacing:6.892800pt;}
.ws29_c00138{word-spacing:7.219200pt;}
.ws20_c00138{word-spacing:7.481600pt;}
.ws21_c00138{word-spacing:7.500800pt;}
.ws23_c00138{word-spacing:11.673600pt;}
.ws24_c00138{word-spacing:11.686400pt;}
.ws6_c00138{word-spacing:13.612800pt;}
.ws7_c00138{word-spacing:13.632000pt;}
.wsb_c00138{word-spacing:14.534400pt;}
.wsa_c00138{word-spacing:14.572800pt;}
.ws8_c00138{word-spacing:14.886400pt;}
.ws9_c00138{word-spacing:14.905600pt;}
.wsc_c00138{word-spacing:14.912000pt;}
.ws37_c00138{word-spacing:19.040000pt;}
.ws38_c00138{word-spacing:19.136000pt;}
.ws1b_c00138{word-spacing:22.284800pt;}
.ws27_c00138{word-spacing:24.992000pt;}
.ws28_c00138{word-spacing:25.152000pt;}
.ws22_c00138{word-spacing:26.726400pt;}
._2_c00138{margin-left:-25.120000pt;}
._3_c00138{margin-left:-1.216000pt;}
._1_c00138{width:0.940800pt;}
._0_c00138{width:39.069440pt;}
.fs0_c00138{font-size:64.000000pt;}
.fs1_c00138{font-size:74.560000pt;}
.y0_c00138{bottom:0.000000pt;}
.y2_c00138{bottom:41.627067pt;}
.y1_c00138{bottom:60.027067pt;}
.y24_c00138{bottom:141.307067pt;}
.y23_c00138{bottom:168.907067pt;}
.y22_c00138{bottom:196.507067pt;}
.y21_c00138{bottom:224.107067pt;}
.y20_c00138{bottom:251.707067pt;}
.y1f_c00138{bottom:279.307067pt;}
.y1e_c00138{bottom:306.907067pt;}
.y1d_c00138{bottom:334.507067pt;}
.y1c_c00138{bottom:362.107067pt;}
.y1b_c00138{bottom:389.707067pt;}
.y1a_c00138{bottom:417.307067pt;}
.y19_c00138{bottom:435.707067pt;}
.y18_c00138{bottom:454.107067pt;}
.y17_c00138{bottom:472.507067pt;}
.y16_c00138{bottom:490.907067pt;}
.y15_c00138{bottom:509.307067pt;}
.y14_c00138{bottom:527.707067pt;}
.y13_c00138{bottom:546.107067pt;}
.y12_c00138{bottom:564.507067pt;}
.y11_c00138{bottom:582.907067pt;}
.y10_c00138{bottom:601.307067pt;}
.yf_c00138{bottom:619.707067pt;}
.ye_c00138{bottom:655.307067pt;}
.yd_c00138{bottom:682.907067pt;}
.yc_c00138{bottom:710.507067pt;}
.yb_c00138{bottom:738.107067pt;}
.ya_c00138{bottom:765.707067pt;}
.y9_c00138{bottom:793.307067pt;}
.y8_c00138{bottom:820.907067pt;}
.y7_c00138{bottom:848.507067pt;}
.y6_c00138{bottom:876.107067pt;}
.y5_c00138{bottom:911.707067pt;}
.y4_c00138{bottom:938.507067pt;}
.y3_c00138{bottom:975.547067pt;}
.h1_c00138{height:56.156250pt;}
.h2_c00138{height:57.375000pt;}
.h4_c00138{height:66.750000pt;}
.h3_c00138{height:77.763750pt;}
.h0_c00138{height:1122.666667pt;}
.w1_c00138{width:793.333333pt;}
.w0_c00138{width:793.626667pt;}
.x0_c00138{left:0.000000pt;}
.x2_c00138{left:151.200000pt;}
.x4_c00138{left:170.160000pt;}
.x3_c00138{left:247.200000pt;}
.x1_c00138{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_069142c72398d6e2e68e66df.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.093262;font-style:normal;font-weight:normal;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_7219f979ad6cc74b18696f96.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.106934;font-style:normal;font-weight:normal;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_4e523c0a4948c9f3c90852a1.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lse_c00139{letter-spacing:-0.086400px;}
.lsd_c00139{letter-spacing:-0.079200px;}
.ls6_c00139{letter-spacing:-0.064800px;}
.ls3_c00139{letter-spacing:-0.057600px;}
.ls9_c00139{letter-spacing:-0.043200px;}
.ls8_c00139{letter-spacing:-0.036000px;}
.lsb_c00139{letter-spacing:-0.028800px;}
.ls7_c00139{letter-spacing:-0.021600px;}
.lsa_c00139{letter-spacing:-0.014400px;}
.ls4_c00139{letter-spacing:-0.007200px;}
.ls2_c00139{letter-spacing:0.000000px;}
.ls5_c00139{letter-spacing:0.007200px;}
.ls1_c00139{letter-spacing:0.079200px;}
.lsc_c00139{letter-spacing:6.120000px;}
.ls0_c00139{letter-spacing:9.000000px;}
.sc__c00139{text-shadow:none;}
.sc0_c00139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00139{-webkit-text-stroke:0px transparent;}
.sc0_c00139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00139{word-spacing:-20.008800px;}
.ws33_c00139{word-spacing:-4.125600px;}
.ws32_c00139{word-spacing:-4.104000px;}
.wsc_c00139{word-spacing:-2.318400px;}
.ws3_c00139{word-spacing:-2.066400px;}
.ws2_c00139{word-spacing:-1.944000px;}
.ws1_c00139{word-spacing:0.000000px;}
.ws27_c00139{word-spacing:0.180000px;}
.ws26_c00139{word-spacing:0.273600px;}
.ws30_c00139{word-spacing:0.540000px;}
.ws31_c00139{word-spacing:0.561600px;}
.ws34_c00139{word-spacing:0.597600px;}
.ws2d_c00139{word-spacing:0.885600px;}
.ws2e_c00139{word-spacing:0.900000px;}
.ws22_c00139{word-spacing:3.758400px;}
.ws23_c00139{word-spacing:3.780000px;}
.ws21_c00139{word-spacing:3.801600px;}
.ws20_c00139{word-spacing:4.003200px;}
.ws28_c00139{word-spacing:4.161600px;}
.ws2f_c00139{word-spacing:4.420800px;}
.wse_c00139{word-spacing:4.485600px;}
.wsd_c00139{word-spacing:4.521600px;}
.ws9_c00139{word-spacing:4.543200px;}
.ws7_c00139{word-spacing:4.600800px;}
.ws8_c00139{word-spacing:4.651200px;}
.ws37_c00139{word-spacing:5.306400px;}
.ws38_c00139{word-spacing:5.349600px;}
.ws39_c00139{word-spacing:5.400000px;}
.ws5_c00139{word-spacing:6.480000px;}
.ws1f_c00139{word-spacing:6.501600px;}
.ws1e_c00139{word-spacing:6.559200px;}
.ws1d_c00139{word-spacing:6.660000px;}
.ws4_c00139{word-spacing:6.703200px;}
.ws13_c00139{word-spacing:7.027200px;}
.ws14_c00139{word-spacing:7.041600px;}
.ws29_c00139{word-spacing:7.372800px;}
.ws2a_c00139{word-spacing:7.394400px;}
.ws2b_c00139{word-spacing:8.467200px;}
.ws2c_c00139{word-spacing:8.474400px;}
.ws10_c00139{word-spacing:9.878400px;}
.wsf_c00139{word-spacing:9.892800px;}
.ws15_c00139{word-spacing:9.900000px;}
.ws16_c00139{word-spacing:9.907200px;}
.wsa_c00139{word-spacing:14.220000px;}
.wsb_c00139{word-spacing:14.234400px;}
.ws18_c00139{word-spacing:15.667200px;}
.ws35_c00139{word-spacing:16.005600px;}
.ws6_c00139{word-spacing:16.034400px;}
.ws36_c00139{word-spacing:16.099200px;}
.ws24_c00139{word-spacing:19.346400px;}
.ws25_c00139{word-spacing:19.425600px;}
.ws17_c00139{word-spacing:23.572800px;}
.ws11_c00139{word-spacing:25.027200px;}
.ws12_c00139{word-spacing:25.041600px;}
.ws1c_c00139{word-spacing:26.092800px;}
.ws1b_c00139{word-spacing:26.107200px;}
.ws1a_c00139{word-spacing:55.612800px;}
.ws19_c00139{word-spacing:55.720800px;}
._1_c00139{margin-left:-5.270400px;}
._2_c00139{margin-left:-3.960000px;}
._0_c00139{width:1.512000px;}
._3_c00139{width:3.916800px;}
.fc0_c00139{color:rgb(0,0,0);}
.fs0_c00139{font-size:72.000000px;}
.y0_c00139{bottom:0.000000px;}
.y2_c00139{bottom:46.830450px;}
.y1_c00139{bottom:67.530450px;}
.y21_c00139{bottom:170.040450px;}
.y20_c00139{bottom:190.740450px;}
.y1f_c00139{bottom:211.440450px;}
.y1e_c00139{bottom:232.140450px;}
.y1d_c00139{bottom:272.190450px;}
.y1c_c00139{bottom:303.240450px;}
.y1b_c00139{bottom:334.290450px;}
.y1a_c00139{bottom:365.340450px;}
.y19_c00139{bottom:396.390450px;}
.y18_c00139{bottom:427.440450px;}
.y17_c00139{bottom:458.490450px;}
.y16_c00139{bottom:498.540450px;}
.y15_c00139{bottom:529.500450px;}
.y14_c00139{bottom:560.550450px;}
.y13_c00139{bottom:591.600450px;}
.y12_c00139{bottom:622.650450px;}
.y11_c00139{bottom:653.700450px;}
.y10_c00139{bottom:684.750450px;}
.yf_c00139{bottom:715.800450px;}
.ye_c00139{bottom:746.850450px;}
.yd_c00139{bottom:777.990450px;}
.yc_c00139{bottom:809.040450px;}
.yb_c00139{bottom:840.090450px;}
.ya_c00139{bottom:871.140450px;}
.y9_c00139{bottom:902.190450px;}
.y8_c00139{bottom:933.240450px;}
.y7_c00139{bottom:964.290450px;}
.y6_c00139{bottom:995.340450px;}
.y5_c00139{bottom:1026.390450px;}
.y4_c00139{bottom:1066.440450px;}
.y3_c00139{bottom:1097.490450px;}
.h1_c00139{height:63.175781px;}
.h2_c00139{height:64.546875px;}
.h3_c00139{height:75.093750px;}
.h0_c00139{height:1263.000000px;}
.w1_c00139{width:892.500000px;}
.w0_c00139{width:892.830000px;}
.x0_c00139{left:0.000000px;}
.x2_c00139{left:127.620000px;}
.x3_c00139{left:148.950000px;}
.x1_c00139{left:695.880000px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.lse_c00139{letter-spacing:-0.076800pt;}
.lsd_c00139{letter-spacing:-0.070400pt;}
.ls6_c00139{letter-spacing:-0.057600pt;}
.ls3_c00139{letter-spacing:-0.051200pt;}
.ls9_c00139{letter-spacing:-0.038400pt;}
.ls8_c00139{letter-spacing:-0.032000pt;}
.lsb_c00139{letter-spacing:-0.025600pt;}
.ls7_c00139{letter-spacing:-0.019200pt;}
.lsa_c00139{letter-spacing:-0.012800pt;}
.ls4_c00139{letter-spacing:-0.006400pt;}
.ls2_c00139{letter-spacing:0.000000pt;}
.ls5_c00139{letter-spacing:0.006400pt;}
.ls1_c00139{letter-spacing:0.070400pt;}
.lsc_c00139{letter-spacing:5.440000pt;}
.ls0_c00139{letter-spacing:8.000000pt;}
.ws0_c00139{word-spacing:-17.785600pt;}
.ws33_c00139{word-spacing:-3.667200pt;}
.ws32_c00139{word-spacing:-3.648000pt;}
.wsc_c00139{word-spacing:-2.060800pt;}
.ws3_c00139{word-spacing:-1.836800pt;}
.ws2_c00139{word-spacing:-1.728000pt;}
.ws1_c00139{word-spacing:0.000000pt;}
.ws27_c00139{word-spacing:0.160000pt;}
.ws26_c00139{word-spacing:0.243200pt;}
.ws30_c00139{word-spacing:0.480000pt;}
.ws31_c00139{word-spacing:0.499200pt;}
.ws34_c00139{word-spacing:0.531200pt;}
.ws2d_c00139{word-spacing:0.787200pt;}
.ws2e_c00139{word-spacing:0.800000pt;}
.ws22_c00139{word-spacing:3.340800pt;}
.ws23_c00139{word-spacing:3.360000pt;}
.ws21_c00139{word-spacing:3.379200pt;}
.ws20_c00139{word-spacing:3.558400pt;}
.ws28_c00139{word-spacing:3.699200pt;}
.ws2f_c00139{word-spacing:3.929600pt;}
.wse_c00139{word-spacing:3.987200pt;}
.wsd_c00139{word-spacing:4.019200pt;}
.ws9_c00139{word-spacing:4.038400pt;}
.ws7_c00139{word-spacing:4.089600pt;}
.ws8_c00139{word-spacing:4.134400pt;}
.ws37_c00139{word-spacing:4.716800pt;}
.ws38_c00139{word-spacing:4.755200pt;}
.ws39_c00139{word-spacing:4.800000pt;}
.ws5_c00139{word-spacing:5.760000pt;}
.ws1f_c00139{word-spacing:5.779200pt;}
.ws1e_c00139{word-spacing:5.830400pt;}
.ws1d_c00139{word-spacing:5.920000pt;}
.ws4_c00139{word-spacing:5.958400pt;}
.ws13_c00139{word-spacing:6.246400pt;}
.ws14_c00139{word-spacing:6.259200pt;}
.ws29_c00139{word-spacing:6.553600pt;}
.ws2a_c00139{word-spacing:6.572800pt;}
.ws2b_c00139{word-spacing:7.526400pt;}
.ws2c_c00139{word-spacing:7.532800pt;}
.ws10_c00139{word-spacing:8.780800pt;}
.wsf_c00139{word-spacing:8.793600pt;}
.ws15_c00139{word-spacing:8.800000pt;}
.ws16_c00139{word-spacing:8.806400pt;}
.wsa_c00139{word-spacing:12.640000pt;}
.wsb_c00139{word-spacing:12.652800pt;}
.ws18_c00139{word-spacing:13.926400pt;}
.ws35_c00139{word-spacing:14.227200pt;}
.ws6_c00139{word-spacing:14.252800pt;}
.ws36_c00139{word-spacing:14.310400pt;}
.ws24_c00139{word-spacing:17.196800pt;}
.ws25_c00139{word-spacing:17.267200pt;}
.ws17_c00139{word-spacing:20.953600pt;}
.ws11_c00139{word-spacing:22.246400pt;}
.ws12_c00139{word-spacing:22.259200pt;}
.ws1c_c00139{word-spacing:23.193600pt;}
.ws1b_c00139{word-spacing:23.206400pt;}
.ws1a_c00139{word-spacing:49.433600pt;}
.ws19_c00139{word-spacing:49.529600pt;}
._1_c00139{margin-left:-4.684800pt;}
._2_c00139{margin-left:-3.520000pt;}
._0_c00139{width:1.344000pt;}
._3_c00139{width:3.481600pt;}
.fs0_c00139{font-size:64.000000pt;}
.y0_c00139{bottom:0.000000pt;}
.y2_c00139{bottom:41.627067pt;}
.y1_c00139{bottom:60.027067pt;}
.y21_c00139{bottom:151.147067pt;}
.y20_c00139{bottom:169.547067pt;}
.y1f_c00139{bottom:187.947067pt;}
.y1e_c00139{bottom:206.347067pt;}
.y1d_c00139{bottom:241.947067pt;}
.y1c_c00139{bottom:269.547067pt;}
.y1b_c00139{bottom:297.147067pt;}
.y1a_c00139{bottom:324.747067pt;}
.y19_c00139{bottom:352.347067pt;}
.y18_c00139{bottom:379.947067pt;}
.y17_c00139{bottom:407.547067pt;}
.y16_c00139{bottom:443.147067pt;}
.y15_c00139{bottom:470.667067pt;}
.y14_c00139{bottom:498.267067pt;}
.y13_c00139{bottom:525.867067pt;}
.y12_c00139{bottom:553.467067pt;}
.y11_c00139{bottom:581.067067pt;}
.y10_c00139{bottom:608.667067pt;}
.yf_c00139{bottom:636.267067pt;}
.ye_c00139{bottom:663.867067pt;}
.yd_c00139{bottom:691.547067pt;}
.yc_c00139{bottom:719.147067pt;}
.yb_c00139{bottom:746.747067pt;}
.ya_c00139{bottom:774.347067pt;}
.y9_c00139{bottom:801.947067pt;}
.y8_c00139{bottom:829.547067pt;}
.y7_c00139{bottom:857.147067pt;}
.y6_c00139{bottom:884.747067pt;}
.y5_c00139{bottom:912.347067pt;}
.y4_c00139{bottom:947.947067pt;}
.y3_c00139{bottom:975.547067pt;}
.h1_c00139{height:56.156250pt;}
.h2_c00139{height:57.375000pt;}
.h3_c00139{height:66.750000pt;}
.h0_c00139{height:1122.666667pt;}
.w1_c00139{width:793.333333pt;}
.w0_c00139{width:793.626667pt;}
.x0_c00139{left:0.000000pt;}
.x2_c00139{left:113.440000pt;}
.x3_c00139{left:132.400000pt;}
.x1_c00139{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_894502163021d0ff90c5d0f9.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.093262;font-style:normal;font-weight:normal;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_e5caabb90edddebf9e8f228f.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.106934;font-style:normal;font-weight:normal;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_d21c41285793987114897c52.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00140{letter-spacing:-0.079200px;}
.ls3_c00140{letter-spacing:-0.072000px;}
.ls9_c00140{letter-spacing:-0.064800px;}
.lsa_c00140{letter-spacing:-0.057600px;}
.ls8_c00140{letter-spacing:-0.050400px;}
.ls6_c00140{letter-spacing:-0.043200px;}
.ls5_c00140{letter-spacing:-0.036000px;}
.ls2_c00140{letter-spacing:-0.028800px;}
.lsb_c00140{letter-spacing:-0.021600px;}
.ls7_c00140{letter-spacing:-0.014400px;}
.ls4_c00140{letter-spacing:-0.007200px;}
.ls1_c00140{letter-spacing:0.000000px;}
.ls0_c00140{letter-spacing:0.007200px;}
.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;}
}
.wsc_c00140{word-spacing:-4.125600px;}
.wsd_c00140{word-spacing:-4.118400px;}
.ws1f_c00140{word-spacing:-2.988000px;}
.ws20_c00140{word-spacing:-2.916000px;}
.ws12_c00140{word-spacing:-2.412000px;}
.ws13_c00140{word-spacing:-2.368800px;}
.ws11_c00140{word-spacing:-2.001600px;}
.ws10_c00140{word-spacing:-1.958400px;}
.wse_c00140{word-spacing:-1.951200px;}
.ws1c_c00140{word-spacing:-1.224000px;}
.ws1b_c00140{word-spacing:-1.216800px;}
.ws2e_c00140{word-spacing:-0.921600px;}
.ws2d_c00140{word-spacing:-0.813600px;}
.ws30_c00140{word-spacing:-0.597600px;}
.ws2f_c00140{word-spacing:-0.547200px;}
.ws29_c00140{word-spacing:-0.158400px;}
.ws28_c00140{word-spacing:-0.144000px;}
.ws0_c00140{word-spacing:0.000000px;}
.wsf_c00140{word-spacing:0.151200px;}
.ws1a_c00140{word-spacing:0.158400px;}
.ws3_c00140{word-spacing:0.165600px;}
.ws9_c00140{word-spacing:0.172800px;}
.ws2a_c00140{word-spacing:0.180000px;}
.ws8_c00140{word-spacing:0.187200px;}
.ws15_c00140{word-spacing:0.201600px;}
.ws14_c00140{word-spacing:0.381600px;}
.ws1_c00140{word-spacing:1.123200px;}
.ws2_c00140{word-spacing:1.310400px;}
.ws34_c00140{word-spacing:3.232800px;}
.ws33_c00140{word-spacing:3.247200px;}
.ws35_c00140{word-spacing:3.448800px;}
.ws1d_c00140{word-spacing:4.168800px;}
.ws1e_c00140{word-spacing:4.226400px;}
.ws19_c00140{word-spacing:4.788000px;}
.ws18_c00140{word-spacing:4.874400px;}
.wsa_c00140{word-spacing:5.169600px;}
.wsb_c00140{word-spacing:5.241600px;}
.ws6_c00140{word-spacing:6.249600px;}
.ws7_c00140{word-spacing:6.307200px;}
.ws4_c00140{word-spacing:9.914400px;}
.ws5_c00140{word-spacing:9.950400px;}
.ws16_c00140{word-spacing:10.224000px;}
.ws17_c00140{word-spacing:10.231200px;}
.ws22_c00140{word-spacing:12.391200px;}
.ws23_c00140{word-spacing:12.420000px;}
.ws21_c00140{word-spacing:12.470400px;}
.ws38_c00140{word-spacing:13.471200px;}
.ws39_c00140{word-spacing:13.521600px;}
.ws37_c00140{word-spacing:15.645600px;}
.ws2c_c00140{word-spacing:15.652800px;}
.ws36_c00140{word-spacing:15.667200px;}
.ws2b_c00140{word-spacing:15.674400px;}
.ws27_c00140{word-spacing:19.828800px;}
.ws26_c00140{word-spacing:19.915200px;}
.ws24_c00140{word-spacing:19.994400px;}
.ws25_c00140{word-spacing:20.016000px;}
.ws32_c00140{word-spacing:21.412800px;}
.ws31_c00140{word-spacing:21.499200px;}
._0_c00140{width:1.231200px;}
.fc0_c00140{color:rgb(0,0,0);}
.fs0_c00140{font-size:72.000000px;}
.y0_c00140{bottom:0.000000px;}
.y2_c00140{bottom:46.830450px;}
.y1_c00140{bottom:67.530450px;}
.y23_c00140{bottom:152.130450px;}
.y22_c00140{bottom:183.180450px;}
.y21_c00140{bottom:214.230450px;}
.y20_c00140{bottom:245.280450px;}
.y1f_c00140{bottom:276.330450px;}
.y1e_c00140{bottom:307.380450px;}
.y1d_c00140{bottom:338.430450px;}
.y1c_c00140{bottom:378.390450px;}
.y1b_c00140{bottom:409.440450px;}
.y1a_c00140{bottom:440.490450px;}
.y19_c00140{bottom:471.540450px;}
.y18_c00140{bottom:502.590450px;}
.y17_c00140{bottom:542.640450px;}
.y16_c00140{bottom:573.690450px;}
.y15_c00140{bottom:604.740450px;}
.y14_c00140{bottom:644.790450px;}
.y13_c00140{bottom:675.840450px;}
.y12_c00140{bottom:706.890450px;}
.y11_c00140{bottom:746.940450px;}
.y10_c00140{bottom:777.990450px;}
.yf_c00140{bottom:809.040450px;}
.ye_c00140{bottom:829.740450px;}
.yd_c00140{bottom:850.440450px;}
.yc_c00140{bottom:871.140450px;}
.yb_c00140{bottom:891.840450px;}
.ya_c00140{bottom:912.540450px;}
.y9_c00140{bottom:933.240450px;}
.y8_c00140{bottom:973.290450px;}
.y7_c00140{bottom:1004.340450px;}
.y6_c00140{bottom:1035.390450px;}
.y5_c00140{bottom:1056.090450px;}
.y4_c00140{bottom:1076.790450px;}
.y3_c00140{bottom:1097.490450px;}
.h1_c00140{height:63.175781px;}
.h2_c00140{height:64.546875px;}
.h3_c00140{height:75.093750px;}
.h0_c00140{height:1263.000000px;}
.w1_c00140{width:892.500000px;}
.w0_c00140{width:892.830000px;}
.x0_c00140{left:0.000000px;}
.x2_c00140{left:170.100000px;}
.x3_c00140{left:191.430000px;}
.x1_c00140{left:738.360000px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.lsc_c00140{letter-spacing:-0.070400pt;}
.ls3_c00140{letter-spacing:-0.064000pt;}
.ls9_c00140{letter-spacing:-0.057600pt;}
.lsa_c00140{letter-spacing:-0.051200pt;}
.ls8_c00140{letter-spacing:-0.044800pt;}
.ls6_c00140{letter-spacing:-0.038400pt;}
.ls5_c00140{letter-spacing:-0.032000pt;}
.ls2_c00140{letter-spacing:-0.025600pt;}
.lsb_c00140{letter-spacing:-0.019200pt;}
.ls7_c00140{letter-spacing:-0.012800pt;}
.ls4_c00140{letter-spacing:-0.006400pt;}
.ls1_c00140{letter-spacing:0.000000pt;}
.ls0_c00140{letter-spacing:0.006400pt;}
.wsc_c00140{word-spacing:-3.667200pt;}
.wsd_c00140{word-spacing:-3.660800pt;}
.ws1f_c00140{word-spacing:-2.656000pt;}
.ws20_c00140{word-spacing:-2.592000pt;}
.ws12_c00140{word-spacing:-2.144000pt;}
.ws13_c00140{word-spacing:-2.105600pt;}
.ws11_c00140{word-spacing:-1.779200pt;}
.ws10_c00140{word-spacing:-1.740800pt;}
.wse_c00140{word-spacing:-1.734400pt;}
.ws1c_c00140{word-spacing:-1.088000pt;}
.ws1b_c00140{word-spacing:-1.081600pt;}
.ws2e_c00140{word-spacing:-0.819200pt;}
.ws2d_c00140{word-spacing:-0.723200pt;}
.ws30_c00140{word-spacing:-0.531200pt;}
.ws2f_c00140{word-spacing:-0.486400pt;}
.ws29_c00140{word-spacing:-0.140800pt;}
.ws28_c00140{word-spacing:-0.128000pt;}
.ws0_c00140{word-spacing:0.000000pt;}
.wsf_c00140{word-spacing:0.134400pt;}
.ws1a_c00140{word-spacing:0.140800pt;}
.ws3_c00140{word-spacing:0.147200pt;}
.ws9_c00140{word-spacing:0.153600pt;}
.ws2a_c00140{word-spacing:0.160000pt;}
.ws8_c00140{word-spacing:0.166400pt;}
.ws15_c00140{word-spacing:0.179200pt;}
.ws14_c00140{word-spacing:0.339200pt;}
.ws1_c00140{word-spacing:0.998400pt;}
.ws2_c00140{word-spacing:1.164800pt;}
.ws34_c00140{word-spacing:2.873600pt;}
.ws33_c00140{word-spacing:2.886400pt;}
.ws35_c00140{word-spacing:3.065600pt;}
.ws1d_c00140{word-spacing:3.705600pt;}
.ws1e_c00140{word-spacing:3.756800pt;}
.ws19_c00140{word-spacing:4.256000pt;}
.ws18_c00140{word-spacing:4.332800pt;}
.wsa_c00140{word-spacing:4.595200pt;}
.wsb_c00140{word-spacing:4.659200pt;}
.ws6_c00140{word-spacing:5.555200pt;}
.ws7_c00140{word-spacing:5.606400pt;}
.ws4_c00140{word-spacing:8.812800pt;}
.ws5_c00140{word-spacing:8.844800pt;}
.ws16_c00140{word-spacing:9.088000pt;}
.ws17_c00140{word-spacing:9.094400pt;}
.ws22_c00140{word-spacing:11.014400pt;}
.ws23_c00140{word-spacing:11.040000pt;}
.ws21_c00140{word-spacing:11.084800pt;}
.ws38_c00140{word-spacing:11.974400pt;}
.ws39_c00140{word-spacing:12.019200pt;}
.ws37_c00140{word-spacing:13.907200pt;}
.ws2c_c00140{word-spacing:13.913600pt;}
.ws36_c00140{word-spacing:13.926400pt;}
.ws2b_c00140{word-spacing:13.932800pt;}
.ws27_c00140{word-spacing:17.625600pt;}
.ws26_c00140{word-spacing:17.702400pt;}
.ws24_c00140{word-spacing:17.772800pt;}
.ws25_c00140{word-spacing:17.792000pt;}
.ws32_c00140{word-spacing:19.033600pt;}
.ws31_c00140{word-spacing:19.110400pt;}
._0_c00140{width:1.094400pt;}
.fs0_c00140{font-size:64.000000pt;}
.y0_c00140{bottom:0.000000pt;}
.y2_c00140{bottom:41.627067pt;}
.y1_c00140{bottom:60.027067pt;}
.y23_c00140{bottom:135.227067pt;}
.y22_c00140{bottom:162.827067pt;}
.y21_c00140{bottom:190.427067pt;}
.y20_c00140{bottom:218.027067pt;}
.y1f_c00140{bottom:245.627067pt;}
.y1e_c00140{bottom:273.227067pt;}
.y1d_c00140{bottom:300.827067pt;}
.y1c_c00140{bottom:336.347067pt;}
.y1b_c00140{bottom:363.947067pt;}
.y1a_c00140{bottom:391.547067pt;}
.y19_c00140{bottom:419.147067pt;}
.y18_c00140{bottom:446.747067pt;}
.y17_c00140{bottom:482.347067pt;}
.y16_c00140{bottom:509.947067pt;}
.y15_c00140{bottom:537.547067pt;}
.y14_c00140{bottom:573.147067pt;}
.y13_c00140{bottom:600.747067pt;}
.y12_c00140{bottom:628.347067pt;}
.y11_c00140{bottom:663.947067pt;}
.y10_c00140{bottom:691.547067pt;}
.yf_c00140{bottom:719.147067pt;}
.ye_c00140{bottom:737.547067pt;}
.yd_c00140{bottom:755.947067pt;}
.yc_c00140{bottom:774.347067pt;}
.yb_c00140{bottom:792.747067pt;}
.ya_c00140{bottom:811.147067pt;}
.y9_c00140{bottom:829.547067pt;}
.y8_c00140{bottom:865.147067pt;}
.y7_c00140{bottom:892.747067pt;}
.y6_c00140{bottom:920.347067pt;}
.y5_c00140{bottom:938.747067pt;}
.y4_c00140{bottom:957.147067pt;}
.y3_c00140{bottom:975.547067pt;}
.h1_c00140{height:56.156250pt;}
.h2_c00140{height:57.375000pt;}
.h3_c00140{height:66.750000pt;}
.h0_c00140{height:1122.666667pt;}
.w1_c00140{width:793.333333pt;}
.w0_c00140{width:793.626667pt;}
.x0_c00140{left:0.000000pt;}
.x2_c00140{left:151.200000pt;}
.x3_c00140{left:170.160000pt;}
.x1_c00140{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e48f61418c2ce975c7ab6000.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.093262;font-style:normal;font-weight:normal;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_7bf87f0a12f222711c7dab6a.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.ls2_c00141{letter-spacing:-0.057600px;}
.ls5_c00141{letter-spacing:-0.050400px;}
.ls4_c00141{letter-spacing:-0.036000px;}
.ls7_c00141{letter-spacing:-0.028800px;}
.ls1_c00141{letter-spacing:-0.021600px;}
.ls3_c00141{letter-spacing:-0.014400px;}
.ls6_c00141{letter-spacing:-0.007200px;}
.ls0_c00141{letter-spacing:0.000000px;}
.ls8_c00141{letter-spacing:843.998400px;}
.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;}
}
.wsa_c00141{word-spacing:-0.900000px;}
.wsb_c00141{word-spacing:-0.842400px;}
.ws0_c00141{word-spacing:0.000000px;}
.wsc_c00141{word-spacing:0.158400px;}
.ws8_c00141{word-spacing:0.165600px;}
.ws3_c00141{word-spacing:0.172800px;}
.ws9_c00141{word-spacing:0.187200px;}
.wsd_c00141{word-spacing:0.295200px;}
.ws1_c00141{word-spacing:2.217600px;}
.ws2_c00141{word-spacing:2.419200px;}
.ws5_c00141{word-spacing:3.434400px;}
.ws4_c00141{word-spacing:3.456000px;}
.ws7_c00141{word-spacing:32.162400px;}
.ws6_c00141{word-spacing:32.248800px;}
.fc0_c00141{color:rgb(0,0,0);}
.fs0_c00141{font-size:72.000000px;}
.y0_c00141{bottom:0.000000px;}
.y2_c00141{bottom:46.830450px;}
.y1_c00141{bottom:67.530450px;}
.ye_c00141{bottom:692.940450px;}
.yd_c00141{bottom:732.990450px;}
.yc_c00141{bottom:773.040450px;}
.yb_c00141{bottom:813.090450px;}
.ya_c00141{bottom:853.140450px;}
.y9_c00141{bottom:893.190450px;}
.y8_c00141{bottom:924.240450px;}
.y7_c00141{bottom:964.290450px;}
.y6_c00141{bottom:995.340450px;}
.y5_c00141{bottom:1026.390450px;}
.y4_c00141{bottom:1066.440450px;}
.y3_c00141{bottom:1097.490450px;}
.h1_c00141{height:63.175781px;}
.h2_c00141{height:64.546875px;}
.h0_c00141{height:1263.000000px;}
.w1_c00141{width:892.500000px;}
.w0_c00141{width:892.830000px;}
.x0_c00141{left:0.000000px;}
.x2_c00141{left:127.620000px;}
.x1_c00141{left:695.880000px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls2_c00141{letter-spacing:-0.051200pt;}
.ls5_c00141{letter-spacing:-0.044800pt;}
.ls4_c00141{letter-spacing:-0.032000pt;}
.ls7_c00141{letter-spacing:-0.025600pt;}
.ls1_c00141{letter-spacing:-0.019200pt;}
.ls3_c00141{letter-spacing:-0.012800pt;}
.ls6_c00141{letter-spacing:-0.006400pt;}
.ls0_c00141{letter-spacing:0.000000pt;}
.ls8_c00141{letter-spacing:750.220800pt;}
.wsa_c00141{word-spacing:-0.800000pt;}
.wsb_c00141{word-spacing:-0.748800pt;}
.ws0_c00141{word-spacing:0.000000pt;}
.wsc_c00141{word-spacing:0.140800pt;}
.ws8_c00141{word-spacing:0.147200pt;}
.ws3_c00141{word-spacing:0.153600pt;}
.ws9_c00141{word-spacing:0.166400pt;}
.wsd_c00141{word-spacing:0.262400pt;}
.ws1_c00141{word-spacing:1.971200pt;}
.ws2_c00141{word-spacing:2.150400pt;}
.ws5_c00141{word-spacing:3.052800pt;}
.ws4_c00141{word-spacing:3.072000pt;}
.ws7_c00141{word-spacing:28.588800pt;}
.ws6_c00141{word-spacing:28.665600pt;}
.fs0_c00141{font-size:64.000000pt;}
.y0_c00141{bottom:0.000000pt;}
.y2_c00141{bottom:41.627067pt;}
.y1_c00141{bottom:60.027067pt;}
.ye_c00141{bottom:615.947067pt;}
.yd_c00141{bottom:651.547067pt;}
.yc_c00141{bottom:687.147067pt;}
.yb_c00141{bottom:722.747067pt;}
.ya_c00141{bottom:758.347067pt;}
.y9_c00141{bottom:793.947067pt;}
.y8_c00141{bottom:821.547067pt;}
.y7_c00141{bottom:857.147067pt;}
.y6_c00141{bottom:884.747067pt;}
.y5_c00141{bottom:912.347067pt;}
.y4_c00141{bottom:947.947067pt;}
.y3_c00141{bottom:975.547067pt;}
.h1_c00141{height:56.156250pt;}
.h2_c00141{height:57.375000pt;}
.h0_c00141{height:1122.666667pt;}
.w1_c00141{width:793.333333pt;}
.w0_c00141{width:793.626667pt;}
.x0_c00141{left:0.000000pt;}
.x2_c00141{left:113.440000pt;}
.x1_c00141{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e17566220d3494508a0aca85.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.093262;font-style:normal;font-weight:normal;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_9e9ec27d59fcd36cdaaecffb.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00142;src:url('chunks/assets/font_66620314a73e9f7dead2ec05.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;line-height:1.106934;font-style:normal;font-weight:normal;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_4162f43c2f9dd2576a0ee251.woff2')format("woff");}.ff4_c00142{font-family:ff4_c00142;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lse_c00142{letter-spacing:-0.086400px;}
.ls6_c00142{letter-spacing:-0.079200px;}
.lsd_c00142{letter-spacing:-0.072000px;}
.ls8_c00142{letter-spacing:-0.064800px;}
.ls7_c00142{letter-spacing:-0.057600px;}
.lsc_c00142{letter-spacing:-0.050400px;}
.ls3_c00142{letter-spacing:-0.043200px;}
.ls5_c00142{letter-spacing:-0.036000px;}
.lsa_c00142{letter-spacing:-0.028800px;}
.lsb_c00142{letter-spacing:-0.021600px;}
.ls4_c00142{letter-spacing:-0.014400px;}
.ls9_c00142{letter-spacing:-0.007200px;}
.ls1_c00142{letter-spacing:0.000000px;}
.ls0_c00142{letter-spacing:0.014400px;}
.ls2_c00142{letter-spacing:0.058716px;}
.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;}
}
.ws1_c00142{word-spacing:-19.965600px;}
.ws0_c00142{word-spacing:-19.951200px;}
.ws19_c00142{word-spacing:-3.765600px;}
.ws1a_c00142{word-spacing:-3.744000px;}
.ws34_c00142{word-spacing:-3.607200px;}
.ws33_c00142{word-spacing:-3.506400px;}
.ws35_c00142{word-spacing:-3.384000px;}
.ws2b_c00142{word-spacing:-2.700000px;}
.ws2c_c00142{word-spacing:-2.347200px;}
.ws10_c00142{word-spacing:-1.605600px;}
.wsf_c00142{word-spacing:-1.540800px;}
.ws29_c00142{word-spacing:-1.245600px;}
.ws28_c00142{word-spacing:-1.224000px;}
.ws25_c00142{word-spacing:-0.950400px;}
.ws26_c00142{word-spacing:-0.871200px;}
.ws2_c00142{word-spacing:0.000000px;}
.ws1b_c00142{word-spacing:0.165600px;}
.ws15_c00142{word-spacing:0.172800px;}
.ws20_c00142{word-spacing:0.914400px;}
.ws21_c00142{word-spacing:1.044000px;}
.ws1e_c00142{word-spacing:2.325600px;}
.ws1d_c00142{word-spacing:2.404800px;}
.ws23_c00142{word-spacing:3.052800px;}
.ws24_c00142{word-spacing:3.067200px;}
.ws1c_c00142{word-spacing:3.506400px;}
.ws22_c00142{word-spacing:4.852800px;}
.ws5_c00142{word-spacing:5.090400px;}
.ws4_c00142{word-spacing:5.176800px;}
.ws2a_c00142{word-spacing:7.048800px;}
.ws13_c00142{word-spacing:10.238400px;}
.ws14_c00142{word-spacing:10.317600px;}
.ws11_c00142{word-spacing:12.132000px;}
.ws12_c00142{word-spacing:12.168000px;}
.ws2d_c00142{word-spacing:13.852800px;}
.ws2e_c00142{word-spacing:13.917600px;}
.ws36_c00142{word-spacing:14.205600px;}
.ws37_c00142{word-spacing:14.220000px;}
.ws16_c00142{word-spacing:14.954400px;}
.ws17_c00142{word-spacing:15.019200px;}
.wsc_c00142{word-spacing:21.412800px;}
.ws8_c00142{word-spacing:21.801600px;}
.ws1f_c00142{word-spacing:23.580000px;}
.wsb_c00142{word-spacing:24.213600px;}
.wsa_c00142{word-spacing:24.220800px;}
.ws9_c00142{word-spacing:24.321600px;}
.ws6_c00142{word-spacing:26.092800px;}
.ws7_c00142{word-spacing:26.114400px;}
.ws31_c00142{word-spacing:30.024000px;}
.ws2f_c00142{word-spacing:30.060000px;}
.ws30_c00142{word-spacing:30.110400px;}
.ws32_c00142{word-spacing:30.124800px;}
.ws3_c00142{word-spacing:43.953120px;}
.wsd_c00142{word-spacing:46.785600px;}
.wse_c00142{word-spacing:47.023200px;}
.ws27_c00142{word-spacing:47.325600px;}
.ws18_c00142{word-spacing:66.024000px;}
._0_c00142{margin-left:-20.786400px;}
._3_c00142{margin-left:-3.484800px;}
._1_c00142{width:1.137600px;}
._2_c00142{width:2.880000px;}
.fc0_c00142{color:rgb(0,0,0);}
.fs0_c00142{font-size:72.000000px;}
.fs1_c00142{font-size:83.880000px;}
.y0_c00142{bottom:0.000000px;}
.y2_c00142{bottom:46.830450px;}
.y1_c00142{bottom:67.530450px;}
.y25_c00142{bottom:147.270450px;}
.y24_c00142{bottom:178.320450px;}
.y23_c00142{bottom:209.370450px;}
.y22_c00142{bottom:240.420450px;}
.y21_c00142{bottom:271.470450px;}
.y20_c00142{bottom:302.520450px;}
.y1f_c00142{bottom:323.220450px;}
.y1e_c00142{bottom:343.920450px;}
.y1d_c00142{bottom:364.620450px;}
.y1c_c00142{bottom:385.320450px;}
.y1b_c00142{bottom:406.020450px;}
.y1a_c00142{bottom:426.720450px;}
.y19_c00142{bottom:447.420450px;}
.y18_c00142{bottom:468.120450px;}
.y17_c00142{bottom:488.820450px;}
.y16_c00142{bottom:509.520450px;}
.y15_c00142{bottom:530.220450px;}
.y14_c00142{bottom:550.920450px;}
.y13_c00142{bottom:571.620450px;}
.y12_c00142{bottom:611.670450px;}
.y11_c00142{bottom:642.720450px;}
.y10_c00142{bottom:673.770450px;}
.yf_c00142{bottom:704.820450px;}
.ye_c00142{bottom:744.780450px;}
.yd_c00142{bottom:775.920450px;}
.yc_c00142{bottom:806.970450px;}
.yb_c00142{bottom:838.020450px;}
.ya_c00142{bottom:869.070450px;}
.y9_c00142{bottom:900.120450px;}
.y8_c00142{bottom:931.170450px;}
.y7_c00142{bottom:962.220450px;}
.y6_c00142{bottom:993.270450px;}
.y5_c00142{bottom:1024.320450px;}
.y4_c00142{bottom:1064.370450px;}
.y3_c00142{bottom:1094.520450px;}
.h1_c00142{height:63.175781px;}
.h3_c00142{height:64.546875px;}
.h4_c00142{height:75.093750px;}
.h2_c00142{height:87.484219px;}
.h0_c00142{height:1263.000000px;}
.w1_c00142{width:892.500000px;}
.w0_c00142{width:892.830000px;}
.x0_c00142{left:0.000000px;}
.x2_c00142{left:170.100000px;}
.x4_c00142{left:191.430000px;}
.x3_c00142{left:278.100000px;}
.x1_c00142{left:738.360000px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.lse_c00142{letter-spacing:-0.076800pt;}
.ls6_c00142{letter-spacing:-0.070400pt;}
.lsd_c00142{letter-spacing:-0.064000pt;}
.ls8_c00142{letter-spacing:-0.057600pt;}
.ls7_c00142{letter-spacing:-0.051200pt;}
.lsc_c00142{letter-spacing:-0.044800pt;}
.ls3_c00142{letter-spacing:-0.038400pt;}
.ls5_c00142{letter-spacing:-0.032000pt;}
.lsa_c00142{letter-spacing:-0.025600pt;}
.lsb_c00142{letter-spacing:-0.019200pt;}
.ls4_c00142{letter-spacing:-0.012800pt;}
.ls9_c00142{letter-spacing:-0.006400pt;}
.ls1_c00142{letter-spacing:0.000000pt;}
.ls0_c00142{letter-spacing:0.012800pt;}
.ls2_c00142{letter-spacing:0.052192pt;}
.ws1_c00142{word-spacing:-17.747200pt;}
.ws0_c00142{word-spacing:-17.734400pt;}
.ws19_c00142{word-spacing:-3.347200pt;}
.ws1a_c00142{word-spacing:-3.328000pt;}
.ws34_c00142{word-spacing:-3.206400pt;}
.ws33_c00142{word-spacing:-3.116800pt;}
.ws35_c00142{word-spacing:-3.008000pt;}
.ws2b_c00142{word-spacing:-2.400000pt;}
.ws2c_c00142{word-spacing:-2.086400pt;}
.ws10_c00142{word-spacing:-1.427200pt;}
.wsf_c00142{word-spacing:-1.369600pt;}
.ws29_c00142{word-spacing:-1.107200pt;}
.ws28_c00142{word-spacing:-1.088000pt;}
.ws25_c00142{word-spacing:-0.844800pt;}
.ws26_c00142{word-spacing:-0.774400pt;}
.ws2_c00142{word-spacing:0.000000pt;}
.ws1b_c00142{word-spacing:0.147200pt;}
.ws15_c00142{word-spacing:0.153600pt;}
.ws20_c00142{word-spacing:0.812800pt;}
.ws21_c00142{word-spacing:0.928000pt;}
.ws1e_c00142{word-spacing:2.067200pt;}
.ws1d_c00142{word-spacing:2.137600pt;}
.ws23_c00142{word-spacing:2.713600pt;}
.ws24_c00142{word-spacing:2.726400pt;}
.ws1c_c00142{word-spacing:3.116800pt;}
.ws22_c00142{word-spacing:4.313600pt;}
.ws5_c00142{word-spacing:4.524800pt;}
.ws4_c00142{word-spacing:4.601600pt;}
.ws2a_c00142{word-spacing:6.265600pt;}
.ws13_c00142{word-spacing:9.100800pt;}
.ws14_c00142{word-spacing:9.171200pt;}
.ws11_c00142{word-spacing:10.784000pt;}
.ws12_c00142{word-spacing:10.816000pt;}
.ws2d_c00142{word-spacing:12.313600pt;}
.ws2e_c00142{word-spacing:12.371200pt;}
.ws36_c00142{word-spacing:12.627200pt;}
.ws37_c00142{word-spacing:12.640000pt;}
.ws16_c00142{word-spacing:13.292800pt;}
.ws17_c00142{word-spacing:13.350400pt;}
.wsc_c00142{word-spacing:19.033600pt;}
.ws8_c00142{word-spacing:19.379200pt;}
.ws1f_c00142{word-spacing:20.960000pt;}
.wsb_c00142{word-spacing:21.523200pt;}
.wsa_c00142{word-spacing:21.529600pt;}
.ws9_c00142{word-spacing:21.619200pt;}
.ws6_c00142{word-spacing:23.193600pt;}
.ws7_c00142{word-spacing:23.212800pt;}
.ws31_c00142{word-spacing:26.688000pt;}
.ws2f_c00142{word-spacing:26.720000pt;}
.ws30_c00142{word-spacing:26.764800pt;}
.ws32_c00142{word-spacing:26.777600pt;}
.ws3_c00142{word-spacing:39.069440pt;}
.wsd_c00142{word-spacing:41.587200pt;}
.wse_c00142{word-spacing:41.798400pt;}
.ws27_c00142{word-spacing:42.067200pt;}
.ws18_c00142{word-spacing:58.688000pt;}
._0_c00142{margin-left:-18.476800pt;}
._3_c00142{margin-left:-3.097600pt;}
._1_c00142{width:1.011200pt;}
._2_c00142{width:2.560000pt;}
.fs0_c00142{font-size:64.000000pt;}
.fs1_c00142{font-size:74.560000pt;}
.y0_c00142{bottom:0.000000pt;}
.y2_c00142{bottom:41.627067pt;}
.y1_c00142{bottom:60.027067pt;}
.y25_c00142{bottom:130.907067pt;}
.y24_c00142{bottom:158.507067pt;}
.y23_c00142{bottom:186.107067pt;}
.y22_c00142{bottom:213.707067pt;}
.y21_c00142{bottom:241.307067pt;}
.y20_c00142{bottom:268.907067pt;}
.y1f_c00142{bottom:287.307067pt;}
.y1e_c00142{bottom:305.707067pt;}
.y1d_c00142{bottom:324.107067pt;}
.y1c_c00142{bottom:342.507067pt;}
.y1b_c00142{bottom:360.907067pt;}
.y1a_c00142{bottom:379.307067pt;}
.y19_c00142{bottom:397.707067pt;}
.y18_c00142{bottom:416.107067pt;}
.y17_c00142{bottom:434.507067pt;}
.y16_c00142{bottom:452.907067pt;}
.y15_c00142{bottom:471.307067pt;}
.y14_c00142{bottom:489.707067pt;}
.y13_c00142{bottom:508.107067pt;}
.y12_c00142{bottom:543.707067pt;}
.y11_c00142{bottom:571.307067pt;}
.y10_c00142{bottom:598.907067pt;}
.yf_c00142{bottom:626.507067pt;}
.ye_c00142{bottom:662.027067pt;}
.yd_c00142{bottom:689.707067pt;}
.yc_c00142{bottom:717.307067pt;}
.yb_c00142{bottom:744.907067pt;}
.ya_c00142{bottom:772.507067pt;}
.y9_c00142{bottom:800.107067pt;}
.y8_c00142{bottom:827.707067pt;}
.y7_c00142{bottom:855.307067pt;}
.y6_c00142{bottom:882.907067pt;}
.y5_c00142{bottom:910.507067pt;}
.y4_c00142{bottom:946.107067pt;}
.y3_c00142{bottom:972.907067pt;}
.h1_c00142{height:56.156250pt;}
.h3_c00142{height:57.375000pt;}
.h4_c00142{height:66.750000pt;}
.h2_c00142{height:77.763750pt;}
.h0_c00142{height:1122.666667pt;}
.w1_c00142{width:793.333333pt;}
.w0_c00142{width:793.626667pt;}
.x0_c00142{left:0.000000pt;}
.x2_c00142{left:151.200000pt;}
.x4_c00142{left:170.160000pt;}
.x3_c00142{left:247.200000pt;}
.x1_c00142{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_894502163021d0ff90c5d0f9.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.093262;font-style:normal;font-weight:normal;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_eb64b6fab5792aa993ad5ae6.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00143;src:url('chunks/assets/font_cfda4a42da61f84af605582b.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00143{vertical-align:0.000000px;}
.lsc_c00143{letter-spacing:-0.064800px;}
.ls9_c00143{letter-spacing:-0.057600px;}
.ls4_c00143{letter-spacing:-0.050400px;}
.ls8_c00143{letter-spacing:-0.043200px;}
.ls7_c00143{letter-spacing:-0.036000px;}
.lsa_c00143{letter-spacing:-0.028800px;}
.ls6_c00143{letter-spacing:-0.021600px;}
.ls5_c00143{letter-spacing:-0.014400px;}
.ls3_c00143{letter-spacing:0.000000px;}
.ls1_c00143{letter-spacing:0.007200px;}
.ls0_c00143{letter-spacing:0.014400px;}
.ls2_c00143{letter-spacing:0.036000px;}
.lsb_c00143{letter-spacing:0.043200px;}
.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;}
}
.ws32_c00143{word-spacing:-3.794400px;}
.ws1_c00143{word-spacing:-3.751200px;}
.ws2_c00143{word-spacing:-3.722400px;}
.ws22_c00143{word-spacing:-3.031200px;}
.ws18_c00143{word-spacing:-2.736000px;}
.ws17_c00143{word-spacing:-2.721600px;}
.ws19_c00143{word-spacing:-1.612800px;}
.ws1a_c00143{word-spacing:-1.584000px;}
.ws0_c00143{word-spacing:0.000000px;}
.ws23_c00143{word-spacing:0.122400px;}
.ws4_c00143{word-spacing:0.151200px;}
.ws3_c00143{word-spacing:0.172800px;}
.ws33_c00143{word-spacing:0.180000px;}
.ws29_c00143{word-spacing:0.187200px;}
.ws2f_c00143{word-spacing:0.194400px;}
.ws16_c00143{word-spacing:0.208800px;}
.ws30_c00143{word-spacing:0.302400px;}
.ws1c_c00143{word-spacing:0.864000px;}
.ws1b_c00143{word-spacing:0.950400px;}
.ws7_c00143{word-spacing:1.274400px;}
.wsb_c00143{word-spacing:1.620000px;}
.wsa_c00143{word-spacing:1.641600px;}
.ws27_c00143{word-spacing:2.340000px;}
.ws28_c00143{word-spacing:2.347200px;}
.ws1f_c00143{word-spacing:3.715200px;}
.ws1d_c00143{word-spacing:3.722400px;}
.ws1e_c00143{word-spacing:3.772800px;}
.ws2c_c00143{word-spacing:3.787200px;}
.ws2b_c00143{word-spacing:3.801600px;}
.ws2a_c00143{word-spacing:4.132800px;}
.ws14_c00143{word-spacing:5.932800px;}
.ws15_c00143{word-spacing:5.954400px;}
.wsc_c00143{word-spacing:6.984000px;}
.wsd_c00143{word-spacing:7.027200px;}
.ws31_c00143{word-spacing:7.416000px;}
.ws10_c00143{word-spacing:10.598400px;}
.ws21_c00143{word-spacing:13.140000px;}
.ws20_c00143{word-spacing:13.219200px;}
.ws25_c00143{word-spacing:15.681600px;}
.ws24_c00143{word-spacing:15.703200px;}
.wsf_c00143{word-spacing:18.504000px;}
.wse_c00143{word-spacing:18.568800px;}
.ws9_c00143{word-spacing:19.137600px;}
.ws8_c00143{word-spacing:19.180800px;}
.ws2d_c00143{word-spacing:21.412800px;}
.ws2e_c00143{word-spacing:21.427200px;}
.ws13_c00143{word-spacing:24.609600px;}
.ws11_c00143{word-spacing:27.511200px;}
.ws12_c00143{word-spacing:27.532800px;}
.ws26_c00143{word-spacing:28.987200px;}
.ws5_c00143{word-spacing:38.937600px;}
.ws6_c00143{word-spacing:38.966400px;}
._0_c00143{margin-left:-1.036800px;}
._1_c00143{width:1.108800px;}
.fc0_c00143{color:rgb(0,0,0);}
.fs0_c00143{font-size:72.000000px;}
.y0_c00143{bottom:0.000000px;}
.y2_c00143{bottom:46.830450px;}
.y1_c00143{bottom:67.530450px;}
.y23_c00143{bottom:150.780450px;}
.y22_c00143{bottom:171.480450px;}
.y21_c00143{bottom:192.180450px;}
.y20_c00143{bottom:212.880450px;}
.y1f_c00143{bottom:252.930450px;}
.y1e_c00143{bottom:283.980450px;}
.y1d_c00143{bottom:315.030450px;}
.y1c_c00143{bottom:346.080450px;}
.y1b_c00143{bottom:366.690450px;}
.y1a_c00143{bottom:387.390450px;}
.y19_c00143{bottom:408.090450px;}
.y18_c00143{bottom:428.790450px;}
.y17_c00143{bottom:449.490450px;}
.y16_c00143{bottom:489.540450px;}
.y15_c00143{bottom:520.590450px;}
.y14_c00143{bottom:551.640450px;}
.y13_c00143{bottom:582.690450px;}
.y12_c00143{bottom:613.740450px;}
.y11_c00143{bottom:644.790450px;}
.y10_c00143{bottom:675.840450px;}
.yf_c00143{bottom:715.890450px;}
.ye_c00143{bottom:746.940450px;}
.yd_c00143{bottom:777.990450px;}
.yc_c00143{bottom:809.040450px;}
.yb_c00143{bottom:840.090450px;}
.ya_c00143{bottom:871.140450px;}
.y9_c00143{bottom:902.190450px;}
.y8_c00143{bottom:933.240450px;}
.y7_c00143{bottom:964.290450px;}
.y6_c00143{bottom:995.340450px;}
.y5_c00143{bottom:1026.390450px;}
.y4_c00143{bottom:1066.440450px;}
.y3_c00143{bottom:1097.400450px;}
.h1_c00143{height:63.175781px;}
.h3_c00143{height:64.546875px;}
.h2_c00143{height:75.093750px;}
.h0_c00143{height:1263.000000px;}
.w1_c00143{width:892.500000px;}
.w0_c00143{width:892.830000px;}
.x0_c00143{left:0.000000px;}
.x2_c00143{left:127.620000px;}
.x3_c00143{left:148.950000px;}
.x1_c00143{left:695.880000px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.lsc_c00143{letter-spacing:-0.057600pt;}
.ls9_c00143{letter-spacing:-0.051200pt;}
.ls4_c00143{letter-spacing:-0.044800pt;}
.ls8_c00143{letter-spacing:-0.038400pt;}
.ls7_c00143{letter-spacing:-0.032000pt;}
.lsa_c00143{letter-spacing:-0.025600pt;}
.ls6_c00143{letter-spacing:-0.019200pt;}
.ls5_c00143{letter-spacing:-0.012800pt;}
.ls3_c00143{letter-spacing:0.000000pt;}
.ls1_c00143{letter-spacing:0.006400pt;}
.ls0_c00143{letter-spacing:0.012800pt;}
.ls2_c00143{letter-spacing:0.032000pt;}
.lsb_c00143{letter-spacing:0.038400pt;}
.ws32_c00143{word-spacing:-3.372800pt;}
.ws1_c00143{word-spacing:-3.334400pt;}
.ws2_c00143{word-spacing:-3.308800pt;}
.ws22_c00143{word-spacing:-2.694400pt;}
.ws18_c00143{word-spacing:-2.432000pt;}
.ws17_c00143{word-spacing:-2.419200pt;}
.ws19_c00143{word-spacing:-1.433600pt;}
.ws1a_c00143{word-spacing:-1.408000pt;}
.ws0_c00143{word-spacing:0.000000pt;}
.ws23_c00143{word-spacing:0.108800pt;}
.ws4_c00143{word-spacing:0.134400pt;}
.ws3_c00143{word-spacing:0.153600pt;}
.ws33_c00143{word-spacing:0.160000pt;}
.ws29_c00143{word-spacing:0.166400pt;}
.ws2f_c00143{word-spacing:0.172800pt;}
.ws16_c00143{word-spacing:0.185600pt;}
.ws30_c00143{word-spacing:0.268800pt;}
.ws1c_c00143{word-spacing:0.768000pt;}
.ws1b_c00143{word-spacing:0.844800pt;}
.ws7_c00143{word-spacing:1.132800pt;}
.wsb_c00143{word-spacing:1.440000pt;}
.wsa_c00143{word-spacing:1.459200pt;}
.ws27_c00143{word-spacing:2.080000pt;}
.ws28_c00143{word-spacing:2.086400pt;}
.ws1f_c00143{word-spacing:3.302400pt;}
.ws1d_c00143{word-spacing:3.308800pt;}
.ws1e_c00143{word-spacing:3.353600pt;}
.ws2c_c00143{word-spacing:3.366400pt;}
.ws2b_c00143{word-spacing:3.379200pt;}
.ws2a_c00143{word-spacing:3.673600pt;}
.ws14_c00143{word-spacing:5.273600pt;}
.ws15_c00143{word-spacing:5.292800pt;}
.wsc_c00143{word-spacing:6.208000pt;}
.wsd_c00143{word-spacing:6.246400pt;}
.ws31_c00143{word-spacing:6.592000pt;}
.ws10_c00143{word-spacing:9.420800pt;}
.ws21_c00143{word-spacing:11.680000pt;}
.ws20_c00143{word-spacing:11.750400pt;}
.ws25_c00143{word-spacing:13.939200pt;}
.ws24_c00143{word-spacing:13.958400pt;}
.wsf_c00143{word-spacing:16.448000pt;}
.wse_c00143{word-spacing:16.505600pt;}
.ws9_c00143{word-spacing:17.011200pt;}
.ws8_c00143{word-spacing:17.049600pt;}
.ws2d_c00143{word-spacing:19.033600pt;}
.ws2e_c00143{word-spacing:19.046400pt;}
.ws13_c00143{word-spacing:21.875200pt;}
.ws11_c00143{word-spacing:24.454400pt;}
.ws12_c00143{word-spacing:24.473600pt;}
.ws26_c00143{word-spacing:25.766400pt;}
.ws5_c00143{word-spacing:34.611200pt;}
.ws6_c00143{word-spacing:34.636800pt;}
._0_c00143{margin-left:-0.921600pt;}
._1_c00143{width:0.985600pt;}
.fs0_c00143{font-size:64.000000pt;}
.y0_c00143{bottom:0.000000pt;}
.y2_c00143{bottom:41.627067pt;}
.y1_c00143{bottom:60.027067pt;}
.y23_c00143{bottom:134.027067pt;}
.y22_c00143{bottom:152.427067pt;}
.y21_c00143{bottom:170.827067pt;}
.y20_c00143{bottom:189.227067pt;}
.y1f_c00143{bottom:224.827067pt;}
.y1e_c00143{bottom:252.427067pt;}
.y1d_c00143{bottom:280.027067pt;}
.y1c_c00143{bottom:307.627067pt;}
.y1b_c00143{bottom:325.947067pt;}
.y1a_c00143{bottom:344.347067pt;}
.y19_c00143{bottom:362.747067pt;}
.y18_c00143{bottom:381.147067pt;}
.y17_c00143{bottom:399.547067pt;}
.y16_c00143{bottom:435.147067pt;}
.y15_c00143{bottom:462.747067pt;}
.y14_c00143{bottom:490.347067pt;}
.y13_c00143{bottom:517.947067pt;}
.y12_c00143{bottom:545.547067pt;}
.y11_c00143{bottom:573.147067pt;}
.y10_c00143{bottom:600.747067pt;}
.yf_c00143{bottom:636.347067pt;}
.ye_c00143{bottom:663.947067pt;}
.yd_c00143{bottom:691.547067pt;}
.yc_c00143{bottom:719.147067pt;}
.yb_c00143{bottom:746.747067pt;}
.ya_c00143{bottom:774.347067pt;}
.y9_c00143{bottom:801.947067pt;}
.y8_c00143{bottom:829.547067pt;}
.y7_c00143{bottom:857.147067pt;}
.y6_c00143{bottom:884.747067pt;}
.y5_c00143{bottom:912.347067pt;}
.y4_c00143{bottom:947.947067pt;}
.y3_c00143{bottom:975.467067pt;}
.h1_c00143{height:56.156250pt;}
.h3_c00143{height:57.375000pt;}
.h2_c00143{height:66.750000pt;}
.h0_c00143{height:1122.666667pt;}
.w1_c00143{width:793.333333pt;}
.w0_c00143{width:793.626667pt;}
.x0_c00143{left:0.000000pt;}
.x2_c00143{left:113.440000pt;}
.x3_c00143{left:132.400000pt;}
.x1_c00143{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4281bedd143d11b81549d561.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.093262;font-style:normal;font-weight:normal;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_3f05bd1b678620491ed1bdd3.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:1.106934;font-style:normal;font-weight:normal;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_bbe8637f128ee0c63f71548a.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00144{letter-spacing:-0.086400px;}
.ls8_c00144{letter-spacing:-0.057600px;}
.lsb_c00144{letter-spacing:-0.050400px;}
.ls7_c00144{letter-spacing:-0.043200px;}
.ls2_c00144{letter-spacing:-0.036000px;}
.ls3_c00144{letter-spacing:-0.028800px;}
.ls6_c00144{letter-spacing:-0.021600px;}
.ls5_c00144{letter-spacing:-0.014400px;}
.ls4_c00144{letter-spacing:-0.007200px;}
.ls1_c00144{letter-spacing:0.000000px;}
.lsa_c00144{letter-spacing:0.014400px;}
.ls0_c00144{letter-spacing:0.144000px;}
.lsc_c00144{letter-spacing:843.998400px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00144{word-spacing:-3.405600px;}
.ws8_c00144{word-spacing:-2.080800px;}
.ws7_c00144{word-spacing:-1.980000px;}
.ws9_c00144{word-spacing:-1.958400px;}
.ws21_c00144{word-spacing:-1.238400px;}
.ws15_c00144{word-spacing:-0.525600px;}
.ws14_c00144{word-spacing:-0.446400px;}
.ws0_c00144{word-spacing:0.000000px;}
.ws13_c00144{word-spacing:0.144000px;}
.ws4_c00144{word-spacing:0.194400px;}
.ws3_c00144{word-spacing:0.252000px;}
.ws12_c00144{word-spacing:1.238400px;}
.ws11_c00144{word-spacing:1.332000px;}
.ws1a_c00144{word-spacing:1.497600px;}
.ws1b_c00144{word-spacing:1.634400px;}
.ws1e_c00144{word-spacing:5.205600px;}
.ws1d_c00144{word-spacing:5.234400px;}
.ws1c_c00144{word-spacing:5.241600px;}
.ws16_c00144{word-spacing:9.554400px;}
.ws17_c00144{word-spacing:9.597600px;}
.wsd_c00144{word-spacing:9.612000px;}
.wsc_c00144{word-spacing:9.633600px;}
.wsf_c00144{word-spacing:10.872000px;}
.wse_c00144{word-spacing:11.001600px;}
.ws10_c00144{word-spacing:11.044800px;}
.ws1f_c00144{word-spacing:13.132800px;}
.ws20_c00144{word-spacing:13.168800px;}
.ws19_c00144{word-spacing:15.285600px;}
.ws18_c00144{word-spacing:15.314400px;}
.ws2_c00144{word-spacing:18.907200px;}
.wsa_c00144{word-spacing:24.264000px;}
.wsb_c00144{word-spacing:24.307200px;}
.ws5_c00144{word-spacing:28.598400px;}
.ws6_c00144{word-spacing:28.612800px;}
.fc0_c00144{color:rgb(0,0,0);}
.fs0_c00144{font-size:72.000000px;}
.y0_c00144{bottom:0.000000px;}
.y2_c00144{bottom:46.830450px;}
.y1_c00144{bottom:67.530450px;}
.y18_c00144{bottom:501.240450px;}
.y17_c00144{bottom:541.290450px;}
.y16_c00144{bottom:572.340450px;}
.y15_c00144{bottom:603.390450px;}
.y14_c00144{bottom:634.440450px;}
.y13_c00144{bottom:665.490450px;}
.y12_c00144{bottom:696.540450px;}
.y11_c00144{bottom:727.590450px;}
.y10_c00144{bottom:758.640450px;}
.yf_c00144{bottom:779.340450px;}
.ye_c00144{bottom:800.040450px;}
.yd_c00144{bottom:820.740450px;}
.yc_c00144{bottom:841.440450px;}
.yb_c00144{bottom:862.140450px;}
.ya_c00144{bottom:882.840450px;}
.y9_c00144{bottom:903.540450px;}
.y8_c00144{bottom:943.590450px;}
.y7_c00144{bottom:974.640450px;}
.y6_c00144{bottom:1014.690450px;}
.y5_c00144{bottom:1045.740450px;}
.y4_c00144{bottom:1076.790450px;}
.y3_c00144{bottom:1097.490450px;}
.h1_c00144{height:63.175781px;}
.h2_c00144{height:64.546875px;}
.h3_c00144{height:75.093750px;}
.h0_c00144{height:1263.000000px;}
.w1_c00144{width:892.500000px;}
.w0_c00144{width:892.830000px;}
.x0_c00144{left:0.000000px;}
.x2_c00144{left:170.100000px;}
.x3_c00144{left:191.430000px;}
.x1_c00144{left:738.360000px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls9_c00144{letter-spacing:-0.076800pt;}
.ls8_c00144{letter-spacing:-0.051200pt;}
.lsb_c00144{letter-spacing:-0.044800pt;}
.ls7_c00144{letter-spacing:-0.038400pt;}
.ls2_c00144{letter-spacing:-0.032000pt;}
.ls3_c00144{letter-spacing:-0.025600pt;}
.ls6_c00144{letter-spacing:-0.019200pt;}
.ls5_c00144{letter-spacing:-0.012800pt;}
.ls4_c00144{letter-spacing:-0.006400pt;}
.ls1_c00144{letter-spacing:0.000000pt;}
.lsa_c00144{letter-spacing:0.012800pt;}
.ls0_c00144{letter-spacing:0.128000pt;}
.lsc_c00144{letter-spacing:750.220800pt;}
.ws1_c00144{word-spacing:-3.027200pt;}
.ws8_c00144{word-spacing:-1.849600pt;}
.ws7_c00144{word-spacing:-1.760000pt;}
.ws9_c00144{word-spacing:-1.740800pt;}
.ws21_c00144{word-spacing:-1.100800pt;}
.ws15_c00144{word-spacing:-0.467200pt;}
.ws14_c00144{word-spacing:-0.396800pt;}
.ws0_c00144{word-spacing:0.000000pt;}
.ws13_c00144{word-spacing:0.128000pt;}
.ws4_c00144{word-spacing:0.172800pt;}
.ws3_c00144{word-spacing:0.224000pt;}
.ws12_c00144{word-spacing:1.100800pt;}
.ws11_c00144{word-spacing:1.184000pt;}
.ws1a_c00144{word-spacing:1.331200pt;}
.ws1b_c00144{word-spacing:1.452800pt;}
.ws1e_c00144{word-spacing:4.627200pt;}
.ws1d_c00144{word-spacing:4.652800pt;}
.ws1c_c00144{word-spacing:4.659200pt;}
.ws16_c00144{word-spacing:8.492800pt;}
.ws17_c00144{word-spacing:8.531200pt;}
.wsd_c00144{word-spacing:8.544000pt;}
.wsc_c00144{word-spacing:8.563200pt;}
.wsf_c00144{word-spacing:9.664000pt;}
.wse_c00144{word-spacing:9.779200pt;}
.ws10_c00144{word-spacing:9.817600pt;}
.ws1f_c00144{word-spacing:11.673600pt;}
.ws20_c00144{word-spacing:11.705600pt;}
.ws19_c00144{word-spacing:13.587200pt;}
.ws18_c00144{word-spacing:13.612800pt;}
.ws2_c00144{word-spacing:16.806400pt;}
.wsa_c00144{word-spacing:21.568000pt;}
.wsb_c00144{word-spacing:21.606400pt;}
.ws5_c00144{word-spacing:25.420800pt;}
.ws6_c00144{word-spacing:25.433600pt;}
.fs0_c00144{font-size:64.000000pt;}
.y0_c00144{bottom:0.000000pt;}
.y2_c00144{bottom:41.627067pt;}
.y1_c00144{bottom:60.027067pt;}
.y18_c00144{bottom:445.547067pt;}
.y17_c00144{bottom:481.147067pt;}
.y16_c00144{bottom:508.747067pt;}
.y15_c00144{bottom:536.347067pt;}
.y14_c00144{bottom:563.947067pt;}
.y13_c00144{bottom:591.547067pt;}
.y12_c00144{bottom:619.147067pt;}
.y11_c00144{bottom:646.747067pt;}
.y10_c00144{bottom:674.347067pt;}
.yf_c00144{bottom:692.747067pt;}
.ye_c00144{bottom:711.147067pt;}
.yd_c00144{bottom:729.547067pt;}
.yc_c00144{bottom:747.947067pt;}
.yb_c00144{bottom:766.347067pt;}
.ya_c00144{bottom:784.747067pt;}
.y9_c00144{bottom:803.147067pt;}
.y8_c00144{bottom:838.747067pt;}
.y7_c00144{bottom:866.347067pt;}
.y6_c00144{bottom:901.947067pt;}
.y5_c00144{bottom:929.547067pt;}
.y4_c00144{bottom:957.147067pt;}
.y3_c00144{bottom:975.547067pt;}
.h1_c00144{height:56.156250pt;}
.h2_c00144{height:57.375000pt;}
.h3_c00144{height:66.750000pt;}
.h0_c00144{height:1122.666667pt;}
.w1_c00144{width:793.333333pt;}
.w0_c00144{width:793.626667pt;}
.x0_c00144{left:0.000000pt;}
.x2_c00144{left:151.200000pt;}
.x3_c00144{left:170.160000pt;}
.x1_c00144{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0857182981ebe5a4d597ccc9.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00145{vertical-align:0.000000px;}
.ls0_c00145{letter-spacing:0.000000px;}
.ls1_c00145{letter-spacing:843.998400px;}
.sc__c00145{text-shadow:none;}
.sc0_c00145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00145{-webkit-text-stroke:0px transparent;}
.sc0_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00145{word-spacing:0.000000px;}
.fc0_c00145{color:rgb(0,0,0);}
.fs0_c00145{font-size:72.000000px;}
.y0_c00145{bottom:0.000000px;}
.y2_c00145{bottom:46.830450px;}
.y1_c00145{bottom:67.530450px;}
.y3_c00145{bottom:1097.490450px;}
.h1_c00145{height:63.175781px;}
.h2_c00145{height:64.546875px;}
.h0_c00145{height:1263.000000px;}
.w1_c00145{width:892.500000px;}
.w0_c00145{width:892.830000px;}
.x0_c00145{left:0.000000px;}
.x2_c00145{left:127.620000px;}
.x1_c00145{left:695.880000px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls0_c00145{letter-spacing:0.000000pt;}
.ls1_c00145{letter-spacing:750.220800pt;}
.ws0_c00145{word-spacing:0.000000pt;}
.fs0_c00145{font-size:64.000000pt;}
.y0_c00145{bottom:0.000000pt;}
.y2_c00145{bottom:41.627067pt;}
.y1_c00145{bottom:60.027067pt;}
.y3_c00145{bottom:975.547067pt;}
.h1_c00145{height:56.156250pt;}
.h2_c00145{height:57.375000pt;}
.h0_c00145{height:1122.666667pt;}
.w1_c00145{width:793.333333pt;}
.w0_c00145{width:793.626667pt;}
.x0_c00145{left:0.000000pt;}
.x2_c00145{left:113.440000pt;}
.x1_c00145{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_767d5f2fc8150c09f1eeb346.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.093262;font-style:normal;font-weight:normal;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_715ae8060db9c3ac0f004f52.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00146;src:url('chunks/assets/font_610584de82517ad2ea203635.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.lsc_c00146{letter-spacing:-0.064800px;}
.ls6_c00146{letter-spacing:-0.057600px;}
.lsa_c00146{letter-spacing:-0.050400px;}
.ls8_c00146{letter-spacing:-0.043200px;}
.ls2_c00146{letter-spacing:-0.036000px;}
.ls3_c00146{letter-spacing:-0.028800px;}
.ls9_c00146{letter-spacing:-0.021600px;}
.ls5_c00146{letter-spacing:-0.014400px;}
.ls4_c00146{letter-spacing:-0.007200px;}
.ls0_c00146{letter-spacing:0.000000px;}
.lsb_c00146{letter-spacing:0.014400px;}
.ls7_c00146{letter-spacing:0.028800px;}
.ls1_c00146{letter-spacing:0.067104px;}
.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;}
}
.wsb_c00146{word-spacing:-1.620000px;}
.ws12_c00146{word-spacing:-1.598400px;}
.ws10_c00146{word-spacing:-1.591200px;}
.wsa_c00146{word-spacing:-1.555200px;}
.wsf_c00146{word-spacing:-1.533600px;}
.ws11_c00146{word-spacing:-1.483200px;}
.wse_c00146{word-spacing:-1.252800px;}
.wsd_c00146{word-spacing:-1.238400px;}
.ws16_c00146{word-spacing:-0.943200px;}
.ws15_c00146{word-spacing:-0.871200px;}
.ws33_c00146{word-spacing:-0.151200px;}
.ws2c_c00146{word-spacing:-0.144000px;}
.ws0_c00146{word-spacing:0.000000px;}
.wsc_c00146{word-spacing:0.129600px;}
.ws19_c00146{word-spacing:0.144000px;}
.ws2_c00146{word-spacing:0.194400px;}
.ws27_c00146{word-spacing:1.260000px;}
.ws26_c00146{word-spacing:1.281600px;}
.ws8_c00146{word-spacing:2.707200px;}
.ws9_c00146{word-spacing:2.736000px;}
.ws22_c00146{word-spacing:3.060000px;}
.ws23_c00146{word-spacing:3.081600px;}
.ws1c_c00146{word-spacing:3.088800px;}
.ws1a_c00146{word-spacing:4.888800px;}
.ws1b_c00146{word-spacing:4.932000px;}
.ws2f_c00146{word-spacing:5.594400px;}
.ws30_c00146{word-spacing:5.601600px;}
.ws25_c00146{word-spacing:5.947200px;}
.ws24_c00146{word-spacing:5.954400px;}
.ws29_c00146{word-spacing:6.343200px;}
.ws1f_c00146{word-spacing:7.034400px;}
.ws13_c00146{word-spacing:8.128800px;}
.ws14_c00146{word-spacing:8.136000px;}
.ws1e_c00146{word-spacing:8.481600px;}
.ws1d_c00146{word-spacing:8.568000px;}
.ws4_c00146{word-spacing:9.180000px;}
.ws3_c00146{word-spacing:9.187200px;}
.ws32_c00146{word-spacing:9.201600px;}
.ws31_c00146{word-spacing:9.280800px;}
.ws1_c00146{word-spacing:9.746856px;}
.ws18_c00146{word-spacing:11.354400px;}
.ws17_c00146{word-spacing:11.368800px;}
.ws2e_c00146{word-spacing:14.565600px;}
.ws2d_c00146{word-spacing:14.688000px;}
.ws28_c00146{word-spacing:18.561600px;}
.ws2b_c00146{word-spacing:22.500000px;}
.ws2a_c00146{word-spacing:22.521600px;}
.ws6_c00146{word-spacing:53.805600px;}
.ws5_c00146{word-spacing:53.820000px;}
.ws7_c00146{word-spacing:66.772800px;}
.ws20_c00146{word-spacing:69.307200px;}
.ws21_c00146{word-spacing:69.321600px;}
._0_c00146{width:1.281600px;}
.fc0_c00146{color:rgb(0,0,0);}
.fs0_c00146{font-size:72.000000px;}
.fs1_c00146{font-size:83.880000px;}
.y0_c00146{bottom:0.000000px;}
.y2_c00146{bottom:46.830450px;}
.y1_c00146{bottom:67.530450px;}
.y24_c00146{bottom:145.920450px;}
.y23_c00146{bottom:176.970450px;}
.y22_c00146{bottom:208.020450px;}
.y21_c00146{bottom:239.070450px;}
.y20_c00146{bottom:270.120450px;}
.y1f_c00146{bottom:301.170450px;}
.y1e_c00146{bottom:332.220450px;}
.y1d_c00146{bottom:363.270450px;}
.y1c_c00146{bottom:394.320450px;}
.y1b_c00146{bottom:425.370450px;}
.y1a_c00146{bottom:456.420450px;}
.y19_c00146{bottom:487.470450px;}
.y18_c00146{bottom:518.520450px;}
.y17_c00146{bottom:549.570450px;}
.y16_c00146{bottom:580.620450px;}
.y15_c00146{bottom:611.670450px;}
.y14_c00146{bottom:632.370450px;}
.y13_c00146{bottom:653.070450px;}
.y12_c00146{bottom:673.770450px;}
.y11_c00146{bottom:694.470450px;}
.y10_c00146{bottom:715.170450px;}
.yf_c00146{bottom:735.870450px;}
.ye_c00146{bottom:756.570450px;}
.yd_c00146{bottom:777.270450px;}
.yc_c00146{bottom:797.970450px;}
.yb_c00146{bottom:838.020450px;}
.ya_c00146{bottom:869.070450px;}
.y9_c00146{bottom:900.120450px;}
.y8_c00146{bottom:931.170450px;}
.y7_c00146{bottom:962.220450px;}
.y6_c00146{bottom:993.270450px;}
.y5_c00146{bottom:1024.320450px;}
.y4_c00146{bottom:1064.370450px;}
.y3_c00146{bottom:1094.520450px;}
.h1_c00146{height:63.175781px;}
.h3_c00146{height:64.546875px;}
.h2_c00146{height:87.484219px;}
.h0_c00146{height:1263.000000px;}
.w1_c00146{width:892.500000px;}
.w0_c00146{width:892.830000px;}
.x0_c00146{left:0.000000px;}
.x2_c00146{left:170.100000px;}
.x4_c00146{left:191.430000px;}
.x3_c00146{left:251.100000px;}
.x1_c00146{left:738.360000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.lsc_c00146{letter-spacing:-0.057600pt;}
.ls6_c00146{letter-spacing:-0.051200pt;}
.lsa_c00146{letter-spacing:-0.044800pt;}
.ls8_c00146{letter-spacing:-0.038400pt;}
.ls2_c00146{letter-spacing:-0.032000pt;}
.ls3_c00146{letter-spacing:-0.025600pt;}
.ls9_c00146{letter-spacing:-0.019200pt;}
.ls5_c00146{letter-spacing:-0.012800pt;}
.ls4_c00146{letter-spacing:-0.006400pt;}
.ls0_c00146{letter-spacing:0.000000pt;}
.lsb_c00146{letter-spacing:0.012800pt;}
.ls7_c00146{letter-spacing:0.025600pt;}
.ls1_c00146{letter-spacing:0.059648pt;}
.wsb_c00146{word-spacing:-1.440000pt;}
.ws12_c00146{word-spacing:-1.420800pt;}
.ws10_c00146{word-spacing:-1.414400pt;}
.wsa_c00146{word-spacing:-1.382400pt;}
.wsf_c00146{word-spacing:-1.363200pt;}
.ws11_c00146{word-spacing:-1.318400pt;}
.wse_c00146{word-spacing:-1.113600pt;}
.wsd_c00146{word-spacing:-1.100800pt;}
.ws16_c00146{word-spacing:-0.838400pt;}
.ws15_c00146{word-spacing:-0.774400pt;}
.ws33_c00146{word-spacing:-0.134400pt;}
.ws2c_c00146{word-spacing:-0.128000pt;}
.ws0_c00146{word-spacing:0.000000pt;}
.wsc_c00146{word-spacing:0.115200pt;}
.ws19_c00146{word-spacing:0.128000pt;}
.ws2_c00146{word-spacing:0.172800pt;}
.ws27_c00146{word-spacing:1.120000pt;}
.ws26_c00146{word-spacing:1.139200pt;}
.ws8_c00146{word-spacing:2.406400pt;}
.ws9_c00146{word-spacing:2.432000pt;}
.ws22_c00146{word-spacing:2.720000pt;}
.ws23_c00146{word-spacing:2.739200pt;}
.ws1c_c00146{word-spacing:2.745600pt;}
.ws1a_c00146{word-spacing:4.345600pt;}
.ws1b_c00146{word-spacing:4.384000pt;}
.ws2f_c00146{word-spacing:4.972800pt;}
.ws30_c00146{word-spacing:4.979200pt;}
.ws25_c00146{word-spacing:5.286400pt;}
.ws24_c00146{word-spacing:5.292800pt;}
.ws29_c00146{word-spacing:5.638400pt;}
.ws1f_c00146{word-spacing:6.252800pt;}
.ws13_c00146{word-spacing:7.225600pt;}
.ws14_c00146{word-spacing:7.232000pt;}
.ws1e_c00146{word-spacing:7.539200pt;}
.ws1d_c00146{word-spacing:7.616000pt;}
.ws4_c00146{word-spacing:8.160000pt;}
.ws3_c00146{word-spacing:8.166400pt;}
.ws32_c00146{word-spacing:8.179200pt;}
.ws31_c00146{word-spacing:8.249600pt;}
.ws1_c00146{word-spacing:8.663872pt;}
.ws18_c00146{word-spacing:10.092800pt;}
.ws17_c00146{word-spacing:10.105600pt;}
.ws2e_c00146{word-spacing:12.947200pt;}
.ws2d_c00146{word-spacing:13.056000pt;}
.ws28_c00146{word-spacing:16.499200pt;}
.ws2b_c00146{word-spacing:20.000000pt;}
.ws2a_c00146{word-spacing:20.019200pt;}
.ws6_c00146{word-spacing:47.827200pt;}
.ws5_c00146{word-spacing:47.840000pt;}
.ws7_c00146{word-spacing:59.353600pt;}
.ws20_c00146{word-spacing:61.606400pt;}
.ws21_c00146{word-spacing:61.619200pt;}
._0_c00146{width:1.139200pt;}
.fs0_c00146{font-size:64.000000pt;}
.fs1_c00146{font-size:74.560000pt;}
.y0_c00146{bottom:0.000000pt;}
.y2_c00146{bottom:41.627067pt;}
.y1_c00146{bottom:60.027067pt;}
.y24_c00146{bottom:129.707067pt;}
.y23_c00146{bottom:157.307067pt;}
.y22_c00146{bottom:184.907067pt;}
.y21_c00146{bottom:212.507067pt;}
.y20_c00146{bottom:240.107067pt;}
.y1f_c00146{bottom:267.707067pt;}
.y1e_c00146{bottom:295.307067pt;}
.y1d_c00146{bottom:322.907067pt;}
.y1c_c00146{bottom:350.507067pt;}
.y1b_c00146{bottom:378.107067pt;}
.y1a_c00146{bottom:405.707067pt;}
.y19_c00146{bottom:433.307067pt;}
.y18_c00146{bottom:460.907067pt;}
.y17_c00146{bottom:488.507067pt;}
.y16_c00146{bottom:516.107067pt;}
.y15_c00146{bottom:543.707067pt;}
.y14_c00146{bottom:562.107067pt;}
.y13_c00146{bottom:580.507067pt;}
.y12_c00146{bottom:598.907067pt;}
.y11_c00146{bottom:617.307067pt;}
.y10_c00146{bottom:635.707067pt;}
.yf_c00146{bottom:654.107067pt;}
.ye_c00146{bottom:672.507067pt;}
.yd_c00146{bottom:690.907067pt;}
.yc_c00146{bottom:709.307067pt;}
.yb_c00146{bottom:744.907067pt;}
.ya_c00146{bottom:772.507067pt;}
.y9_c00146{bottom:800.107067pt;}
.y8_c00146{bottom:827.707067pt;}
.y7_c00146{bottom:855.307067pt;}
.y6_c00146{bottom:882.907067pt;}
.y5_c00146{bottom:910.507067pt;}
.y4_c00146{bottom:946.107067pt;}
.y3_c00146{bottom:972.907067pt;}
.h1_c00146{height:56.156250pt;}
.h3_c00146{height:57.375000pt;}
.h2_c00146{height:77.763750pt;}
.h0_c00146{height:1122.666667pt;}
.w1_c00146{width:793.333333pt;}
.w0_c00146{width:793.626667pt;}
.x0_c00146{left:0.000000pt;}
.x2_c00146{left:151.200000pt;}
.x4_c00146{left:170.160000pt;}
.x3_c00146{left:223.200000pt;}
.x1_c00146{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1a29c871cf9bef179bbdeda6.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.093262;font-style:normal;font-weight:normal;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_c7cd6e71b60a6fdf1679688b.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.ls9_c00147{letter-spacing:-0.072000px;}
.lsb_c00147{letter-spacing:-0.064800px;}
.ls5_c00147{letter-spacing:-0.057600px;}
.ls4_c00147{letter-spacing:-0.050400px;}
.ls6_c00147{letter-spacing:-0.043200px;}
.ls8_c00147{letter-spacing:-0.036000px;}
.ls3_c00147{letter-spacing:-0.028800px;}
.ls2_c00147{letter-spacing:-0.021600px;}
.lsa_c00147{letter-spacing:-0.014400px;}
.ls7_c00147{letter-spacing:-0.007200px;}
.ls1_c00147{letter-spacing:0.000000px;}
.ls0_c00147{letter-spacing:0.007200px;}
.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;}
}
.ws21_c00147{word-spacing:-2.368800px;}
.ws22_c00147{word-spacing:-2.318400px;}
.ws17_c00147{word-spacing:-1.994400px;}
.ws18_c00147{word-spacing:-1.900800px;}
.wsd_c00147{word-spacing:-0.021600px;}
.ws0_c00147{word-spacing:0.000000px;}
.ws8_c00147{word-spacing:0.072000px;}
.ws2a_c00147{word-spacing:0.122400px;}
.ws1c_c00147{word-spacing:0.165600px;}
.ws25_c00147{word-spacing:0.172800px;}
.ws7_c00147{word-spacing:0.201600px;}
.ws1b_c00147{word-spacing:0.266400px;}
.ws26_c00147{word-spacing:0.576000px;}
.ws1_c00147{word-spacing:3.060000px;}
.ws2_c00147{word-spacing:3.088800px;}
.ws30_c00147{word-spacing:4.068000px;}
.ws2f_c00147{word-spacing:4.154400px;}
.ws23_c00147{word-spacing:5.198400px;}
.ws28_c00147{word-spacing:5.212800px;}
.ws27_c00147{word-spacing:5.234400px;}
.ws24_c00147{word-spacing:5.256000px;}
.ws29_c00147{word-spacing:5.565600px;}
.ws15_c00147{word-spacing:5.580000px;}
.ws16_c00147{word-spacing:5.608800px;}
.wsa_c00147{word-spacing:5.868000px;}
.ws1e_c00147{word-spacing:5.954400px;}
.ws9_c00147{word-spacing:5.968800px;}
.ws1a_c00147{word-spacing:6.667200px;}
.ws19_c00147{word-spacing:6.753600px;}
.wse_c00147{word-spacing:7.344000px;}
.ws2c_c00147{word-spacing:7.387200px;}
.ws2b_c00147{word-spacing:7.401600px;}
.wsf_c00147{word-spacing:7.430400px;}
.ws10_c00147{word-spacing:9.208800px;}
.ws3_c00147{word-spacing:11.347200px;}
.ws4_c00147{word-spacing:11.368800px;}
.ws1d_c00147{word-spacing:12.441600px;}
.wsb_c00147{word-spacing:12.794400px;}
.wsc_c00147{word-spacing:12.801600px;}
.ws5_c00147{word-spacing:13.521600px;}
.ws6_c00147{word-spacing:13.536000px;}
.ws2e_c00147{word-spacing:21.420000px;}
.ws2d_c00147{word-spacing:21.434400px;}
.ws11_c00147{word-spacing:22.147200px;}
.ws31_c00147{word-spacing:26.834400px;}
.ws1f_c00147{word-spacing:33.271200px;}
.ws20_c00147{word-spacing:33.393600px;}
.ws12_c00147{word-spacing:41.932800px;}
.ws14_c00147{word-spacing:42.285600px;}
.ws13_c00147{word-spacing:42.307200px;}
._0_c00147{width:1.296000px;}
.fc0_c00147{color:rgb(0,0,0);}
.fs0_c00147{font-size:72.000000px;}
.y0_c00147{bottom:0.000000px;}
.y2_c00147{bottom:46.830450px;}
.y1_c00147{bottom:67.530450px;}
.y22_c00147{bottom:192.180450px;}
.y21_c00147{bottom:223.230450px;}
.y20_c00147{bottom:254.280450px;}
.y1f_c00147{bottom:285.330450px;}
.y1e_c00147{bottom:325.380450px;}
.y1d_c00147{bottom:356.430450px;}
.y1c_c00147{bottom:387.390450px;}
.y1b_c00147{bottom:408.090450px;}
.y1a_c00147{bottom:428.790450px;}
.y19_c00147{bottom:449.490450px;}
.y18_c00147{bottom:470.190450px;}
.y17_c00147{bottom:490.890450px;}
.y16_c00147{bottom:511.590450px;}
.y15_c00147{bottom:532.290450px;}
.y14_c00147{bottom:552.990450px;}
.y13_c00147{bottom:573.690450px;}
.y12_c00147{bottom:613.740450px;}
.y11_c00147{bottom:644.790450px;}
.y10_c00147{bottom:675.840450px;}
.yf_c00147{bottom:706.890450px;}
.ye_c00147{bottom:737.940450px;}
.yd_c00147{bottom:768.990450px;}
.yc_c00147{bottom:800.040450px;}
.yb_c00147{bottom:831.090450px;}
.ya_c00147{bottom:862.140450px;}
.y9_c00147{bottom:902.190450px;}
.y8_c00147{bottom:933.240450px;}
.y7_c00147{bottom:964.290450px;}
.y6_c00147{bottom:1004.340450px;}
.y5_c00147{bottom:1035.390450px;}
.y4_c00147{bottom:1066.440450px;}
.y3_c00147{bottom:1097.490450px;}
.h1_c00147{height:63.175781px;}
.h2_c00147{height:64.546875px;}
.h0_c00147{height:1263.000000px;}
.w1_c00147{width:892.500000px;}
.w0_c00147{width:892.830000px;}
.x0_c00147{left:0.000000px;}
.x2_c00147{left:127.620000px;}
.x3_c00147{left:148.950000px;}
.x1_c00147{left:695.880000px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls9_c00147{letter-spacing:-0.064000pt;}
.lsb_c00147{letter-spacing:-0.057600pt;}
.ls5_c00147{letter-spacing:-0.051200pt;}
.ls4_c00147{letter-spacing:-0.044800pt;}
.ls6_c00147{letter-spacing:-0.038400pt;}
.ls8_c00147{letter-spacing:-0.032000pt;}
.ls3_c00147{letter-spacing:-0.025600pt;}
.ls2_c00147{letter-spacing:-0.019200pt;}
.lsa_c00147{letter-spacing:-0.012800pt;}
.ls7_c00147{letter-spacing:-0.006400pt;}
.ls1_c00147{letter-spacing:0.000000pt;}
.ls0_c00147{letter-spacing:0.006400pt;}
.ws21_c00147{word-spacing:-2.105600pt;}
.ws22_c00147{word-spacing:-2.060800pt;}
.ws17_c00147{word-spacing:-1.772800pt;}
.ws18_c00147{word-spacing:-1.689600pt;}
.wsd_c00147{word-spacing:-0.019200pt;}
.ws0_c00147{word-spacing:0.000000pt;}
.ws8_c00147{word-spacing:0.064000pt;}
.ws2a_c00147{word-spacing:0.108800pt;}
.ws1c_c00147{word-spacing:0.147200pt;}
.ws25_c00147{word-spacing:0.153600pt;}
.ws7_c00147{word-spacing:0.179200pt;}
.ws1b_c00147{word-spacing:0.236800pt;}
.ws26_c00147{word-spacing:0.512000pt;}
.ws1_c00147{word-spacing:2.720000pt;}
.ws2_c00147{word-spacing:2.745600pt;}
.ws30_c00147{word-spacing:3.616000pt;}
.ws2f_c00147{word-spacing:3.692800pt;}
.ws23_c00147{word-spacing:4.620800pt;}
.ws28_c00147{word-spacing:4.633600pt;}
.ws27_c00147{word-spacing:4.652800pt;}
.ws24_c00147{word-spacing:4.672000pt;}
.ws29_c00147{word-spacing:4.947200pt;}
.ws15_c00147{word-spacing:4.960000pt;}
.ws16_c00147{word-spacing:4.985600pt;}
.wsa_c00147{word-spacing:5.216000pt;}
.ws1e_c00147{word-spacing:5.292800pt;}
.ws9_c00147{word-spacing:5.305600pt;}
.ws1a_c00147{word-spacing:5.926400pt;}
.ws19_c00147{word-spacing:6.003200pt;}
.wse_c00147{word-spacing:6.528000pt;}
.ws2c_c00147{word-spacing:6.566400pt;}
.ws2b_c00147{word-spacing:6.579200pt;}
.wsf_c00147{word-spacing:6.604800pt;}
.ws10_c00147{word-spacing:8.185600pt;}
.ws3_c00147{word-spacing:10.086400pt;}
.ws4_c00147{word-spacing:10.105600pt;}
.ws1d_c00147{word-spacing:11.059200pt;}
.wsb_c00147{word-spacing:11.372800pt;}
.wsc_c00147{word-spacing:11.379200pt;}
.ws5_c00147{word-spacing:12.019200pt;}
.ws6_c00147{word-spacing:12.032000pt;}
.ws2e_c00147{word-spacing:19.040000pt;}
.ws2d_c00147{word-spacing:19.052800pt;}
.ws11_c00147{word-spacing:19.686400pt;}
.ws31_c00147{word-spacing:23.852800pt;}
.ws1f_c00147{word-spacing:29.574400pt;}
.ws20_c00147{word-spacing:29.683200pt;}
.ws12_c00147{word-spacing:37.273600pt;}
.ws14_c00147{word-spacing:37.587200pt;}
.ws13_c00147{word-spacing:37.606400pt;}
._0_c00147{width:1.152000pt;}
.fs0_c00147{font-size:64.000000pt;}
.y0_c00147{bottom:0.000000pt;}
.y2_c00147{bottom:41.627067pt;}
.y1_c00147{bottom:60.027067pt;}
.y22_c00147{bottom:170.827067pt;}
.y21_c00147{bottom:198.427067pt;}
.y20_c00147{bottom:226.027067pt;}
.y1f_c00147{bottom:253.627067pt;}
.y1e_c00147{bottom:289.227067pt;}
.y1d_c00147{bottom:316.827067pt;}
.y1c_c00147{bottom:344.347067pt;}
.y1b_c00147{bottom:362.747067pt;}
.y1a_c00147{bottom:381.147067pt;}
.y19_c00147{bottom:399.547067pt;}
.y18_c00147{bottom:417.947067pt;}
.y17_c00147{bottom:436.347067pt;}
.y16_c00147{bottom:454.747067pt;}
.y15_c00147{bottom:473.147067pt;}
.y14_c00147{bottom:491.547067pt;}
.y13_c00147{bottom:509.947067pt;}
.y12_c00147{bottom:545.547067pt;}
.y11_c00147{bottom:573.147067pt;}
.y10_c00147{bottom:600.747067pt;}
.yf_c00147{bottom:628.347067pt;}
.ye_c00147{bottom:655.947067pt;}
.yd_c00147{bottom:683.547067pt;}
.yc_c00147{bottom:711.147067pt;}
.yb_c00147{bottom:738.747067pt;}
.ya_c00147{bottom:766.347067pt;}
.y9_c00147{bottom:801.947067pt;}
.y8_c00147{bottom:829.547067pt;}
.y7_c00147{bottom:857.147067pt;}
.y6_c00147{bottom:892.747067pt;}
.y5_c00147{bottom:920.347067pt;}
.y4_c00147{bottom:947.947067pt;}
.y3_c00147{bottom:975.547067pt;}
.h1_c00147{height:56.156250pt;}
.h2_c00147{height:57.375000pt;}
.h0_c00147{height:1122.666667pt;}
.w1_c00147{width:793.333333pt;}
.w0_c00147{width:793.626667pt;}
.x0_c00147{left:0.000000pt;}
.x2_c00147{left:113.440000pt;}
.x3_c00147{left:132.400000pt;}
.x1_c00147{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5283835cca8909442e9f304b.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.093262;font-style:normal;font-weight:normal;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_7ea71fbb87a92f6eb4c28ea0.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.106934;font-style:normal;font-weight:normal;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_9abcd58204abf681198b289a.woff2')format("woff");}.ff3_c00148{font-family:ff3_c00148;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc_c00148{letter-spacing:-0.072000px;}
.lsb_c00148{letter-spacing:-0.064800px;}
.ls2_c00148{letter-spacing:-0.057600px;}
.ls7_c00148{letter-spacing:-0.050400px;}
.ls9_c00148{letter-spacing:-0.043200px;}
.ls5_c00148{letter-spacing:-0.036000px;}
.ls6_c00148{letter-spacing:-0.028800px;}
.ls3_c00148{letter-spacing:-0.021600px;}
.lsa_c00148{letter-spacing:-0.014400px;}
.ls8_c00148{letter-spacing:-0.007200px;}
.ls1_c00148{letter-spacing:0.000000px;}
.ls4_c00148{letter-spacing:0.014400px;}
.ls0_c00148{letter-spacing:0.144000px;}
.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;}
}
.ws13_c00148{word-spacing:-3.384000px;}
.ws10_c00148{word-spacing:-2.664000px;}
.wsf_c00148{word-spacing:-2.620800px;}
.ws8_c00148{word-spacing:-2.448000px;}
.ws7_c00148{word-spacing:-2.311200px;}
.ws19_c00148{word-spacing:-0.914400px;}
.ws18_c00148{word-spacing:-0.900000px;}
.ws17_c00148{word-spacing:-0.806400px;}
.wsb_c00148{word-spacing:-0.676800px;}
.ws9_c00148{word-spacing:-0.554400px;}
.wsa_c00148{word-spacing:-0.532800px;}
.ws0_c00148{word-spacing:0.000000px;}
.ws4_c00148{word-spacing:0.086400px;}
.ws25_c00148{word-spacing:0.158400px;}
.ws14_c00148{word-spacing:0.165600px;}
.ws1d_c00148{word-spacing:0.172800px;}
.ws24_c00148{word-spacing:0.180000px;}
.ws2e_c00148{word-spacing:1.281600px;}
.ws20_c00148{word-spacing:1.540800px;}
.ws21_c00148{word-spacing:1.641600px;}
.ws2_c00148{word-spacing:2.275200px;}
.ws3_c00148{word-spacing:2.304000px;}
.ws1_c00148{word-spacing:2.376000px;}
.ws34_c00148{word-spacing:2.952000px;}
.ws6_c00148{word-spacing:3.067200px;}
.ws5_c00148{word-spacing:3.074400px;}
.ws33_c00148{word-spacing:3.081600px;}
.ws30_c00148{word-spacing:4.464000px;}
.ws2f_c00148{word-spacing:4.528800px;}
.ws12_c00148{word-spacing:5.104800px;}
.ws32_c00148{word-spacing:5.212800px;}
.ws11_c00148{word-spacing:5.234400px;}
.ws31_c00148{word-spacing:5.248800px;}
.ws29_c00148{word-spacing:6.688800px;}
.ws28_c00148{word-spacing:6.710400px;}
.ws1c_c00148{word-spacing:7.005600px;}
.ws1b_c00148{word-spacing:7.048800px;}
.ws16_c00148{word-spacing:7.466400px;}
.ws15_c00148{word-spacing:7.473600px;}
.ws2a_c00148{word-spacing:10.202400px;}
.ws2b_c00148{word-spacing:10.303200px;}
.ws1e_c00148{word-spacing:13.464000px;}
.ws1f_c00148{word-spacing:13.543200px;}
.ws23_c00148{word-spacing:19.972800px;}
.ws22_c00148{word-spacing:19.987200px;}
.ws2c_c00148{word-spacing:20.505600px;}
.ws2d_c00148{word-spacing:20.707200px;}
.ws1a_c00148{word-spacing:23.968800px;}
.ws26_c00148{word-spacing:27.784800px;}
.ws27_c00148{word-spacing:27.799200px;}
.wse_c00148{word-spacing:32.241600px;}
.wsc_c00148{word-spacing:36.208800px;}
.wsd_c00148{word-spacing:36.216000px;}
._0_c00148{width:1.144800px;}
.fc0_c00148{color:rgb(0,0,0);}
.fs0_c00148{font-size:72.000000px;}
.y0_c00148{bottom:0.000000px;}
.y2_c00148{bottom:46.830450px;}
.y1_c00148{bottom:67.530450px;}
.y22_c00148{bottom:180.480450px;}
.y21_c00148{bottom:211.530450px;}
.y20_c00148{bottom:242.580450px;}
.y1f_c00148{bottom:273.630450px;}
.y1e_c00148{bottom:304.680450px;}
.y1d_c00148{bottom:335.730450px;}
.y1c_c00148{bottom:366.690450px;}
.y1b_c00148{bottom:397.740450px;}
.y1a_c00148{bottom:428.790450px;}
.y19_c00148{bottom:449.490450px;}
.y18_c00148{bottom:470.190450px;}
.y17_c00148{bottom:490.890450px;}
.y16_c00148{bottom:511.590450px;}
.y15_c00148{bottom:532.290450px;}
.y14_c00148{bottom:552.990450px;}
.y13_c00148{bottom:573.690450px;}
.y12_c00148{bottom:613.740450px;}
.y11_c00148{bottom:644.790450px;}
.y10_c00148{bottom:675.840450px;}
.yf_c00148{bottom:706.890450px;}
.ye_c00148{bottom:737.940450px;}
.yd_c00148{bottom:777.990450px;}
.yc_c00148{bottom:809.040450px;}
.yb_c00148{bottom:840.090450px;}
.ya_c00148{bottom:871.140450px;}
.y9_c00148{bottom:902.190450px;}
.y8_c00148{bottom:933.240450px;}
.y7_c00148{bottom:964.290450px;}
.y6_c00148{bottom:995.340450px;}
.y5_c00148{bottom:1026.390450px;}
.y4_c00148{bottom:1066.440450px;}
.y3_c00148{bottom:1097.490450px;}
.h1_c00148{height:63.175781px;}
.h3_c00148{height:64.546875px;}
.h2_c00148{height:75.093750px;}
.h0_c00148{height:1263.000000px;}
.w1_c00148{width:892.500000px;}
.w0_c00148{width:892.830000px;}
.x0_c00148{left:0.000000px;}
.x2_c00148{left:170.100000px;}
.x3_c00148{left:191.430000px;}
.x1_c00148{left:738.360000px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.lsc_c00148{letter-spacing:-0.064000pt;}
.lsb_c00148{letter-spacing:-0.057600pt;}
.ls2_c00148{letter-spacing:-0.051200pt;}
.ls7_c00148{letter-spacing:-0.044800pt;}
.ls9_c00148{letter-spacing:-0.038400pt;}
.ls5_c00148{letter-spacing:-0.032000pt;}
.ls6_c00148{letter-spacing:-0.025600pt;}
.ls3_c00148{letter-spacing:-0.019200pt;}
.lsa_c00148{letter-spacing:-0.012800pt;}
.ls8_c00148{letter-spacing:-0.006400pt;}
.ls1_c00148{letter-spacing:0.000000pt;}
.ls4_c00148{letter-spacing:0.012800pt;}
.ls0_c00148{letter-spacing:0.128000pt;}
.ws13_c00148{word-spacing:-3.008000pt;}
.ws10_c00148{word-spacing:-2.368000pt;}
.wsf_c00148{word-spacing:-2.329600pt;}
.ws8_c00148{word-spacing:-2.176000pt;}
.ws7_c00148{word-spacing:-2.054400pt;}
.ws19_c00148{word-spacing:-0.812800pt;}
.ws18_c00148{word-spacing:-0.800000pt;}
.ws17_c00148{word-spacing:-0.716800pt;}
.wsb_c00148{word-spacing:-0.601600pt;}
.ws9_c00148{word-spacing:-0.492800pt;}
.wsa_c00148{word-spacing:-0.473600pt;}
.ws0_c00148{word-spacing:0.000000pt;}
.ws4_c00148{word-spacing:0.076800pt;}
.ws25_c00148{word-spacing:0.140800pt;}
.ws14_c00148{word-spacing:0.147200pt;}
.ws1d_c00148{word-spacing:0.153600pt;}
.ws24_c00148{word-spacing:0.160000pt;}
.ws2e_c00148{word-spacing:1.139200pt;}
.ws20_c00148{word-spacing:1.369600pt;}
.ws21_c00148{word-spacing:1.459200pt;}
.ws2_c00148{word-spacing:2.022400pt;}
.ws3_c00148{word-spacing:2.048000pt;}
.ws1_c00148{word-spacing:2.112000pt;}
.ws34_c00148{word-spacing:2.624000pt;}
.ws6_c00148{word-spacing:2.726400pt;}
.ws5_c00148{word-spacing:2.732800pt;}
.ws33_c00148{word-spacing:2.739200pt;}
.ws30_c00148{word-spacing:3.968000pt;}
.ws2f_c00148{word-spacing:4.025600pt;}
.ws12_c00148{word-spacing:4.537600pt;}
.ws32_c00148{word-spacing:4.633600pt;}
.ws11_c00148{word-spacing:4.652800pt;}
.ws31_c00148{word-spacing:4.665600pt;}
.ws29_c00148{word-spacing:5.945600pt;}
.ws28_c00148{word-spacing:5.964800pt;}
.ws1c_c00148{word-spacing:6.227200pt;}
.ws1b_c00148{word-spacing:6.265600pt;}
.ws16_c00148{word-spacing:6.636800pt;}
.ws15_c00148{word-spacing:6.643200pt;}
.ws2a_c00148{word-spacing:9.068800pt;}
.ws2b_c00148{word-spacing:9.158400pt;}
.ws1e_c00148{word-spacing:11.968000pt;}
.ws1f_c00148{word-spacing:12.038400pt;}
.ws23_c00148{word-spacing:17.753600pt;}
.ws22_c00148{word-spacing:17.766400pt;}
.ws2c_c00148{word-spacing:18.227200pt;}
.ws2d_c00148{word-spacing:18.406400pt;}
.ws1a_c00148{word-spacing:21.305600pt;}
.ws26_c00148{word-spacing:24.697600pt;}
.ws27_c00148{word-spacing:24.710400pt;}
.wse_c00148{word-spacing:28.659200pt;}
.wsc_c00148{word-spacing:32.185600pt;}
.wsd_c00148{word-spacing:32.192000pt;}
._0_c00148{width:1.017600pt;}
.fs0_c00148{font-size:64.000000pt;}
.y0_c00148{bottom:0.000000pt;}
.y2_c00148{bottom:41.627067pt;}
.y1_c00148{bottom:60.027067pt;}
.y22_c00148{bottom:160.427067pt;}
.y21_c00148{bottom:188.027067pt;}
.y20_c00148{bottom:215.627067pt;}
.y1f_c00148{bottom:243.227067pt;}
.y1e_c00148{bottom:270.827067pt;}
.y1d_c00148{bottom:298.427067pt;}
.y1c_c00148{bottom:325.947067pt;}
.y1b_c00148{bottom:353.547067pt;}
.y1a_c00148{bottom:381.147067pt;}
.y19_c00148{bottom:399.547067pt;}
.y18_c00148{bottom:417.947067pt;}
.y17_c00148{bottom:436.347067pt;}
.y16_c00148{bottom:454.747067pt;}
.y15_c00148{bottom:473.147067pt;}
.y14_c00148{bottom:491.547067pt;}
.y13_c00148{bottom:509.947067pt;}
.y12_c00148{bottom:545.547067pt;}
.y11_c00148{bottom:573.147067pt;}
.y10_c00148{bottom:600.747067pt;}
.yf_c00148{bottom:628.347067pt;}
.ye_c00148{bottom:655.947067pt;}
.yd_c00148{bottom:691.547067pt;}
.yc_c00148{bottom:719.147067pt;}
.yb_c00148{bottom:746.747067pt;}
.ya_c00148{bottom:774.347067pt;}
.y9_c00148{bottom:801.947067pt;}
.y8_c00148{bottom:829.547067pt;}
.y7_c00148{bottom:857.147067pt;}
.y6_c00148{bottom:884.747067pt;}
.y5_c00148{bottom:912.347067pt;}
.y4_c00148{bottom:947.947067pt;}
.y3_c00148{bottom:975.547067pt;}
.h1_c00148{height:56.156250pt;}
.h3_c00148{height:57.375000pt;}
.h2_c00148{height:66.750000pt;}
.h0_c00148{height:1122.666667pt;}
.w1_c00148{width:793.333333pt;}
.w0_c00148{width:793.626667pt;}
.x0_c00148{left:0.000000pt;}
.x2_c00148{left:151.200000pt;}
.x3_c00148{left:170.160000pt;}
.x1_c00148{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_86b9bc4ed616e644dd2a6be4.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.093262;font-style:normal;font-weight:normal;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_20d3a47a25b79d8229da34bf.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.106934;font-style:normal;font-weight:normal;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_40444398aa84b26516e21549.woff2')format("woff");}.ff3_c00149{font-family:ff3_c00149;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lse_c00149{letter-spacing:-0.115200px;}
.lsa_c00149{letter-spacing:-0.086400px;}
.lsc_c00149{letter-spacing:-0.079200px;}
.ls7_c00149{letter-spacing:-0.072000px;}
.ls2_c00149{letter-spacing:-0.064800px;}
.ls8_c00149{letter-spacing:-0.057600px;}
.lsf_c00149{letter-spacing:-0.050400px;}
.ls6_c00149{letter-spacing:-0.043200px;}
.ls1_c00149{letter-spacing:-0.036000px;}
.ls9_c00149{letter-spacing:-0.028800px;}
.ls5_c00149{letter-spacing:-0.021600px;}
.ls3_c00149{letter-spacing:-0.014400px;}
.ls4_c00149{letter-spacing:-0.007200px;}
.ls0_c00149{letter-spacing:0.000000px;}
.ls10_c00149{letter-spacing:0.014400px;}
.lsb_c00149{letter-spacing:0.036000px;}
.lsd_c00149{letter-spacing:0.122400px;}
.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;}
}
.ws0_c00149{word-spacing:-20.001600px;}
.ws18_c00149{word-spacing:-3.744000px;}
.ws17_c00149{word-spacing:-3.715200px;}
.wsc_c00149{word-spacing:-0.518400px;}
.ws1_c00149{word-spacing:0.000000px;}
.ws9_c00149{word-spacing:0.108000px;}
.ws13_c00149{word-spacing:0.165600px;}
.ws16_c00149{word-spacing:0.180000px;}
.wsa_c00149{word-spacing:0.187200px;}
.ws12_c00149{word-spacing:0.216000px;}
.ws14_c00149{word-spacing:1.591200px;}
.ws7_c00149{word-spacing:1.965600px;}
.ws8_c00149{word-spacing:1.980000px;}
.ws5_c00149{word-spacing:2.332800px;}
.ws6_c00149{word-spacing:2.383200px;}
.ws30_c00149{word-spacing:2.484000px;}
.ws2e_c00149{word-spacing:2.642400px;}
.ws2f_c00149{word-spacing:2.728800px;}
.ws23_c00149{word-spacing:2.736000px;}
.ws22_c00149{word-spacing:2.793600px;}
.ws2a_c00149{word-spacing:4.132800px;}
.ws29_c00149{word-spacing:4.147200px;}
.ws28_c00149{word-spacing:4.176000px;}
.ws26_c00149{word-spacing:5.472000px;}
.ws27_c00149{word-spacing:5.608800px;}
.ws25_c00149{word-spacing:5.623200px;}
.ws24_c00149{word-spacing:5.673600px;}
.ws2d_c00149{word-spacing:5.882400px;}
.ws2c_c00149{word-spacing:5.961600px;}
.ws2b_c00149{word-spacing:5.990400px;}
.ws20_c00149{word-spacing:7.387200px;}
.ws1f_c00149{word-spacing:7.596000px;}
.ws1a_c00149{word-spacing:7.624800px;}
.ws1b_c00149{word-spacing:7.725600px;}
.ws1c_c00149{word-spacing:7.740000px;}
.ws1e_c00149{word-spacing:7.790400px;}
.ws1d_c00149{word-spacing:7.884000px;}
.ws15_c00149{word-spacing:12.067200px;}
.wsd_c00149{word-spacing:17.445600px;}
.ws19_c00149{word-spacing:17.488800px;}
.wsf_c00149{word-spacing:17.524800px;}
.wse_c00149{word-spacing:17.596800px;}
.ws2_c00149{word-spacing:21.434400px;}
.ws10_c00149{word-spacing:24.271200px;}
.ws11_c00149{word-spacing:24.336000px;}
.ws3_c00149{word-spacing:27.432000px;}
.ws4_c00149{word-spacing:27.489600px;}
.ws21_c00149{word-spacing:29.059200px;}
.wsb_c00149{word-spacing:48.794400px;}
._0_c00149{width:1.368000px;}
.fc0_c00149{color:rgb(0,0,0);}
.fs0_c00149{font-size:72.000000px;}
.y0_c00149{bottom:0.000000px;}
.y2_c00149{bottom:46.830450px;}
.y1_c00149{bottom:67.530450px;}
.y24_c00149{bottom:153.480450px;}
.y23_c00149{bottom:184.530450px;}
.y22_c00149{bottom:215.580450px;}
.y21_c00149{bottom:246.630450px;}
.y20_c00149{bottom:277.680450px;}
.y1f_c00149{bottom:317.730450px;}
.y1e_c00149{bottom:348.690450px;}
.y1d_c00149{bottom:379.740450px;}
.y1c_c00149{bottom:410.790450px;}
.y1b_c00149{bottom:441.840450px;}
.y1a_c00149{bottom:462.540450px;}
.y19_c00149{bottom:483.240450px;}
.y18_c00149{bottom:503.940450px;}
.y17_c00149{bottom:524.640450px;}
.y16_c00149{bottom:545.340450px;}
.y15_c00149{bottom:566.040450px;}
.y14_c00149{bottom:606.090450px;}
.y13_c00149{bottom:637.140450px;}
.y12_c00149{bottom:668.190450px;}
.y11_c00149{bottom:708.240450px;}
.y10_c00149{bottom:748.290450px;}
.yf_c00149{bottom:788.340450px;}
.ye_c00149{bottom:828.390450px;}
.yd_c00149{bottom:859.440450px;}
.yc_c00149{bottom:890.490450px;}
.yb_c00149{bottom:921.540450px;}
.ya_c00149{bottom:952.590450px;}
.y9_c00149{bottom:973.290450px;}
.y8_c00149{bottom:993.990450px;}
.y7_c00149{bottom:1014.690450px;}
.y6_c00149{bottom:1035.390450px;}
.y5_c00149{bottom:1056.090450px;}
.y4_c00149{bottom:1076.790450px;}
.y3_c00149{bottom:1097.490450px;}
.h1_c00149{height:63.175781px;}
.h2_c00149{height:64.546875px;}
.h3_c00149{height:75.093750px;}
.h0_c00149{height:1263.000000px;}
.w1_c00149{width:892.500000px;}
.w0_c00149{width:892.830000px;}
.x0_c00149{left:0.000000px;}
.x2_c00149{left:127.620000px;}
.x3_c00149{left:148.950000px;}
.x4_c00149{left:271.170000px;}
.x1_c00149{left:695.880000px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.lse_c00149{letter-spacing:-0.102400pt;}
.lsa_c00149{letter-spacing:-0.076800pt;}
.lsc_c00149{letter-spacing:-0.070400pt;}
.ls7_c00149{letter-spacing:-0.064000pt;}
.ls2_c00149{letter-spacing:-0.057600pt;}
.ls8_c00149{letter-spacing:-0.051200pt;}
.lsf_c00149{letter-spacing:-0.044800pt;}
.ls6_c00149{letter-spacing:-0.038400pt;}
.ls1_c00149{letter-spacing:-0.032000pt;}
.ls9_c00149{letter-spacing:-0.025600pt;}
.ls5_c00149{letter-spacing:-0.019200pt;}
.ls3_c00149{letter-spacing:-0.012800pt;}
.ls4_c00149{letter-spacing:-0.006400pt;}
.ls0_c00149{letter-spacing:0.000000pt;}
.ls10_c00149{letter-spacing:0.012800pt;}
.lsb_c00149{letter-spacing:0.032000pt;}
.lsd_c00149{letter-spacing:0.108800pt;}
.ws0_c00149{word-spacing:-17.779200pt;}
.ws18_c00149{word-spacing:-3.328000pt;}
.ws17_c00149{word-spacing:-3.302400pt;}
.wsc_c00149{word-spacing:-0.460800pt;}
.ws1_c00149{word-spacing:0.000000pt;}
.ws9_c00149{word-spacing:0.096000pt;}
.ws13_c00149{word-spacing:0.147200pt;}
.ws16_c00149{word-spacing:0.160000pt;}
.wsa_c00149{word-spacing:0.166400pt;}
.ws12_c00149{word-spacing:0.192000pt;}
.ws14_c00149{word-spacing:1.414400pt;}
.ws7_c00149{word-spacing:1.747200pt;}
.ws8_c00149{word-spacing:1.760000pt;}
.ws5_c00149{word-spacing:2.073600pt;}
.ws6_c00149{word-spacing:2.118400pt;}
.ws30_c00149{word-spacing:2.208000pt;}
.ws2e_c00149{word-spacing:2.348800pt;}
.ws2f_c00149{word-spacing:2.425600pt;}
.ws23_c00149{word-spacing:2.432000pt;}
.ws22_c00149{word-spacing:2.483200pt;}
.ws2a_c00149{word-spacing:3.673600pt;}
.ws29_c00149{word-spacing:3.686400pt;}
.ws28_c00149{word-spacing:3.712000pt;}
.ws26_c00149{word-spacing:4.864000pt;}
.ws27_c00149{word-spacing:4.985600pt;}
.ws25_c00149{word-spacing:4.998400pt;}
.ws24_c00149{word-spacing:5.043200pt;}
.ws2d_c00149{word-spacing:5.228800pt;}
.ws2c_c00149{word-spacing:5.299200pt;}
.ws2b_c00149{word-spacing:5.324800pt;}
.ws20_c00149{word-spacing:6.566400pt;}
.ws1f_c00149{word-spacing:6.752000pt;}
.ws1a_c00149{word-spacing:6.777600pt;}
.ws1b_c00149{word-spacing:6.867200pt;}
.ws1c_c00149{word-spacing:6.880000pt;}
.ws1e_c00149{word-spacing:6.924800pt;}
.ws1d_c00149{word-spacing:7.008000pt;}
.ws15_c00149{word-spacing:10.726400pt;}
.wsd_c00149{word-spacing:15.507200pt;}
.ws19_c00149{word-spacing:15.545600pt;}
.wsf_c00149{word-spacing:15.577600pt;}
.wse_c00149{word-spacing:15.641600pt;}
.ws2_c00149{word-spacing:19.052800pt;}
.ws10_c00149{word-spacing:21.574400pt;}
.ws11_c00149{word-spacing:21.632000pt;}
.ws3_c00149{word-spacing:24.384000pt;}
.ws4_c00149{word-spacing:24.435200pt;}
.ws21_c00149{word-spacing:25.830400pt;}
.wsb_c00149{word-spacing:43.372800pt;}
._0_c00149{width:1.216000pt;}
.fs0_c00149{font-size:64.000000pt;}
.y0_c00149{bottom:0.000000pt;}
.y2_c00149{bottom:41.627067pt;}
.y1_c00149{bottom:60.027067pt;}
.y24_c00149{bottom:136.427067pt;}
.y23_c00149{bottom:164.027067pt;}
.y22_c00149{bottom:191.627067pt;}
.y21_c00149{bottom:219.227067pt;}
.y20_c00149{bottom:246.827067pt;}
.y1f_c00149{bottom:282.427067pt;}
.y1e_c00149{bottom:309.947067pt;}
.y1d_c00149{bottom:337.547067pt;}
.y1c_c00149{bottom:365.147067pt;}
.y1b_c00149{bottom:392.747067pt;}
.y1a_c00149{bottom:411.147067pt;}
.y19_c00149{bottom:429.547067pt;}
.y18_c00149{bottom:447.947067pt;}
.y17_c00149{bottom:466.347067pt;}
.y16_c00149{bottom:484.747067pt;}
.y15_c00149{bottom:503.147067pt;}
.y14_c00149{bottom:538.747067pt;}
.y13_c00149{bottom:566.347067pt;}
.y12_c00149{bottom:593.947067pt;}
.y11_c00149{bottom:629.547067pt;}
.y10_c00149{bottom:665.147067pt;}
.yf_c00149{bottom:700.747067pt;}
.ye_c00149{bottom:736.347067pt;}
.yd_c00149{bottom:763.947067pt;}
.yc_c00149{bottom:791.547067pt;}
.yb_c00149{bottom:819.147067pt;}
.ya_c00149{bottom:846.747067pt;}
.y9_c00149{bottom:865.147067pt;}
.y8_c00149{bottom:883.547067pt;}
.y7_c00149{bottom:901.947067pt;}
.y6_c00149{bottom:920.347067pt;}
.y5_c00149{bottom:938.747067pt;}
.y4_c00149{bottom:957.147067pt;}
.y3_c00149{bottom:975.547067pt;}
.h1_c00149{height:56.156250pt;}
.h2_c00149{height:57.375000pt;}
.h3_c00149{height:66.750000pt;}
.h0_c00149{height:1122.666667pt;}
.w1_c00149{width:793.333333pt;}
.w0_c00149{width:793.626667pt;}
.x0_c00149{left:0.000000pt;}
.x2_c00149{left:113.440000pt;}
.x3_c00149{left:132.400000pt;}
.x4_c00149{left:241.040000pt;}
.x1_c00149{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c965afe0c432912fc86f94c7.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.093262;font-style:normal;font-weight:normal;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_992a4d23a52281e5be3e96f5.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00150;src:url('chunks/assets/font_31ab1e48f69a49947db0f848.woff2')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.lsc_c00150{letter-spacing:-0.072000px;}
.ls7_c00150{letter-spacing:-0.064800px;}
.lsb_c00150{letter-spacing:-0.057600px;}
.ls3_c00150{letter-spacing:-0.050400px;}
.ls8_c00150{letter-spacing:-0.043200px;}
.ls2_c00150{letter-spacing:-0.036000px;}
.ls5_c00150{letter-spacing:-0.028800px;}
.ls9_c00150{letter-spacing:-0.021600px;}
.ls6_c00150{letter-spacing:-0.014400px;}
.ls4_c00150{letter-spacing:-0.007200px;}
.ls1_c00150{letter-spacing:0.000000px;}
.ls0_c00150{letter-spacing:0.007200px;}
.lsd_c00150{letter-spacing:0.014400px;}
.lsa_c00150{letter-spacing:0.028800px;}
.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;}
}
.ws1b_c00150{word-spacing:-4.665600px;}
.ws1c_c00150{word-spacing:-4.557600px;}
.ws1d_c00150{word-spacing:-4.492800px;}
.ws2a_c00150{word-spacing:-0.367200px;}
.ws2b_c00150{word-spacing:-0.244800px;}
.ws0_c00150{word-spacing:0.000000px;}
.ws32_c00150{word-spacing:0.057600px;}
.ws30_c00150{word-spacing:0.122400px;}
.ws27_c00150{word-spacing:0.144000px;}
.ws31_c00150{word-spacing:0.151200px;}
.ws3_c00150{word-spacing:0.165600px;}
.ws1e_c00150{word-spacing:0.194400px;}
.ws6_c00150{word-spacing:0.525600px;}
.ws8_c00150{word-spacing:0.561600px;}
.ws7_c00150{word-spacing:0.583200px;}
.ws35_c00150{word-spacing:5.940000px;}
.ws36_c00150{word-spacing:6.040800px;}
.wsb_c00150{word-spacing:7.027200px;}
.wsc_c00150{word-spacing:7.041600px;}
.wse_c00150{word-spacing:7.394400px;}
.wsd_c00150{word-spacing:7.444800px;}
.wsa_c00150{word-spacing:8.085600px;}
.ws9_c00150{word-spacing:8.092800px;}
.ws20_c00150{word-spacing:8.481600px;}
.ws21_c00150{word-spacing:8.488800px;}
.wsf_c00150{word-spacing:9.194400px;}
.ws26_c00150{word-spacing:10.252800px;}
.ws25_c00150{word-spacing:10.267200px;}
.ws5_c00150{word-spacing:10.972800px;}
.ws4_c00150{word-spacing:10.980000px;}
.ws2f_c00150{word-spacing:11.700000px;}
.ws2e_c00150{word-spacing:11.707200px;}
.ws29_c00150{word-spacing:12.139200px;}
.ws28_c00150{word-spacing:12.153600px;}
.ws11_c00150{word-spacing:12.477600px;}
.ws10_c00150{word-spacing:12.528000px;}
.ws16_c00150{word-spacing:13.600800px;}
.ws17_c00150{word-spacing:13.651200px;}
.ws18_c00150{word-spacing:13.658400px;}
.ws13_c00150{word-spacing:16.020000px;}
.ws12_c00150{word-spacing:16.171200px;}
.ws2c_c00150{word-spacing:18.180000px;}
.ws34_c00150{word-spacing:18.216000px;}
.ws33_c00150{word-spacing:18.230400px;}
.ws2d_c00150{word-spacing:18.244800px;}
.ws1_c00150{word-spacing:18.460800px;}
.ws2_c00150{word-spacing:18.568800px;}
.ws15_c00150{word-spacing:23.529600px;}
.ws14_c00150{word-spacing:23.580000px;}
.ws1a_c00150{word-spacing:24.285600px;}
.ws19_c00150{word-spacing:24.328800px;}
.ws24_c00150{word-spacing:24.616800px;}
.ws1f_c00150{word-spacing:29.728800px;}
.ws23_c00150{word-spacing:48.074400px;}
.ws22_c00150{word-spacing:48.081600px;}
._0_c00150{width:1.195200px;}
.fc0_c00150{color:rgb(0,0,0);}
.fs0_c00150{font-size:72.000000px;}
.y0_c00150{bottom:0.000000px;}
.y2_c00150{bottom:46.830450px;}
.y1_c00150{bottom:67.530450px;}
.y23_c00150{bottom:152.130450px;}
.y22_c00150{bottom:172.830450px;}
.y21_c00150{bottom:212.880450px;}
.y20_c00150{bottom:243.930450px;}
.y1f_c00150{bottom:274.980450px;}
.y1e_c00150{bottom:306.030450px;}
.y1d_c00150{bottom:346.080450px;}
.y1c_c00150{bottom:377.040450px;}
.y1b_c00150{bottom:408.090450px;}
.y1a_c00150{bottom:448.140450px;}
.y19_c00150{bottom:468.840450px;}
.y18_c00150{bottom:489.540450px;}
.y17_c00150{bottom:510.240450px;}
.y16_c00150{bottom:530.940450px;}
.y15_c00150{bottom:551.640450px;}
.y14_c00150{bottom:572.340450px;}
.y13_c00150{bottom:593.040450px;}
.y12_c00150{bottom:613.740450px;}
.y11_c00150{bottom:653.790450px;}
.y10_c00150{bottom:684.840450px;}
.yf_c00150{bottom:715.890450px;}
.ye_c00150{bottom:746.940450px;}
.yd_c00150{bottom:777.990450px;}
.yc_c00150{bottom:809.040450px;}
.yb_c00150{bottom:840.090450px;}
.ya_c00150{bottom:871.140450px;}
.y9_c00150{bottom:902.190450px;}
.y8_c00150{bottom:933.240450px;}
.y7_c00150{bottom:964.290450px;}
.y6_c00150{bottom:995.340450px;}
.y5_c00150{bottom:1026.390450px;}
.y4_c00150{bottom:1066.440450px;}
.y3_c00150{bottom:1097.400450px;}
.h1_c00150{height:63.175781px;}
.h3_c00150{height:64.546875px;}
.h2_c00150{height:75.093750px;}
.h0_c00150{height:1263.000000px;}
.w1_c00150{width:892.500000px;}
.w0_c00150{width:892.830000px;}
.x0_c00150{left:0.000000px;}
.x2_c00150{left:170.100000px;}
.x3_c00150{left:191.430000px;}
.x1_c00150{left:738.360000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.lsc_c00150{letter-spacing:-0.064000pt;}
.ls7_c00150{letter-spacing:-0.057600pt;}
.lsb_c00150{letter-spacing:-0.051200pt;}
.ls3_c00150{letter-spacing:-0.044800pt;}
.ls8_c00150{letter-spacing:-0.038400pt;}
.ls2_c00150{letter-spacing:-0.032000pt;}
.ls5_c00150{letter-spacing:-0.025600pt;}
.ls9_c00150{letter-spacing:-0.019200pt;}
.ls6_c00150{letter-spacing:-0.012800pt;}
.ls4_c00150{letter-spacing:-0.006400pt;}
.ls1_c00150{letter-spacing:0.000000pt;}
.ls0_c00150{letter-spacing:0.006400pt;}
.lsd_c00150{letter-spacing:0.012800pt;}
.lsa_c00150{letter-spacing:0.025600pt;}
.ws1b_c00150{word-spacing:-4.147200pt;}
.ws1c_c00150{word-spacing:-4.051200pt;}
.ws1d_c00150{word-spacing:-3.993600pt;}
.ws2a_c00150{word-spacing:-0.326400pt;}
.ws2b_c00150{word-spacing:-0.217600pt;}
.ws0_c00150{word-spacing:0.000000pt;}
.ws32_c00150{word-spacing:0.051200pt;}
.ws30_c00150{word-spacing:0.108800pt;}
.ws27_c00150{word-spacing:0.128000pt;}
.ws31_c00150{word-spacing:0.134400pt;}
.ws3_c00150{word-spacing:0.147200pt;}
.ws1e_c00150{word-spacing:0.172800pt;}
.ws6_c00150{word-spacing:0.467200pt;}
.ws8_c00150{word-spacing:0.499200pt;}
.ws7_c00150{word-spacing:0.518400pt;}
.ws35_c00150{word-spacing:5.280000pt;}
.ws36_c00150{word-spacing:5.369600pt;}
.wsb_c00150{word-spacing:6.246400pt;}
.wsc_c00150{word-spacing:6.259200pt;}
.wse_c00150{word-spacing:6.572800pt;}
.wsd_c00150{word-spacing:6.617600pt;}
.wsa_c00150{word-spacing:7.187200pt;}
.ws9_c00150{word-spacing:7.193600pt;}
.ws20_c00150{word-spacing:7.539200pt;}
.ws21_c00150{word-spacing:7.545600pt;}
.wsf_c00150{word-spacing:8.172800pt;}
.ws26_c00150{word-spacing:9.113600pt;}
.ws25_c00150{word-spacing:9.126400pt;}
.ws5_c00150{word-spacing:9.753600pt;}
.ws4_c00150{word-spacing:9.760000pt;}
.ws2f_c00150{word-spacing:10.400000pt;}
.ws2e_c00150{word-spacing:10.406400pt;}
.ws29_c00150{word-spacing:10.790400pt;}
.ws28_c00150{word-spacing:10.803200pt;}
.ws11_c00150{word-spacing:11.091200pt;}
.ws10_c00150{word-spacing:11.136000pt;}
.ws16_c00150{word-spacing:12.089600pt;}
.ws17_c00150{word-spacing:12.134400pt;}
.ws18_c00150{word-spacing:12.140800pt;}
.ws13_c00150{word-spacing:14.240000pt;}
.ws12_c00150{word-spacing:14.374400pt;}
.ws2c_c00150{word-spacing:16.160000pt;}
.ws34_c00150{word-spacing:16.192000pt;}
.ws33_c00150{word-spacing:16.204800pt;}
.ws2d_c00150{word-spacing:16.217600pt;}
.ws1_c00150{word-spacing:16.409600pt;}
.ws2_c00150{word-spacing:16.505600pt;}
.ws15_c00150{word-spacing:20.915200pt;}
.ws14_c00150{word-spacing:20.960000pt;}
.ws1a_c00150{word-spacing:21.587200pt;}
.ws19_c00150{word-spacing:21.625600pt;}
.ws24_c00150{word-spacing:21.881600pt;}
.ws1f_c00150{word-spacing:26.425600pt;}
.ws23_c00150{word-spacing:42.732800pt;}
.ws22_c00150{word-spacing:42.739200pt;}
._0_c00150{width:1.062400pt;}
.fs0_c00150{font-size:64.000000pt;}
.y0_c00150{bottom:0.000000pt;}
.y2_c00150{bottom:41.627067pt;}
.y1_c00150{bottom:60.027067pt;}
.y23_c00150{bottom:135.227067pt;}
.y22_c00150{bottom:153.627067pt;}
.y21_c00150{bottom:189.227067pt;}
.y20_c00150{bottom:216.827067pt;}
.y1f_c00150{bottom:244.427067pt;}
.y1e_c00150{bottom:272.027067pt;}
.y1d_c00150{bottom:307.627067pt;}
.y1c_c00150{bottom:335.147067pt;}
.y1b_c00150{bottom:362.747067pt;}
.y1a_c00150{bottom:398.347067pt;}
.y19_c00150{bottom:416.747067pt;}
.y18_c00150{bottom:435.147067pt;}
.y17_c00150{bottom:453.547067pt;}
.y16_c00150{bottom:471.947067pt;}
.y15_c00150{bottom:490.347067pt;}
.y14_c00150{bottom:508.747067pt;}
.y13_c00150{bottom:527.147067pt;}
.y12_c00150{bottom:545.547067pt;}
.y11_c00150{bottom:581.147067pt;}
.y10_c00150{bottom:608.747067pt;}
.yf_c00150{bottom:636.347067pt;}
.ye_c00150{bottom:663.947067pt;}
.yd_c00150{bottom:691.547067pt;}
.yc_c00150{bottom:719.147067pt;}
.yb_c00150{bottom:746.747067pt;}
.ya_c00150{bottom:774.347067pt;}
.y9_c00150{bottom:801.947067pt;}
.y8_c00150{bottom:829.547067pt;}
.y7_c00150{bottom:857.147067pt;}
.y6_c00150{bottom:884.747067pt;}
.y5_c00150{bottom:912.347067pt;}
.y4_c00150{bottom:947.947067pt;}
.y3_c00150{bottom:975.467067pt;}
.h1_c00150{height:56.156250pt;}
.h3_c00150{height:57.375000pt;}
.h2_c00150{height:66.750000pt;}
.h0_c00150{height:1122.666667pt;}
.w1_c00150{width:793.333333pt;}
.w0_c00150{width:793.626667pt;}
.x0_c00150{left:0.000000pt;}
.x2_c00150{left:151.200000pt;}
.x3_c00150{left:170.160000pt;}
.x1_c00150{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_82018bd6c7bc5c644a10a97b.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.093262;font-style:normal;font-weight:normal;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_7ab9665b3832d7b9c504b939.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.ls3_c00151{letter-spacing:-0.072000px;}
.ls4_c00151{letter-spacing:-0.036000px;}
.ls1_c00151{letter-spacing:-0.028800px;}
.ls5_c00151{letter-spacing:-0.021600px;}
.ls0_c00151{letter-spacing:0.000000px;}
.ls6_c00151{letter-spacing:0.007200px;}
.ls2_c00151{letter-spacing:0.014400px;}
.ls7_c00151{letter-spacing:843.998400px;}
.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:-2.368800px;}
.ws4_c00151{word-spacing:-0.525600px;}
.ws3_c00151{word-spacing:-0.489600px;}
.ws0_c00151{word-spacing:0.000000px;}
.ws2_c00151{word-spacing:0.144000px;}
.ws7_c00151{word-spacing:0.180000px;}
.ws8_c00151{word-spacing:0.187200px;}
.ws6_c00151{word-spacing:14.911200px;}
.ws5_c00151{word-spacing:14.940000px;}
._0_c00151{width:1.008000px;}
.fc0_c00151{color:rgb(0,0,0);}
.fs0_c00151{font-size:72.000000px;}
.y0_c00151{bottom:0.000000px;}
.y2_c00151{bottom:46.830450px;}
.y1_c00151{bottom:67.530450px;}
.y9_c00151{bottom:933.240450px;}
.y8_c00151{bottom:973.290450px;}
.y7_c00151{bottom:1004.340450px;}
.y6_c00151{bottom:1035.390450px;}
.y5_c00151{bottom:1056.090450px;}
.y4_c00151{bottom:1076.790450px;}
.y3_c00151{bottom:1097.490450px;}
.h1_c00151{height:63.175781px;}
.h2_c00151{height:64.546875px;}
.h0_c00151{height:1263.000000px;}
.w1_c00151{width:892.500000px;}
.w0_c00151{width:892.830000px;}
.x0_c00151{left:0.000000px;}
.x2_c00151{left:127.620000px;}
.x3_c00151{left:148.950000px;}
.x1_c00151{left:695.880000px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls3_c00151{letter-spacing:-0.064000pt;}
.ls4_c00151{letter-spacing:-0.032000pt;}
.ls1_c00151{letter-spacing:-0.025600pt;}
.ls5_c00151{letter-spacing:-0.019200pt;}
.ls0_c00151{letter-spacing:0.000000pt;}
.ls6_c00151{letter-spacing:0.006400pt;}
.ls2_c00151{letter-spacing:0.012800pt;}
.ls7_c00151{letter-spacing:750.220800pt;}
.ws1_c00151{word-spacing:-2.105600pt;}
.ws4_c00151{word-spacing:-0.467200pt;}
.ws3_c00151{word-spacing:-0.435200pt;}
.ws0_c00151{word-spacing:0.000000pt;}
.ws2_c00151{word-spacing:0.128000pt;}
.ws7_c00151{word-spacing:0.160000pt;}
.ws8_c00151{word-spacing:0.166400pt;}
.ws6_c00151{word-spacing:13.254400pt;}
.ws5_c00151{word-spacing:13.280000pt;}
._0_c00151{width:0.896000pt;}
.fs0_c00151{font-size:64.000000pt;}
.y0_c00151{bottom:0.000000pt;}
.y2_c00151{bottom:41.627067pt;}
.y1_c00151{bottom:60.027067pt;}
.y9_c00151{bottom:829.547067pt;}
.y8_c00151{bottom:865.147067pt;}
.y7_c00151{bottom:892.747067pt;}
.y6_c00151{bottom:920.347067pt;}
.y5_c00151{bottom:938.747067pt;}
.y4_c00151{bottom:957.147067pt;}
.y3_c00151{bottom:975.547067pt;}
.h1_c00151{height:56.156250pt;}
.h2_c00151{height:57.375000pt;}
.h0_c00151{height:1122.666667pt;}
.w1_c00151{width:793.333333pt;}
.w0_c00151{width:793.626667pt;}
.x0_c00151{left:0.000000pt;}
.x2_c00151{left:113.440000pt;}
.x3_c00151{left:132.400000pt;}
.x1_c00151{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8d02a196d85ff9d6760a8f4e.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.093262;font-style:normal;font-weight:normal;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_a1887a8ac3217c7657cd02a1.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00152;src:url('chunks/assets/font_4b5040294a588fadbd2339c9.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.lsa_c00152{letter-spacing:-0.100800px;}
.lse_c00152{letter-spacing:-0.072000px;}
.ls6_c00152{letter-spacing:-0.064800px;}
.lsb_c00152{letter-spacing:-0.057600px;}
.ls5_c00152{letter-spacing:-0.050400px;}
.ls8_c00152{letter-spacing:-0.043200px;}
.ls3_c00152{letter-spacing:-0.036000px;}
.ls9_c00152{letter-spacing:-0.028800px;}
.ls4_c00152{letter-spacing:-0.021600px;}
.lsd_c00152{letter-spacing:-0.014400px;}
.lsc_c00152{letter-spacing:-0.007200px;}
.ls1_c00152{letter-spacing:0.000000px;}
.ls0_c00152{letter-spacing:0.007200px;}
.ls7_c00152{letter-spacing:0.028800px;}
.ls2_c00152{letter-spacing:0.041940px;}
.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;}
}
.ws1a_c00152{word-spacing:-2.743200px;}
.ws1b_c00152{word-spacing:-2.721600px;}
.ws2e_c00152{word-spacing:-2.700000px;}
.ws2f_c00152{word-spacing:-2.671200px;}
.ws25_c00152{word-spacing:-1.936800px;}
.ws24_c00152{word-spacing:-1.929600px;}
.wsd_c00152{word-spacing:-1.620000px;}
.ws16_c00152{word-spacing:-1.332000px;}
.ws15_c00152{word-spacing:-1.260000px;}
.ws28_c00152{word-spacing:-0.900000px;}
.ws14_c00152{word-spacing:-0.878400px;}
.ws6_c00152{word-spacing:-0.230400px;}
.ws4_c00152{word-spacing:-0.151200px;}
.ws5_c00152{word-spacing:-0.136800px;}
.ws0_c00152{word-spacing:0.000000px;}
.ws20_c00152{word-spacing:0.144000px;}
.ws30_c00152{word-spacing:0.151200px;}
.ws10_c00152{word-spacing:0.165600px;}
.ws21_c00152{word-spacing:0.194400px;}
.ws1d_c00152{word-spacing:0.273600px;}
.ws33_c00152{word-spacing:0.532800px;}
.ws32_c00152{word-spacing:0.561600px;}
.ws27_c00152{word-spacing:1.267200px;}
.ws31_c00152{word-spacing:1.274400px;}
.ws26_c00152{word-spacing:1.418400px;}
.ws7_c00152{word-spacing:1.929600px;}
.ws8_c00152{word-spacing:2.001600px;}
.ws1c_c00152{word-spacing:2.332800px;}
.ws22_c00152{word-spacing:3.808800px;}
.ws23_c00152{word-spacing:3.830400px;}
.ws17_c00152{word-spacing:4.147200px;}
.ws18_c00152{word-spacing:4.183200px;}
.wsb_c00152{word-spacing:5.126400px;}
.wsc_c00152{word-spacing:5.220000px;}
.wsa_c00152{word-spacing:5.227200px;}
.ws3_c00152{word-spacing:5.580000px;}
.wsf_c00152{word-spacing:5.616000px;}
.ws2_c00152{word-spacing:5.652000px;}
.wse_c00152{word-spacing:6.379200px;}
.ws13_c00152{word-spacing:7.380000px;}
.ws12_c00152{word-spacing:7.387200px;}
.ws2c_c00152{word-spacing:8.395200px;}
.ws2d_c00152{word-spacing:8.496000px;}
.ws1_c00152{word-spacing:9.772020px;}
.ws29_c00152{word-spacing:10.965600px;}
.ws9_c00152{word-spacing:17.121600px;}
.ws11_c00152{word-spacing:17.791200px;}
.ws19_c00152{word-spacing:18.180000px;}
.ws1f_c00152{word-spacing:26.071200px;}
.ws1e_c00152{word-spacing:26.085600px;}
.ws2a_c00152{word-spacing:31.161600px;}
.ws2b_c00152{word-spacing:31.212000px;}
._1_c00152{margin-left:-17.640000px;}
._0_c00152{width:1.065600px;}
.fc0_c00152{color:rgb(0,0,0);}
.fs0_c00152{font-size:72.000000px;}
.fs1_c00152{font-size:83.880000px;}
.y0_c00152{bottom:0.000000px;}
.y2_c00152{bottom:46.830450px;}
.y1_c00152{bottom:67.530450px;}
.y25_c00152{bottom:147.270450px;}
.y24_c00152{bottom:178.320450px;}
.y23_c00152{bottom:199.020450px;}
.y22_c00152{bottom:219.720450px;}
.y21_c00152{bottom:240.420450px;}
.y20_c00152{bottom:261.120450px;}
.y1f_c00152{bottom:281.820450px;}
.y1e_c00152{bottom:302.520450px;}
.y1d_c00152{bottom:323.220450px;}
.y1c_c00152{bottom:343.920450px;}
.y1b_c00152{bottom:364.620450px;}
.y1a_c00152{bottom:385.320450px;}
.y19_c00152{bottom:406.020450px;}
.y18_c00152{bottom:426.720450px;}
.y17_c00152{bottom:447.420450px;}
.y16_c00152{bottom:487.470450px;}
.y15_c00152{bottom:518.520450px;}
.y14_c00152{bottom:549.570450px;}
.y13_c00152{bottom:580.620450px;}
.y12_c00152{bottom:611.670450px;}
.y11_c00152{bottom:642.720450px;}
.y10_c00152{bottom:673.770450px;}
.yf_c00152{bottom:704.820450px;}
.ye_c00152{bottom:735.870450px;}
.yd_c00152{bottom:775.920450px;}
.yc_c00152{bottom:806.970450px;}
.yb_c00152{bottom:838.020450px;}
.ya_c00152{bottom:869.070450px;}
.y9_c00152{bottom:900.120450px;}
.y8_c00152{bottom:931.170450px;}
.y7_c00152{bottom:962.220450px;}
.y6_c00152{bottom:993.270450px;}
.y5_c00152{bottom:1024.320450px;}
.y4_c00152{bottom:1064.370450px;}
.y3_c00152{bottom:1094.520450px;}
.h1_c00152{height:63.175781px;}
.h3_c00152{height:64.546875px;}
.h2_c00152{height:87.484219px;}
.h0_c00152{height:1263.000000px;}
.w1_c00152{width:892.500000px;}
.w0_c00152{width:892.830000px;}
.x0_c00152{left:0.000000px;}
.x2_c00152{left:170.100000px;}
.x4_c00152{left:191.430000px;}
.x3_c00152{left:251.100000px;}
.x1_c00152{left:738.360000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.lsa_c00152{letter-spacing:-0.089600pt;}
.lse_c00152{letter-spacing:-0.064000pt;}
.ls6_c00152{letter-spacing:-0.057600pt;}
.lsb_c00152{letter-spacing:-0.051200pt;}
.ls5_c00152{letter-spacing:-0.044800pt;}
.ls8_c00152{letter-spacing:-0.038400pt;}
.ls3_c00152{letter-spacing:-0.032000pt;}
.ls9_c00152{letter-spacing:-0.025600pt;}
.ls4_c00152{letter-spacing:-0.019200pt;}
.lsd_c00152{letter-spacing:-0.012800pt;}
.lsc_c00152{letter-spacing:-0.006400pt;}
.ls1_c00152{letter-spacing:0.000000pt;}
.ls0_c00152{letter-spacing:0.006400pt;}
.ls7_c00152{letter-spacing:0.025600pt;}
.ls2_c00152{letter-spacing:0.037280pt;}
.ws1a_c00152{word-spacing:-2.438400pt;}
.ws1b_c00152{word-spacing:-2.419200pt;}
.ws2e_c00152{word-spacing:-2.400000pt;}
.ws2f_c00152{word-spacing:-2.374400pt;}
.ws25_c00152{word-spacing:-1.721600pt;}
.ws24_c00152{word-spacing:-1.715200pt;}
.wsd_c00152{word-spacing:-1.440000pt;}
.ws16_c00152{word-spacing:-1.184000pt;}
.ws15_c00152{word-spacing:-1.120000pt;}
.ws28_c00152{word-spacing:-0.800000pt;}
.ws14_c00152{word-spacing:-0.780800pt;}
.ws6_c00152{word-spacing:-0.204800pt;}
.ws4_c00152{word-spacing:-0.134400pt;}
.ws5_c00152{word-spacing:-0.121600pt;}
.ws0_c00152{word-spacing:0.000000pt;}
.ws20_c00152{word-spacing:0.128000pt;}
.ws30_c00152{word-spacing:0.134400pt;}
.ws10_c00152{word-spacing:0.147200pt;}
.ws21_c00152{word-spacing:0.172800pt;}
.ws1d_c00152{word-spacing:0.243200pt;}
.ws33_c00152{word-spacing:0.473600pt;}
.ws32_c00152{word-spacing:0.499200pt;}
.ws27_c00152{word-spacing:1.126400pt;}
.ws31_c00152{word-spacing:1.132800pt;}
.ws26_c00152{word-spacing:1.260800pt;}
.ws7_c00152{word-spacing:1.715200pt;}
.ws8_c00152{word-spacing:1.779200pt;}
.ws1c_c00152{word-spacing:2.073600pt;}
.ws22_c00152{word-spacing:3.385600pt;}
.ws23_c00152{word-spacing:3.404800pt;}
.ws17_c00152{word-spacing:3.686400pt;}
.ws18_c00152{word-spacing:3.718400pt;}
.wsb_c00152{word-spacing:4.556800pt;}
.wsc_c00152{word-spacing:4.640000pt;}
.wsa_c00152{word-spacing:4.646400pt;}
.ws3_c00152{word-spacing:4.960000pt;}
.wsf_c00152{word-spacing:4.992000pt;}
.ws2_c00152{word-spacing:5.024000pt;}
.wse_c00152{word-spacing:5.670400pt;}
.ws13_c00152{word-spacing:6.560000pt;}
.ws12_c00152{word-spacing:6.566400pt;}
.ws2c_c00152{word-spacing:7.462400pt;}
.ws2d_c00152{word-spacing:7.552000pt;}
.ws1_c00152{word-spacing:8.686240pt;}
.ws29_c00152{word-spacing:9.747200pt;}
.ws9_c00152{word-spacing:15.219200pt;}
.ws11_c00152{word-spacing:15.814400pt;}
.ws19_c00152{word-spacing:16.160000pt;}
.ws1f_c00152{word-spacing:23.174400pt;}
.ws1e_c00152{word-spacing:23.187200pt;}
.ws2a_c00152{word-spacing:27.699200pt;}
.ws2b_c00152{word-spacing:27.744000pt;}
._1_c00152{margin-left:-15.680000pt;}
._0_c00152{width:0.947200pt;}
.fs0_c00152{font-size:64.000000pt;}
.fs1_c00152{font-size:74.560000pt;}
.y0_c00152{bottom:0.000000pt;}
.y2_c00152{bottom:41.627067pt;}
.y1_c00152{bottom:60.027067pt;}
.y25_c00152{bottom:130.907067pt;}
.y24_c00152{bottom:158.507067pt;}
.y23_c00152{bottom:176.907067pt;}
.y22_c00152{bottom:195.307067pt;}
.y21_c00152{bottom:213.707067pt;}
.y20_c00152{bottom:232.107067pt;}
.y1f_c00152{bottom:250.507067pt;}
.y1e_c00152{bottom:268.907067pt;}
.y1d_c00152{bottom:287.307067pt;}
.y1c_c00152{bottom:305.707067pt;}
.y1b_c00152{bottom:324.107067pt;}
.y1a_c00152{bottom:342.507067pt;}
.y19_c00152{bottom:360.907067pt;}
.y18_c00152{bottom:379.307067pt;}
.y17_c00152{bottom:397.707067pt;}
.y16_c00152{bottom:433.307067pt;}
.y15_c00152{bottom:460.907067pt;}
.y14_c00152{bottom:488.507067pt;}
.y13_c00152{bottom:516.107067pt;}
.y12_c00152{bottom:543.707067pt;}
.y11_c00152{bottom:571.307067pt;}
.y10_c00152{bottom:598.907067pt;}
.yf_c00152{bottom:626.507067pt;}
.ye_c00152{bottom:654.107067pt;}
.yd_c00152{bottom:689.707067pt;}
.yc_c00152{bottom:717.307067pt;}
.yb_c00152{bottom:744.907067pt;}
.ya_c00152{bottom:772.507067pt;}
.y9_c00152{bottom:800.107067pt;}
.y8_c00152{bottom:827.707067pt;}
.y7_c00152{bottom:855.307067pt;}
.y6_c00152{bottom:882.907067pt;}
.y5_c00152{bottom:910.507067pt;}
.y4_c00152{bottom:946.107067pt;}
.y3_c00152{bottom:972.907067pt;}
.h1_c00152{height:56.156250pt;}
.h3_c00152{height:57.375000pt;}
.h2_c00152{height:77.763750pt;}
.h0_c00152{height:1122.666667pt;}
.w1_c00152{width:793.333333pt;}
.w0_c00152{width:793.626667pt;}
.x0_c00152{left:0.000000pt;}
.x2_c00152{left:151.200000pt;}
.x4_c00152{left:170.160000pt;}
.x3_c00152{left:223.200000pt;}
.x1_c00152{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4281bedd143d11b81549d561.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.093262;font-style:normal;font-weight:normal;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_3ebe234e7bc175ab584be3d0.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.106934;font-style:normal;font-weight:normal;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_271f86214dde83e4b07a9238.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00153;src:url('chunks/assets/font_66d24752312444ebb9cb72b7.woff2')format("woff");}.ff4_c00153{font-family:ff4_c00153;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls8_c00153{letter-spacing:-0.093600px;}
.lsd_c00153{letter-spacing:-0.064800px;}
.lsc_c00153{letter-spacing:-0.057600px;}
.ls4_c00153{letter-spacing:-0.050400px;}
.ls7_c00153{letter-spacing:-0.043200px;}
.lsa_c00153{letter-spacing:-0.036000px;}
.ls9_c00153{letter-spacing:-0.028800px;}
.ls5_c00153{letter-spacing:-0.021600px;}
.ls6_c00153{letter-spacing:-0.014400px;}
.lsb_c00153{letter-spacing:-0.007200px;}
.ls3_c00153{letter-spacing:0.000000px;}
.ls2_c00153{letter-spacing:0.007200px;}
.ls0_c00153{letter-spacing:0.014400px;}
.ls1_c00153{letter-spacing:0.021600px;}
.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:-20.023200px;}
.ws0_c00153{word-spacing:-20.016000px;}
.ws40_c00153{word-spacing:-4.867200px;}
.ws2e_c00153{word-spacing:-4.615200px;}
.ws2c_c00153{word-spacing:-4.485600px;}
.ws2d_c00153{word-spacing:-4.471200px;}
.wse_c00153{word-spacing:-4.154400px;}
.wsf_c00153{word-spacing:-4.132800px;}
.ws18_c00153{word-spacing:-3.132000px;}
.ws17_c00153{word-spacing:-3.052800px;}
.ws29_c00153{word-spacing:-2.692800px;}
.ws28_c00153{word-spacing:-2.678400px;}
.ws3_c00153{word-spacing:-2.671200px;}
.ws3b_c00153{word-spacing:-2.347200px;}
.ws3c_c00153{word-spacing:-2.325600px;}
.ws1b_c00153{word-spacing:-0.576000px;}
.ws1c_c00153{word-spacing:-0.504000px;}
.ws2_c00153{word-spacing:0.000000px;}
.ws21_c00153{word-spacing:0.136800px;}
.ws4_c00153{word-spacing:0.180000px;}
.ws22_c00153{word-spacing:0.194400px;}
.ws5_c00153{word-spacing:0.288000px;}
.ws7_c00153{word-spacing:0.907200px;}
.ws6_c00153{word-spacing:0.921600px;}
.ws13_c00153{word-spacing:1.267200px;}
.ws1f_c00153{word-spacing:1.512000px;}
.ws1e_c00153{word-spacing:1.569600px;}
.ws3d_c00153{word-spacing:1.634400px;}
.ws20_c00153{word-spacing:1.648800px;}
.ws1d_c00153{word-spacing:1.663200px;}
.ws32_c00153{word-spacing:3.038400px;}
.ws31_c00153{word-spacing:3.052800px;}
.ws2f_c00153{word-spacing:3.441600px;}
.ws37_c00153{word-spacing:4.514400px;}
.ws38_c00153{word-spacing:4.543200px;}
.wsa_c00153{word-spacing:4.881600px;}
.wsb_c00153{word-spacing:4.975200px;}
.ws8_c00153{word-spacing:5.227200px;}
.ws9_c00153{word-spacing:5.292000px;}
.ws34_c00153{word-spacing:5.522400px;}
.ws33_c00153{word-spacing:5.565600px;}
.ws39_c00153{word-spacing:5.875200px;}
.ws3a_c00153{word-spacing:5.954400px;}
.ws14_c00153{word-spacing:6.681600px;}
.ws2b_c00153{word-spacing:8.092800px;}
.ws2a_c00153{word-spacing:8.114400px;}
.ws3f_c00153{word-spacing:9.187200px;}
.ws3e_c00153{word-spacing:9.280800px;}
.ws15_c00153{word-spacing:11.347200px;}
.ws16_c00153{word-spacing:11.376000px;}
.ws24_c00153{word-spacing:12.765600px;}
.ws23_c00153{word-spacing:12.780000px;}
.ws10_c00153{word-spacing:13.485600px;}
.ws12_c00153{word-spacing:13.514400px;}
.ws11_c00153{word-spacing:13.600800px;}
.ws1a_c00153{word-spacing:19.620000px;}
.ws19_c00153{word-spacing:19.648800px;}
.ws36_c00153{word-spacing:21.081600px;}
.wsd_c00153{word-spacing:31.838400px;}
.wsc_c00153{word-spacing:31.953600px;}
.ws30_c00153{word-spacing:33.602400px;}
.ws35_c00153{word-spacing:36.547200px;}
.ws27_c00153{word-spacing:40.737600px;}
.ws26_c00153{word-spacing:40.867200px;}
.ws25_c00153{word-spacing:40.888800px;}
._0_c00153{width:1.094400px;}
.fc0_c00153{color:rgb(0,0,0);}
.fs0_c00153{font-size:72.000000px;}
.y0_c00153{bottom:0.000000px;}
.y2_c00153{bottom:46.830450px;}
.y1_c00153{bottom:67.530450px;}
.y2b_c00153{bottom:149.430450px;}
.y2a_c00153{bottom:180.480450px;}
.y29_c00153{bottom:220.530450px;}
.y28_c00153{bottom:241.230450px;}
.y27_c00153{bottom:261.930450px;}
.y26_c00153{bottom:282.630450px;}
.y25_c00153{bottom:303.330450px;}
.y24_c00153{bottom:324.030450px;}
.y23_c00153{bottom:344.730450px;}
.y22_c00153{bottom:365.430450px;}
.y21_c00153{bottom:386.040450px;}
.y20_c00153{bottom:406.740450px;}
.y1f_c00153{bottom:427.440450px;}
.y1e_c00153{bottom:448.140450px;}
.y1d_c00153{bottom:468.840450px;}
.y1c_c00153{bottom:489.540450px;}
.y1b_c00153{bottom:529.590450px;}
.y1a_c00153{bottom:560.640450px;}
.y19_c00153{bottom:591.690450px;}
.y18_c00153{bottom:622.740450px;}
.y17_c00153{bottom:653.790450px;}
.y16_c00153{bottom:674.490450px;}
.y15_c00153{bottom:695.190450px;}
.y14_c00153{bottom:715.890450px;}
.y13_c00153{bottom:736.590450px;}
.y12_c00153{bottom:757.290450px;}
.y11_c00153{bottom:777.990450px;}
.y10_c00153{bottom:798.690450px;}
.yf_c00153{bottom:819.390450px;}
.ye_c00153{bottom:840.090450px;}
.yd_c00153{bottom:860.790450px;}
.yc_c00153{bottom:881.490450px;}
.yb_c00153{bottom:902.190450px;}
.ya_c00153{bottom:922.890450px;}
.y9_c00153{bottom:943.590450px;}
.y8_c00153{bottom:964.290450px;}
.y7_c00153{bottom:984.990450px;}
.y6_c00153{bottom:1005.690450px;}
.y5_c00153{bottom:1026.390450px;}
.y4_c00153{bottom:1066.440450px;}
.y3_c00153{bottom:1097.490450px;}
.h1_c00153{height:63.175781px;}
.h2_c00153{height:64.546875px;}
.h3_c00153{height:75.093750px;}
.h0_c00153{height:1263.000000px;}
.w1_c00153{width:892.500000px;}
.w0_c00153{width:892.830000px;}
.x0_c00153{left:0.000000px;}
.x2_c00153{left:127.620000px;}
.x3_c00153{left:148.950000px;}
.x1_c00153{left:695.880000px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls8_c00153{letter-spacing:-0.083200pt;}
.lsd_c00153{letter-spacing:-0.057600pt;}
.lsc_c00153{letter-spacing:-0.051200pt;}
.ls4_c00153{letter-spacing:-0.044800pt;}
.ls7_c00153{letter-spacing:-0.038400pt;}
.lsa_c00153{letter-spacing:-0.032000pt;}
.ls9_c00153{letter-spacing:-0.025600pt;}
.ls5_c00153{letter-spacing:-0.019200pt;}
.ls6_c00153{letter-spacing:-0.012800pt;}
.lsb_c00153{letter-spacing:-0.006400pt;}
.ls3_c00153{letter-spacing:0.000000pt;}
.ls2_c00153{letter-spacing:0.006400pt;}
.ls0_c00153{letter-spacing:0.012800pt;}
.ls1_c00153{letter-spacing:0.019200pt;}
.ws1_c00153{word-spacing:-17.798400pt;}
.ws0_c00153{word-spacing:-17.792000pt;}
.ws40_c00153{word-spacing:-4.326400pt;}
.ws2e_c00153{word-spacing:-4.102400pt;}
.ws2c_c00153{word-spacing:-3.987200pt;}
.ws2d_c00153{word-spacing:-3.974400pt;}
.wse_c00153{word-spacing:-3.692800pt;}
.wsf_c00153{word-spacing:-3.673600pt;}
.ws18_c00153{word-spacing:-2.784000pt;}
.ws17_c00153{word-spacing:-2.713600pt;}
.ws29_c00153{word-spacing:-2.393600pt;}
.ws28_c00153{word-spacing:-2.380800pt;}
.ws3_c00153{word-spacing:-2.374400pt;}
.ws3b_c00153{word-spacing:-2.086400pt;}
.ws3c_c00153{word-spacing:-2.067200pt;}
.ws1b_c00153{word-spacing:-0.512000pt;}
.ws1c_c00153{word-spacing:-0.448000pt;}
.ws2_c00153{word-spacing:0.000000pt;}
.ws21_c00153{word-spacing:0.121600pt;}
.ws4_c00153{word-spacing:0.160000pt;}
.ws22_c00153{word-spacing:0.172800pt;}
.ws5_c00153{word-spacing:0.256000pt;}
.ws7_c00153{word-spacing:0.806400pt;}
.ws6_c00153{word-spacing:0.819200pt;}
.ws13_c00153{word-spacing:1.126400pt;}
.ws1f_c00153{word-spacing:1.344000pt;}
.ws1e_c00153{word-spacing:1.395200pt;}
.ws3d_c00153{word-spacing:1.452800pt;}
.ws20_c00153{word-spacing:1.465600pt;}
.ws1d_c00153{word-spacing:1.478400pt;}
.ws32_c00153{word-spacing:2.700800pt;}
.ws31_c00153{word-spacing:2.713600pt;}
.ws2f_c00153{word-spacing:3.059200pt;}
.ws37_c00153{word-spacing:4.012800pt;}
.ws38_c00153{word-spacing:4.038400pt;}
.wsa_c00153{word-spacing:4.339200pt;}
.wsb_c00153{word-spacing:4.422400pt;}
.ws8_c00153{word-spacing:4.646400pt;}
.ws9_c00153{word-spacing:4.704000pt;}
.ws34_c00153{word-spacing:4.908800pt;}
.ws33_c00153{word-spacing:4.947200pt;}
.ws39_c00153{word-spacing:5.222400pt;}
.ws3a_c00153{word-spacing:5.292800pt;}
.ws14_c00153{word-spacing:5.939200pt;}
.ws2b_c00153{word-spacing:7.193600pt;}
.ws2a_c00153{word-spacing:7.212800pt;}
.ws3f_c00153{word-spacing:8.166400pt;}
.ws3e_c00153{word-spacing:8.249600pt;}
.ws15_c00153{word-spacing:10.086400pt;}
.ws16_c00153{word-spacing:10.112000pt;}
.ws24_c00153{word-spacing:11.347200pt;}
.ws23_c00153{word-spacing:11.360000pt;}
.ws10_c00153{word-spacing:11.987200pt;}
.ws12_c00153{word-spacing:12.012800pt;}
.ws11_c00153{word-spacing:12.089600pt;}
.ws1a_c00153{word-spacing:17.440000pt;}
.ws19_c00153{word-spacing:17.465600pt;}
.ws36_c00153{word-spacing:18.739200pt;}
.wsd_c00153{word-spacing:28.300800pt;}
.wsc_c00153{word-spacing:28.403200pt;}
.ws30_c00153{word-spacing:29.868800pt;}
.ws35_c00153{word-spacing:32.486400pt;}
.ws27_c00153{word-spacing:36.211200pt;}
.ws26_c00153{word-spacing:36.326400pt;}
.ws25_c00153{word-spacing:36.345600pt;}
._0_c00153{width:0.972800pt;}
.fs0_c00153{font-size:64.000000pt;}
.y0_c00153{bottom:0.000000pt;}
.y2_c00153{bottom:41.627067pt;}
.y1_c00153{bottom:60.027067pt;}
.y2b_c00153{bottom:132.827067pt;}
.y2a_c00153{bottom:160.427067pt;}
.y29_c00153{bottom:196.027067pt;}
.y28_c00153{bottom:214.427067pt;}
.y27_c00153{bottom:232.827067pt;}
.y26_c00153{bottom:251.227067pt;}
.y25_c00153{bottom:269.627067pt;}
.y24_c00153{bottom:288.027067pt;}
.y23_c00153{bottom:306.427067pt;}
.y22_c00153{bottom:324.827067pt;}
.y21_c00153{bottom:343.147067pt;}
.y20_c00153{bottom:361.547067pt;}
.y1f_c00153{bottom:379.947067pt;}
.y1e_c00153{bottom:398.347067pt;}
.y1d_c00153{bottom:416.747067pt;}
.y1c_c00153{bottom:435.147067pt;}
.y1b_c00153{bottom:470.747067pt;}
.y1a_c00153{bottom:498.347067pt;}
.y19_c00153{bottom:525.947067pt;}
.y18_c00153{bottom:553.547067pt;}
.y17_c00153{bottom:581.147067pt;}
.y16_c00153{bottom:599.547067pt;}
.y15_c00153{bottom:617.947067pt;}
.y14_c00153{bottom:636.347067pt;}
.y13_c00153{bottom:654.747067pt;}
.y12_c00153{bottom:673.147067pt;}
.y11_c00153{bottom:691.547067pt;}
.y10_c00153{bottom:709.947067pt;}
.yf_c00153{bottom:728.347067pt;}
.ye_c00153{bottom:746.747067pt;}
.yd_c00153{bottom:765.147067pt;}
.yc_c00153{bottom:783.547067pt;}
.yb_c00153{bottom:801.947067pt;}
.ya_c00153{bottom:820.347067pt;}
.y9_c00153{bottom:838.747067pt;}
.y8_c00153{bottom:857.147067pt;}
.y7_c00153{bottom:875.547067pt;}
.y6_c00153{bottom:893.947067pt;}
.y5_c00153{bottom:912.347067pt;}
.y4_c00153{bottom:947.947067pt;}
.y3_c00153{bottom:975.547067pt;}
.h1_c00153{height:56.156250pt;}
.h2_c00153{height:57.375000pt;}
.h3_c00153{height:66.750000pt;}
.h0_c00153{height:1122.666667pt;}
.w1_c00153{width:793.333333pt;}
.w0_c00153{width:793.626667pt;}
.x0_c00153{left:0.000000pt;}
.x2_c00153{left:113.440000pt;}
.x3_c00153{left:132.400000pt;}
.x1_c00153{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c965afe0c432912fc86f94c7.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.093262;font-style:normal;font-weight:normal;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_cba37e2a6788462c955c6d33.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.106934;font-style:normal;font-weight:normal;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_335285e4485c25229eba3551.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.lsc_c00154{letter-spacing:-0.086400px;}
.lsd_c00154{letter-spacing:-0.079200px;}
.ls3_c00154{letter-spacing:-0.072000px;}
.ls6_c00154{letter-spacing:-0.064800px;}
.lsb_c00154{letter-spacing:-0.057600px;}
.ls7_c00154{letter-spacing:-0.050400px;}
.ls5_c00154{letter-spacing:-0.043200px;}
.ls1_c00154{letter-spacing:-0.036000px;}
.ls9_c00154{letter-spacing:-0.028800px;}
.ls8_c00154{letter-spacing:-0.021600px;}
.ls2_c00154{letter-spacing:-0.014400px;}
.ls4_c00154{letter-spacing:-0.007200px;}
.ls0_c00154{letter-spacing:0.000000px;}
.lsf_c00154{letter-spacing:0.014400px;}
.lsa_c00154{letter-spacing:0.043200px;}
.lse_c00154{letter-spacing:0.144000px;}
.ls10_c00154{letter-spacing:843.998400px;}
.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;}
}
.ws1_c00154{word-spacing:-19.958400px;}
.ws0_c00154{word-spacing:-19.944000px;}
.ws10_c00154{word-spacing:-3.074400px;}
.ws11_c00154{word-spacing:-3.067200px;}
.ws34_c00154{word-spacing:-0.900000px;}
.ws39_c00154{word-spacing:-0.878400px;}
.ws38_c00154{word-spacing:-0.806400px;}
.ws36_c00154{word-spacing:-0.597600px;}
.ws37_c00154{word-spacing:-0.540000px;}
.ws35_c00154{word-spacing:-0.496800px;}
.wsc_c00154{word-spacing:-0.151200px;}
.ws3a_c00154{word-spacing:-0.144000px;}
.wsb_c00154{word-spacing:-0.072000px;}
.ws2_c00154{word-spacing:0.000000px;}
.ws40_c00154{word-spacing:0.021600px;}
.ws8_c00154{word-spacing:0.165600px;}
.ws17_c00154{word-spacing:0.172800px;}
.ws29_c00154{word-spacing:0.194400px;}
.ws25_c00154{word-spacing:0.201600px;}
.ws13_c00154{word-spacing:0.532800px;}
.ws12_c00154{word-spacing:0.547200px;}
.ws1e_c00154{word-spacing:0.928800px;}
.ws1f_c00154{word-spacing:0.950400px;}
.ws1a_c00154{word-spacing:1.195200px;}
.ws19_c00154{word-spacing:1.238400px;}
.ws18_c00154{word-spacing:1.281600px;}
.ws31_c00154{word-spacing:2.368800px;}
.ws1d_c00154{word-spacing:2.505600px;}
.ws1c_c00154{word-spacing:2.664000px;}
.ws1b_c00154{word-spacing:2.743200px;}
.ws4_c00154{word-spacing:3.772800px;}
.ws5_c00154{word-spacing:3.830400px;}
.wsf_c00154{word-spacing:4.118400px;}
.wsd_c00154{word-spacing:4.140000px;}
.wse_c00154{word-spacing:4.161600px;}
.ws16_c00154{word-spacing:4.867200px;}
.ws3b_c00154{word-spacing:5.241600px;}
.ws33_c00154{word-spacing:5.961600px;}
.ws32_c00154{word-spacing:5.976000px;}
.ws15_c00154{word-spacing:7.444800px;}
.ws14_c00154{word-spacing:7.466400px;}
.ws6_c00154{word-spacing:8.078400px;}
.ws7_c00154{word-spacing:8.085600px;}
.ws21_c00154{word-spacing:8.762400px;}
.ws20_c00154{word-spacing:8.812800px;}
.ws22_c00154{word-spacing:8.877600px;}
.ws2a_c00154{word-spacing:10.908000px;}
.ws2b_c00154{word-spacing:11.037600px;}
.wsa_c00154{word-spacing:13.478400px;}
.ws9_c00154{word-spacing:13.521600px;}
.ws27_c00154{word-spacing:14.882400px;}
.ws28_c00154{word-spacing:14.947200px;}
.ws26_c00154{word-spacing:14.968800px;}
.ws3_c00154{word-spacing:16.754400px;}
.ws3f_c00154{word-spacing:18.792000px;}
.ws3e_c00154{word-spacing:19.029600px;}
.ws2f_c00154{word-spacing:24.890400px;}
.ws30_c00154{word-spacing:24.904800px;}
.ws3d_c00154{word-spacing:26.812800px;}
.ws3c_c00154{word-spacing:26.820000px;}
.ws2c_c00154{word-spacing:27.540000px;}
.ws23_c00154{word-spacing:41.234400px;}
.ws24_c00154{word-spacing:41.299200px;}
.ws2d_c00154{word-spacing:57.434400px;}
.ws2e_c00154{word-spacing:57.441600px;}
._0_c00154{width:1.015200px;}
.fc0_c00154{color:rgb(0,0,0);}
.fs0_c00154{font-size:72.000000px;}
.y0_c00154{bottom:0.000000px;}
.y2_c00154{bottom:46.830450px;}
.y1_c00154{bottom:67.530450px;}
.y25_c00154{bottom:150.780450px;}
.y24_c00154{bottom:171.480450px;}
.y23_c00154{bottom:192.180450px;}
.y22_c00154{bottom:212.880450px;}
.y21_c00154{bottom:233.580450px;}
.y20_c00154{bottom:254.280450px;}
.y1f_c00154{bottom:274.980450px;}
.y1e_c00154{bottom:295.680450px;}
.y1d_c00154{bottom:316.380450px;}
.y1c_c00154{bottom:337.080450px;}
.y1b_c00154{bottom:357.690450px;}
.y1a_c00154{bottom:378.390450px;}
.y19_c00154{bottom:399.090450px;}
.y18_c00154{bottom:419.790450px;}
.y17_c00154{bottom:440.490450px;}
.y16_c00154{bottom:480.540450px;}
.y15_c00154{bottom:511.590450px;}
.y14_c00154{bottom:551.640450px;}
.y13_c00154{bottom:582.690450px;}
.y12_c00154{bottom:613.740450px;}
.y11_c00154{bottom:644.790450px;}
.y10_c00154{bottom:675.840450px;}
.yf_c00154{bottom:706.890450px;}
.ye_c00154{bottom:746.850450px;}
.yd_c00154{bottom:777.990450px;}
.yc_c00154{bottom:809.040450px;}
.yb_c00154{bottom:840.090450px;}
.ya_c00154{bottom:871.140450px;}
.y9_c00154{bottom:902.190450px;}
.y8_c00154{bottom:933.240450px;}
.y7_c00154{bottom:964.290450px;}
.y6_c00154{bottom:1004.340450px;}
.y5_c00154{bottom:1035.390450px;}
.y4_c00154{bottom:1066.440450px;}
.y3_c00154{bottom:1097.490450px;}
.h1_c00154{height:63.175781px;}
.h2_c00154{height:64.546875px;}
.h3_c00154{height:75.093750px;}
.h0_c00154{height:1263.000000px;}
.w1_c00154{width:892.500000px;}
.w0_c00154{width:892.830000px;}
.x0_c00154{left:0.000000px;}
.x2_c00154{left:170.100000px;}
.x3_c00154{left:191.430000px;}
.x1_c00154{left:738.360000px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.lsc_c00154{letter-spacing:-0.076800pt;}
.lsd_c00154{letter-spacing:-0.070400pt;}
.ls3_c00154{letter-spacing:-0.064000pt;}
.ls6_c00154{letter-spacing:-0.057600pt;}
.lsb_c00154{letter-spacing:-0.051200pt;}
.ls7_c00154{letter-spacing:-0.044800pt;}
.ls5_c00154{letter-spacing:-0.038400pt;}
.ls1_c00154{letter-spacing:-0.032000pt;}
.ls9_c00154{letter-spacing:-0.025600pt;}
.ls8_c00154{letter-spacing:-0.019200pt;}
.ls2_c00154{letter-spacing:-0.012800pt;}
.ls4_c00154{letter-spacing:-0.006400pt;}
.ls0_c00154{letter-spacing:0.000000pt;}
.lsf_c00154{letter-spacing:0.012800pt;}
.lsa_c00154{letter-spacing:0.038400pt;}
.lse_c00154{letter-spacing:0.128000pt;}
.ls10_c00154{letter-spacing:750.220800pt;}
.ws1_c00154{word-spacing:-17.740800pt;}
.ws0_c00154{word-spacing:-17.728000pt;}
.ws10_c00154{word-spacing:-2.732800pt;}
.ws11_c00154{word-spacing:-2.726400pt;}
.ws34_c00154{word-spacing:-0.800000pt;}
.ws39_c00154{word-spacing:-0.780800pt;}
.ws38_c00154{word-spacing:-0.716800pt;}
.ws36_c00154{word-spacing:-0.531200pt;}
.ws37_c00154{word-spacing:-0.480000pt;}
.ws35_c00154{word-spacing:-0.441600pt;}
.wsc_c00154{word-spacing:-0.134400pt;}
.ws3a_c00154{word-spacing:-0.128000pt;}
.wsb_c00154{word-spacing:-0.064000pt;}
.ws2_c00154{word-spacing:0.000000pt;}
.ws40_c00154{word-spacing:0.019200pt;}
.ws8_c00154{word-spacing:0.147200pt;}
.ws17_c00154{word-spacing:0.153600pt;}
.ws29_c00154{word-spacing:0.172800pt;}
.ws25_c00154{word-spacing:0.179200pt;}
.ws13_c00154{word-spacing:0.473600pt;}
.ws12_c00154{word-spacing:0.486400pt;}
.ws1e_c00154{word-spacing:0.825600pt;}
.ws1f_c00154{word-spacing:0.844800pt;}
.ws1a_c00154{word-spacing:1.062400pt;}
.ws19_c00154{word-spacing:1.100800pt;}
.ws18_c00154{word-spacing:1.139200pt;}
.ws31_c00154{word-spacing:2.105600pt;}
.ws1d_c00154{word-spacing:2.227200pt;}
.ws1c_c00154{word-spacing:2.368000pt;}
.ws1b_c00154{word-spacing:2.438400pt;}
.ws4_c00154{word-spacing:3.353600pt;}
.ws5_c00154{word-spacing:3.404800pt;}
.wsf_c00154{word-spacing:3.660800pt;}
.wsd_c00154{word-spacing:3.680000pt;}
.wse_c00154{word-spacing:3.699200pt;}
.ws16_c00154{word-spacing:4.326400pt;}
.ws3b_c00154{word-spacing:4.659200pt;}
.ws33_c00154{word-spacing:5.299200pt;}
.ws32_c00154{word-spacing:5.312000pt;}
.ws15_c00154{word-spacing:6.617600pt;}
.ws14_c00154{word-spacing:6.636800pt;}
.ws6_c00154{word-spacing:7.180800pt;}
.ws7_c00154{word-spacing:7.187200pt;}
.ws21_c00154{word-spacing:7.788800pt;}
.ws20_c00154{word-spacing:7.833600pt;}
.ws22_c00154{word-spacing:7.891200pt;}
.ws2a_c00154{word-spacing:9.696000pt;}
.ws2b_c00154{word-spacing:9.811200pt;}
.wsa_c00154{word-spacing:11.980800pt;}
.ws9_c00154{word-spacing:12.019200pt;}
.ws27_c00154{word-spacing:13.228800pt;}
.ws28_c00154{word-spacing:13.286400pt;}
.ws26_c00154{word-spacing:13.305600pt;}
.ws3_c00154{word-spacing:14.892800pt;}
.ws3f_c00154{word-spacing:16.704000pt;}
.ws3e_c00154{word-spacing:16.915200pt;}
.ws2f_c00154{word-spacing:22.124800pt;}
.ws30_c00154{word-spacing:22.137600pt;}
.ws3d_c00154{word-spacing:23.833600pt;}
.ws3c_c00154{word-spacing:23.840000pt;}
.ws2c_c00154{word-spacing:24.480000pt;}
.ws23_c00154{word-spacing:36.652800pt;}
.ws24_c00154{word-spacing:36.710400pt;}
.ws2d_c00154{word-spacing:51.052800pt;}
.ws2e_c00154{word-spacing:51.059200pt;}
._0_c00154{width:0.902400pt;}
.fs0_c00154{font-size:64.000000pt;}
.y0_c00154{bottom:0.000000pt;}
.y2_c00154{bottom:41.627067pt;}
.y1_c00154{bottom:60.027067pt;}
.y25_c00154{bottom:134.027067pt;}
.y24_c00154{bottom:152.427067pt;}
.y23_c00154{bottom:170.827067pt;}
.y22_c00154{bottom:189.227067pt;}
.y21_c00154{bottom:207.627067pt;}
.y20_c00154{bottom:226.027067pt;}
.y1f_c00154{bottom:244.427067pt;}
.y1e_c00154{bottom:262.827067pt;}
.y1d_c00154{bottom:281.227067pt;}
.y1c_c00154{bottom:299.627067pt;}
.y1b_c00154{bottom:317.947067pt;}
.y1a_c00154{bottom:336.347067pt;}
.y19_c00154{bottom:354.747067pt;}
.y18_c00154{bottom:373.147067pt;}
.y17_c00154{bottom:391.547067pt;}
.y16_c00154{bottom:427.147067pt;}
.y15_c00154{bottom:454.747067pt;}
.y14_c00154{bottom:490.347067pt;}
.y13_c00154{bottom:517.947067pt;}
.y12_c00154{bottom:545.547067pt;}
.y11_c00154{bottom:573.147067pt;}
.y10_c00154{bottom:600.747067pt;}
.yf_c00154{bottom:628.347067pt;}
.ye_c00154{bottom:663.867067pt;}
.yd_c00154{bottom:691.547067pt;}
.yc_c00154{bottom:719.147067pt;}
.yb_c00154{bottom:746.747067pt;}
.ya_c00154{bottom:774.347067pt;}
.y9_c00154{bottom:801.947067pt;}
.y8_c00154{bottom:829.547067pt;}
.y7_c00154{bottom:857.147067pt;}
.y6_c00154{bottom:892.747067pt;}
.y5_c00154{bottom:920.347067pt;}
.y4_c00154{bottom:947.947067pt;}
.y3_c00154{bottom:975.547067pt;}
.h1_c00154{height:56.156250pt;}
.h2_c00154{height:57.375000pt;}
.h3_c00154{height:66.750000pt;}
.h0_c00154{height:1122.666667pt;}
.w1_c00154{width:793.333333pt;}
.w0_c00154{width:793.626667pt;}
.x0_c00154{left:0.000000pt;}
.x2_c00154{left:151.200000pt;}
.x3_c00154{left:170.160000pt;}
.x1_c00154{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5023de1ebe17422d58dccbda.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00155{vertical-align:0.000000px;}
.ls0_c00155{letter-spacing:0.000000px;}
.ls1_c00155{letter-spacing:843.998400px;}
.sc__c00155{text-shadow:none;}
.sc0_c00155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00155{-webkit-text-stroke:0px transparent;}
.sc0_c00155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00155{word-spacing:0.000000px;}
.fc0_c00155{color:rgb(0,0,0);}
.fs0_c00155{font-size:72.000000px;}
.y0_c00155{bottom:0.000000px;}
.y2_c00155{bottom:46.830450px;}
.y1_c00155{bottom:67.530450px;}
.y3_c00155{bottom:1097.490450px;}
.h1_c00155{height:63.175781px;}
.h2_c00155{height:64.546875px;}
.h0_c00155{height:1263.000000px;}
.w1_c00155{width:892.500000px;}
.w0_c00155{width:892.830000px;}
.x0_c00155{left:0.000000px;}
.x2_c00155{left:127.620000px;}
.x1_c00155{left:695.880000px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls0_c00155{letter-spacing:0.000000pt;}
.ls1_c00155{letter-spacing:750.220800pt;}
.ws0_c00155{word-spacing:0.000000pt;}
.fs0_c00155{font-size:64.000000pt;}
.y0_c00155{bottom:0.000000pt;}
.y2_c00155{bottom:41.627067pt;}
.y1_c00155{bottom:60.027067pt;}
.y3_c00155{bottom:975.547067pt;}
.h1_c00155{height:56.156250pt;}
.h2_c00155{height:57.375000pt;}
.h0_c00155{height:1122.666667pt;}
.w1_c00155{width:793.333333pt;}
.w0_c00155{width:793.626667pt;}
.x0_c00155{left:0.000000pt;}
.x2_c00155{left:113.440000pt;}
.x1_c00155{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_478046dbfa9e26023fd3841a.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.093262;font-style:normal;font-weight:normal;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_713c29327eb4af581edf8415.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00156;src:url('chunks/assets/font_fa0ad355ce646f9cec0398e6.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:1.106934;font-style:normal;font-weight:normal;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_9b365ca132308cb97dd29b83.woff2')format("woff");}.ff4_c00156{font-family:ff4_c00156;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00156{letter-spacing:-0.100800px;}
.ls9_c00156{letter-spacing:-0.086400px;}
.lsb_c00156{letter-spacing:-0.079200px;}
.lsf_c00156{letter-spacing:-0.072000px;}
.ls8_c00156{letter-spacing:-0.064800px;}
.ls7_c00156{letter-spacing:-0.057600px;}
.ls4_c00156{letter-spacing:-0.050400px;}
.ls6_c00156{letter-spacing:-0.043200px;}
.ls5_c00156{letter-spacing:-0.036000px;}
.ls2_c00156{letter-spacing:-0.028800px;}
.lsa_c00156{letter-spacing:-0.021600px;}
.ls3_c00156{letter-spacing:-0.014400px;}
.lse_c00156{letter-spacing:-0.007200px;}
.ls1_c00156{letter-spacing:0.000000px;}
.lsc_c00156{letter-spacing:0.021600px;}
.ls0_c00156{letter-spacing:0.067104px;}
.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;}
}
.ws13_c00156{word-spacing:-3.016800px;}
.ws37_c00156{word-spacing:-2.023200px;}
.ws38_c00156{word-spacing:-1.965600px;}
.wsd_c00156{word-spacing:-1.605600px;}
.ws2b_c00156{word-spacing:-1.598400px;}
.wsc_c00156{word-spacing:-1.584000px;}
.wse_c00156{word-spacing:-0.518400px;}
.wsf_c00156{word-spacing:-0.504000px;}
.ws12_c00156{word-spacing:-0.151200px;}
.ws2d_c00156{word-spacing:-0.100800px;}
.ws2c_c00156{word-spacing:-0.072000px;}
.ws0_c00156{word-spacing:0.000000px;}
.ws31_c00156{word-spacing:0.172800px;}
.ws30_c00156{word-spacing:0.187200px;}
.ws5_c00156{word-spacing:0.568800px;}
.ws4_c00156{word-spacing:0.892800px;}
.ws8_c00156{word-spacing:0.921600px;}
.ws9_c00156{word-spacing:0.928800px;}
.ws26_c00156{word-spacing:0.943200px;}
.ws3_c00156{word-spacing:0.972000px;}
.ws1c_c00156{word-spacing:1.288800px;}
.ws1b_c00156{word-spacing:1.303200px;}
.ws32_c00156{word-spacing:2.296800px;}
.ws33_c00156{word-spacing:2.354400px;}
.ws28_c00156{word-spacing:3.751200px;}
.ws27_c00156{word-spacing:3.816000px;}
.ws24_c00156{word-spacing:4.161600px;}
.ws25_c00156{word-spacing:4.183200px;}
.ws1a_c00156{word-spacing:4.204800px;}
.ws19_c00156{word-spacing:4.226400px;}
.ws10_c00156{word-spacing:5.479200px;}
.ws11_c00156{word-spacing:5.601600px;}
.ws36_c00156{word-spacing:6.307200px;}
.ws1e_c00156{word-spacing:7.372800px;}
.ws1d_c00156{word-spacing:7.380000px;}
.ws29_c00156{word-spacing:7.740000px;}
.ws2a_c00156{word-spacing:7.768800px;}
.ws1_c00156{word-spacing:9.746856px;}
.ws18_c00156{word-spacing:11.001600px;}
.ws17_c00156{word-spacing:11.095200px;}
.ws35_c00156{word-spacing:11.678400px;}
.ws34_c00156{word-spacing:11.700000px;}
.ws1f_c00156{word-spacing:14.277600px;}
.ws2f_c00156{word-spacing:19.173600px;}
.ws2e_c00156{word-spacing:19.260000px;}
.ws6_c00156{word-spacing:19.612800px;}
.ws7_c00156{word-spacing:19.634400px;}
.ws2_c00156{word-spacing:24.667200px;}
.ws22_c00156{word-spacing:34.401600px;}
.ws23_c00156{word-spacing:34.416000px;}
.wsa_c00156{word-spacing:40.132800px;}
.wsb_c00156{word-spacing:40.154400px;}
.ws3a_c00156{word-spacing:46.958400px;}
.ws3b_c00156{word-spacing:47.217600px;}
.ws39_c00156{word-spacing:47.404800px;}
.ws14_c00156{word-spacing:50.961600px;}
.ws15_c00156{word-spacing:51.084000px;}
.ws16_c00156{word-spacing:52.754400px;}
.ws21_c00156{word-spacing:62.100000px;}
.ws20_c00156{word-spacing:62.136000px;}
._0_c00156{margin-left:-10.233360px;}
._2_c00156{margin-left:-1.123200px;}
._1_c00156{width:1.173600px;}
.fc0_c00156{color:rgb(0,0,0);}
.fs0_c00156{font-size:72.000000px;}
.fs1_c00156{font-size:83.880000px;}
.y0_c00156{bottom:0.000000px;}
.y2_c00156{bottom:46.830450px;}
.y1_c00156{bottom:67.530450px;}
.y28_c00156{bottom:145.920450px;}
.y27_c00156{bottom:176.970450px;}
.y26_c00156{bottom:208.020450px;}
.y25_c00156{bottom:239.070450px;}
.y24_c00156{bottom:270.120450px;}
.y23_c00156{bottom:290.820450px;}
.y22_c00156{bottom:311.520450px;}
.y21_c00156{bottom:332.220450px;}
.y20_c00156{bottom:352.920450px;}
.y1f_c00156{bottom:373.620450px;}
.y1e_c00156{bottom:394.320450px;}
.y1d_c00156{bottom:415.020450px;}
.y1c_c00156{bottom:435.720450px;}
.y1b_c00156{bottom:456.420450px;}
.y1a_c00156{bottom:477.120450px;}
.y19_c00156{bottom:497.820450px;}
.y18_c00156{bottom:518.520450px;}
.y17_c00156{bottom:539.220450px;}
.y16_c00156{bottom:559.920450px;}
.y15_c00156{bottom:580.620450px;}
.y14_c00156{bottom:601.320450px;}
.y13_c00156{bottom:622.020450px;}
.y12_c00156{bottom:642.720450px;}
.y11_c00156{bottom:663.420450px;}
.y10_c00156{bottom:684.120450px;}
.yf_c00156{bottom:704.820450px;}
.ye_c00156{bottom:744.870450px;}
.yd_c00156{bottom:775.920450px;}
.yc_c00156{bottom:806.970450px;}
.yb_c00156{bottom:838.020450px;}
.ya_c00156{bottom:869.070450px;}
.y9_c00156{bottom:900.120450px;}
.y8_c00156{bottom:931.170450px;}
.y7_c00156{bottom:962.220450px;}
.y6_c00156{bottom:993.270450px;}
.y5_c00156{bottom:1024.320450px;}
.y4_c00156{bottom:1064.370450px;}
.y3_c00156{bottom:1094.520450px;}
.h1_c00156{height:63.175781px;}
.h3_c00156{height:64.546875px;}
.h4_c00156{height:75.093750px;}
.h2_c00156{height:87.484219px;}
.h0_c00156{height:1263.000000px;}
.w1_c00156{width:892.500000px;}
.w0_c00156{width:892.830000px;}
.x0_c00156{left:0.000000px;}
.x2_c00156{left:170.100000px;}
.x4_c00156{left:191.430000px;}
.x3_c00156{left:251.100000px;}
.x1_c00156{left:738.360000px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.lsd_c00156{letter-spacing:-0.089600pt;}
.ls9_c00156{letter-spacing:-0.076800pt;}
.lsb_c00156{letter-spacing:-0.070400pt;}
.lsf_c00156{letter-spacing:-0.064000pt;}
.ls8_c00156{letter-spacing:-0.057600pt;}
.ls7_c00156{letter-spacing:-0.051200pt;}
.ls4_c00156{letter-spacing:-0.044800pt;}
.ls6_c00156{letter-spacing:-0.038400pt;}
.ls5_c00156{letter-spacing:-0.032000pt;}
.ls2_c00156{letter-spacing:-0.025600pt;}
.lsa_c00156{letter-spacing:-0.019200pt;}
.ls3_c00156{letter-spacing:-0.012800pt;}
.lse_c00156{letter-spacing:-0.006400pt;}
.ls1_c00156{letter-spacing:0.000000pt;}
.lsc_c00156{letter-spacing:0.019200pt;}
.ls0_c00156{letter-spacing:0.059648pt;}
.ws13_c00156{word-spacing:-2.681600pt;}
.ws37_c00156{word-spacing:-1.798400pt;}
.ws38_c00156{word-spacing:-1.747200pt;}
.wsd_c00156{word-spacing:-1.427200pt;}
.ws2b_c00156{word-spacing:-1.420800pt;}
.wsc_c00156{word-spacing:-1.408000pt;}
.wse_c00156{word-spacing:-0.460800pt;}
.wsf_c00156{word-spacing:-0.448000pt;}
.ws12_c00156{word-spacing:-0.134400pt;}
.ws2d_c00156{word-spacing:-0.089600pt;}
.ws2c_c00156{word-spacing:-0.064000pt;}
.ws0_c00156{word-spacing:0.000000pt;}
.ws31_c00156{word-spacing:0.153600pt;}
.ws30_c00156{word-spacing:0.166400pt;}
.ws5_c00156{word-spacing:0.505600pt;}
.ws4_c00156{word-spacing:0.793600pt;}
.ws8_c00156{word-spacing:0.819200pt;}
.ws9_c00156{word-spacing:0.825600pt;}
.ws26_c00156{word-spacing:0.838400pt;}
.ws3_c00156{word-spacing:0.864000pt;}
.ws1c_c00156{word-spacing:1.145600pt;}
.ws1b_c00156{word-spacing:1.158400pt;}
.ws32_c00156{word-spacing:2.041600pt;}
.ws33_c00156{word-spacing:2.092800pt;}
.ws28_c00156{word-spacing:3.334400pt;}
.ws27_c00156{word-spacing:3.392000pt;}
.ws24_c00156{word-spacing:3.699200pt;}
.ws25_c00156{word-spacing:3.718400pt;}
.ws1a_c00156{word-spacing:3.737600pt;}
.ws19_c00156{word-spacing:3.756800pt;}
.ws10_c00156{word-spacing:4.870400pt;}
.ws11_c00156{word-spacing:4.979200pt;}
.ws36_c00156{word-spacing:5.606400pt;}
.ws1e_c00156{word-spacing:6.553600pt;}
.ws1d_c00156{word-spacing:6.560000pt;}
.ws29_c00156{word-spacing:6.880000pt;}
.ws2a_c00156{word-spacing:6.905600pt;}
.ws1_c00156{word-spacing:8.663872pt;}
.ws18_c00156{word-spacing:9.779200pt;}
.ws17_c00156{word-spacing:9.862400pt;}
.ws35_c00156{word-spacing:10.380800pt;}
.ws34_c00156{word-spacing:10.400000pt;}
.ws1f_c00156{word-spacing:12.691200pt;}
.ws2f_c00156{word-spacing:17.043200pt;}
.ws2e_c00156{word-spacing:17.120000pt;}
.ws6_c00156{word-spacing:17.433600pt;}
.ws7_c00156{word-spacing:17.452800pt;}
.ws2_c00156{word-spacing:21.926400pt;}
.ws22_c00156{word-spacing:30.579200pt;}
.ws23_c00156{word-spacing:30.592000pt;}
.wsa_c00156{word-spacing:35.673600pt;}
.wsb_c00156{word-spacing:35.692800pt;}
.ws3a_c00156{word-spacing:41.740800pt;}
.ws3b_c00156{word-spacing:41.971200pt;}
.ws39_c00156{word-spacing:42.137600pt;}
.ws14_c00156{word-spacing:45.299200pt;}
.ws15_c00156{word-spacing:45.408000pt;}
.ws16_c00156{word-spacing:46.892800pt;}
.ws21_c00156{word-spacing:55.200000pt;}
.ws20_c00156{word-spacing:55.232000pt;}
._0_c00156{margin-left:-9.096320pt;}
._2_c00156{margin-left:-0.998400pt;}
._1_c00156{width:1.043200pt;}
.fs0_c00156{font-size:64.000000pt;}
.fs1_c00156{font-size:74.560000pt;}
.y0_c00156{bottom:0.000000pt;}
.y2_c00156{bottom:41.627067pt;}
.y1_c00156{bottom:60.027067pt;}
.y28_c00156{bottom:129.707067pt;}
.y27_c00156{bottom:157.307067pt;}
.y26_c00156{bottom:184.907067pt;}
.y25_c00156{bottom:212.507067pt;}
.y24_c00156{bottom:240.107067pt;}
.y23_c00156{bottom:258.507067pt;}
.y22_c00156{bottom:276.907067pt;}
.y21_c00156{bottom:295.307067pt;}
.y20_c00156{bottom:313.707067pt;}
.y1f_c00156{bottom:332.107067pt;}
.y1e_c00156{bottom:350.507067pt;}
.y1d_c00156{bottom:368.907067pt;}
.y1c_c00156{bottom:387.307067pt;}
.y1b_c00156{bottom:405.707067pt;}
.y1a_c00156{bottom:424.107067pt;}
.y19_c00156{bottom:442.507067pt;}
.y18_c00156{bottom:460.907067pt;}
.y17_c00156{bottom:479.307067pt;}
.y16_c00156{bottom:497.707067pt;}
.y15_c00156{bottom:516.107067pt;}
.y14_c00156{bottom:534.507067pt;}
.y13_c00156{bottom:552.907067pt;}
.y12_c00156{bottom:571.307067pt;}
.y11_c00156{bottom:589.707067pt;}
.y10_c00156{bottom:608.107067pt;}
.yf_c00156{bottom:626.507067pt;}
.ye_c00156{bottom:662.107067pt;}
.yd_c00156{bottom:689.707067pt;}
.yc_c00156{bottom:717.307067pt;}
.yb_c00156{bottom:744.907067pt;}
.ya_c00156{bottom:772.507067pt;}
.y9_c00156{bottom:800.107067pt;}
.y8_c00156{bottom:827.707067pt;}
.y7_c00156{bottom:855.307067pt;}
.y6_c00156{bottom:882.907067pt;}
.y5_c00156{bottom:910.507067pt;}
.y4_c00156{bottom:946.107067pt;}
.y3_c00156{bottom:972.907067pt;}
.h1_c00156{height:56.156250pt;}
.h3_c00156{height:57.375000pt;}
.h4_c00156{height:66.750000pt;}
.h2_c00156{height:77.763750pt;}
.h0_c00156{height:1122.666667pt;}
.w1_c00156{width:793.333333pt;}
.w0_c00156{width:793.626667pt;}
.x0_c00156{left:0.000000pt;}
.x2_c00156{left:151.200000pt;}
.x4_c00156{left:170.160000pt;}
.x3_c00156{left:223.200000pt;}
.x1_c00156{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_77484ba3d19ea18549a9acb8.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.093262;font-style:normal;font-weight:normal;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_1a38229c168936f7f065a04c.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.106934;font-style:normal;font-weight:normal;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_22082c5927d4ab90df3d8cfb.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsa_c00157{letter-spacing:-0.079200px;}
.lsf_c00157{letter-spacing:-0.072000px;}
.lsd_c00157{letter-spacing:-0.064800px;}
.ls5_c00157{letter-spacing:-0.057600px;}
.lse_c00157{letter-spacing:-0.050400px;}
.ls6_c00157{letter-spacing:-0.043200px;}
.ls3_c00157{letter-spacing:-0.036000px;}
.ls8_c00157{letter-spacing:-0.028800px;}
.ls9_c00157{letter-spacing:-0.021600px;}
.lsc_c00157{letter-spacing:-0.014400px;}
.lsb_c00157{letter-spacing:-0.007200px;}
.ls2_c00157{letter-spacing:0.000000px;}
.ls1_c00157{letter-spacing:0.014400px;}
.ls10_c00157{letter-spacing:0.021600px;}
.ls4_c00157{letter-spacing:0.072000px;}
.ls7_c00157{letter-spacing:0.079200px;}
.ls0_c00157{letter-spacing:0.144000px;}
.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;}
}
.ws24_c00157{word-spacing:-4.536000px;}
.ws25_c00157{word-spacing:-4.492800px;}
.ws2b_c00157{word-spacing:-3.088800px;}
.ws13_c00157{word-spacing:-3.067200px;}
.ws2c_c00157{word-spacing:-3.031200px;}
.wsc_c00157{word-spacing:-2.332800px;}
.wsb_c00157{word-spacing:-2.325600px;}
.ws1c_c00157{word-spacing:-1.612800px;}
.ws34_c00157{word-spacing:-1.591200px;}
.ws33_c00157{word-spacing:-1.569600px;}
.ws5_c00157{word-spacing:-0.280800px;}
.ws0_c00157{word-spacing:0.000000px;}
.ws32_c00157{word-spacing:0.079200px;}
.ws26_c00157{word-spacing:0.136800px;}
.ws36_c00157{word-spacing:0.158400px;}
.ws35_c00157{word-spacing:0.165600px;}
.ws11_c00157{word-spacing:0.180000px;}
.ws4_c00157{word-spacing:0.201600px;}
.ws10_c00157{word-spacing:2.016000px;}
.wsf_c00157{word-spacing:2.073600px;}
.ws17_c00157{word-spacing:2.246400px;}
.ws18_c00157{word-spacing:2.325600px;}
.ws16_c00157{word-spacing:2.361600px;}
.ws1e_c00157{word-spacing:3.067200px;}
.ws1f_c00157{word-spacing:3.081600px;}
.ws1d_c00157{word-spacing:3.175200px;}
.wsd_c00157{word-spacing:4.514400px;}
.wse_c00157{word-spacing:4.557600px;}
.ws1b_c00157{word-spacing:4.896000px;}
.ws3a_c00157{word-spacing:6.300000px;}
.ws39_c00157{word-spacing:6.314400px;}
.ws7_c00157{word-spacing:7.740000px;}
.ws6_c00157{word-spacing:7.747200px;}
.ws20_c00157{word-spacing:7.754400px;}
.ws21_c00157{word-spacing:7.768800px;}
.ws9_c00157{word-spacing:8.107200px;}
.wsa_c00157{word-spacing:8.157600px;}
.ws2f_c00157{word-spacing:8.438400px;}
.ws37_c00157{word-spacing:9.424800px;}
.ws38_c00157{word-spacing:9.468000px;}
.ws2e_c00157{word-spacing:9.532800px;}
.ws2d_c00157{word-spacing:9.561600px;}
.ws19_c00157{word-spacing:10.612800px;}
.ws1a_c00157{word-spacing:10.641600px;}
.ws8_c00157{word-spacing:10.987200px;}
.ws29_c00157{word-spacing:12.420000px;}
.ws2a_c00157{word-spacing:12.499200px;}
.ws28_c00157{word-spacing:18.540000px;}
.ws27_c00157{word-spacing:18.554400px;}
.ws22_c00157{word-spacing:22.960800px;}
.ws23_c00157{word-spacing:22.996800px;}
.ws2_c00157{word-spacing:26.906400px;}
.ws1_c00157{word-spacing:27.194400px;}
.ws3_c00157{word-spacing:27.216000px;}
.ws12_c00157{word-spacing:44.452800px;}
.ws14_c00157{word-spacing:45.194400px;}
.ws15_c00157{word-spacing:45.237600px;}
.ws30_c00157{word-spacing:51.314400px;}
.ws31_c00157{word-spacing:51.357600px;}
._1_c00157{margin-left:-18.360000px;}
._0_c00157{width:1.008000px;}
.fc0_c00157{color:rgb(0,0,0);}
.fs0_c00157{font-size:72.000000px;}
.y0_c00157{bottom:0.000000px;}
.y2_c00157{bottom:46.830450px;}
.y1_c00157{bottom:67.530450px;}
.y27_c00157{bottom:159.780450px;}
.y26_c00157{bottom:180.480450px;}
.y25_c00157{bottom:201.180450px;}
.y24_c00157{bottom:221.880450px;}
.y23_c00157{bottom:242.580450px;}
.y22_c00157{bottom:282.630450px;}
.y21_c00157{bottom:313.680450px;}
.y20_c00157{bottom:344.730450px;}
.y1f_c00157{bottom:375.690450px;}
.y1e_c00157{bottom:406.740450px;}
.y1d_c00157{bottom:437.790450px;}
.y1c_c00157{bottom:468.840450px;}
.y1b_c00157{bottom:489.540450px;}
.y1a_c00157{bottom:510.240450px;}
.y19_c00157{bottom:530.940450px;}
.y18_c00157{bottom:551.640450px;}
.y17_c00157{bottom:572.340450px;}
.y16_c00157{bottom:593.040450px;}
.y15_c00157{bottom:613.740450px;}
.y14_c00157{bottom:634.440450px;}
.y13_c00157{bottom:655.140450px;}
.y12_c00157{bottom:675.840450px;}
.y11_c00157{bottom:696.540450px;}
.y10_c00157{bottom:717.240450px;}
.yf_c00157{bottom:737.940450px;}
.ye_c00157{bottom:758.640450px;}
.yd_c00157{bottom:779.340450px;}
.yc_c00157{bottom:800.040450px;}
.yb_c00157{bottom:840.090450px;}
.ya_c00157{bottom:871.140450px;}
.y9_c00157{bottom:902.190450px;}
.y8_c00157{bottom:933.240450px;}
.y7_c00157{bottom:964.290450px;}
.y6_c00157{bottom:995.340450px;}
.y5_c00157{bottom:1026.390450px;}
.y4_c00157{bottom:1066.440450px;}
.y3_c00157{bottom:1097.490450px;}
.h1_c00157{height:63.175781px;}
.h3_c00157{height:64.546875px;}
.h2_c00157{height:75.093750px;}
.h0_c00157{height:1263.000000px;}
.w1_c00157{width:892.500000px;}
.w0_c00157{width:892.830000px;}
.x0_c00157{left:0.000000px;}
.x2_c00157{left:127.620000px;}
.x3_c00157{left:148.950000px;}
.x1_c00157{left:695.880000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.lsa_c00157{letter-spacing:-0.070400pt;}
.lsf_c00157{letter-spacing:-0.064000pt;}
.lsd_c00157{letter-spacing:-0.057600pt;}
.ls5_c00157{letter-spacing:-0.051200pt;}
.lse_c00157{letter-spacing:-0.044800pt;}
.ls6_c00157{letter-spacing:-0.038400pt;}
.ls3_c00157{letter-spacing:-0.032000pt;}
.ls8_c00157{letter-spacing:-0.025600pt;}
.ls9_c00157{letter-spacing:-0.019200pt;}
.lsc_c00157{letter-spacing:-0.012800pt;}
.lsb_c00157{letter-spacing:-0.006400pt;}
.ls2_c00157{letter-spacing:0.000000pt;}
.ls1_c00157{letter-spacing:0.012800pt;}
.ls10_c00157{letter-spacing:0.019200pt;}
.ls4_c00157{letter-spacing:0.064000pt;}
.ls7_c00157{letter-spacing:0.070400pt;}
.ls0_c00157{letter-spacing:0.128000pt;}
.ws24_c00157{word-spacing:-4.032000pt;}
.ws25_c00157{word-spacing:-3.993600pt;}
.ws2b_c00157{word-spacing:-2.745600pt;}
.ws13_c00157{word-spacing:-2.726400pt;}
.ws2c_c00157{word-spacing:-2.694400pt;}
.wsc_c00157{word-spacing:-2.073600pt;}
.wsb_c00157{word-spacing:-2.067200pt;}
.ws1c_c00157{word-spacing:-1.433600pt;}
.ws34_c00157{word-spacing:-1.414400pt;}
.ws33_c00157{word-spacing:-1.395200pt;}
.ws5_c00157{word-spacing:-0.249600pt;}
.ws0_c00157{word-spacing:0.000000pt;}
.ws32_c00157{word-spacing:0.070400pt;}
.ws26_c00157{word-spacing:0.121600pt;}
.ws36_c00157{word-spacing:0.140800pt;}
.ws35_c00157{word-spacing:0.147200pt;}
.ws11_c00157{word-spacing:0.160000pt;}
.ws4_c00157{word-spacing:0.179200pt;}
.ws10_c00157{word-spacing:1.792000pt;}
.wsf_c00157{word-spacing:1.843200pt;}
.ws17_c00157{word-spacing:1.996800pt;}
.ws18_c00157{word-spacing:2.067200pt;}
.ws16_c00157{word-spacing:2.099200pt;}
.ws1e_c00157{word-spacing:2.726400pt;}
.ws1f_c00157{word-spacing:2.739200pt;}
.ws1d_c00157{word-spacing:2.822400pt;}
.wsd_c00157{word-spacing:4.012800pt;}
.wse_c00157{word-spacing:4.051200pt;}
.ws1b_c00157{word-spacing:4.352000pt;}
.ws3a_c00157{word-spacing:5.600000pt;}
.ws39_c00157{word-spacing:5.612800pt;}
.ws7_c00157{word-spacing:6.880000pt;}
.ws6_c00157{word-spacing:6.886400pt;}
.ws20_c00157{word-spacing:6.892800pt;}
.ws21_c00157{word-spacing:6.905600pt;}
.ws9_c00157{word-spacing:7.206400pt;}
.wsa_c00157{word-spacing:7.251200pt;}
.ws2f_c00157{word-spacing:7.500800pt;}
.ws37_c00157{word-spacing:8.377600pt;}
.ws38_c00157{word-spacing:8.416000pt;}
.ws2e_c00157{word-spacing:8.473600pt;}
.ws2d_c00157{word-spacing:8.499200pt;}
.ws19_c00157{word-spacing:9.433600pt;}
.ws1a_c00157{word-spacing:9.459200pt;}
.ws8_c00157{word-spacing:9.766400pt;}
.ws29_c00157{word-spacing:11.040000pt;}
.ws2a_c00157{word-spacing:11.110400pt;}
.ws28_c00157{word-spacing:16.480000pt;}
.ws27_c00157{word-spacing:16.492800pt;}
.ws22_c00157{word-spacing:20.409600pt;}
.ws23_c00157{word-spacing:20.441600pt;}
.ws2_c00157{word-spacing:23.916800pt;}
.ws1_c00157{word-spacing:24.172800pt;}
.ws3_c00157{word-spacing:24.192000pt;}
.ws12_c00157{word-spacing:39.513600pt;}
.ws14_c00157{word-spacing:40.172800pt;}
.ws15_c00157{word-spacing:40.211200pt;}
.ws30_c00157{word-spacing:45.612800pt;}
.ws31_c00157{word-spacing:45.651200pt;}
._1_c00157{margin-left:-16.320000pt;}
._0_c00157{width:0.896000pt;}
.fs0_c00157{font-size:64.000000pt;}
.y0_c00157{bottom:0.000000pt;}
.y2_c00157{bottom:41.627067pt;}
.y1_c00157{bottom:60.027067pt;}
.y27_c00157{bottom:142.027067pt;}
.y26_c00157{bottom:160.427067pt;}
.y25_c00157{bottom:178.827067pt;}
.y24_c00157{bottom:197.227067pt;}
.y23_c00157{bottom:215.627067pt;}
.y22_c00157{bottom:251.227067pt;}
.y21_c00157{bottom:278.827067pt;}
.y20_c00157{bottom:306.427067pt;}
.y1f_c00157{bottom:333.947067pt;}
.y1e_c00157{bottom:361.547067pt;}
.y1d_c00157{bottom:389.147067pt;}
.y1c_c00157{bottom:416.747067pt;}
.y1b_c00157{bottom:435.147067pt;}
.y1a_c00157{bottom:453.547067pt;}
.y19_c00157{bottom:471.947067pt;}
.y18_c00157{bottom:490.347067pt;}
.y17_c00157{bottom:508.747067pt;}
.y16_c00157{bottom:527.147067pt;}
.y15_c00157{bottom:545.547067pt;}
.y14_c00157{bottom:563.947067pt;}
.y13_c00157{bottom:582.347067pt;}
.y12_c00157{bottom:600.747067pt;}
.y11_c00157{bottom:619.147067pt;}
.y10_c00157{bottom:637.547067pt;}
.yf_c00157{bottom:655.947067pt;}
.ye_c00157{bottom:674.347067pt;}
.yd_c00157{bottom:692.747067pt;}
.yc_c00157{bottom:711.147067pt;}
.yb_c00157{bottom:746.747067pt;}
.ya_c00157{bottom:774.347067pt;}
.y9_c00157{bottom:801.947067pt;}
.y8_c00157{bottom:829.547067pt;}
.y7_c00157{bottom:857.147067pt;}
.y6_c00157{bottom:884.747067pt;}
.y5_c00157{bottom:912.347067pt;}
.y4_c00157{bottom:947.947067pt;}
.y3_c00157{bottom:975.547067pt;}
.h1_c00157{height:56.156250pt;}
.h3_c00157{height:57.375000pt;}
.h2_c00157{height:66.750000pt;}
.h0_c00157{height:1122.666667pt;}
.w1_c00157{width:793.333333pt;}
.w0_c00157{width:793.626667pt;}
.x0_c00157{left:0.000000pt;}
.x2_c00157{left:113.440000pt;}
.x3_c00157{left:132.400000pt;}
.x1_c00157{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7959d4a193387e5367c3d578.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.093262;font-style:normal;font-weight:normal;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_85a449d46428a089b5d8297c.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00158{vertical-align:0.000000px;}
.ls4_c00158{letter-spacing:-0.064800px;}
.ls7_c00158{letter-spacing:-0.057600px;}
.lsa_c00158{letter-spacing:-0.050400px;}
.ls5_c00158{letter-spacing:-0.043200px;}
.ls2_c00158{letter-spacing:-0.036000px;}
.ls1_c00158{letter-spacing:-0.028800px;}
.ls6_c00158{letter-spacing:-0.021600px;}
.ls3_c00158{letter-spacing:-0.014400px;}
.ls8_c00158{letter-spacing:-0.007200px;}
.ls0_c00158{letter-spacing:0.000000px;}
.ls9_c00158{letter-spacing:0.007200px;}
.lsb_c00158{letter-spacing:0.036000px;}
.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;}
}
.ws19_c00158{word-spacing:-3.758400px;}
.ws1a_c00158{word-spacing:-3.679200px;}
.ws23_c00158{word-spacing:-3.420000px;}
.ws2e_c00158{word-spacing:-2.102400px;}
.ws2d_c00158{word-spacing:-2.059200px;}
.wse_c00158{word-spacing:-0.626400px;}
.wsd_c00158{word-spacing:-0.525600px;}
.ws0_c00158{word-spacing:0.000000px;}
.ws16_c00158{word-spacing:0.158400px;}
.ws26_c00158{word-spacing:0.172800px;}
.wsf_c00158{word-spacing:0.180000px;}
.ws3_c00158{word-spacing:0.194400px;}
.ws20_c00158{word-spacing:0.280800px;}
.ws5_c00158{word-spacing:1.929600px;}
.ws6_c00158{word-spacing:2.023200px;}
.ws1_c00158{word-spacing:3.067200px;}
.ws2_c00158{word-spacing:3.074400px;}
.ws28_c00158{word-spacing:3.103200px;}
.ws1c_c00158{word-spacing:3.787200px;}
.ws1b_c00158{word-spacing:3.859200px;}
.ws25_c00158{word-spacing:6.292800px;}
.wsc_c00158{word-spacing:8.028000px;}
.wsb_c00158{word-spacing:8.114400px;}
.ws29_c00158{word-spacing:9.547200px;}
.ws1f_c00158{word-spacing:11.268000px;}
.ws1e_c00158{word-spacing:11.376000px;}
.ws2a_c00158{word-spacing:12.772800px;}
.ws8_c00158{word-spacing:14.580000px;}
.ws7_c00158{word-spacing:14.587200px;}
.ws4_c00158{word-spacing:16.372800px;}
.ws24_c00158{word-spacing:18.568800px;}
.ws12_c00158{word-spacing:18.900000px;}
.ws13_c00158{word-spacing:18.936000px;}
.ws21_c00158{word-spacing:22.154400px;}
.ws22_c00158{word-spacing:22.168800px;}
.ws27_c00158{word-spacing:22.867200px;}
.ws15_c00158{word-spacing:24.645600px;}
.ws14_c00158{word-spacing:24.732000px;}
.ws10_c00158{word-spacing:24.904800px;}
.ws11_c00158{word-spacing:25.020000px;}
.ws2b_c00158{word-spacing:27.518400px;}
.ws2c_c00158{word-spacing:27.540000px;}
.ws9_c00158{word-spacing:27.547200px;}
.wsa_c00158{word-spacing:27.561600px;}
.ws30_c00158{word-spacing:37.137600px;}
.ws2f_c00158{word-spacing:37.281600px;}
.ws1d_c00158{word-spacing:41.608800px;}
.ws18_c00158{word-spacing:42.991200px;}
.ws17_c00158{word-spacing:43.005600px;}
.ws31_c00158{word-spacing:47.714400px;}
._1_c00158{margin-left:-22.680000px;}
._2_c00158{margin-left:-1.296000px;}
._0_c00158{width:1.015200px;}
.fc0_c00158{color:rgb(0,0,0);}
.fs0_c00158{font-size:72.000000px;}
.y0_c00158{bottom:0.000000px;}
.y2_c00158{bottom:46.830450px;}
.y1_c00158{bottom:67.530450px;}
.y28_c00158{bottom:149.430450px;}
.y27_c00158{bottom:180.480450px;}
.y26_c00158{bottom:211.530450px;}
.y25_c00158{bottom:242.580450px;}
.y24_c00158{bottom:263.280450px;}
.y23_c00158{bottom:283.980450px;}
.y22_c00158{bottom:304.680450px;}
.y21_c00158{bottom:325.380450px;}
.y20_c00158{bottom:346.080450px;}
.y1f_c00158{bottom:366.690450px;}
.y1e_c00158{bottom:387.390450px;}
.y1d_c00158{bottom:427.440450px;}
.y1c_c00158{bottom:458.490450px;}
.y1b_c00158{bottom:498.540450px;}
.y1a_c00158{bottom:529.590450px;}
.y19_c00158{bottom:560.640450px;}
.y18_c00158{bottom:591.690450px;}
.y17_c00158{bottom:631.740450px;}
.y16_c00158{bottom:662.790450px;}
.y15_c00158{bottom:693.840450px;}
.y14_c00158{bottom:724.890450px;}
.y13_c00158{bottom:755.940450px;}
.y12_c00158{bottom:786.990450px;}
.y11_c00158{bottom:807.690450px;}
.y10_c00158{bottom:828.390450px;}
.yf_c00158{bottom:849.090450px;}
.ye_c00158{bottom:869.790450px;}
.yd_c00158{bottom:890.490450px;}
.yc_c00158{bottom:911.190450px;}
.yb_c00158{bottom:931.890450px;}
.ya_c00158{bottom:952.590450px;}
.y9_c00158{bottom:973.290450px;}
.y8_c00158{bottom:993.990450px;}
.y7_c00158{bottom:1014.690450px;}
.y6_c00158{bottom:1035.390450px;}
.y5_c00158{bottom:1056.090450px;}
.y4_c00158{bottom:1076.790450px;}
.y3_c00158{bottom:1097.490450px;}
.h1_c00158{height:63.175781px;}
.h2_c00158{height:64.546875px;}
.h0_c00158{height:1263.000000px;}
.w1_c00158{width:892.500000px;}
.w0_c00158{width:892.830000px;}
.x0_c00158{left:0.000000px;}
.x2_c00158{left:170.100000px;}
.x3_c00158{left:191.430000px;}
.x1_c00158{left:738.360000px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls4_c00158{letter-spacing:-0.057600pt;}
.ls7_c00158{letter-spacing:-0.051200pt;}
.lsa_c00158{letter-spacing:-0.044800pt;}
.ls5_c00158{letter-spacing:-0.038400pt;}
.ls2_c00158{letter-spacing:-0.032000pt;}
.ls1_c00158{letter-spacing:-0.025600pt;}
.ls6_c00158{letter-spacing:-0.019200pt;}
.ls3_c00158{letter-spacing:-0.012800pt;}
.ls8_c00158{letter-spacing:-0.006400pt;}
.ls0_c00158{letter-spacing:0.000000pt;}
.ls9_c00158{letter-spacing:0.006400pt;}
.lsb_c00158{letter-spacing:0.032000pt;}
.ws19_c00158{word-spacing:-3.340800pt;}
.ws1a_c00158{word-spacing:-3.270400pt;}
.ws23_c00158{word-spacing:-3.040000pt;}
.ws2e_c00158{word-spacing:-1.868800pt;}
.ws2d_c00158{word-spacing:-1.830400pt;}
.wse_c00158{word-spacing:-0.556800pt;}
.wsd_c00158{word-spacing:-0.467200pt;}
.ws0_c00158{word-spacing:0.000000pt;}
.ws16_c00158{word-spacing:0.140800pt;}
.ws26_c00158{word-spacing:0.153600pt;}
.wsf_c00158{word-spacing:0.160000pt;}
.ws3_c00158{word-spacing:0.172800pt;}
.ws20_c00158{word-spacing:0.249600pt;}
.ws5_c00158{word-spacing:1.715200pt;}
.ws6_c00158{word-spacing:1.798400pt;}
.ws1_c00158{word-spacing:2.726400pt;}
.ws2_c00158{word-spacing:2.732800pt;}
.ws28_c00158{word-spacing:2.758400pt;}
.ws1c_c00158{word-spacing:3.366400pt;}
.ws1b_c00158{word-spacing:3.430400pt;}
.ws25_c00158{word-spacing:5.593600pt;}
.wsc_c00158{word-spacing:7.136000pt;}
.wsb_c00158{word-spacing:7.212800pt;}
.ws29_c00158{word-spacing:8.486400pt;}
.ws1f_c00158{word-spacing:10.016000pt;}
.ws1e_c00158{word-spacing:10.112000pt;}
.ws2a_c00158{word-spacing:11.353600pt;}
.ws8_c00158{word-spacing:12.960000pt;}
.ws7_c00158{word-spacing:12.966400pt;}
.ws4_c00158{word-spacing:14.553600pt;}
.ws24_c00158{word-spacing:16.505600pt;}
.ws12_c00158{word-spacing:16.800000pt;}
.ws13_c00158{word-spacing:16.832000pt;}
.ws21_c00158{word-spacing:19.692800pt;}
.ws22_c00158{word-spacing:19.705600pt;}
.ws27_c00158{word-spacing:20.326400pt;}
.ws15_c00158{word-spacing:21.907200pt;}
.ws14_c00158{word-spacing:21.984000pt;}
.ws10_c00158{word-spacing:22.137600pt;}
.ws11_c00158{word-spacing:22.240000pt;}
.ws2b_c00158{word-spacing:24.460800pt;}
.ws2c_c00158{word-spacing:24.480000pt;}
.ws9_c00158{word-spacing:24.486400pt;}
.wsa_c00158{word-spacing:24.499200pt;}
.ws30_c00158{word-spacing:33.011200pt;}
.ws2f_c00158{word-spacing:33.139200pt;}
.ws1d_c00158{word-spacing:36.985600pt;}
.ws18_c00158{word-spacing:38.214400pt;}
.ws17_c00158{word-spacing:38.227200pt;}
.ws31_c00158{word-spacing:42.412800pt;}
._1_c00158{margin-left:-20.160000pt;}
._2_c00158{margin-left:-1.152000pt;}
._0_c00158{width:0.902400pt;}
.fs0_c00158{font-size:64.000000pt;}
.y0_c00158{bottom:0.000000pt;}
.y2_c00158{bottom:41.627067pt;}
.y1_c00158{bottom:60.027067pt;}
.y28_c00158{bottom:132.827067pt;}
.y27_c00158{bottom:160.427067pt;}
.y26_c00158{bottom:188.027067pt;}
.y25_c00158{bottom:215.627067pt;}
.y24_c00158{bottom:234.027067pt;}
.y23_c00158{bottom:252.427067pt;}
.y22_c00158{bottom:270.827067pt;}
.y21_c00158{bottom:289.227067pt;}
.y20_c00158{bottom:307.627067pt;}
.y1f_c00158{bottom:325.947067pt;}
.y1e_c00158{bottom:344.347067pt;}
.y1d_c00158{bottom:379.947067pt;}
.y1c_c00158{bottom:407.547067pt;}
.y1b_c00158{bottom:443.147067pt;}
.y1a_c00158{bottom:470.747067pt;}
.y19_c00158{bottom:498.347067pt;}
.y18_c00158{bottom:525.947067pt;}
.y17_c00158{bottom:561.547067pt;}
.y16_c00158{bottom:589.147067pt;}
.y15_c00158{bottom:616.747067pt;}
.y14_c00158{bottom:644.347067pt;}
.y13_c00158{bottom:671.947067pt;}
.y12_c00158{bottom:699.547067pt;}
.y11_c00158{bottom:717.947067pt;}
.y10_c00158{bottom:736.347067pt;}
.yf_c00158{bottom:754.747067pt;}
.ye_c00158{bottom:773.147067pt;}
.yd_c00158{bottom:791.547067pt;}
.yc_c00158{bottom:809.947067pt;}
.yb_c00158{bottom:828.347067pt;}
.ya_c00158{bottom:846.747067pt;}
.y9_c00158{bottom:865.147067pt;}
.y8_c00158{bottom:883.547067pt;}
.y7_c00158{bottom:901.947067pt;}
.y6_c00158{bottom:920.347067pt;}
.y5_c00158{bottom:938.747067pt;}
.y4_c00158{bottom:957.147067pt;}
.y3_c00158{bottom:975.547067pt;}
.h1_c00158{height:56.156250pt;}
.h2_c00158{height:57.375000pt;}
.h0_c00158{height:1122.666667pt;}
.w1_c00158{width:793.333333pt;}
.w0_c00158{width:793.626667pt;}
.x0_c00158{left:0.000000pt;}
.x2_c00158{left:151.200000pt;}
.x3_c00158{left:170.160000pt;}
.x1_c00158{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_30a7b8499dd7c9adc5c7cc8c.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.093262;font-style:normal;font-weight:normal;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_704060ac2202916e824caf70.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:1.106934;font-style:normal;font-weight:normal;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_3b6ebed4ed226c132f4df696.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00159{letter-spacing:-0.158400px;}
.lse_c00159{letter-spacing:-0.086400px;}
.ls6_c00159{letter-spacing:-0.072000px;}
.ls5_c00159{letter-spacing:-0.064800px;}
.ls7_c00159{letter-spacing:-0.057600px;}
.ls2_c00159{letter-spacing:-0.050400px;}
.lsc_c00159{letter-spacing:-0.043200px;}
.ls3_c00159{letter-spacing:-0.036000px;}
.ls9_c00159{letter-spacing:-0.028800px;}
.lsa_c00159{letter-spacing:-0.021600px;}
.ls4_c00159{letter-spacing:-0.014400px;}
.ls8_c00159{letter-spacing:-0.007200px;}
.ls1_c00159{letter-spacing:0.000000px;}
.ls0_c00159{letter-spacing:0.007200px;}
.lsd_c00159{letter-spacing:0.057600px;}
.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:-19.951200px;}
.ws0_c00159{word-spacing:-19.857600px;}
.ws39_c00159{word-spacing:-1.231200px;}
.ws3a_c00159{word-spacing:-1.195200px;}
.ws2_c00159{word-spacing:0.000000px;}
.ws6_c00159{word-spacing:0.079200px;}
.ws14_c00159{word-spacing:0.151200px;}
.ws3b_c00159{word-spacing:0.165600px;}
.ws13_c00159{word-spacing:0.180000px;}
.ws1d_c00159{word-spacing:0.194400px;}
.ws5_c00159{word-spacing:0.309600px;}
.ws3_c00159{word-spacing:0.496800px;}
.ws4_c00159{word-spacing:0.511200px;}
.ws2e_c00159{word-spacing:0.568800px;}
.ws2f_c00159{word-spacing:0.576000px;}
.ws9_c00159{word-spacing:0.950400px;}
.ws2b_c00159{word-spacing:1.620000px;}
.ws2a_c00159{word-spacing:1.641600px;}
.ws32_c00159{word-spacing:2.340000px;}
.wsc_c00159{word-spacing:3.448800px;}
.wsd_c00159{word-spacing:3.456000px;}
.wse_c00159{word-spacing:3.808800px;}
.ws17_c00159{word-spacing:4.075200px;}
.ws18_c00159{word-spacing:4.118400px;}
.ws34_c00159{word-spacing:4.860000px;}
.ws33_c00159{word-spacing:4.881600px;}
.ws31_c00159{word-spacing:4.896000px;}
.wsb_c00159{word-spacing:5.198400px;}
.wsa_c00159{word-spacing:5.263200px;}
.ws28_c00159{word-spacing:5.760000px;}
.ws29_c00159{word-spacing:5.954400px;}
.ws1a_c00159{word-spacing:5.968800px;}
.ws27_c00159{word-spacing:5.976000px;}
.ws19_c00159{word-spacing:6.004800px;}
.ws12_c00159{word-spacing:6.688800px;}
.ws1b_c00159{word-spacing:7.293600px;}
.ws1c_c00159{word-spacing:7.401600px;}
.ws2c_c00159{word-spacing:7.610400px;}
.ws2d_c00159{word-spacing:7.747200px;}
.ws20_c00159{word-spacing:9.180000px;}
.ws21_c00159{word-spacing:9.223200px;}
.ws16_c00159{word-spacing:9.878400px;}
.ws15_c00159{word-spacing:9.914400px;}
.ws30_c00159{word-spacing:12.074400px;}
.ws7_c00159{word-spacing:13.903200px;}
.ws8_c00159{word-spacing:13.910400px;}
.ws23_c00159{word-spacing:14.392800px;}
.ws22_c00159{word-spacing:14.601600px;}
.ws10_c00159{word-spacing:16.660800px;}
.wsf_c00159{word-spacing:16.725600px;}
.ws11_c00159{word-spacing:16.747200px;}
.ws35_c00159{word-spacing:17.510400px;}
.ws36_c00159{word-spacing:17.539200px;}
.ws24_c00159{word-spacing:21.081600px;}
.ws25_c00159{word-spacing:22.420800px;}
.ws26_c00159{word-spacing:22.528800px;}
.ws1e_c00159{word-spacing:32.904000px;}
.ws1f_c00159{word-spacing:32.976000px;}
.ws37_c00159{word-spacing:34.732800px;}
.ws38_c00159{word-spacing:34.776000px;}
._1_c00159{margin-left:-1.418400px;}
._0_c00159{width:1.159200px;}
.fc0_c00159{color:rgb(0,0,0);}
.fs0_c00159{font-size:72.000000px;}
.y0_c00159{bottom:0.000000px;}
.y2_c00159{bottom:46.830450px;}
.y1_c00159{bottom:67.530450px;}
.y2a_c00159{bottom:159.780450px;}
.y29_c00159{bottom:180.480450px;}
.y28_c00159{bottom:201.180450px;}
.y27_c00159{bottom:241.230450px;}
.y26_c00159{bottom:272.280450px;}
.y25_c00159{bottom:303.330450px;}
.y24_c00159{bottom:324.030450px;}
.y23_c00159{bottom:344.730450px;}
.y22_c00159{bottom:365.430450px;}
.y21_c00159{bottom:386.040450px;}
.y20_c00159{bottom:406.740450px;}
.y1f_c00159{bottom:427.440450px;}
.y1e_c00159{bottom:448.140450px;}
.y1d_c00159{bottom:468.840450px;}
.y1c_c00159{bottom:489.540450px;}
.y1b_c00159{bottom:510.240450px;}
.y1a_c00159{bottom:530.940450px;}
.y19_c00159{bottom:551.640450px;}
.y18_c00159{bottom:572.340450px;}
.y17_c00159{bottom:593.040450px;}
.y16_c00159{bottom:613.740450px;}
.y15_c00159{bottom:634.440450px;}
.y14_c00159{bottom:674.490450px;}
.y13_c00159{bottom:705.540450px;}
.y12_c00159{bottom:736.590450px;}
.y11_c00159{bottom:767.640450px;}
.y10_c00159{bottom:798.690450px;}
.yf_c00159{bottom:819.390450px;}
.ye_c00159{bottom:840.090450px;}
.yd_c00159{bottom:860.790450px;}
.yc_c00159{bottom:881.490450px;}
.yb_c00159{bottom:902.190450px;}
.ya_c00159{bottom:922.890450px;}
.y9_c00159{bottom:943.590450px;}
.y8_c00159{bottom:964.290450px;}
.y7_c00159{bottom:984.990450px;}
.y6_c00159{bottom:1005.690450px;}
.y5_c00159{bottom:1026.390450px;}
.y4_c00159{bottom:1066.440450px;}
.y3_c00159{bottom:1097.490450px;}
.h1_c00159{height:63.175781px;}
.h2_c00159{height:64.546875px;}
.h3_c00159{height:75.093750px;}
.h0_c00159{height:1263.000000px;}
.w1_c00159{width:892.500000px;}
.w0_c00159{width:892.830000px;}
.x0_c00159{left:0.000000px;}
.x2_c00159{left:127.620000px;}
.x3_c00159{left:148.950000px;}
.x1_c00159{left:695.880000px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.lsb_c00159{letter-spacing:-0.140800pt;}
.lse_c00159{letter-spacing:-0.076800pt;}
.ls6_c00159{letter-spacing:-0.064000pt;}
.ls5_c00159{letter-spacing:-0.057600pt;}
.ls7_c00159{letter-spacing:-0.051200pt;}
.ls2_c00159{letter-spacing:-0.044800pt;}
.lsc_c00159{letter-spacing:-0.038400pt;}
.ls3_c00159{letter-spacing:-0.032000pt;}
.ls9_c00159{letter-spacing:-0.025600pt;}
.lsa_c00159{letter-spacing:-0.019200pt;}
.ls4_c00159{letter-spacing:-0.012800pt;}
.ls8_c00159{letter-spacing:-0.006400pt;}
.ls1_c00159{letter-spacing:0.000000pt;}
.ls0_c00159{letter-spacing:0.006400pt;}
.lsd_c00159{letter-spacing:0.051200pt;}
.ws1_c00159{word-spacing:-17.734400pt;}
.ws0_c00159{word-spacing:-17.651200pt;}
.ws39_c00159{word-spacing:-1.094400pt;}
.ws3a_c00159{word-spacing:-1.062400pt;}
.ws2_c00159{word-spacing:0.000000pt;}
.ws6_c00159{word-spacing:0.070400pt;}
.ws14_c00159{word-spacing:0.134400pt;}
.ws3b_c00159{word-spacing:0.147200pt;}
.ws13_c00159{word-spacing:0.160000pt;}
.ws1d_c00159{word-spacing:0.172800pt;}
.ws5_c00159{word-spacing:0.275200pt;}
.ws3_c00159{word-spacing:0.441600pt;}
.ws4_c00159{word-spacing:0.454400pt;}
.ws2e_c00159{word-spacing:0.505600pt;}
.ws2f_c00159{word-spacing:0.512000pt;}
.ws9_c00159{word-spacing:0.844800pt;}
.ws2b_c00159{word-spacing:1.440000pt;}
.ws2a_c00159{word-spacing:1.459200pt;}
.ws32_c00159{word-spacing:2.080000pt;}
.wsc_c00159{word-spacing:3.065600pt;}
.wsd_c00159{word-spacing:3.072000pt;}
.wse_c00159{word-spacing:3.385600pt;}
.ws17_c00159{word-spacing:3.622400pt;}
.ws18_c00159{word-spacing:3.660800pt;}
.ws34_c00159{word-spacing:4.320000pt;}
.ws33_c00159{word-spacing:4.339200pt;}
.ws31_c00159{word-spacing:4.352000pt;}
.wsb_c00159{word-spacing:4.620800pt;}
.wsa_c00159{word-spacing:4.678400pt;}
.ws28_c00159{word-spacing:5.120000pt;}
.ws29_c00159{word-spacing:5.292800pt;}
.ws1a_c00159{word-spacing:5.305600pt;}
.ws27_c00159{word-spacing:5.312000pt;}
.ws19_c00159{word-spacing:5.337600pt;}
.ws12_c00159{word-spacing:5.945600pt;}
.ws1b_c00159{word-spacing:6.483200pt;}
.ws1c_c00159{word-spacing:6.579200pt;}
.ws2c_c00159{word-spacing:6.764800pt;}
.ws2d_c00159{word-spacing:6.886400pt;}
.ws20_c00159{word-spacing:8.160000pt;}
.ws21_c00159{word-spacing:8.198400pt;}
.ws16_c00159{word-spacing:8.780800pt;}
.ws15_c00159{word-spacing:8.812800pt;}
.ws30_c00159{word-spacing:10.732800pt;}
.ws7_c00159{word-spacing:12.358400pt;}
.ws8_c00159{word-spacing:12.364800pt;}
.ws23_c00159{word-spacing:12.793600pt;}
.ws22_c00159{word-spacing:12.979200pt;}
.ws10_c00159{word-spacing:14.809600pt;}
.wsf_c00159{word-spacing:14.867200pt;}
.ws11_c00159{word-spacing:14.886400pt;}
.ws35_c00159{word-spacing:15.564800pt;}
.ws36_c00159{word-spacing:15.590400pt;}
.ws24_c00159{word-spacing:18.739200pt;}
.ws25_c00159{word-spacing:19.929600pt;}
.ws26_c00159{word-spacing:20.025600pt;}
.ws1e_c00159{word-spacing:29.248000pt;}
.ws1f_c00159{word-spacing:29.312000pt;}
.ws37_c00159{word-spacing:30.873600pt;}
.ws38_c00159{word-spacing:30.912000pt;}
._1_c00159{margin-left:-1.260800pt;}
._0_c00159{width:1.030400pt;}
.fs0_c00159{font-size:64.000000pt;}
.y0_c00159{bottom:0.000000pt;}
.y2_c00159{bottom:41.627067pt;}
.y1_c00159{bottom:60.027067pt;}
.y2a_c00159{bottom:142.027067pt;}
.y29_c00159{bottom:160.427067pt;}
.y28_c00159{bottom:178.827067pt;}
.y27_c00159{bottom:214.427067pt;}
.y26_c00159{bottom:242.027067pt;}
.y25_c00159{bottom:269.627067pt;}
.y24_c00159{bottom:288.027067pt;}
.y23_c00159{bottom:306.427067pt;}
.y22_c00159{bottom:324.827067pt;}
.y21_c00159{bottom:343.147067pt;}
.y20_c00159{bottom:361.547067pt;}
.y1f_c00159{bottom:379.947067pt;}
.y1e_c00159{bottom:398.347067pt;}
.y1d_c00159{bottom:416.747067pt;}
.y1c_c00159{bottom:435.147067pt;}
.y1b_c00159{bottom:453.547067pt;}
.y1a_c00159{bottom:471.947067pt;}
.y19_c00159{bottom:490.347067pt;}
.y18_c00159{bottom:508.747067pt;}
.y17_c00159{bottom:527.147067pt;}
.y16_c00159{bottom:545.547067pt;}
.y15_c00159{bottom:563.947067pt;}
.y14_c00159{bottom:599.547067pt;}
.y13_c00159{bottom:627.147067pt;}
.y12_c00159{bottom:654.747067pt;}
.y11_c00159{bottom:682.347067pt;}
.y10_c00159{bottom:709.947067pt;}
.yf_c00159{bottom:728.347067pt;}
.ye_c00159{bottom:746.747067pt;}
.yd_c00159{bottom:765.147067pt;}
.yc_c00159{bottom:783.547067pt;}
.yb_c00159{bottom:801.947067pt;}
.ya_c00159{bottom:820.347067pt;}
.y9_c00159{bottom:838.747067pt;}
.y8_c00159{bottom:857.147067pt;}
.y7_c00159{bottom:875.547067pt;}
.y6_c00159{bottom:893.947067pt;}
.y5_c00159{bottom:912.347067pt;}
.y4_c00159{bottom:947.947067pt;}
.y3_c00159{bottom:975.547067pt;}
.h1_c00159{height:56.156250pt;}
.h2_c00159{height:57.375000pt;}
.h3_c00159{height:66.750000pt;}
.h0_c00159{height:1122.666667pt;}
.w1_c00159{width:793.333333pt;}
.w0_c00159{width:793.626667pt;}
.x0_c00159{left:0.000000pt;}
.x2_c00159{left:113.440000pt;}
.x3_c00159{left:132.400000pt;}
.x1_c00159{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c14ef6021a0cbae5b883f7d1.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.093262;font-style:normal;font-weight:normal;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_7c1b7a981646394d28df69fd.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.106934;font-style:normal;font-weight:normal;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_e1135dd4028495dc5e9f41ca.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00160{letter-spacing:-0.093600px;}
.ls5_c00160{letter-spacing:-0.079200px;}
.lsb_c00160{letter-spacing:-0.064800px;}
.ls7_c00160{letter-spacing:-0.057600px;}
.ls4_c00160{letter-spacing:-0.050400px;}
.lsa_c00160{letter-spacing:-0.043200px;}
.ls9_c00160{letter-spacing:-0.036000px;}
.ls6_c00160{letter-spacing:-0.028800px;}
.ls3_c00160{letter-spacing:-0.021600px;}
.ls2_c00160{letter-spacing:-0.014400px;}
.ls8_c00160{letter-spacing:-0.007200px;}
.ls1_c00160{letter-spacing:0.000000px;}
.ls0_c00160{letter-spacing:0.007200px;}
.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;}
}
.ws1e_c00160{word-spacing:-4.514400px;}
.ws1d_c00160{word-spacing:-4.492800px;}
.ws18_c00160{word-spacing:-3.772800px;}
.ws17_c00160{word-spacing:-3.751200px;}
.ws2d_c00160{word-spacing:-3.067200px;}
.ws23_c00160{word-spacing:-3.060000px;}
.ws28_c00160{word-spacing:-3.038400px;}
.ws2e_c00160{word-spacing:-3.031200px;}
.ws22_c00160{word-spacing:-2.980800px;}
.ws2c_c00160{word-spacing:-2.959200px;}
.ws25_c00160{word-spacing:-0.223200px;}
.ws24_c00160{word-spacing:-0.136800px;}
.ws0_c00160{word-spacing:0.000000px;}
.ws21_c00160{word-spacing:0.093600px;}
.ws2b_c00160{word-spacing:0.180000px;}
.ws8_c00160{word-spacing:0.187200px;}
.ws16_c00160{word-spacing:0.547200px;}
.ws34_c00160{word-spacing:1.612800px;}
.ws32_c00160{word-spacing:1.641600px;}
.ws33_c00160{word-spacing:1.692000px;}
.ws26_c00160{word-spacing:2.714400px;}
.ws9_c00160{word-spacing:5.587200px;}
.ws27_c00160{word-spacing:6.667200px;}
.ws1c_c00160{word-spacing:7.380000px;}
.ws1b_c00160{word-spacing:7.408800px;}
.wsf_c00160{word-spacing:8.085600px;}
.wse_c00160{word-spacing:8.136000px;}
.ws13_c00160{word-spacing:9.194400px;}
.ws12_c00160{word-spacing:9.216000px;}
.ws2_c00160{word-spacing:9.828000px;}
.ws1_c00160{word-spacing:9.892800px;}
.ws31_c00160{word-spacing:12.060000px;}
.ws15_c00160{word-spacing:13.816800px;}
.ws14_c00160{word-spacing:13.874400px;}
.ws30_c00160{word-spacing:14.565600px;}
.wsa_c00160{word-spacing:14.587200px;}
.ws2f_c00160{word-spacing:14.608800px;}
.wsb_c00160{word-spacing:14.616000px;}
.ws29_c00160{word-spacing:15.292800px;}
.ws2a_c00160{word-spacing:15.372000px;}
.ws7_c00160{word-spacing:19.591200px;}
.ws6_c00160{word-spacing:19.612800px;}
.ws10_c00160{word-spacing:23.572800px;}
.ws11_c00160{word-spacing:23.594400px;}
.ws4_c00160{word-spacing:26.121600px;}
.ws5_c00160{word-spacing:26.157600px;}
.ws3_c00160{word-spacing:35.848800px;}
.ws1f_c00160{word-spacing:38.217600px;}
.ws20_c00160{word-spacing:38.311200px;}
.wsd_c00160{word-spacing:40.140000px;}
.wsc_c00160{word-spacing:40.147200px;}
.ws1a_c00160{word-spacing:60.638400px;}
.ws19_c00160{word-spacing:60.645600px;}
._2_c00160{margin-left:-59.976000px;}
._0_c00160{margin-left:-9.720000px;}
._1_c00160{width:1.152000px;}
.fc0_c00160{color:rgb(0,0,0);}
.fs0_c00160{font-size:72.000000px;}
.y0_c00160{bottom:0.000000px;}
.y2_c00160{bottom:46.830450px;}
.y1_c00160{bottom:67.530450px;}
.y20_c00160{bottom:161.130450px;}
.y1f_c00160{bottom:192.180450px;}
.y1e_c00160{bottom:223.230450px;}
.y1d_c00160{bottom:254.280450px;}
.y1c_c00160{bottom:294.330450px;}
.y1b_c00160{bottom:325.380450px;}
.y1a_c00160{bottom:356.430450px;}
.y19_c00160{bottom:387.390450px;}
.y18_c00160{bottom:418.440450px;}
.y17_c00160{bottom:449.490450px;}
.y16_c00160{bottom:480.540450px;}
.y15_c00160{bottom:520.590450px;}
.y14_c00160{bottom:551.640450px;}
.y13_c00160{bottom:582.690450px;}
.y12_c00160{bottom:613.740450px;}
.y11_c00160{bottom:644.790450px;}
.y10_c00160{bottom:684.840450px;}
.yf_c00160{bottom:715.890450px;}
.ye_c00160{bottom:746.940450px;}
.yd_c00160{bottom:777.990450px;}
.yc_c00160{bottom:809.040450px;}
.yb_c00160{bottom:840.090450px;}
.ya_c00160{bottom:871.140450px;}
.y9_c00160{bottom:902.190450px;}
.y8_c00160{bottom:933.240450px;}
.y7_c00160{bottom:973.290450px;}
.y6_c00160{bottom:1004.340450px;}
.y5_c00160{bottom:1035.390450px;}
.y4_c00160{bottom:1066.440450px;}
.y3_c00160{bottom:1097.490450px;}
.h1_c00160{height:63.175781px;}
.h2_c00160{height:64.546875px;}
.h3_c00160{height:75.093750px;}
.h0_c00160{height:1263.000000px;}
.w1_c00160{width:892.500000px;}
.w0_c00160{width:892.830000px;}
.x0_c00160{left:0.000000px;}
.x2_c00160{left:170.100000px;}
.x1_c00160{left:738.360000px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.lsc_c00160{letter-spacing:-0.083200pt;}
.ls5_c00160{letter-spacing:-0.070400pt;}
.lsb_c00160{letter-spacing:-0.057600pt;}
.ls7_c00160{letter-spacing:-0.051200pt;}
.ls4_c00160{letter-spacing:-0.044800pt;}
.lsa_c00160{letter-spacing:-0.038400pt;}
.ls9_c00160{letter-spacing:-0.032000pt;}
.ls6_c00160{letter-spacing:-0.025600pt;}
.ls3_c00160{letter-spacing:-0.019200pt;}
.ls2_c00160{letter-spacing:-0.012800pt;}
.ls8_c00160{letter-spacing:-0.006400pt;}
.ls1_c00160{letter-spacing:0.000000pt;}
.ls0_c00160{letter-spacing:0.006400pt;}
.ws1e_c00160{word-spacing:-4.012800pt;}
.ws1d_c00160{word-spacing:-3.993600pt;}
.ws18_c00160{word-spacing:-3.353600pt;}
.ws17_c00160{word-spacing:-3.334400pt;}
.ws2d_c00160{word-spacing:-2.726400pt;}
.ws23_c00160{word-spacing:-2.720000pt;}
.ws28_c00160{word-spacing:-2.700800pt;}
.ws2e_c00160{word-spacing:-2.694400pt;}
.ws22_c00160{word-spacing:-2.649600pt;}
.ws2c_c00160{word-spacing:-2.630400pt;}
.ws25_c00160{word-spacing:-0.198400pt;}
.ws24_c00160{word-spacing:-0.121600pt;}
.ws0_c00160{word-spacing:0.000000pt;}
.ws21_c00160{word-spacing:0.083200pt;}
.ws2b_c00160{word-spacing:0.160000pt;}
.ws8_c00160{word-spacing:0.166400pt;}
.ws16_c00160{word-spacing:0.486400pt;}
.ws34_c00160{word-spacing:1.433600pt;}
.ws32_c00160{word-spacing:1.459200pt;}
.ws33_c00160{word-spacing:1.504000pt;}
.ws26_c00160{word-spacing:2.412800pt;}
.ws9_c00160{word-spacing:4.966400pt;}
.ws27_c00160{word-spacing:5.926400pt;}
.ws1c_c00160{word-spacing:6.560000pt;}
.ws1b_c00160{word-spacing:6.585600pt;}
.wsf_c00160{word-spacing:7.187200pt;}
.wse_c00160{word-spacing:7.232000pt;}
.ws13_c00160{word-spacing:8.172800pt;}
.ws12_c00160{word-spacing:8.192000pt;}
.ws2_c00160{word-spacing:8.736000pt;}
.ws1_c00160{word-spacing:8.793600pt;}
.ws31_c00160{word-spacing:10.720000pt;}
.ws15_c00160{word-spacing:12.281600pt;}
.ws14_c00160{word-spacing:12.332800pt;}
.ws30_c00160{word-spacing:12.947200pt;}
.wsa_c00160{word-spacing:12.966400pt;}
.ws2f_c00160{word-spacing:12.985600pt;}
.wsb_c00160{word-spacing:12.992000pt;}
.ws29_c00160{word-spacing:13.593600pt;}
.ws2a_c00160{word-spacing:13.664000pt;}
.ws7_c00160{word-spacing:17.414400pt;}
.ws6_c00160{word-spacing:17.433600pt;}
.ws10_c00160{word-spacing:20.953600pt;}
.ws11_c00160{word-spacing:20.972800pt;}
.ws4_c00160{word-spacing:23.219200pt;}
.ws5_c00160{word-spacing:23.251200pt;}
.ws3_c00160{word-spacing:31.865600pt;}
.ws1f_c00160{word-spacing:33.971200pt;}
.ws20_c00160{word-spacing:34.054400pt;}
.wsd_c00160{word-spacing:35.680000pt;}
.wsc_c00160{word-spacing:35.686400pt;}
.ws1a_c00160{word-spacing:53.900800pt;}
.ws19_c00160{word-spacing:53.907200pt;}
._2_c00160{margin-left:-53.312000pt;}
._0_c00160{margin-left:-8.640000pt;}
._1_c00160{width:1.024000pt;}
.fs0_c00160{font-size:64.000000pt;}
.y0_c00160{bottom:0.000000pt;}
.y2_c00160{bottom:41.627067pt;}
.y1_c00160{bottom:60.027067pt;}
.y20_c00160{bottom:143.227067pt;}
.y1f_c00160{bottom:170.827067pt;}
.y1e_c00160{bottom:198.427067pt;}
.y1d_c00160{bottom:226.027067pt;}
.y1c_c00160{bottom:261.627067pt;}
.y1b_c00160{bottom:289.227067pt;}
.y1a_c00160{bottom:316.827067pt;}
.y19_c00160{bottom:344.347067pt;}
.y18_c00160{bottom:371.947067pt;}
.y17_c00160{bottom:399.547067pt;}
.y16_c00160{bottom:427.147067pt;}
.y15_c00160{bottom:462.747067pt;}
.y14_c00160{bottom:490.347067pt;}
.y13_c00160{bottom:517.947067pt;}
.y12_c00160{bottom:545.547067pt;}
.y11_c00160{bottom:573.147067pt;}
.y10_c00160{bottom:608.747067pt;}
.yf_c00160{bottom:636.347067pt;}
.ye_c00160{bottom:663.947067pt;}
.yd_c00160{bottom:691.547067pt;}
.yc_c00160{bottom:719.147067pt;}
.yb_c00160{bottom:746.747067pt;}
.ya_c00160{bottom:774.347067pt;}
.y9_c00160{bottom:801.947067pt;}
.y8_c00160{bottom:829.547067pt;}
.y7_c00160{bottom:865.147067pt;}
.y6_c00160{bottom:892.747067pt;}
.y5_c00160{bottom:920.347067pt;}
.y4_c00160{bottom:947.947067pt;}
.y3_c00160{bottom:975.547067pt;}
.h1_c00160{height:56.156250pt;}
.h2_c00160{height:57.375000pt;}
.h3_c00160{height:66.750000pt;}
.h0_c00160{height:1122.666667pt;}
.w1_c00160{width:793.333333pt;}
.w0_c00160{width:793.626667pt;}
.x0_c00160{left:0.000000pt;}
.x2_c00160{left:151.200000pt;}
.x1_c00160{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0aaacdb224baac00e362f9ff.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.093262;font-style:normal;font-weight:normal;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_f318e6b9ca309286fb0555e0.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls4_c00161{letter-spacing:-0.064800px;}
.ls5_c00161{letter-spacing:-0.050400px;}
.ls2_c00161{letter-spacing:-0.043200px;}
.ls7_c00161{letter-spacing:-0.036000px;}
.ls6_c00161{letter-spacing:-0.028800px;}
.ls8_c00161{letter-spacing:-0.021600px;}
.ls3_c00161{letter-spacing:-0.014400px;}
.ls1_c00161{letter-spacing:-0.007200px;}
.ls0_c00161{letter-spacing:0.000000px;}
.ls9_c00161{letter-spacing:843.998400px;}
.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;}
}
.ws19_c00161{word-spacing:-1.303200px;}
.ws17_c00161{word-spacing:-1.260000px;}
.ws16_c00161{word-spacing:-1.245600px;}
.ws7_c00161{word-spacing:-0.511200px;}
.ws18_c00161{word-spacing:-0.021600px;}
.ws0_c00161{word-spacing:0.000000px;}
.ws1a_c00161{word-spacing:0.064800px;}
.wse_c00161{word-spacing:0.108000px;}
.ws4_c00161{word-spacing:0.172800px;}
.ws11_c00161{word-spacing:0.208800px;}
.ws3_c00161{word-spacing:0.288000px;}
.ws2_c00161{word-spacing:0.518400px;}
.ws1_c00161{word-spacing:0.525600px;}
.ws9_c00161{word-spacing:4.125600px;}
.ws8_c00161{word-spacing:4.233600px;}
.wsb_c00161{word-spacing:5.594400px;}
.wsa_c00161{word-spacing:5.659200px;}
.ws5_c00161{word-spacing:6.638400px;}
.ws6_c00161{word-spacing:6.703200px;}
.ws14_c00161{word-spacing:7.387200px;}
.ws15_c00161{word-spacing:7.401600px;}
.ws10_c00161{word-spacing:13.154400px;}
.wsf_c00161{word-spacing:13.161600px;}
.wsd_c00161{word-spacing:17.121600px;}
.wsc_c00161{word-spacing:17.193600px;}
.ws13_c00161{word-spacing:23.947200px;}
.ws12_c00161{word-spacing:23.954400px;}
._0_c00161{width:1.296000px;}
.fc0_c00161{color:rgb(0,0,0);}
.fs0_c00161{font-size:72.000000px;}
.y0_c00161{bottom:0.000000px;}
.y2_c00161{bottom:46.830450px;}
.y1_c00161{bottom:67.530450px;}
.y16_c00161{bottom:524.640450px;}
.y15_c00161{bottom:564.690450px;}
.y14_c00161{bottom:595.740450px;}
.y13_c00161{bottom:635.790450px;}
.y12_c00161{bottom:656.490450px;}
.y11_c00161{bottom:677.190450px;}
.y10_c00161{bottom:697.890450px;}
.yf_c00161{bottom:718.590450px;}
.ye_c00161{bottom:739.290450px;}
.yd_c00161{bottom:759.990450px;}
.yc_c00161{bottom:800.040450px;}
.yb_c00161{bottom:831.090450px;}
.ya_c00161{bottom:871.140450px;}
.y9_c00161{bottom:902.190450px;}
.y8_c00161{bottom:933.240450px;}
.y7_c00161{bottom:964.290450px;}
.y6_c00161{bottom:995.340450px;}
.y5_c00161{bottom:1026.390450px;}
.y4_c00161{bottom:1066.440450px;}
.y3_c00161{bottom:1097.490450px;}
.h1_c00161{height:63.175781px;}
.h2_c00161{height:64.546875px;}
.h0_c00161{height:1263.000000px;}
.w1_c00161{width:892.500000px;}
.w0_c00161{width:892.830000px;}
.x0_c00161{left:0.000000px;}
.x2_c00161{left:127.620000px;}
.x3_c00161{left:148.950000px;}
.x1_c00161{left:695.880000px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls4_c00161{letter-spacing:-0.057600pt;}
.ls5_c00161{letter-spacing:-0.044800pt;}
.ls2_c00161{letter-spacing:-0.038400pt;}
.ls7_c00161{letter-spacing:-0.032000pt;}
.ls6_c00161{letter-spacing:-0.025600pt;}
.ls8_c00161{letter-spacing:-0.019200pt;}
.ls3_c00161{letter-spacing:-0.012800pt;}
.ls1_c00161{letter-spacing:-0.006400pt;}
.ls0_c00161{letter-spacing:0.000000pt;}
.ls9_c00161{letter-spacing:750.220800pt;}
.ws19_c00161{word-spacing:-1.158400pt;}
.ws17_c00161{word-spacing:-1.120000pt;}
.ws16_c00161{word-spacing:-1.107200pt;}
.ws7_c00161{word-spacing:-0.454400pt;}
.ws18_c00161{word-spacing:-0.019200pt;}
.ws0_c00161{word-spacing:0.000000pt;}
.ws1a_c00161{word-spacing:0.057600pt;}
.wse_c00161{word-spacing:0.096000pt;}
.ws4_c00161{word-spacing:0.153600pt;}
.ws11_c00161{word-spacing:0.185600pt;}
.ws3_c00161{word-spacing:0.256000pt;}
.ws2_c00161{word-spacing:0.460800pt;}
.ws1_c00161{word-spacing:0.467200pt;}
.ws9_c00161{word-spacing:3.667200pt;}
.ws8_c00161{word-spacing:3.763200pt;}
.wsb_c00161{word-spacing:4.972800pt;}
.wsa_c00161{word-spacing:5.030400pt;}
.ws5_c00161{word-spacing:5.900800pt;}
.ws6_c00161{word-spacing:5.958400pt;}
.ws14_c00161{word-spacing:6.566400pt;}
.ws15_c00161{word-spacing:6.579200pt;}
.ws10_c00161{word-spacing:11.692800pt;}
.wsf_c00161{word-spacing:11.699200pt;}
.wsd_c00161{word-spacing:15.219200pt;}
.wsc_c00161{word-spacing:15.283200pt;}
.ws13_c00161{word-spacing:21.286400pt;}
.ws12_c00161{word-spacing:21.292800pt;}
._0_c00161{width:1.152000pt;}
.fs0_c00161{font-size:64.000000pt;}
.y0_c00161{bottom:0.000000pt;}
.y2_c00161{bottom:41.627067pt;}
.y1_c00161{bottom:60.027067pt;}
.y16_c00161{bottom:466.347067pt;}
.y15_c00161{bottom:501.947067pt;}
.y14_c00161{bottom:529.547067pt;}
.y13_c00161{bottom:565.147067pt;}
.y12_c00161{bottom:583.547067pt;}
.y11_c00161{bottom:601.947067pt;}
.y10_c00161{bottom:620.347067pt;}
.yf_c00161{bottom:638.747067pt;}
.ye_c00161{bottom:657.147067pt;}
.yd_c00161{bottom:675.547067pt;}
.yc_c00161{bottom:711.147067pt;}
.yb_c00161{bottom:738.747067pt;}
.ya_c00161{bottom:774.347067pt;}
.y9_c00161{bottom:801.947067pt;}
.y8_c00161{bottom:829.547067pt;}
.y7_c00161{bottom:857.147067pt;}
.y6_c00161{bottom:884.747067pt;}
.y5_c00161{bottom:912.347067pt;}
.y4_c00161{bottom:947.947067pt;}
.y3_c00161{bottom:975.547067pt;}
.h1_c00161{height:56.156250pt;}
.h2_c00161{height:57.375000pt;}
.h0_c00161{height:1122.666667pt;}
.w1_c00161{width:793.333333pt;}
.w0_c00161{width:793.626667pt;}
.x0_c00161{left:0.000000pt;}
.x2_c00161{left:113.440000pt;}
.x3_c00161{left:132.400000pt;}
.x1_c00161{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f58327093c4a1731aa292b6b.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.093262;font-style:normal;font-weight:normal;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_cea0ef3f8d1a616a35c55baa.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00162;src:url('chunks/assets/font_2f5ff0f5e8de6634594bd8a8.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00162{vertical-align:0.000000px;}
.lsb_c00162{letter-spacing:-0.079200px;}
.lsa_c00162{letter-spacing:-0.064800px;}
.ls7_c00162{letter-spacing:-0.057600px;}
.ls9_c00162{letter-spacing:-0.050400px;}
.ls3_c00162{letter-spacing:-0.043200px;}
.ls8_c00162{letter-spacing:-0.036000px;}
.lsc_c00162{letter-spacing:-0.028800px;}
.ls5_c00162{letter-spacing:-0.021600px;}
.ls6_c00162{letter-spacing:-0.014400px;}
.ls4_c00162{letter-spacing:-0.007200px;}
.ls2_c00162{letter-spacing:0.000000px;}
.ls1_c00162{letter-spacing:0.050328px;}
.ls0_c00162{letter-spacing:0.067104px;}
.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;}
}
.ws1e_c00162{word-spacing:-3.470400px;}
.ws3_c00162{word-spacing:-3.398400px;}
.ws1d_c00162{word-spacing:-3.391200px;}
.ws24_c00162{word-spacing:-3.384000px;}
.ws4_c00162{word-spacing:-3.319200px;}
.ws16_c00162{word-spacing:-2.102400px;}
.ws17_c00162{word-spacing:-2.052000px;}
.ws15_c00162{word-spacing:-1.944000px;}
.ws25_c00162{word-spacing:-0.604800px;}
.ws26_c00162{word-spacing:-0.439200px;}
.ws2_c00162{word-spacing:-0.033552px;}
.ws0_c00162{word-spacing:0.000000px;}
.ws1_c00162{word-spacing:0.025164px;}
.ws14_c00162{word-spacing:0.165600px;}
.ws9_c00162{word-spacing:0.172800px;}
.ws23_c00162{word-spacing:0.180000px;}
.ws2d_c00162{word-spacing:0.216000px;}
.ws1f_c00162{word-spacing:0.568800px;}
.ws20_c00162{word-spacing:0.576000px;}
.ws2e_c00162{word-spacing:0.928800px;}
.ws2f_c00162{word-spacing:0.957600px;}
.wsf_c00162{word-spacing:1.656000px;}
.ws22_c00162{word-spacing:2.340000px;}
.ws21_c00162{word-spacing:2.412000px;}
.ws7_c00162{word-spacing:2.685600px;}
.ws8_c00162{word-spacing:2.700000px;}
.wsd_c00162{word-spacing:3.672000px;}
.wsc_c00162{word-spacing:3.794400px;}
.wse_c00162{word-spacing:3.808800px;}
.wsa_c00162{word-spacing:6.696000px;}
.ws10_c00162{word-spacing:8.128800px;}
.ws1c_c00162{word-spacing:8.474400px;}
.ws29_c00162{word-spacing:10.598400px;}
.ws2a_c00162{word-spacing:10.620000px;}
.ws30_c00162{word-spacing:12.052800px;}
.ws13_c00162{word-spacing:12.081600px;}
.ws31_c00162{word-spacing:12.139200px;}
.ws12_c00162{word-spacing:12.146400px;}
.ws11_c00162{word-spacing:12.765600px;}
.ws28_c00162{word-spacing:13.428000px;}
.ws27_c00162{word-spacing:13.435200px;}
.ws18_c00162{word-spacing:23.277600px;}
.ws19_c00162{word-spacing:23.313600px;}
.ws2c_c00162{word-spacing:23.572800px;}
.ws2b_c00162{word-spacing:23.652000px;}
.ws1a_c00162{word-spacing:44.740800px;}
.ws1b_c00162{word-spacing:44.812800px;}
.wsb_c00162{word-spacing:54.561600px;}
.ws6_c00162{word-spacing:77.220000px;}
.ws5_c00162{word-spacing:77.277600px;}
._1_c00162{width:1.022400px;}
._0_c00162{width:187.555680px;}
.fc0_c00162{color:rgb(0,0,0);}
.fs0_c00162{font-size:72.000000px;}
.fs1_c00162{font-size:83.880000px;}
.y0_c00162{bottom:0.000000px;}
.y2_c00162{bottom:46.830450px;}
.y1_c00162{bottom:67.530450px;}
.y24_c00162{bottom:155.550450px;}
.y23_c00162{bottom:186.600450px;}
.y22_c00162{bottom:226.650450px;}
.y21_c00162{bottom:257.700450px;}
.y20_c00162{bottom:288.750450px;}
.y1f_c00162{bottom:319.800450px;}
.y1e_c00162{bottom:350.850450px;}
.y1d_c00162{bottom:381.900450px;}
.y1c_c00162{bottom:421.950450px;}
.y1b_c00162{bottom:453.000450px;}
.y1a_c00162{bottom:484.050450px;}
.y19_c00162{bottom:515.100450px;}
.y18_c00162{bottom:546.150450px;}
.y17_c00162{bottom:577.200450px;}
.y16_c00162{bottom:608.250450px;}
.y15_c00162{bottom:639.300450px;}
.y14_c00162{bottom:660.000450px;}
.y13_c00162{bottom:680.700450px;}
.y12_c00162{bottom:701.400450px;}
.y11_c00162{bottom:722.010450px;}
.y10_c00162{bottom:742.710450px;}
.yf_c00162{bottom:763.410450px;}
.ye_c00162{bottom:784.110450px;}
.yd_c00162{bottom:804.810450px;}
.yc_c00162{bottom:825.510450px;}
.yb_c00162{bottom:846.210450px;}
.ya_c00162{bottom:866.910450px;}
.y9_c00162{bottom:906.960450px;}
.y8_c00162{bottom:938.010450px;}
.y7_c00162{bottom:969.060450px;}
.y6_c00162{bottom:1000.110450px;}
.y5_c00162{bottom:1040.160450px;}
.y4_c00162{bottom:1070.404950px;}
.y3_c00162{bottom:1094.520450px;}
.h1_c00162{height:63.175781px;}
.h3_c00162{height:64.546875px;}
.h2_c00162{height:87.484219px;}
.h0_c00162{height:1263.000000px;}
.w1_c00162{width:892.500000px;}
.w0_c00162{width:892.830000px;}
.x0_c00162{left:0.000000px;}
.x2_c00162{left:170.100000px;}
.x5_c00162{left:191.430000px;}
.x3_c00162{left:224.100000px;}
.x4_c00162{left:261.908910px;}
.x1_c00162{left:738.360000px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.lsb_c00162{letter-spacing:-0.070400pt;}
.lsa_c00162{letter-spacing:-0.057600pt;}
.ls7_c00162{letter-spacing:-0.051200pt;}
.ls9_c00162{letter-spacing:-0.044800pt;}
.ls3_c00162{letter-spacing:-0.038400pt;}
.ls8_c00162{letter-spacing:-0.032000pt;}
.lsc_c00162{letter-spacing:-0.025600pt;}
.ls5_c00162{letter-spacing:-0.019200pt;}
.ls6_c00162{letter-spacing:-0.012800pt;}
.ls4_c00162{letter-spacing:-0.006400pt;}
.ls2_c00162{letter-spacing:0.000000pt;}
.ls1_c00162{letter-spacing:0.044736pt;}
.ls0_c00162{letter-spacing:0.059648pt;}
.ws1e_c00162{word-spacing:-3.084800pt;}
.ws3_c00162{word-spacing:-3.020800pt;}
.ws1d_c00162{word-spacing:-3.014400pt;}
.ws24_c00162{word-spacing:-3.008000pt;}
.ws4_c00162{word-spacing:-2.950400pt;}
.ws16_c00162{word-spacing:-1.868800pt;}
.ws17_c00162{word-spacing:-1.824000pt;}
.ws15_c00162{word-spacing:-1.728000pt;}
.ws25_c00162{word-spacing:-0.537600pt;}
.ws26_c00162{word-spacing:-0.390400pt;}
.ws2_c00162{word-spacing:-0.029824pt;}
.ws0_c00162{word-spacing:0.000000pt;}
.ws1_c00162{word-spacing:0.022368pt;}
.ws14_c00162{word-spacing:0.147200pt;}
.ws9_c00162{word-spacing:0.153600pt;}
.ws23_c00162{word-spacing:0.160000pt;}
.ws2d_c00162{word-spacing:0.192000pt;}
.ws1f_c00162{word-spacing:0.505600pt;}
.ws20_c00162{word-spacing:0.512000pt;}
.ws2e_c00162{word-spacing:0.825600pt;}
.ws2f_c00162{word-spacing:0.851200pt;}
.wsf_c00162{word-spacing:1.472000pt;}
.ws22_c00162{word-spacing:2.080000pt;}
.ws21_c00162{word-spacing:2.144000pt;}
.ws7_c00162{word-spacing:2.387200pt;}
.ws8_c00162{word-spacing:2.400000pt;}
.wsd_c00162{word-spacing:3.264000pt;}
.wsc_c00162{word-spacing:3.372800pt;}
.wse_c00162{word-spacing:3.385600pt;}
.wsa_c00162{word-spacing:5.952000pt;}
.ws10_c00162{word-spacing:7.225600pt;}
.ws1c_c00162{word-spacing:7.532800pt;}
.ws29_c00162{word-spacing:9.420800pt;}
.ws2a_c00162{word-spacing:9.440000pt;}
.ws30_c00162{word-spacing:10.713600pt;}
.ws13_c00162{word-spacing:10.739200pt;}
.ws31_c00162{word-spacing:10.790400pt;}
.ws12_c00162{word-spacing:10.796800pt;}
.ws11_c00162{word-spacing:11.347200pt;}
.ws28_c00162{word-spacing:11.936000pt;}
.ws27_c00162{word-spacing:11.942400pt;}
.ws18_c00162{word-spacing:20.691200pt;}
.ws19_c00162{word-spacing:20.723200pt;}
.ws2c_c00162{word-spacing:20.953600pt;}
.ws2b_c00162{word-spacing:21.024000pt;}
.ws1a_c00162{word-spacing:39.769600pt;}
.ws1b_c00162{word-spacing:39.833600pt;}
.wsb_c00162{word-spacing:48.499200pt;}
.ws6_c00162{word-spacing:68.640000pt;}
.ws5_c00162{word-spacing:68.691200pt;}
._1_c00162{width:0.908800pt;}
._0_c00162{width:166.716160pt;}
.fs0_c00162{font-size:64.000000pt;}
.fs1_c00162{font-size:74.560000pt;}
.y0_c00162{bottom:0.000000pt;}
.y2_c00162{bottom:41.627067pt;}
.y1_c00162{bottom:60.027067pt;}
.y24_c00162{bottom:138.267067pt;}
.y23_c00162{bottom:165.867067pt;}
.y22_c00162{bottom:201.467067pt;}
.y21_c00162{bottom:229.067067pt;}
.y20_c00162{bottom:256.667067pt;}
.y1f_c00162{bottom:284.267067pt;}
.y1e_c00162{bottom:311.867067pt;}
.y1d_c00162{bottom:339.467067pt;}
.y1c_c00162{bottom:375.067067pt;}
.y1b_c00162{bottom:402.667067pt;}
.y1a_c00162{bottom:430.267067pt;}
.y19_c00162{bottom:457.867067pt;}
.y18_c00162{bottom:485.467067pt;}
.y17_c00162{bottom:513.067067pt;}
.y16_c00162{bottom:540.667067pt;}
.y15_c00162{bottom:568.267067pt;}
.y14_c00162{bottom:586.667067pt;}
.y13_c00162{bottom:605.067067pt;}
.y12_c00162{bottom:623.467067pt;}
.y11_c00162{bottom:641.787067pt;}
.y10_c00162{bottom:660.187067pt;}
.yf_c00162{bottom:678.587067pt;}
.ye_c00162{bottom:696.987067pt;}
.yd_c00162{bottom:715.387067pt;}
.yc_c00162{bottom:733.787067pt;}
.yb_c00162{bottom:752.187067pt;}
.ya_c00162{bottom:770.587067pt;}
.y9_c00162{bottom:806.187067pt;}
.y8_c00162{bottom:833.787067pt;}
.y7_c00162{bottom:861.387067pt;}
.y6_c00162{bottom:888.987067pt;}
.y5_c00162{bottom:924.587067pt;}
.y4_c00162{bottom:951.471067pt;}
.y3_c00162{bottom:972.907067pt;}
.h1_c00162{height:56.156250pt;}
.h3_c00162{height:57.375000pt;}
.h2_c00162{height:77.763750pt;}
.h0_c00162{height:1122.666667pt;}
.w1_c00162{width:793.333333pt;}
.w0_c00162{width:793.626667pt;}
.x0_c00162{left:0.000000pt;}
.x2_c00162{left:151.200000pt;}
.x5_c00162{left:170.160000pt;}
.x3_c00162{left:199.200000pt;}
.x4_c00162{left:232.807920pt;}
.x1_c00162{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0857182981ebe5a4d597ccc9.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.093262;font-style:normal;font-weight:normal;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_ad04d4246a644a3221dbb728.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.106934;font-style:normal;font-weight:normal;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_7e0ed5575a981ab89085cae2.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00163{letter-spacing:-0.093600px;}
.lsd_c00163{letter-spacing:-0.079200px;}
.ls6_c00163{letter-spacing:-0.072000px;}
.ls4_c00163{letter-spacing:-0.064800px;}
.lse_c00163{letter-spacing:-0.057600px;}
.ls7_c00163{letter-spacing:-0.050400px;}
.lsb_c00163{letter-spacing:-0.043200px;}
.ls9_c00163{letter-spacing:-0.036000px;}
.ls5_c00163{letter-spacing:-0.028800px;}
.ls3_c00163{letter-spacing:-0.021600px;}
.lsa_c00163{letter-spacing:-0.014400px;}
.ls8_c00163{letter-spacing:-0.007200px;}
.ls2_c00163{letter-spacing:0.000000px;}
.ls0_c00163{letter-spacing:0.021600px;}
.ls1_c00163{letter-spacing:0.144000px;}
.sc__c00163{text-shadow:none;}
.sc0_c00163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00163{-webkit-text-stroke:0px transparent;}
.sc0_c00163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00163{word-spacing:-19.987200px;}
.ws24_c00163{word-spacing:-3.124800px;}
.ws23_c00163{word-spacing:-3.117600px;}
.ws21_c00163{word-spacing:-3.110400px;}
.ws22_c00163{word-spacing:-3.016800px;}
.ws36_c00163{word-spacing:-2.332800px;}
.ws3b_c00163{word-spacing:-1.620000px;}
.ws20_c00163{word-spacing:-1.612800px;}
.ws3c_c00163{word-spacing:-1.540800px;}
.ws31_c00163{word-spacing:-1.267200px;}
.ws30_c00163{word-spacing:-1.072800px;}
.ws29_c00163{word-spacing:-0.158400px;}
.ws2a_c00163{word-spacing:-0.144000px;}
.ws1_c00163{word-spacing:0.000000px;}
.ws10_c00163{word-spacing:0.172800px;}
.ws7_c00163{word-spacing:0.180000px;}
.ws6_c00163{word-spacing:0.187200px;}
.wsf_c00163{word-spacing:0.194400px;}
.ws15_c00163{word-spacing:0.201600px;}
.ws32_c00163{word-spacing:0.208800px;}
.ws33_c00163{word-spacing:0.244800px;}
.ws17_c00163{word-spacing:0.252000px;}
.ws16_c00163{word-spacing:0.367200px;}
.ws11_c00163{word-spacing:0.907200px;}
.ws12_c00163{word-spacing:0.921600px;}
.wsd_c00163{word-spacing:1.260000px;}
.wse_c00163{word-spacing:1.274400px;}
.ws2f_c00163{word-spacing:2.361600px;}
.ws2e_c00163{word-spacing:2.368800px;}
.ws13_c00163{word-spacing:4.161600px;}
.ws28_c00163{word-spacing:5.234400px;}
.ws35_c00163{word-spacing:5.565600px;}
.ws34_c00163{word-spacing:5.587200px;}
.ws2b_c00163{word-spacing:6.256800px;}
.ws2d_c00163{word-spacing:6.703200px;}
.ws2c_c00163{word-spacing:6.710400px;}
.ws4_c00163{word-spacing:7.596000px;}
.ws5_c00163{word-spacing:7.747200px;}
.wsc_c00163{word-spacing:10.843200px;}
.wsb_c00163{word-spacing:10.929600px;}
.ws2_c00163{word-spacing:12.780000px;}
.ws3_c00163{word-spacing:12.880800px;}
.ws25_c00163{word-spacing:13.600800px;}
.ws3a_c00163{word-spacing:16.682400px;}
.ws39_c00163{word-spacing:16.761600px;}
.ws1a_c00163{word-spacing:17.006400px;}
.ws1b_c00163{word-spacing:17.114400px;}
.ws14_c00163{word-spacing:19.303200px;}
.wsa_c00163{word-spacing:19.886400px;}
.ws9_c00163{word-spacing:19.915200px;}
.ws8_c00163{word-spacing:20.030400px;}
.ws1e_c00163{word-spacing:21.801600px;}
.ws1f_c00163{word-spacing:21.837600px;}
.ws18_c00163{word-spacing:24.710400px;}
.ws19_c00163{word-spacing:24.717600px;}
.ws38_c00163{word-spacing:25.020000px;}
.ws1c_c00163{word-spacing:25.027200px;}
.ws37_c00163{word-spacing:25.056000px;}
.ws1d_c00163{word-spacing:25.077600px;}
.ws26_c00163{word-spacing:36.900000px;}
.ws27_c00163{word-spacing:36.914400px;}
._1_c00163{margin-left:-10.461600px;}
._0_c00163{width:1.000800px;}
.fc0_c00163{color:rgb(0,0,0);}
.fs0_c00163{font-size:72.000000px;}
.y0_c00163{bottom:0.000000px;}
.y2_c00163{bottom:46.830450px;}
.y1_c00163{bottom:67.530450px;}
.y26_c00163{bottom:141.780450px;}
.y25_c00163{bottom:172.830450px;}
.y24_c00163{bottom:212.880450px;}
.y23_c00163{bottom:233.580450px;}
.y22_c00163{bottom:254.280450px;}
.y21_c00163{bottom:274.980450px;}
.y20_c00163{bottom:295.680450px;}
.y1f_c00163{bottom:335.730450px;}
.y1e_c00163{bottom:366.690450px;}
.y1d_c00163{bottom:397.740450px;}
.y1c_c00163{bottom:428.790450px;}
.y1b_c00163{bottom:459.840450px;}
.y1a_c00163{bottom:480.540450px;}
.y19_c00163{bottom:501.240450px;}
.y18_c00163{bottom:521.940450px;}
.y17_c00163{bottom:542.640450px;}
.y16_c00163{bottom:563.340450px;}
.y15_c00163{bottom:584.040450px;}
.y14_c00163{bottom:604.740450px;}
.y13_c00163{bottom:625.440450px;}
.y12_c00163{bottom:646.140450px;}
.y11_c00163{bottom:666.840450px;}
.y10_c00163{bottom:687.540450px;}
.yf_c00163{bottom:708.240450px;}
.ye_c00163{bottom:728.940450px;}
.yd_c00163{bottom:768.990450px;}
.yc_c00163{bottom:800.040450px;}
.yb_c00163{bottom:831.090450px;}
.ya_c00163{bottom:862.140450px;}
.y9_c00163{bottom:902.190450px;}
.y8_c00163{bottom:933.240450px;}
.y7_c00163{bottom:964.290450px;}
.y6_c00163{bottom:995.340450px;}
.y5_c00163{bottom:1035.390450px;}
.y4_c00163{bottom:1066.440450px;}
.y3_c00163{bottom:1097.490450px;}
.h1_c00163{height:63.175781px;}
.h2_c00163{height:64.546875px;}
.h3_c00163{height:75.093750px;}
.h0_c00163{height:1263.000000px;}
.w1_c00163{width:892.500000px;}
.w0_c00163{width:892.830000px;}
.x0_c00163{left:0.000000px;}
.x2_c00163{left:127.620000px;}
.x3_c00163{left:148.950000px;}
.x1_c00163{left:695.880000px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.lsc_c00163{letter-spacing:-0.083200pt;}
.lsd_c00163{letter-spacing:-0.070400pt;}
.ls6_c00163{letter-spacing:-0.064000pt;}
.ls4_c00163{letter-spacing:-0.057600pt;}
.lse_c00163{letter-spacing:-0.051200pt;}
.ls7_c00163{letter-spacing:-0.044800pt;}
.lsb_c00163{letter-spacing:-0.038400pt;}
.ls9_c00163{letter-spacing:-0.032000pt;}
.ls5_c00163{letter-spacing:-0.025600pt;}
.ls3_c00163{letter-spacing:-0.019200pt;}
.lsa_c00163{letter-spacing:-0.012800pt;}
.ls8_c00163{letter-spacing:-0.006400pt;}
.ls2_c00163{letter-spacing:0.000000pt;}
.ls0_c00163{letter-spacing:0.019200pt;}
.ls1_c00163{letter-spacing:0.128000pt;}
.ws0_c00163{word-spacing:-17.766400pt;}
.ws24_c00163{word-spacing:-2.777600pt;}
.ws23_c00163{word-spacing:-2.771200pt;}
.ws21_c00163{word-spacing:-2.764800pt;}
.ws22_c00163{word-spacing:-2.681600pt;}
.ws36_c00163{word-spacing:-2.073600pt;}
.ws3b_c00163{word-spacing:-1.440000pt;}
.ws20_c00163{word-spacing:-1.433600pt;}
.ws3c_c00163{word-spacing:-1.369600pt;}
.ws31_c00163{word-spacing:-1.126400pt;}
.ws30_c00163{word-spacing:-0.953600pt;}
.ws29_c00163{word-spacing:-0.140800pt;}
.ws2a_c00163{word-spacing:-0.128000pt;}
.ws1_c00163{word-spacing:0.000000pt;}
.ws10_c00163{word-spacing:0.153600pt;}
.ws7_c00163{word-spacing:0.160000pt;}
.ws6_c00163{word-spacing:0.166400pt;}
.wsf_c00163{word-spacing:0.172800pt;}
.ws15_c00163{word-spacing:0.179200pt;}
.ws32_c00163{word-spacing:0.185600pt;}
.ws33_c00163{word-spacing:0.217600pt;}
.ws17_c00163{word-spacing:0.224000pt;}
.ws16_c00163{word-spacing:0.326400pt;}
.ws11_c00163{word-spacing:0.806400pt;}
.ws12_c00163{word-spacing:0.819200pt;}
.wsd_c00163{word-spacing:1.120000pt;}
.wse_c00163{word-spacing:1.132800pt;}
.ws2f_c00163{word-spacing:2.099200pt;}
.ws2e_c00163{word-spacing:2.105600pt;}
.ws13_c00163{word-spacing:3.699200pt;}
.ws28_c00163{word-spacing:4.652800pt;}
.ws35_c00163{word-spacing:4.947200pt;}
.ws34_c00163{word-spacing:4.966400pt;}
.ws2b_c00163{word-spacing:5.561600pt;}
.ws2d_c00163{word-spacing:5.958400pt;}
.ws2c_c00163{word-spacing:5.964800pt;}
.ws4_c00163{word-spacing:6.752000pt;}
.ws5_c00163{word-spacing:6.886400pt;}
.wsc_c00163{word-spacing:9.638400pt;}
.wsb_c00163{word-spacing:9.715200pt;}
.ws2_c00163{word-spacing:11.360000pt;}
.ws3_c00163{word-spacing:11.449600pt;}
.ws25_c00163{word-spacing:12.089600pt;}
.ws3a_c00163{word-spacing:14.828800pt;}
.ws39_c00163{word-spacing:14.899200pt;}
.ws1a_c00163{word-spacing:15.116800pt;}
.ws1b_c00163{word-spacing:15.212800pt;}
.ws14_c00163{word-spacing:17.158400pt;}
.wsa_c00163{word-spacing:17.676800pt;}
.ws9_c00163{word-spacing:17.702400pt;}
.ws8_c00163{word-spacing:17.804800pt;}
.ws1e_c00163{word-spacing:19.379200pt;}
.ws1f_c00163{word-spacing:19.411200pt;}
.ws18_c00163{word-spacing:21.964800pt;}
.ws19_c00163{word-spacing:21.971200pt;}
.ws38_c00163{word-spacing:22.240000pt;}
.ws1c_c00163{word-spacing:22.246400pt;}
.ws37_c00163{word-spacing:22.272000pt;}
.ws1d_c00163{word-spacing:22.291200pt;}
.ws26_c00163{word-spacing:32.800000pt;}
.ws27_c00163{word-spacing:32.812800pt;}
._1_c00163{margin-left:-9.299200pt;}
._0_c00163{width:0.889600pt;}
.fs0_c00163{font-size:64.000000pt;}
.y0_c00163{bottom:0.000000pt;}
.y2_c00163{bottom:41.627067pt;}
.y1_c00163{bottom:60.027067pt;}
.y26_c00163{bottom:126.027067pt;}
.y25_c00163{bottom:153.627067pt;}
.y24_c00163{bottom:189.227067pt;}
.y23_c00163{bottom:207.627067pt;}
.y22_c00163{bottom:226.027067pt;}
.y21_c00163{bottom:244.427067pt;}
.y20_c00163{bottom:262.827067pt;}
.y1f_c00163{bottom:298.427067pt;}
.y1e_c00163{bottom:325.947067pt;}
.y1d_c00163{bottom:353.547067pt;}
.y1c_c00163{bottom:381.147067pt;}
.y1b_c00163{bottom:408.747067pt;}
.y1a_c00163{bottom:427.147067pt;}
.y19_c00163{bottom:445.547067pt;}
.y18_c00163{bottom:463.947067pt;}
.y17_c00163{bottom:482.347067pt;}
.y16_c00163{bottom:500.747067pt;}
.y15_c00163{bottom:519.147067pt;}
.y14_c00163{bottom:537.547067pt;}
.y13_c00163{bottom:555.947067pt;}
.y12_c00163{bottom:574.347067pt;}
.y11_c00163{bottom:592.747067pt;}
.y10_c00163{bottom:611.147067pt;}
.yf_c00163{bottom:629.547067pt;}
.ye_c00163{bottom:647.947067pt;}
.yd_c00163{bottom:683.547067pt;}
.yc_c00163{bottom:711.147067pt;}
.yb_c00163{bottom:738.747067pt;}
.ya_c00163{bottom:766.347067pt;}
.y9_c00163{bottom:801.947067pt;}
.y8_c00163{bottom:829.547067pt;}
.y7_c00163{bottom:857.147067pt;}
.y6_c00163{bottom:884.747067pt;}
.y5_c00163{bottom:920.347067pt;}
.y4_c00163{bottom:947.947067pt;}
.y3_c00163{bottom:975.547067pt;}
.h1_c00163{height:56.156250pt;}
.h2_c00163{height:57.375000pt;}
.h3_c00163{height:66.750000pt;}
.h0_c00163{height:1122.666667pt;}
.w1_c00163{width:793.333333pt;}
.w0_c00163{width:793.626667pt;}
.x0_c00163{left:0.000000pt;}
.x2_c00163{left:113.440000pt;}
.x3_c00163{left:132.400000pt;}
.x1_c00163{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5023de1ebe17422d58dccbda.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.093262;font-style:normal;font-weight:normal;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_83a3576ab1e72f90ec25d5dd.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.106934;font-style:normal;font-weight:normal;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_856a85b3adcc75c7f16517d0.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00164{letter-spacing:-0.079200px;}
.ls8_c00164{letter-spacing:-0.072000px;}
.ls6_c00164{letter-spacing:-0.057600px;}
.ls3_c00164{letter-spacing:-0.050400px;}
.ls7_c00164{letter-spacing:-0.043200px;}
.ls2_c00164{letter-spacing:-0.036000px;}
.ls1_c00164{letter-spacing:-0.028800px;}
.ls9_c00164{letter-spacing:-0.021600px;}
.ls4_c00164{letter-spacing:-0.014400px;}
.ls5_c00164{letter-spacing:-0.007200px;}
.ls0_c00164{letter-spacing:0.000000px;}
.lsc_c00164{letter-spacing:0.014400px;}
.lsa_c00164{letter-spacing:0.172800px;}
.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;}
}
.ws7_c00164{word-spacing:-1.274400px;}
.wse_c00164{word-spacing:-1.260000px;}
.wsa_c00164{word-spacing:-1.224000px;}
.wsf_c00164{word-spacing:-1.188000px;}
.ws0_c00164{word-spacing:0.000000px;}
.ws10_c00164{word-spacing:0.093600px;}
.ws2a_c00164{word-spacing:0.144000px;}
.ws9_c00164{word-spacing:0.165600px;}
.ws26_c00164{word-spacing:0.187200px;}
.ws16_c00164{word-spacing:0.194400px;}
.ws15_c00164{word-spacing:0.230400px;}
.ws29_c00164{word-spacing:0.374400px;}
.ws17_c00164{word-spacing:1.260000px;}
.ws18_c00164{word-spacing:1.332000px;}
.ws13_c00164{word-spacing:2.354400px;}
.ws14_c00164{word-spacing:2.361600px;}
.ws8_c00164{word-spacing:3.067200px;}
.wsb_c00164{word-spacing:3.715200px;}
.ws5_c00164{word-spacing:3.772800px;}
.ws3_c00164{word-spacing:3.787200px;}
.ws27_c00164{word-spacing:3.801600px;}
.ws4_c00164{word-spacing:3.808800px;}
.ws1c_c00164{word-spacing:4.161600px;}
.ws11_c00164{word-spacing:5.882400px;}
.ws12_c00164{word-spacing:5.954400px;}
.ws22_c00164{word-spacing:6.465600px;}
.ws20_c00164{word-spacing:6.667200px;}
.ws21_c00164{word-spacing:6.688800px;}
.ws1f_c00164{word-spacing:6.825600px;}
.wsd_c00164{word-spacing:7.315200px;}
.wsc_c00164{word-spacing:7.401600px;}
.ws28_c00164{word-spacing:10.612800px;}
.ws1b_c00164{word-spacing:14.932800px;}
.ws1e_c00164{word-spacing:18.072000px;}
.ws1d_c00164{word-spacing:18.201600px;}
.ws1a_c00164{word-spacing:20.224800px;}
.ws19_c00164{word-spacing:20.390400px;}
.ws1_c00164{word-spacing:25.747200px;}
.ws25_c00164{word-spacing:31.197600px;}
.ws23_c00164{word-spacing:38.304000px;}
.ws24_c00164{word-spacing:38.376000px;}
.ws6_c00164{word-spacing:56.685600px;}
.ws2_c00164{word-spacing:75.088800px;}
._0_c00164{width:1.166400px;}
.fc0_c00164{color:rgb(0,0,0);}
.fs0_c00164{font-size:72.000000px;}
.y0_c00164{bottom:0.000000px;}
.y2_c00164{bottom:46.830450px;}
.y1_c00164{bottom:67.530450px;}
.y24_c00164{bottom:161.130450px;}
.y23_c00164{bottom:181.830450px;}
.y22_c00164{bottom:202.530450px;}
.y21_c00164{bottom:223.230450px;}
.y20_c00164{bottom:243.930450px;}
.y1f_c00164{bottom:283.980450px;}
.y1e_c00164{bottom:315.030450px;}
.y1d_c00164{bottom:346.080450px;}
.y1c_c00164{bottom:377.040450px;}
.y1b_c00164{bottom:408.090450px;}
.y1a_c00164{bottom:439.140450px;}
.y19_c00164{bottom:470.190450px;}
.y18_c00164{bottom:501.240450px;}
.y17_c00164{bottom:521.940450px;}
.y16_c00164{bottom:542.640450px;}
.y15_c00164{bottom:563.340450px;}
.y14_c00164{bottom:584.040450px;}
.y13_c00164{bottom:604.740450px;}
.y12_c00164{bottom:625.440450px;}
.y11_c00164{bottom:646.140450px;}
.y10_c00164{bottom:666.840450px;}
.yf_c00164{bottom:706.890450px;}
.ye_c00164{bottom:737.940450px;}
.yd_c00164{bottom:768.990450px;}
.yc_c00164{bottom:800.040450px;}
.yb_c00164{bottom:831.090450px;}
.ya_c00164{bottom:871.140450px;}
.y9_c00164{bottom:902.190450px;}
.y8_c00164{bottom:933.240450px;}
.y7_c00164{bottom:964.290450px;}
.y6_c00164{bottom:995.340450px;}
.y5_c00164{bottom:1035.390450px;}
.y4_c00164{bottom:1066.440450px;}
.y3_c00164{bottom:1097.490450px;}
.h1_c00164{height:63.175781px;}
.h2_c00164{height:64.546875px;}
.h3_c00164{height:75.093750px;}
.h0_c00164{height:1263.000000px;}
.w1_c00164{width:892.500000px;}
.w0_c00164{width:892.830000px;}
.x0_c00164{left:0.000000px;}
.x2_c00164{left:170.100000px;}
.x3_c00164{left:191.430000px;}
.x1_c00164{left:738.360000px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.lsb_c00164{letter-spacing:-0.070400pt;}
.ls8_c00164{letter-spacing:-0.064000pt;}
.ls6_c00164{letter-spacing:-0.051200pt;}
.ls3_c00164{letter-spacing:-0.044800pt;}
.ls7_c00164{letter-spacing:-0.038400pt;}
.ls2_c00164{letter-spacing:-0.032000pt;}
.ls1_c00164{letter-spacing:-0.025600pt;}
.ls9_c00164{letter-spacing:-0.019200pt;}
.ls4_c00164{letter-spacing:-0.012800pt;}
.ls5_c00164{letter-spacing:-0.006400pt;}
.ls0_c00164{letter-spacing:0.000000pt;}
.lsc_c00164{letter-spacing:0.012800pt;}
.lsa_c00164{letter-spacing:0.153600pt;}
.ws7_c00164{word-spacing:-1.132800pt;}
.wse_c00164{word-spacing:-1.120000pt;}
.wsa_c00164{word-spacing:-1.088000pt;}
.wsf_c00164{word-spacing:-1.056000pt;}
.ws0_c00164{word-spacing:0.000000pt;}
.ws10_c00164{word-spacing:0.083200pt;}
.ws2a_c00164{word-spacing:0.128000pt;}
.ws9_c00164{word-spacing:0.147200pt;}
.ws26_c00164{word-spacing:0.166400pt;}
.ws16_c00164{word-spacing:0.172800pt;}
.ws15_c00164{word-spacing:0.204800pt;}
.ws29_c00164{word-spacing:0.332800pt;}
.ws17_c00164{word-spacing:1.120000pt;}
.ws18_c00164{word-spacing:1.184000pt;}
.ws13_c00164{word-spacing:2.092800pt;}
.ws14_c00164{word-spacing:2.099200pt;}
.ws8_c00164{word-spacing:2.726400pt;}
.wsb_c00164{word-spacing:3.302400pt;}
.ws5_c00164{word-spacing:3.353600pt;}
.ws3_c00164{word-spacing:3.366400pt;}
.ws27_c00164{word-spacing:3.379200pt;}
.ws4_c00164{word-spacing:3.385600pt;}
.ws1c_c00164{word-spacing:3.699200pt;}
.ws11_c00164{word-spacing:5.228800pt;}
.ws12_c00164{word-spacing:5.292800pt;}
.ws22_c00164{word-spacing:5.747200pt;}
.ws20_c00164{word-spacing:5.926400pt;}
.ws21_c00164{word-spacing:5.945600pt;}
.ws1f_c00164{word-spacing:6.067200pt;}
.wsd_c00164{word-spacing:6.502400pt;}
.wsc_c00164{word-spacing:6.579200pt;}
.ws28_c00164{word-spacing:9.433600pt;}
.ws1b_c00164{word-spacing:13.273600pt;}
.ws1e_c00164{word-spacing:16.064000pt;}
.ws1d_c00164{word-spacing:16.179200pt;}
.ws1a_c00164{word-spacing:17.977600pt;}
.ws19_c00164{word-spacing:18.124800pt;}
.ws1_c00164{word-spacing:22.886400pt;}
.ws25_c00164{word-spacing:27.731200pt;}
.ws23_c00164{word-spacing:34.048000pt;}
.ws24_c00164{word-spacing:34.112000pt;}
.ws6_c00164{word-spacing:50.387200pt;}
.ws2_c00164{word-spacing:66.745600pt;}
._0_c00164{width:1.036800pt;}
.fs0_c00164{font-size:64.000000pt;}
.y0_c00164{bottom:0.000000pt;}
.y2_c00164{bottom:41.627067pt;}
.y1_c00164{bottom:60.027067pt;}
.y24_c00164{bottom:143.227067pt;}
.y23_c00164{bottom:161.627067pt;}
.y22_c00164{bottom:180.027067pt;}
.y21_c00164{bottom:198.427067pt;}
.y20_c00164{bottom:216.827067pt;}
.y1f_c00164{bottom:252.427067pt;}
.y1e_c00164{bottom:280.027067pt;}
.y1d_c00164{bottom:307.627067pt;}
.y1c_c00164{bottom:335.147067pt;}
.y1b_c00164{bottom:362.747067pt;}
.y1a_c00164{bottom:390.347067pt;}
.y19_c00164{bottom:417.947067pt;}
.y18_c00164{bottom:445.547067pt;}
.y17_c00164{bottom:463.947067pt;}
.y16_c00164{bottom:482.347067pt;}
.y15_c00164{bottom:500.747067pt;}
.y14_c00164{bottom:519.147067pt;}
.y13_c00164{bottom:537.547067pt;}
.y12_c00164{bottom:555.947067pt;}
.y11_c00164{bottom:574.347067pt;}
.y10_c00164{bottom:592.747067pt;}
.yf_c00164{bottom:628.347067pt;}
.ye_c00164{bottom:655.947067pt;}
.yd_c00164{bottom:683.547067pt;}
.yc_c00164{bottom:711.147067pt;}
.yb_c00164{bottom:738.747067pt;}
.ya_c00164{bottom:774.347067pt;}
.y9_c00164{bottom:801.947067pt;}
.y8_c00164{bottom:829.547067pt;}
.y7_c00164{bottom:857.147067pt;}
.y6_c00164{bottom:884.747067pt;}
.y5_c00164{bottom:920.347067pt;}
.y4_c00164{bottom:947.947067pt;}
.y3_c00164{bottom:975.547067pt;}
.h1_c00164{height:56.156250pt;}
.h2_c00164{height:57.375000pt;}
.h3_c00164{height:66.750000pt;}
.h0_c00164{height:1122.666667pt;}
.w1_c00164{width:793.333333pt;}
.w0_c00164{width:793.626667pt;}
.x0_c00164{left:0.000000pt;}
.x2_c00164{left:151.200000pt;}
.x3_c00164{left:170.160000pt;}
.x1_c00164{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c14ef6021a0cbae5b883f7d1.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.093262;font-style:normal;font-weight:normal;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_a219f8d4d6fa7e75cc4f538f.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.106934;font-style:normal;font-weight:normal;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_5a2eeb85f9dbef3573133862.woff2')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00165{letter-spacing:-0.086400px;}
.ls7_c00165{letter-spacing:-0.079200px;}
.lsc_c00165{letter-spacing:-0.072000px;}
.lsa_c00165{letter-spacing:-0.064800px;}
.lsb_c00165{letter-spacing:-0.057600px;}
.ls8_c00165{letter-spacing:-0.050400px;}
.ls6_c00165{letter-spacing:-0.043200px;}
.ls2_c00165{letter-spacing:-0.036000px;}
.ls5_c00165{letter-spacing:-0.028800px;}
.ls3_c00165{letter-spacing:-0.021600px;}
.ls9_c00165{letter-spacing:-0.014400px;}
.ls4_c00165{letter-spacing:-0.007200px;}
.ls1_c00165{letter-spacing:0.000000px;}
.ls0_c00165{letter-spacing:0.007200px;}
.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;}
}
.ws2d_c00165{word-spacing:-1.612800px;}
.ws2e_c00165{word-spacing:-1.540800px;}
.ws0_c00165{word-spacing:0.000000px;}
.ws18_c00165{word-spacing:0.086400px;}
.ws17_c00165{word-spacing:0.158400px;}
.wse_c00165{word-spacing:0.165600px;}
.wsf_c00165{word-spacing:0.194400px;}
.ws4_c00165{word-spacing:0.540000px;}
.ws5_c00165{word-spacing:0.547200px;}
.ws1f_c00165{word-spacing:0.828000px;}
.ws1e_c00165{word-spacing:0.921600px;}
.ws1d_c00165{word-spacing:2.700000px;}
.ws1c_c00165{word-spacing:2.714400px;}
.wsd_c00165{word-spacing:2.721600px;}
.wsc_c00165{word-spacing:2.772000px;}
.ws31_c00165{word-spacing:3.434400px;}
.ws32_c00165{word-spacing:3.441600px;}
.ws24_c00165{word-spacing:4.068000px;}
.ws2c_c00165{word-spacing:4.132800px;}
.ws16_c00165{word-spacing:4.140000px;}
.ws15_c00165{word-spacing:4.154400px;}
.ws23_c00165{word-spacing:4.190400px;}
.ws6_c00165{word-spacing:4.838400px;}
.ws7_c00165{word-spacing:4.845600px;}
.ws25_c00165{word-spacing:5.241600px;}
.ws26_c00165{word-spacing:5.378400px;}
.ws13_c00165{word-spacing:7.308000px;}
.ws14_c00165{word-spacing:7.372800px;}
.ws38_c00165{word-spacing:8.100000px;}
.ws37_c00165{word-spacing:8.107200px;}
.ws34_c00165{word-spacing:8.460000px;}
.ws33_c00165{word-spacing:8.488800px;}
.ws12_c00165{word-spacing:9.907200px;}
.ws21_c00165{word-spacing:11.073600px;}
.ws20_c00165{word-spacing:11.174400px;}
.ws2f_c00165{word-spacing:12.067200px;}
.ws30_c00165{word-spacing:12.153600px;}
.ws36_c00165{word-spacing:12.398400px;}
.ws35_c00165{word-spacing:12.463200px;}
.ws2a_c00165{word-spacing:13.507200px;}
.ws29_c00165{word-spacing:13.521600px;}
.ws2b_c00165{word-spacing:13.744800px;}
.ws3_c00165{word-spacing:16.005600px;}
.ws1_c00165{word-spacing:16.034400px;}
.ws2_c00165{word-spacing:16.200000px;}
.ws19_c00165{word-spacing:19.303200px;}
.ws22_c00165{word-spacing:22.125600px;}
.wsb_c00165{word-spacing:25.797600px;}
.wsa_c00165{word-spacing:26.121600px;}
.ws10_c00165{word-spacing:27.172800px;}
.ws11_c00165{word-spacing:27.208800px;}
.ws1a_c00165{word-spacing:33.609600px;}
.ws1b_c00165{word-spacing:33.696000px;}
.ws9_c00165{word-spacing:36.518400px;}
.ws8_c00165{word-spacing:36.547200px;}
.ws28_c00165{word-spacing:39.362400px;}
.ws27_c00165{word-spacing:39.456000px;}
._0_c00165{width:1.152000px;}
.fc0_c00165{color:rgb(0,0,0);}
.fs0_c00165{font-size:72.000000px;}
.y0_c00165{bottom:0.000000px;}
.y2_c00165{bottom:46.830450px;}
.y1_c00165{bottom:67.530450px;}
.y23_c00165{bottom:180.480450px;}
.y22_c00165{bottom:211.530450px;}
.y21_c00165{bottom:242.580450px;}
.y20_c00165{bottom:273.630450px;}
.y1f_c00165{bottom:304.680450px;}
.y1e_c00165{bottom:335.730450px;}
.y1d_c00165{bottom:366.690450px;}
.y1c_c00165{bottom:397.740450px;}
.y1b_c00165{bottom:428.790450px;}
.y1a_c00165{bottom:459.840450px;}
.y19_c00165{bottom:499.890450px;}
.y18_c00165{bottom:520.590450px;}
.y17_c00165{bottom:541.290450px;}
.y16_c00165{bottom:561.990450px;}
.y15_c00165{bottom:582.690450px;}
.y14_c00165{bottom:603.390450px;}
.y13_c00165{bottom:624.090450px;}
.y12_c00165{bottom:644.790450px;}
.y11_c00165{bottom:665.490450px;}
.y10_c00165{bottom:686.190450px;}
.yf_c00165{bottom:706.890450px;}
.ye_c00165{bottom:746.940450px;}
.yd_c00165{bottom:777.990450px;}
.yc_c00165{bottom:809.040450px;}
.yb_c00165{bottom:840.090450px;}
.ya_c00165{bottom:871.140450px;}
.y9_c00165{bottom:911.100450px;}
.y8_c00165{bottom:942.150450px;}
.y7_c00165{bottom:973.290450px;}
.y6_c00165{bottom:1004.340450px;}
.y5_c00165{bottom:1035.390450px;}
.y4_c00165{bottom:1066.440450px;}
.y3_c00165{bottom:1097.490450px;}
.h1_c00165{height:63.175781px;}
.h2_c00165{height:64.546875px;}
.h3_c00165{height:75.093750px;}
.h0_c00165{height:1263.000000px;}
.w1_c00165{width:892.500000px;}
.w0_c00165{width:892.830000px;}
.x0_c00165{left:0.000000px;}
.x2_c00165{left:127.620000px;}
.x3_c00165{left:148.950000px;}
.x1_c00165{left:695.880000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.lsd_c00165{letter-spacing:-0.076800pt;}
.ls7_c00165{letter-spacing:-0.070400pt;}
.lsc_c00165{letter-spacing:-0.064000pt;}
.lsa_c00165{letter-spacing:-0.057600pt;}
.lsb_c00165{letter-spacing:-0.051200pt;}
.ls8_c00165{letter-spacing:-0.044800pt;}
.ls6_c00165{letter-spacing:-0.038400pt;}
.ls2_c00165{letter-spacing:-0.032000pt;}
.ls5_c00165{letter-spacing:-0.025600pt;}
.ls3_c00165{letter-spacing:-0.019200pt;}
.ls9_c00165{letter-spacing:-0.012800pt;}
.ls4_c00165{letter-spacing:-0.006400pt;}
.ls1_c00165{letter-spacing:0.000000pt;}
.ls0_c00165{letter-spacing:0.006400pt;}
.ws2d_c00165{word-spacing:-1.433600pt;}
.ws2e_c00165{word-spacing:-1.369600pt;}
.ws0_c00165{word-spacing:0.000000pt;}
.ws18_c00165{word-spacing:0.076800pt;}
.ws17_c00165{word-spacing:0.140800pt;}
.wse_c00165{word-spacing:0.147200pt;}
.wsf_c00165{word-spacing:0.172800pt;}
.ws4_c00165{word-spacing:0.480000pt;}
.ws5_c00165{word-spacing:0.486400pt;}
.ws1f_c00165{word-spacing:0.736000pt;}
.ws1e_c00165{word-spacing:0.819200pt;}
.ws1d_c00165{word-spacing:2.400000pt;}
.ws1c_c00165{word-spacing:2.412800pt;}
.wsd_c00165{word-spacing:2.419200pt;}
.wsc_c00165{word-spacing:2.464000pt;}
.ws31_c00165{word-spacing:3.052800pt;}
.ws32_c00165{word-spacing:3.059200pt;}
.ws24_c00165{word-spacing:3.616000pt;}
.ws2c_c00165{word-spacing:3.673600pt;}
.ws16_c00165{word-spacing:3.680000pt;}
.ws15_c00165{word-spacing:3.692800pt;}
.ws23_c00165{word-spacing:3.724800pt;}
.ws6_c00165{word-spacing:4.300800pt;}
.ws7_c00165{word-spacing:4.307200pt;}
.ws25_c00165{word-spacing:4.659200pt;}
.ws26_c00165{word-spacing:4.780800pt;}
.ws13_c00165{word-spacing:6.496000pt;}
.ws14_c00165{word-spacing:6.553600pt;}
.ws38_c00165{word-spacing:7.200000pt;}
.ws37_c00165{word-spacing:7.206400pt;}
.ws34_c00165{word-spacing:7.520000pt;}
.ws33_c00165{word-spacing:7.545600pt;}
.ws12_c00165{word-spacing:8.806400pt;}
.ws21_c00165{word-spacing:9.843200pt;}
.ws20_c00165{word-spacing:9.932800pt;}
.ws2f_c00165{word-spacing:10.726400pt;}
.ws30_c00165{word-spacing:10.803200pt;}
.ws36_c00165{word-spacing:11.020800pt;}
.ws35_c00165{word-spacing:11.078400pt;}
.ws2a_c00165{word-spacing:12.006400pt;}
.ws29_c00165{word-spacing:12.019200pt;}
.ws2b_c00165{word-spacing:12.217600pt;}
.ws3_c00165{word-spacing:14.227200pt;}
.ws1_c00165{word-spacing:14.252800pt;}
.ws2_c00165{word-spacing:14.400000pt;}
.ws19_c00165{word-spacing:17.158400pt;}
.ws22_c00165{word-spacing:19.667200pt;}
.wsb_c00165{word-spacing:22.931200pt;}
.wsa_c00165{word-spacing:23.219200pt;}
.ws10_c00165{word-spacing:24.153600pt;}
.ws11_c00165{word-spacing:24.185600pt;}
.ws1a_c00165{word-spacing:29.875200pt;}
.ws1b_c00165{word-spacing:29.952000pt;}
.ws9_c00165{word-spacing:32.460800pt;}
.ws8_c00165{word-spacing:32.486400pt;}
.ws28_c00165{word-spacing:34.988800pt;}
.ws27_c00165{word-spacing:35.072000pt;}
._0_c00165{width:1.024000pt;}
.fs0_c00165{font-size:64.000000pt;}
.y0_c00165{bottom:0.000000pt;}
.y2_c00165{bottom:41.627067pt;}
.y1_c00165{bottom:60.027067pt;}
.y23_c00165{bottom:160.427067pt;}
.y22_c00165{bottom:188.027067pt;}
.y21_c00165{bottom:215.627067pt;}
.y20_c00165{bottom:243.227067pt;}
.y1f_c00165{bottom:270.827067pt;}
.y1e_c00165{bottom:298.427067pt;}
.y1d_c00165{bottom:325.947067pt;}
.y1c_c00165{bottom:353.547067pt;}
.y1b_c00165{bottom:381.147067pt;}
.y1a_c00165{bottom:408.747067pt;}
.y19_c00165{bottom:444.347067pt;}
.y18_c00165{bottom:462.747067pt;}
.y17_c00165{bottom:481.147067pt;}
.y16_c00165{bottom:499.547067pt;}
.y15_c00165{bottom:517.947067pt;}
.y14_c00165{bottom:536.347067pt;}
.y13_c00165{bottom:554.747067pt;}
.y12_c00165{bottom:573.147067pt;}
.y11_c00165{bottom:591.547067pt;}
.y10_c00165{bottom:609.947067pt;}
.yf_c00165{bottom:628.347067pt;}
.ye_c00165{bottom:663.947067pt;}
.yd_c00165{bottom:691.547067pt;}
.yc_c00165{bottom:719.147067pt;}
.yb_c00165{bottom:746.747067pt;}
.ya_c00165{bottom:774.347067pt;}
.y9_c00165{bottom:809.867067pt;}
.y8_c00165{bottom:837.467067pt;}
.y7_c00165{bottom:865.147067pt;}
.y6_c00165{bottom:892.747067pt;}
.y5_c00165{bottom:920.347067pt;}
.y4_c00165{bottom:947.947067pt;}
.y3_c00165{bottom:975.547067pt;}
.h1_c00165{height:56.156250pt;}
.h2_c00165{height:57.375000pt;}
.h3_c00165{height:66.750000pt;}
.h0_c00165{height:1122.666667pt;}
.w1_c00165{width:793.333333pt;}
.w0_c00165{width:793.626667pt;}
.x0_c00165{left:0.000000pt;}
.x2_c00165{left:113.440000pt;}
.x3_c00165{left:132.400000pt;}
.x1_c00165{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_67ef9cb2095617e0c3f90778.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.093262;font-style:normal;font-weight:normal;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_1e92a7f24456fd9e221ccb35.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.106934;font-style:normal;font-weight:normal;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_d7ab636dbdf2e8ac358df246.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00166{letter-spacing:-0.100800px;}
.ls5_c00166{letter-spacing:-0.086400px;}
.lsd_c00166{letter-spacing:-0.079200px;}
.lsb_c00166{letter-spacing:-0.072000px;}
.ls6_c00166{letter-spacing:-0.057600px;}
.ls2_c00166{letter-spacing:-0.050400px;}
.ls9_c00166{letter-spacing:-0.043200px;}
.lsa_c00166{letter-spacing:-0.036000px;}
.ls3_c00166{letter-spacing:-0.028800px;}
.ls7_c00166{letter-spacing:-0.021600px;}
.ls8_c00166{letter-spacing:-0.014400px;}
.ls4_c00166{letter-spacing:-0.007200px;}
.ls1_c00166{letter-spacing:0.000000px;}
.ls0_c00166{letter-spacing:0.021600px;}
.lse_c00166{letter-spacing:0.093600px;}
.lsf_c00166{letter-spacing:0.151200px;}
.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;}
}
.ws5_c00166{word-spacing:-4.492800px;}
.ws6_c00166{word-spacing:-4.471200px;}
.ws4_c00166{word-spacing:-4.435200px;}
.ws2_c00166{word-spacing:-3.772800px;}
.ws1_c00166{word-spacing:-3.751200px;}
.ws0_c00166{word-spacing:0.000000px;}
.ws39_c00166{word-spacing:0.007200px;}
.ws16_c00166{word-spacing:0.180000px;}
.ws37_c00166{word-spacing:0.194400px;}
.ws38_c00166{word-spacing:0.208800px;}
.wsc_c00166{word-spacing:0.216000px;}
.ws3_c00166{word-spacing:0.280800px;}
.ws1b_c00166{word-spacing:0.856800px;}
.ws1a_c00166{word-spacing:0.878400px;}
.ws19_c00166{word-spacing:0.914400px;}
.ws2d_c00166{word-spacing:2.376000px;}
.ws2e_c00166{word-spacing:2.397600px;}
.wsb_c00166{word-spacing:3.787200px;}
.wsd_c00166{word-spacing:4.132800px;}
.wse_c00166{word-spacing:4.176000px;}
.ws10_c00166{word-spacing:5.248800px;}
.wsf_c00166{word-spacing:5.313600px;}
.ws15_c00166{word-spacing:5.630400px;}
.ws14_c00166{word-spacing:5.659200px;}
.ws7_c00166{word-spacing:6.321600px;}
.ws8_c00166{word-spacing:6.336000px;}
.ws2a_c00166{word-spacing:6.976800px;}
.ws29_c00166{word-spacing:7.020000px;}
.ws36_c00166{word-spacing:7.048800px;}
.ws21_c00166{word-spacing:8.020800px;}
.ws22_c00166{word-spacing:8.114400px;}
.ws20_c00166{word-spacing:8.827200px;}
.ws1e_c00166{word-spacing:8.899200px;}
.ws26_c00166{word-spacing:9.136800px;}
.ws28_c00166{word-spacing:9.158400px;}
.ws1f_c00166{word-spacing:9.194400px;}
.ws27_c00166{word-spacing:9.302400px;}
.ws35_c00166{word-spacing:10.238400px;}
.ws34_c00166{word-spacing:10.267200px;}
.ws17_c00166{word-spacing:11.426400px;}
.ws18_c00166{word-spacing:11.462400px;}
.ws13_c00166{word-spacing:11.692800px;}
.ws12_c00166{word-spacing:11.714400px;}
.ws1c_c00166{word-spacing:13.514400px;}
.ws1d_c00166{word-spacing:13.536000px;}
.ws9_c00166{word-spacing:14.580000px;}
.wsa_c00166{word-spacing:14.587200px;}
.ws33_c00166{word-spacing:16.624800px;}
.ws32_c00166{word-spacing:16.776000px;}
.ws31_c00166{word-spacing:16.804800px;}
.ws23_c00166{word-spacing:19.936800px;}
.ws24_c00166{word-spacing:20.008800px;}
.ws25_c00166{word-spacing:20.059200px;}
.ws30_c00166{word-spacing:24.638400px;}
.ws2f_c00166{word-spacing:24.681600px;}
.ws2b_c00166{word-spacing:26.064000px;}
.ws2c_c00166{word-spacing:26.121600px;}
.ws11_c00166{word-spacing:26.128800px;}
._2_c00166{margin-left:-9.144000px;}
._3_c00166{margin-left:-6.840000px;}
._1_c00166{width:1.152000px;}
._0_c00166{width:4.680000px;}
.fc0_c00166{color:rgb(0,0,0);}
.fs0_c00166{font-size:72.000000px;}
.y0_c00166{bottom:0.000000px;}
.y2_c00166{bottom:46.830450px;}
.y1_c00166{bottom:67.530450px;}
.y20_c00166{bottom:161.130450px;}
.y1f_c00166{bottom:192.180450px;}
.y1e_c00166{bottom:223.230450px;}
.y1d_c00166{bottom:254.280450px;}
.y1c_c00166{bottom:285.330450px;}
.y1b_c00166{bottom:316.380450px;}
.y1a_c00166{bottom:347.430450px;}
.y19_c00166{bottom:378.390450px;}
.y18_c00166{bottom:409.440450px;}
.y17_c00166{bottom:440.490450px;}
.y16_c00166{bottom:471.540450px;}
.y15_c00166{bottom:511.590450px;}
.y14_c00166{bottom:542.640450px;}
.y13_c00166{bottom:573.690450px;}
.y12_c00166{bottom:604.740450px;}
.y11_c00166{bottom:635.790450px;}
.y10_c00166{bottom:675.840450px;}
.yf_c00166{bottom:706.890450px;}
.ye_c00166{bottom:737.940450px;}
.yd_c00166{bottom:768.990450px;}
.yc_c00166{bottom:800.040450px;}
.yb_c00166{bottom:831.090450px;}
.ya_c00166{bottom:862.140450px;}
.y9_c00166{bottom:902.190450px;}
.y8_c00166{bottom:933.240450px;}
.y7_c00166{bottom:964.290450px;}
.y6_c00166{bottom:995.340450px;}
.y5_c00166{bottom:1026.390450px;}
.y4_c00166{bottom:1066.440450px;}
.y3_c00166{bottom:1097.490450px;}
.h1_c00166{height:63.175781px;}
.h2_c00166{height:64.546875px;}
.h3_c00166{height:75.093750px;}
.h0_c00166{height:1263.000000px;}
.w1_c00166{width:892.500000px;}
.w0_c00166{width:892.830000px;}
.x0_c00166{left:0.000000px;}
.x2_c00166{left:170.100000px;}
.x1_c00166{left:738.360000px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.lsc_c00166{letter-spacing:-0.089600pt;}
.ls5_c00166{letter-spacing:-0.076800pt;}
.lsd_c00166{letter-spacing:-0.070400pt;}
.lsb_c00166{letter-spacing:-0.064000pt;}
.ls6_c00166{letter-spacing:-0.051200pt;}
.ls2_c00166{letter-spacing:-0.044800pt;}
.ls9_c00166{letter-spacing:-0.038400pt;}
.lsa_c00166{letter-spacing:-0.032000pt;}
.ls3_c00166{letter-spacing:-0.025600pt;}
.ls7_c00166{letter-spacing:-0.019200pt;}
.ls8_c00166{letter-spacing:-0.012800pt;}
.ls4_c00166{letter-spacing:-0.006400pt;}
.ls1_c00166{letter-spacing:0.000000pt;}
.ls0_c00166{letter-spacing:0.019200pt;}
.lse_c00166{letter-spacing:0.083200pt;}
.lsf_c00166{letter-spacing:0.134400pt;}
.ws5_c00166{word-spacing:-3.993600pt;}
.ws6_c00166{word-spacing:-3.974400pt;}
.ws4_c00166{word-spacing:-3.942400pt;}
.ws2_c00166{word-spacing:-3.353600pt;}
.ws1_c00166{word-spacing:-3.334400pt;}
.ws0_c00166{word-spacing:0.000000pt;}
.ws39_c00166{word-spacing:0.006400pt;}
.ws16_c00166{word-spacing:0.160000pt;}
.ws37_c00166{word-spacing:0.172800pt;}
.ws38_c00166{word-spacing:0.185600pt;}
.wsc_c00166{word-spacing:0.192000pt;}
.ws3_c00166{word-spacing:0.249600pt;}
.ws1b_c00166{word-spacing:0.761600pt;}
.ws1a_c00166{word-spacing:0.780800pt;}
.ws19_c00166{word-spacing:0.812800pt;}
.ws2d_c00166{word-spacing:2.112000pt;}
.ws2e_c00166{word-spacing:2.131200pt;}
.wsb_c00166{word-spacing:3.366400pt;}
.wsd_c00166{word-spacing:3.673600pt;}
.wse_c00166{word-spacing:3.712000pt;}
.ws10_c00166{word-spacing:4.665600pt;}
.wsf_c00166{word-spacing:4.723200pt;}
.ws15_c00166{word-spacing:5.004800pt;}
.ws14_c00166{word-spacing:5.030400pt;}
.ws7_c00166{word-spacing:5.619200pt;}
.ws8_c00166{word-spacing:5.632000pt;}
.ws2a_c00166{word-spacing:6.201600pt;}
.ws29_c00166{word-spacing:6.240000pt;}
.ws36_c00166{word-spacing:6.265600pt;}
.ws21_c00166{word-spacing:7.129600pt;}
.ws22_c00166{word-spacing:7.212800pt;}
.ws20_c00166{word-spacing:7.846400pt;}
.ws1e_c00166{word-spacing:7.910400pt;}
.ws26_c00166{word-spacing:8.121600pt;}
.ws28_c00166{word-spacing:8.140800pt;}
.ws1f_c00166{word-spacing:8.172800pt;}
.ws27_c00166{word-spacing:8.268800pt;}
.ws35_c00166{word-spacing:9.100800pt;}
.ws34_c00166{word-spacing:9.126400pt;}
.ws17_c00166{word-spacing:10.156800pt;}
.ws18_c00166{word-spacing:10.188800pt;}
.ws13_c00166{word-spacing:10.393600pt;}
.ws12_c00166{word-spacing:10.412800pt;}
.ws1c_c00166{word-spacing:12.012800pt;}
.ws1d_c00166{word-spacing:12.032000pt;}
.ws9_c00166{word-spacing:12.960000pt;}
.wsa_c00166{word-spacing:12.966400pt;}
.ws33_c00166{word-spacing:14.777600pt;}
.ws32_c00166{word-spacing:14.912000pt;}
.ws31_c00166{word-spacing:14.937600pt;}
.ws23_c00166{word-spacing:17.721600pt;}
.ws24_c00166{word-spacing:17.785600pt;}
.ws25_c00166{word-spacing:17.830400pt;}
.ws30_c00166{word-spacing:21.900800pt;}
.ws2f_c00166{word-spacing:21.939200pt;}
.ws2b_c00166{word-spacing:23.168000pt;}
.ws2c_c00166{word-spacing:23.219200pt;}
.ws11_c00166{word-spacing:23.225600pt;}
._2_c00166{margin-left:-8.128000pt;}
._3_c00166{margin-left:-6.080000pt;}
._1_c00166{width:1.024000pt;}
._0_c00166{width:4.160000pt;}
.fs0_c00166{font-size:64.000000pt;}
.y0_c00166{bottom:0.000000pt;}
.y2_c00166{bottom:41.627067pt;}
.y1_c00166{bottom:60.027067pt;}
.y20_c00166{bottom:143.227067pt;}
.y1f_c00166{bottom:170.827067pt;}
.y1e_c00166{bottom:198.427067pt;}
.y1d_c00166{bottom:226.027067pt;}
.y1c_c00166{bottom:253.627067pt;}
.y1b_c00166{bottom:281.227067pt;}
.y1a_c00166{bottom:308.827067pt;}
.y19_c00166{bottom:336.347067pt;}
.y18_c00166{bottom:363.947067pt;}
.y17_c00166{bottom:391.547067pt;}
.y16_c00166{bottom:419.147067pt;}
.y15_c00166{bottom:454.747067pt;}
.y14_c00166{bottom:482.347067pt;}
.y13_c00166{bottom:509.947067pt;}
.y12_c00166{bottom:537.547067pt;}
.y11_c00166{bottom:565.147067pt;}
.y10_c00166{bottom:600.747067pt;}
.yf_c00166{bottom:628.347067pt;}
.ye_c00166{bottom:655.947067pt;}
.yd_c00166{bottom:683.547067pt;}
.yc_c00166{bottom:711.147067pt;}
.yb_c00166{bottom:738.747067pt;}
.ya_c00166{bottom:766.347067pt;}
.y9_c00166{bottom:801.947067pt;}
.y8_c00166{bottom:829.547067pt;}
.y7_c00166{bottom:857.147067pt;}
.y6_c00166{bottom:884.747067pt;}
.y5_c00166{bottom:912.347067pt;}
.y4_c00166{bottom:947.947067pt;}
.y3_c00166{bottom:975.547067pt;}
.h1_c00166{height:56.156250pt;}
.h2_c00166{height:57.375000pt;}
.h3_c00166{height:66.750000pt;}
.h0_c00166{height:1122.666667pt;}
.w1_c00166{width:793.333333pt;}
.w0_c00166{width:793.626667pt;}
.x0_c00166{left:0.000000pt;}
.x2_c00166{left:151.200000pt;}
.x1_c00166{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_abc38643dfec51908a727fde.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.093262;font-style:normal;font-weight:normal;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_c2b6df5c63c953c8e5011891.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.106934;font-style:normal;font-weight:normal;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_30ada751ae1ba5877bf35e64.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00167{letter-spacing:-0.072000px;}
.ls3_c00167{letter-spacing:-0.064800px;}
.ls4_c00167{letter-spacing:-0.057600px;}
.ls7_c00167{letter-spacing:-0.050400px;}
.ls9_c00167{letter-spacing:-0.043200px;}
.lsc_c00167{letter-spacing:-0.036000px;}
.ls5_c00167{letter-spacing:-0.028800px;}
.lsa_c00167{letter-spacing:-0.021600px;}
.ls6_c00167{letter-spacing:-0.014400px;}
.lsd_c00167{letter-spacing:-0.007200px;}
.ls2_c00167{letter-spacing:0.000000px;}
.ls1_c00167{letter-spacing:0.007200px;}
.ls8_c00167{letter-spacing:0.014400px;}
.ls0_c00167{letter-spacing:0.036000px;}
.lse_c00167{letter-spacing:843.998400px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00167{word-spacing:-20.052000px;}
.wsd_c00167{word-spacing:-3.780000px;}
.wse_c00167{word-spacing:-3.751200px;}
.ws15_c00167{word-spacing:-3.405600px;}
.ws14_c00167{word-spacing:-1.656000px;}
.ws13_c00167{word-spacing:-1.598400px;}
.ws1_c00167{word-spacing:0.000000px;}
.wsa_c00167{word-spacing:0.144000px;}
.ws23_c00167{word-spacing:0.165600px;}
.ws4_c00167{word-spacing:0.187200px;}
.ws7_c00167{word-spacing:0.324000px;}
.ws1f_c00167{word-spacing:3.369600px;}
.ws1e_c00167{word-spacing:3.456000px;}
.ws16_c00167{word-spacing:4.161600px;}
.ws10_c00167{word-spacing:4.802400px;}
.wsf_c00167{word-spacing:4.831200px;}
.ws17_c00167{word-spacing:4.867200px;}
.ws18_c00167{word-spacing:4.881600px;}
.ws19_c00167{word-spacing:5.205600px;}
.wsc_c00167{word-spacing:5.256000px;}
.wsb_c00167{word-spacing:5.292000px;}
.ws12_c00167{word-spacing:6.904800px;}
.ws11_c00167{word-spacing:7.041600px;}
.ws2_c00167{word-spacing:7.063200px;}
.ws9_c00167{word-spacing:12.067200px;}
.ws8_c00167{word-spacing:12.175200px;}
.ws22_c00167{word-spacing:14.594400px;}
.ws1a_c00167{word-spacing:17.071200px;}
.ws1b_c00167{word-spacing:17.193600px;}
.ws3_c00167{word-spacing:18.936000px;}
.ws6_c00167{word-spacing:20.318400px;}
.ws5_c00167{word-spacing:20.332800px;}
.ws1c_c00167{word-spacing:22.867200px;}
.ws1d_c00167{word-spacing:22.888800px;}
.ws20_c00167{word-spacing:31.521600px;}
.ws21_c00167{word-spacing:31.572000px;}
._0_c00167{margin-left:-18.720000px;}
._3_c00167{margin-left:-1.080000px;}
._2_c00167{width:1.051200px;}
._1_c00167{width:19.166400px;}
.fc0_c00167{color:rgb(0,0,0);}
.fs0_c00167{font-size:72.000000px;}
.y0_c00167{bottom:0.000000px;}
.y2_c00167{bottom:46.830450px;}
.y1_c00167{bottom:67.530450px;}
.y17_c00167{bottom:603.390450px;}
.y16_c00167{bottom:624.090450px;}
.y15_c00167{bottom:644.790450px;}
.y14_c00167{bottom:665.490450px;}
.y13_c00167{bottom:686.190450px;}
.y12_c00167{bottom:706.890450px;}
.y11_c00167{bottom:727.590450px;}
.y10_c00167{bottom:748.290450px;}
.yf_c00167{bottom:768.990450px;}
.ye_c00167{bottom:789.690450px;}
.yd_c00167{bottom:810.390450px;}
.yc_c00167{bottom:831.090450px;}
.yb_c00167{bottom:851.790450px;}
.ya_c00167{bottom:872.490450px;}
.y9_c00167{bottom:893.190450px;}
.y8_c00167{bottom:933.240450px;}
.y7_c00167{bottom:964.290450px;}
.y6_c00167{bottom:1004.340450px;}
.y5_c00167{bottom:1035.390450px;}
.y4_c00167{bottom:1066.440450px;}
.y3_c00167{bottom:1097.490450px;}
.h1_c00167{height:63.175781px;}
.h2_c00167{height:64.546875px;}
.h3_c00167{height:75.093750px;}
.h0_c00167{height:1263.000000px;}
.w1_c00167{width:892.500000px;}
.w0_c00167{width:892.830000px;}
.x0_c00167{left:0.000000px;}
.x2_c00167{left:127.620000px;}
.x3_c00167{left:148.950000px;}
.x1_c00167{left:695.880000px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.lsb_c00167{letter-spacing:-0.064000pt;}
.ls3_c00167{letter-spacing:-0.057600pt;}
.ls4_c00167{letter-spacing:-0.051200pt;}
.ls7_c00167{letter-spacing:-0.044800pt;}
.ls9_c00167{letter-spacing:-0.038400pt;}
.lsc_c00167{letter-spacing:-0.032000pt;}
.ls5_c00167{letter-spacing:-0.025600pt;}
.lsa_c00167{letter-spacing:-0.019200pt;}
.ls6_c00167{letter-spacing:-0.012800pt;}
.lsd_c00167{letter-spacing:-0.006400pt;}
.ls2_c00167{letter-spacing:0.000000pt;}
.ls1_c00167{letter-spacing:0.006400pt;}
.ls8_c00167{letter-spacing:0.012800pt;}
.ls0_c00167{letter-spacing:0.032000pt;}
.lse_c00167{letter-spacing:750.220800pt;}
.ws0_c00167{word-spacing:-17.824000pt;}
.wsd_c00167{word-spacing:-3.360000pt;}
.wse_c00167{word-spacing:-3.334400pt;}
.ws15_c00167{word-spacing:-3.027200pt;}
.ws14_c00167{word-spacing:-1.472000pt;}
.ws13_c00167{word-spacing:-1.420800pt;}
.ws1_c00167{word-spacing:0.000000pt;}
.wsa_c00167{word-spacing:0.128000pt;}
.ws23_c00167{word-spacing:0.147200pt;}
.ws4_c00167{word-spacing:0.166400pt;}
.ws7_c00167{word-spacing:0.288000pt;}
.ws1f_c00167{word-spacing:2.995200pt;}
.ws1e_c00167{word-spacing:3.072000pt;}
.ws16_c00167{word-spacing:3.699200pt;}
.ws10_c00167{word-spacing:4.268800pt;}
.wsf_c00167{word-spacing:4.294400pt;}
.ws17_c00167{word-spacing:4.326400pt;}
.ws18_c00167{word-spacing:4.339200pt;}
.ws19_c00167{word-spacing:4.627200pt;}
.wsc_c00167{word-spacing:4.672000pt;}
.wsb_c00167{word-spacing:4.704000pt;}
.ws12_c00167{word-spacing:6.137600pt;}
.ws11_c00167{word-spacing:6.259200pt;}
.ws2_c00167{word-spacing:6.278400pt;}
.ws9_c00167{word-spacing:10.726400pt;}
.ws8_c00167{word-spacing:10.822400pt;}
.ws22_c00167{word-spacing:12.972800pt;}
.ws1a_c00167{word-spacing:15.174400pt;}
.ws1b_c00167{word-spacing:15.283200pt;}
.ws3_c00167{word-spacing:16.832000pt;}
.ws6_c00167{word-spacing:18.060800pt;}
.ws5_c00167{word-spacing:18.073600pt;}
.ws1c_c00167{word-spacing:20.326400pt;}
.ws1d_c00167{word-spacing:20.345600pt;}
.ws20_c00167{word-spacing:28.019200pt;}
.ws21_c00167{word-spacing:28.064000pt;}
._0_c00167{margin-left:-16.640000pt;}
._3_c00167{margin-left:-0.960000pt;}
._2_c00167{width:0.934400pt;}
._1_c00167{width:17.036800pt;}
.fs0_c00167{font-size:64.000000pt;}
.y0_c00167{bottom:0.000000pt;}
.y2_c00167{bottom:41.627067pt;}
.y1_c00167{bottom:60.027067pt;}
.y17_c00167{bottom:536.347067pt;}
.y16_c00167{bottom:554.747067pt;}
.y15_c00167{bottom:573.147067pt;}
.y14_c00167{bottom:591.547067pt;}
.y13_c00167{bottom:609.947067pt;}
.y12_c00167{bottom:628.347067pt;}
.y11_c00167{bottom:646.747067pt;}
.y10_c00167{bottom:665.147067pt;}
.yf_c00167{bottom:683.547067pt;}
.ye_c00167{bottom:701.947067pt;}
.yd_c00167{bottom:720.347067pt;}
.yc_c00167{bottom:738.747067pt;}
.yb_c00167{bottom:757.147067pt;}
.ya_c00167{bottom:775.547067pt;}
.y9_c00167{bottom:793.947067pt;}
.y8_c00167{bottom:829.547067pt;}
.y7_c00167{bottom:857.147067pt;}
.y6_c00167{bottom:892.747067pt;}
.y5_c00167{bottom:920.347067pt;}
.y4_c00167{bottom:947.947067pt;}
.y3_c00167{bottom:975.547067pt;}
.h1_c00167{height:56.156250pt;}
.h2_c00167{height:57.375000pt;}
.h3_c00167{height:66.750000pt;}
.h0_c00167{height:1122.666667pt;}
.w1_c00167{width:793.333333pt;}
.w0_c00167{width:793.626667pt;}
.x0_c00167{left:0.000000pt;}
.x2_c00167{left:113.440000pt;}
.x3_c00167{left:132.400000pt;}
.x1_c00167{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b680439357c9009ecd42ed44.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.093262;font-style:normal;font-weight:normal;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_4c4d0537f003ba1b7dd2c27d.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00168;src:url('chunks/assets/font_83b6b68c84a62a9ce208b6e0.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:1.106934;font-style:normal;font-weight:normal;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_d6f8b58f2d6ee69e4b712336.woff2')format("woff");}.ff4_c00168{font-family:ff4_c00168;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.lsa_c00168{letter-spacing:-0.079200px;}
.ls9_c00168{letter-spacing:-0.072000px;}
.lsb_c00168{letter-spacing:-0.064800px;}
.ls8_c00168{letter-spacing:-0.057600px;}
.ls4_c00168{letter-spacing:-0.050400px;}
.lsc_c00168{letter-spacing:-0.043200px;}
.ls7_c00168{letter-spacing:-0.036000px;}
.ls3_c00168{letter-spacing:-0.028800px;}
.ls6_c00168{letter-spacing:-0.021600px;}
.lsd_c00168{letter-spacing:-0.014400px;}
.ls5_c00168{letter-spacing:-0.007200px;}
.ls2_c00168{letter-spacing:0.000000px;}
.ls0_c00168{letter-spacing:0.025164px;}
.lse_c00168{letter-spacing:0.036000px;}
.ls1_c00168{letter-spacing:0.144000px;}
.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:-19.987200px;}
.ws10_c00168{word-spacing:-3.398400px;}
.ws14_c00168{word-spacing:-3.081600px;}
.ws2a_c00168{word-spacing:-3.067200px;}
.ws15_c00168{word-spacing:-3.060000px;}
.ws2b_c00168{word-spacing:-2.908800px;}
.ws12_c00168{word-spacing:-1.634400px;}
.ws11_c00168{word-spacing:-1.612800px;}
.ws1_c00168{word-spacing:0.000000px;}
.ws2_c00168{word-spacing:0.067104px;}
.ws7_c00168{word-spacing:0.165600px;}
.ws23_c00168{word-spacing:0.172800px;}
.ws13_c00168{word-spacing:0.180000px;}
.wse_c00168{word-spacing:0.187200px;}
.ws24_c00168{word-spacing:0.309600px;}
.ws1d_c00168{word-spacing:0.540000px;}
.ws1c_c00168{word-spacing:0.568800px;}
.ws18_c00168{word-spacing:4.320000px;}
.ws19_c00168{word-spacing:4.500000px;}
.ws17_c00168{word-spacing:4.802400px;}
.ws16_c00168{word-spacing:4.845600px;}
.ws1e_c00168{word-spacing:6.321600px;}
.wsa_c00168{word-spacing:6.602400px;}
.wsb_c00168{word-spacing:6.696000px;}
.ws8_c00168{word-spacing:7.740000px;}
.ws9_c00168{word-spacing:7.754400px;}
.wsc_c00168{word-spacing:9.907200px;}
.wsd_c00168{word-spacing:10.000800px;}
.ws22_c00168{word-spacing:11.340000px;}
.ws21_c00168{word-spacing:11.347200px;}
.ws4_c00168{word-spacing:12.088800px;}
.ws3_c00168{word-spacing:12.139200px;}
.ws20_c00168{word-spacing:13.701600px;}
.ws1f_c00168{word-spacing:13.874400px;}
.ws26_c00168{word-spacing:16.394400px;}
.ws25_c00168{word-spacing:16.444800px;}
.ws6_c00168{word-spacing:17.085600px;}
.ws5_c00168{word-spacing:17.107200px;}
.ws29_c00168{word-spacing:20.282400px;}
.ws27_c00168{word-spacing:20.332800px;}
.ws28_c00168{word-spacing:20.520000px;}
.wsf_c00168{word-spacing:21.520800px;}
.ws2c_c00168{word-spacing:29.707200px;}
.ws2d_c00168{word-spacing:29.728800px;}
.ws1b_c00168{word-spacing:31.528800px;}
.ws1a_c00168{word-spacing:31.543200px;}
._1_c00168{width:1.324800px;}
._0_c00168{width:9.730080px;}
.fc0_c00168{color:rgb(0,0,0);}
.fs0_c00168{font-size:72.000000px;}
.fs1_c00168{font-size:83.880000px;}
.y0_c00168{bottom:0.000000px;}
.y2_c00168{bottom:46.830450px;}
.y1_c00168{bottom:67.530450px;}
.y22_c00168{bottom:158.250450px;}
.y21_c00168{bottom:189.300450px;}
.y20_c00168{bottom:220.350450px;}
.y1f_c00168{bottom:251.400450px;}
.y1e_c00168{bottom:291.450450px;}
.y1d_c00168{bottom:322.500450px;}
.y1c_c00168{bottom:353.550450px;}
.y1b_c00168{bottom:393.600450px;}
.y1a_c00168{bottom:424.650450px;}
.y19_c00168{bottom:455.700450px;}
.y18_c00168{bottom:486.750450px;}
.y17_c00168{bottom:507.450450px;}
.y16_c00168{bottom:528.150450px;}
.y15_c00168{bottom:548.850450px;}
.y14_c00168{bottom:569.550450px;}
.y13_c00168{bottom:590.250450px;}
.y12_c00168{bottom:610.950450px;}
.y11_c00168{bottom:631.650450px;}
.y10_c00168{bottom:671.700450px;}
.yf_c00168{bottom:702.750450px;}
.ye_c00168{bottom:733.710450px;}
.yd_c00168{bottom:764.760450px;}
.yc_c00168{bottom:804.810450px;}
.yb_c00168{bottom:835.860450px;}
.ya_c00168{bottom:866.910450px;}
.y9_c00168{bottom:897.960450px;}
.y8_c00168{bottom:938.010450px;}
.y7_c00168{bottom:969.060450px;}
.y6_c00168{bottom:1000.110450px;}
.y5_c00168{bottom:1040.160450px;}
.y4_c00168{bottom:1070.404950px;}
.y3_c00168{bottom:1094.520450px;}
.h1_c00168{height:63.175781px;}
.h3_c00168{height:64.546875px;}
.h4_c00168{height:75.093750px;}
.h2_c00168{height:87.484219px;}
.h0_c00168{height:1263.000000px;}
.w1_c00168{width:892.500000px;}
.w0_c00168{width:892.830000px;}
.x0_c00168{left:0.000000px;}
.x2_c00168{left:170.100000px;}
.x5_c00168{left:191.430000px;}
.x3_c00168{left:251.100000px;}
.x4_c00168{left:299.708460px;}
.x1_c00168{left:738.360000px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.lsa_c00168{letter-spacing:-0.070400pt;}
.ls9_c00168{letter-spacing:-0.064000pt;}
.lsb_c00168{letter-spacing:-0.057600pt;}
.ls8_c00168{letter-spacing:-0.051200pt;}
.ls4_c00168{letter-spacing:-0.044800pt;}
.lsc_c00168{letter-spacing:-0.038400pt;}
.ls7_c00168{letter-spacing:-0.032000pt;}
.ls3_c00168{letter-spacing:-0.025600pt;}
.ls6_c00168{letter-spacing:-0.019200pt;}
.lsd_c00168{letter-spacing:-0.012800pt;}
.ls5_c00168{letter-spacing:-0.006400pt;}
.ls2_c00168{letter-spacing:0.000000pt;}
.ls0_c00168{letter-spacing:0.022368pt;}
.lse_c00168{letter-spacing:0.032000pt;}
.ls1_c00168{letter-spacing:0.128000pt;}
.ws0_c00168{word-spacing:-17.766400pt;}
.ws10_c00168{word-spacing:-3.020800pt;}
.ws14_c00168{word-spacing:-2.739200pt;}
.ws2a_c00168{word-spacing:-2.726400pt;}
.ws15_c00168{word-spacing:-2.720000pt;}
.ws2b_c00168{word-spacing:-2.585600pt;}
.ws12_c00168{word-spacing:-1.452800pt;}
.ws11_c00168{word-spacing:-1.433600pt;}
.ws1_c00168{word-spacing:0.000000pt;}
.ws2_c00168{word-spacing:0.059648pt;}
.ws7_c00168{word-spacing:0.147200pt;}
.ws23_c00168{word-spacing:0.153600pt;}
.ws13_c00168{word-spacing:0.160000pt;}
.wse_c00168{word-spacing:0.166400pt;}
.ws24_c00168{word-spacing:0.275200pt;}
.ws1d_c00168{word-spacing:0.480000pt;}
.ws1c_c00168{word-spacing:0.505600pt;}
.ws18_c00168{word-spacing:3.840000pt;}
.ws19_c00168{word-spacing:4.000000pt;}
.ws17_c00168{word-spacing:4.268800pt;}
.ws16_c00168{word-spacing:4.307200pt;}
.ws1e_c00168{word-spacing:5.619200pt;}
.wsa_c00168{word-spacing:5.868800pt;}
.wsb_c00168{word-spacing:5.952000pt;}
.ws8_c00168{word-spacing:6.880000pt;}
.ws9_c00168{word-spacing:6.892800pt;}
.wsc_c00168{word-spacing:8.806400pt;}
.wsd_c00168{word-spacing:8.889600pt;}
.ws22_c00168{word-spacing:10.080000pt;}
.ws21_c00168{word-spacing:10.086400pt;}
.ws4_c00168{word-spacing:10.745600pt;}
.ws3_c00168{word-spacing:10.790400pt;}
.ws20_c00168{word-spacing:12.179200pt;}
.ws1f_c00168{word-spacing:12.332800pt;}
.ws26_c00168{word-spacing:14.572800pt;}
.ws25_c00168{word-spacing:14.617600pt;}
.ws6_c00168{word-spacing:15.187200pt;}
.ws5_c00168{word-spacing:15.206400pt;}
.ws29_c00168{word-spacing:18.028800pt;}
.ws27_c00168{word-spacing:18.073600pt;}
.ws28_c00168{word-spacing:18.240000pt;}
.wsf_c00168{word-spacing:19.129600pt;}
.ws2c_c00168{word-spacing:26.406400pt;}
.ws2d_c00168{word-spacing:26.425600pt;}
.ws1b_c00168{word-spacing:28.025600pt;}
.ws1a_c00168{word-spacing:28.038400pt;}
._1_c00168{width:1.177600pt;}
._0_c00168{width:8.648960pt;}
.fs0_c00168{font-size:64.000000pt;}
.fs1_c00168{font-size:74.560000pt;}
.y0_c00168{bottom:0.000000pt;}
.y2_c00168{bottom:41.627067pt;}
.y1_c00168{bottom:60.027067pt;}
.y22_c00168{bottom:140.667067pt;}
.y21_c00168{bottom:168.267067pt;}
.y20_c00168{bottom:195.867067pt;}
.y1f_c00168{bottom:223.467067pt;}
.y1e_c00168{bottom:259.067067pt;}
.y1d_c00168{bottom:286.667067pt;}
.y1c_c00168{bottom:314.267067pt;}
.y1b_c00168{bottom:349.867067pt;}
.y1a_c00168{bottom:377.467067pt;}
.y19_c00168{bottom:405.067067pt;}
.y18_c00168{bottom:432.667067pt;}
.y17_c00168{bottom:451.067067pt;}
.y16_c00168{bottom:469.467067pt;}
.y15_c00168{bottom:487.867067pt;}
.y14_c00168{bottom:506.267067pt;}
.y13_c00168{bottom:524.667067pt;}
.y12_c00168{bottom:543.067067pt;}
.y11_c00168{bottom:561.467067pt;}
.y10_c00168{bottom:597.067067pt;}
.yf_c00168{bottom:624.667067pt;}
.ye_c00168{bottom:652.187067pt;}
.yd_c00168{bottom:679.787067pt;}
.yc_c00168{bottom:715.387067pt;}
.yb_c00168{bottom:742.987067pt;}
.ya_c00168{bottom:770.587067pt;}
.y9_c00168{bottom:798.187067pt;}
.y8_c00168{bottom:833.787067pt;}
.y7_c00168{bottom:861.387067pt;}
.y6_c00168{bottom:888.987067pt;}
.y5_c00168{bottom:924.587067pt;}
.y4_c00168{bottom:951.471067pt;}
.y3_c00168{bottom:972.907067pt;}
.h1_c00168{height:56.156250pt;}
.h3_c00168{height:57.375000pt;}
.h4_c00168{height:66.750000pt;}
.h2_c00168{height:77.763750pt;}
.h0_c00168{height:1122.666667pt;}
.w1_c00168{width:793.333333pt;}
.w0_c00168{width:793.626667pt;}
.x0_c00168{left:0.000000pt;}
.x2_c00168{left:151.200000pt;}
.x5_c00168{left:170.160000pt;}
.x3_c00168{left:223.200000pt;}
.x4_c00168{left:266.407520pt;}
.x1_c00168{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4c07241f03539b19bfdfb706.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.093262;font-style:normal;font-weight:normal;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_6b500c11900c86d0ba9b2b9b.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.106934;font-style:normal;font-weight:normal;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_832f567f88013bf7ae1ccbfa.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsf_c00169{letter-spacing:-0.136800px;}
.ls13_c00169{letter-spacing:-0.100800px;}
.ls12_c00169{letter-spacing:-0.086400px;}
.lsb_c00169{letter-spacing:-0.079200px;}
.ls11_c00169{letter-spacing:-0.072000px;}
.ls7_c00169{letter-spacing:-0.064800px;}
.lsc_c00169{letter-spacing:-0.057600px;}
.ls6_c00169{letter-spacing:-0.050400px;}
.ls4_c00169{letter-spacing:-0.043200px;}
.ls8_c00169{letter-spacing:-0.036000px;}
.lse_c00169{letter-spacing:-0.028800px;}
.ls5_c00169{letter-spacing:-0.021600px;}
.lsa_c00169{letter-spacing:-0.014400px;}
.ls9_c00169{letter-spacing:-0.007200px;}
.ls3_c00169{letter-spacing:0.000000px;}
.ls10_c00169{letter-spacing:0.007200px;}
.lsd_c00169{letter-spacing:0.014400px;}
.ls0_c00169{letter-spacing:0.028800px;}
.ls2_c00169{letter-spacing:0.036000px;}
.ls1_c00169{letter-spacing:0.093600px;}
.sc__c00169{text-shadow:none;}
.sc0_c00169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00169{-webkit-text-stroke:0px transparent;}
.sc0_c00169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00169{word-spacing:-20.052000px;}
.ws3a_c00169{word-spacing:-3.758400px;}
.ws2e_c00169{word-spacing:-1.620000px;}
.ws2d_c00169{word-spacing:-1.497600px;}
.ws26_c00169{word-spacing:-1.267200px;}
.ws25_c00169{word-spacing:-1.252800px;}
.ws27_c00169{word-spacing:-1.144800px;}
.ws11_c00169{word-spacing:-0.900000px;}
.ws10_c00169{word-spacing:-0.871200px;}
.ws12_c00169{word-spacing:-0.720000px;}
.ws1_c00169{word-spacing:0.000000px;}
.ws4_c00169{word-spacing:0.057600px;}
.ws24_c00169{word-spacing:0.144000px;}
.ws2b_c00169{word-spacing:0.151200px;}
.wsa_c00169{word-spacing:0.165600px;}
.ws1d_c00169{word-spacing:0.172800px;}
.ws5_c00169{word-spacing:0.187200px;}
.ws1c_c00169{word-spacing:0.194400px;}
.ws39_c00169{word-spacing:0.208800px;}
.ws38_c00169{word-spacing:0.309600px;}
.ws28_c00169{word-spacing:0.561600px;}
.ws2c_c00169{word-spacing:0.950400px;}
.ws1f_c00169{word-spacing:1.569600px;}
.ws1e_c00169{word-spacing:1.612800px;}
.ws3f_c00169{word-spacing:3.348000px;}
.ws40_c00169{word-spacing:3.434400px;}
.ws41_c00169{word-spacing:3.470400px;}
.wsc_c00169{word-spacing:3.751200px;}
.wsb_c00169{word-spacing:3.808800px;}
.ws7_c00169{word-spacing:4.089600px;}
.ws6_c00169{word-spacing:4.168800px;}
.ws13_c00169{word-spacing:5.126400px;}
.ws36_c00169{word-spacing:5.205600px;}
.ws35_c00169{word-spacing:5.212800px;}
.ws14_c00169{word-spacing:5.256000px;}
.ws37_c00169{word-spacing:5.947200px;}
.ws3_c00169{word-spacing:6.141600px;}
.ws2_c00169{word-spacing:6.321600px;}
.ws8_c00169{word-spacing:6.674400px;}
.ws33_c00169{word-spacing:7.444800px;}
.ws34_c00169{word-spacing:7.459200px;}
.ws16_c00169{word-spacing:8.798400px;}
.ws15_c00169{word-spacing:8.805600px;}
.ws21_c00169{word-spacing:10.274400px;}
.ws20_c00169{word-spacing:10.288800px;}
.ws22_c00169{word-spacing:10.663200px;}
.ws23_c00169{word-spacing:10.857600px;}
.ws31_c00169{word-spacing:11.642400px;}
.ws32_c00169{word-spacing:11.721600px;}
.ws3d_c00169{word-spacing:12.052800px;}
.ws3e_c00169{word-spacing:12.081600px;}
.wsf_c00169{word-spacing:12.772800px;}
.wse_c00169{word-spacing:13.154400px;}
.ws2a_c00169{word-spacing:13.384800px;}
.ws29_c00169{word-spacing:13.507200px;}
.ws1b_c00169{word-spacing:13.831200px;}
.ws1a_c00169{word-spacing:13.860000px;}
.ws3b_c00169{word-spacing:14.256000px;}
.ws3c_c00169{word-spacing:14.270400px;}
.ws30_c00169{word-spacing:17.438400px;}
.ws2f_c00169{word-spacing:17.503200px;}
.ws17_c00169{word-spacing:17.812800px;}
.wsd_c00169{word-spacing:18.892800px;}
.ws9_c00169{word-spacing:22.874400px;}
.ws18_c00169{word-spacing:33.638400px;}
.ws19_c00169{word-spacing:33.746400px;}
._1_c00169{margin-left:-1.281600px;}
._0_c00169{width:1.159200px;}
.fc0_c00169{color:rgb(0,0,0);}
.fs0_c00169{font-size:72.000000px;}
.y0_c00169{bottom:0.000000px;}
.y2_c00169{bottom:46.830450px;}
.y1_c00169{bottom:67.530450px;}
.y2c_c00169{bottom:137.730450px;}
.y2b_c00169{bottom:168.780450px;}
.y2a_c00169{bottom:199.830450px;}
.y29_c00169{bottom:230.880450px;}
.y28_c00169{bottom:251.580450px;}
.y27_c00169{bottom:272.280450px;}
.y26_c00169{bottom:292.980450px;}
.y25_c00169{bottom:313.680450px;}
.y24_c00169{bottom:334.380450px;}
.y23_c00169{bottom:355.080450px;}
.y22_c00169{bottom:375.690450px;}
.y21_c00169{bottom:396.390450px;}
.y20_c00169{bottom:417.090450px;}
.y1f_c00169{bottom:437.790450px;}
.y1e_c00169{bottom:477.840450px;}
.y1d_c00169{bottom:508.890450px;}
.y1c_c00169{bottom:539.940450px;}
.y1b_c00169{bottom:570.990450px;}
.y1a_c00169{bottom:591.690450px;}
.y19_c00169{bottom:612.390450px;}
.y18_c00169{bottom:633.090450px;}
.y17_c00169{bottom:653.790450px;}
.y16_c00169{bottom:674.490450px;}
.y15_c00169{bottom:695.190450px;}
.y14_c00169{bottom:715.890450px;}
.y13_c00169{bottom:736.590450px;}
.y12_c00169{bottom:757.290450px;}
.y11_c00169{bottom:777.990450px;}
.y10_c00169{bottom:798.690450px;}
.yf_c00169{bottom:819.390450px;}
.ye_c00169{bottom:840.090450px;}
.yd_c00169{bottom:860.790450px;}
.yc_c00169{bottom:881.490450px;}
.yb_c00169{bottom:902.190450px;}
.ya_c00169{bottom:922.890450px;}
.y9_c00169{bottom:943.590450px;}
.y8_c00169{bottom:964.290450px;}
.y7_c00169{bottom:984.990450px;}
.y6_c00169{bottom:1005.690450px;}
.y5_c00169{bottom:1026.390450px;}
.y4_c00169{bottom:1066.440450px;}
.y3_c00169{bottom:1097.490450px;}
.h1_c00169{height:63.175781px;}
.h2_c00169{height:64.546875px;}
.h3_c00169{height:75.093750px;}
.h0_c00169{height:1263.000000px;}
.w1_c00169{width:892.500000px;}
.w0_c00169{width:892.830000px;}
.x0_c00169{left:0.000000px;}
.x2_c00169{left:127.620000px;}
.x3_c00169{left:148.950000px;}
.x1_c00169{left:695.880000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.lsf_c00169{letter-spacing:-0.121600pt;}
.ls13_c00169{letter-spacing:-0.089600pt;}
.ls12_c00169{letter-spacing:-0.076800pt;}
.lsb_c00169{letter-spacing:-0.070400pt;}
.ls11_c00169{letter-spacing:-0.064000pt;}
.ls7_c00169{letter-spacing:-0.057600pt;}
.lsc_c00169{letter-spacing:-0.051200pt;}
.ls6_c00169{letter-spacing:-0.044800pt;}
.ls4_c00169{letter-spacing:-0.038400pt;}
.ls8_c00169{letter-spacing:-0.032000pt;}
.lse_c00169{letter-spacing:-0.025600pt;}
.ls5_c00169{letter-spacing:-0.019200pt;}
.lsa_c00169{letter-spacing:-0.012800pt;}
.ls9_c00169{letter-spacing:-0.006400pt;}
.ls3_c00169{letter-spacing:0.000000pt;}
.ls10_c00169{letter-spacing:0.006400pt;}
.lsd_c00169{letter-spacing:0.012800pt;}
.ls0_c00169{letter-spacing:0.025600pt;}
.ls2_c00169{letter-spacing:0.032000pt;}
.ls1_c00169{letter-spacing:0.083200pt;}
.ws0_c00169{word-spacing:-17.824000pt;}
.ws3a_c00169{word-spacing:-3.340800pt;}
.ws2e_c00169{word-spacing:-1.440000pt;}
.ws2d_c00169{word-spacing:-1.331200pt;}
.ws26_c00169{word-spacing:-1.126400pt;}
.ws25_c00169{word-spacing:-1.113600pt;}
.ws27_c00169{word-spacing:-1.017600pt;}
.ws11_c00169{word-spacing:-0.800000pt;}
.ws10_c00169{word-spacing:-0.774400pt;}
.ws12_c00169{word-spacing:-0.640000pt;}
.ws1_c00169{word-spacing:0.000000pt;}
.ws4_c00169{word-spacing:0.051200pt;}
.ws24_c00169{word-spacing:0.128000pt;}
.ws2b_c00169{word-spacing:0.134400pt;}
.wsa_c00169{word-spacing:0.147200pt;}
.ws1d_c00169{word-spacing:0.153600pt;}
.ws5_c00169{word-spacing:0.166400pt;}
.ws1c_c00169{word-spacing:0.172800pt;}
.ws39_c00169{word-spacing:0.185600pt;}
.ws38_c00169{word-spacing:0.275200pt;}
.ws28_c00169{word-spacing:0.499200pt;}
.ws2c_c00169{word-spacing:0.844800pt;}
.ws1f_c00169{word-spacing:1.395200pt;}
.ws1e_c00169{word-spacing:1.433600pt;}
.ws3f_c00169{word-spacing:2.976000pt;}
.ws40_c00169{word-spacing:3.052800pt;}
.ws41_c00169{word-spacing:3.084800pt;}
.wsc_c00169{word-spacing:3.334400pt;}
.wsb_c00169{word-spacing:3.385600pt;}
.ws7_c00169{word-spacing:3.635200pt;}
.ws6_c00169{word-spacing:3.705600pt;}
.ws13_c00169{word-spacing:4.556800pt;}
.ws36_c00169{word-spacing:4.627200pt;}
.ws35_c00169{word-spacing:4.633600pt;}
.ws14_c00169{word-spacing:4.672000pt;}
.ws37_c00169{word-spacing:5.286400pt;}
.ws3_c00169{word-spacing:5.459200pt;}
.ws2_c00169{word-spacing:5.619200pt;}
.ws8_c00169{word-spacing:5.932800pt;}
.ws33_c00169{word-spacing:6.617600pt;}
.ws34_c00169{word-spacing:6.630400pt;}
.ws16_c00169{word-spacing:7.820800pt;}
.ws15_c00169{word-spacing:7.827200pt;}
.ws21_c00169{word-spacing:9.132800pt;}
.ws20_c00169{word-spacing:9.145600pt;}
.ws22_c00169{word-spacing:9.478400pt;}
.ws23_c00169{word-spacing:9.651200pt;}
.ws31_c00169{word-spacing:10.348800pt;}
.ws32_c00169{word-spacing:10.419200pt;}
.ws3d_c00169{word-spacing:10.713600pt;}
.ws3e_c00169{word-spacing:10.739200pt;}
.wsf_c00169{word-spacing:11.353600pt;}
.wse_c00169{word-spacing:11.692800pt;}
.ws2a_c00169{word-spacing:11.897600pt;}
.ws29_c00169{word-spacing:12.006400pt;}
.ws1b_c00169{word-spacing:12.294400pt;}
.ws1a_c00169{word-spacing:12.320000pt;}
.ws3b_c00169{word-spacing:12.672000pt;}
.ws3c_c00169{word-spacing:12.684800pt;}
.ws30_c00169{word-spacing:15.500800pt;}
.ws2f_c00169{word-spacing:15.558400pt;}
.ws17_c00169{word-spacing:15.833600pt;}
.wsd_c00169{word-spacing:16.793600pt;}
.ws9_c00169{word-spacing:20.332800pt;}
.ws18_c00169{word-spacing:29.900800pt;}
.ws19_c00169{word-spacing:29.996800pt;}
._1_c00169{margin-left:-1.139200pt;}
._0_c00169{width:1.030400pt;}
.fs0_c00169{font-size:64.000000pt;}
.y0_c00169{bottom:0.000000pt;}
.y2_c00169{bottom:41.627067pt;}
.y1_c00169{bottom:60.027067pt;}
.y2c_c00169{bottom:122.427067pt;}
.y2b_c00169{bottom:150.027067pt;}
.y2a_c00169{bottom:177.627067pt;}
.y29_c00169{bottom:205.227067pt;}
.y28_c00169{bottom:223.627067pt;}
.y27_c00169{bottom:242.027067pt;}
.y26_c00169{bottom:260.427067pt;}
.y25_c00169{bottom:278.827067pt;}
.y24_c00169{bottom:297.227067pt;}
.y23_c00169{bottom:315.627067pt;}
.y22_c00169{bottom:333.947067pt;}
.y21_c00169{bottom:352.347067pt;}
.y20_c00169{bottom:370.747067pt;}
.y1f_c00169{bottom:389.147067pt;}
.y1e_c00169{bottom:424.747067pt;}
.y1d_c00169{bottom:452.347067pt;}
.y1c_c00169{bottom:479.947067pt;}
.y1b_c00169{bottom:507.547067pt;}
.y1a_c00169{bottom:525.947067pt;}
.y19_c00169{bottom:544.347067pt;}
.y18_c00169{bottom:562.747067pt;}
.y17_c00169{bottom:581.147067pt;}
.y16_c00169{bottom:599.547067pt;}
.y15_c00169{bottom:617.947067pt;}
.y14_c00169{bottom:636.347067pt;}
.y13_c00169{bottom:654.747067pt;}
.y12_c00169{bottom:673.147067pt;}
.y11_c00169{bottom:691.547067pt;}
.y10_c00169{bottom:709.947067pt;}
.yf_c00169{bottom:728.347067pt;}
.ye_c00169{bottom:746.747067pt;}
.yd_c00169{bottom:765.147067pt;}
.yc_c00169{bottom:783.547067pt;}
.yb_c00169{bottom:801.947067pt;}
.ya_c00169{bottom:820.347067pt;}
.y9_c00169{bottom:838.747067pt;}
.y8_c00169{bottom:857.147067pt;}
.y7_c00169{bottom:875.547067pt;}
.y6_c00169{bottom:893.947067pt;}
.y5_c00169{bottom:912.347067pt;}
.y4_c00169{bottom:947.947067pt;}
.y3_c00169{bottom:975.547067pt;}
.h1_c00169{height:56.156250pt;}
.h2_c00169{height:57.375000pt;}
.h3_c00169{height:66.750000pt;}
.h0_c00169{height:1122.666667pt;}
.w1_c00169{width:793.333333pt;}
.w0_c00169{width:793.626667pt;}
.x0_c00169{left:0.000000pt;}
.x2_c00169{left:113.440000pt;}
.x3_c00169{left:132.400000pt;}
.x1_c00169{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bffcae0b424ed7415b90055d.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.093262;font-style:normal;font-weight:normal;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_fb1aabd00a404c034b31c4e9.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.106934;font-style:normal;font-weight:normal;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_e0e40754df8274212ae528b9.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00170{letter-spacing:-0.115200px;}
.ls10_c00170{letter-spacing:-0.100800px;}
.lsa_c00170{letter-spacing:-0.093600px;}
.lse_c00170{letter-spacing:-0.079200px;}
.lsf_c00170{letter-spacing:-0.072000px;}
.ls8_c00170{letter-spacing:-0.064800px;}
.ls9_c00170{letter-spacing:-0.057600px;}
.ls7_c00170{letter-spacing:-0.050400px;}
.ls4_c00170{letter-spacing:-0.043200px;}
.ls3_c00170{letter-spacing:-0.036000px;}
.ls6_c00170{letter-spacing:-0.028800px;}
.ls5_c00170{letter-spacing:-0.021600px;}
.lsc_c00170{letter-spacing:-0.014400px;}
.lsb_c00170{letter-spacing:-0.007200px;}
.ls2_c00170{letter-spacing:0.000000px;}
.ls1_c00170{letter-spacing:0.007200px;}
.ls0_c00170{letter-spacing:0.144000px;}
.ls11_c00170{letter-spacing:843.998400px;}
.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;}
}
.ws32_c00170{word-spacing:-4.543200px;}
.ws39_c00170{word-spacing:-4.536000px;}
.ws38_c00170{word-spacing:-4.449600px;}
.ws33_c00170{word-spacing:-4.442400px;}
.ws2b_c00170{word-spacing:-2.354400px;}
.ws2a_c00170{word-spacing:-2.325600px;}
.ws2d_c00170{word-spacing:-1.620000px;}
.ws2c_c00170{word-spacing:-1.548000px;}
.ws1f_c00170{word-spacing:-1.274400px;}
.ws18_c00170{word-spacing:-1.267200px;}
.ws16_c00170{word-spacing:-1.231200px;}
.ws17_c00170{word-spacing:-1.166400px;}
.ws20_c00170{word-spacing:-1.159200px;}
.ws3f_c00170{word-spacing:-0.856800px;}
.ws3e_c00170{word-spacing:-0.792000px;}
.wsc_c00170{word-spacing:-0.532800px;}
.ws22_c00170{word-spacing:-0.518400px;}
.ws23_c00170{word-spacing:-0.496800px;}
.wsd_c00170{word-spacing:-0.475200px;}
.ws0_c00170{word-spacing:0.000000px;}
.ws42_c00170{word-spacing:0.028800px;}
.ws1c_c00170{word-spacing:0.086400px;}
.ws8_c00170{word-spacing:0.158400px;}
.ws43_c00170{word-spacing:0.165600px;}
.ws29_c00170{word-spacing:0.172800px;}
.ws3_c00170{word-spacing:0.180000px;}
.ws4_c00170{word-spacing:0.194400px;}
.ws1b_c00170{word-spacing:0.273600px;}
.ws19_c00170{word-spacing:0.878400px;}
.ws1a_c00170{word-spacing:0.928800px;}
.ws27_c00170{word-spacing:1.605600px;}
.ws28_c00170{word-spacing:1.684800px;}
.ws36_c00170{word-spacing:2.671200px;}
.ws37_c00170{word-spacing:2.692800px;}
.ws6_c00170{word-spacing:4.867200px;}
.ws7_c00170{word-spacing:4.888800px;}
.wsf_c00170{word-spacing:7.005600px;}
.wse_c00170{word-spacing:7.034400px;}
.ws2f_c00170{word-spacing:8.092800px;}
.ws2e_c00170{word-spacing:8.107200px;}
.ws1_c00170{word-spacing:9.194400px;}
.ws2_c00170{word-spacing:9.201600px;}
.ws21_c00170{word-spacing:11.426400px;}
.ws25_c00170{word-spacing:12.758400px;}
.ws24_c00170{word-spacing:12.765600px;}
.ws3a_c00170{word-spacing:13.147200px;}
.wsa_c00170{word-spacing:13.176000px;}
.ws9_c00170{word-spacing:13.183200px;}
.wsb_c00170{word-spacing:13.212000px;}
.ws31_c00170{word-spacing:13.500000px;}
.ws30_c00170{word-spacing:13.507200px;}
.ws41_c00170{word-spacing:14.090400px;}
.ws40_c00170{word-spacing:14.227200px;}
.ws3b_c00170{word-spacing:16.034400px;}
.ws12_c00170{word-spacing:16.380000px;}
.ws13_c00170{word-spacing:16.444800px;}
.ws14_c00170{word-spacing:17.820000px;}
.ws15_c00170{word-spacing:17.827200px;}
.ws26_c00170{word-spacing:22.161600px;}
.ws5_c00170{word-spacing:25.401600px;}
.ws3d_c00170{word-spacing:27.208800px;}
.ws3c_c00170{word-spacing:27.230400px;}
.ws34_c00170{word-spacing:27.900000px;}
.ws35_c00170{word-spacing:28.000800px;}
.ws1d_c00170{word-spacing:37.231200px;}
.ws1e_c00170{word-spacing:37.267200px;}
.ws10_c00170{word-spacing:43.740000px;}
.ws11_c00170{word-spacing:43.848000px;}
._0_c00170{width:1.051200px;}
.fc0_c00170{color:rgb(0,0,0);}
.fs0_c00170{font-size:72.000000px;}
.y0_c00170{bottom:0.000000px;}
.y2_c00170{bottom:46.830450px;}
.y1_c00170{bottom:67.530450px;}
.y29_c00170{bottom:162.390450px;}
.y28_c00170{bottom:201.180450px;}
.y27_c00170{bottom:221.880450px;}
.y26_c00170{bottom:242.580450px;}
.y25_c00170{bottom:263.280450px;}
.y24_c00170{bottom:283.980450px;}
.y23_c00170{bottom:304.680450px;}
.y22_c00170{bottom:325.380450px;}
.y21_c00170{bottom:346.080450px;}
.y20_c00170{bottom:366.690450px;}
.y1f_c00170{bottom:387.390450px;}
.y1e_c00170{bottom:408.090450px;}
.y1d_c00170{bottom:428.790450px;}
.y1c_c00170{bottom:449.490450px;}
.y1b_c00170{bottom:470.190450px;}
.y1a_c00170{bottom:519.240450px;}
.y19_c00170{bottom:550.290450px;}
.y18_c00170{bottom:581.340450px;}
.y17_c00170{bottom:612.390450px;}
.y16_c00170{bottom:643.440450px;}
.y15_c00170{bottom:674.490450px;}
.y14_c00170{bottom:705.540450px;}
.y13_c00170{bottom:736.590450px;}
.y12_c00170{bottom:757.290450px;}
.y11_c00170{bottom:777.990450px;}
.y10_c00170{bottom:798.690450px;}
.yf_c00170{bottom:819.390450px;}
.ye_c00170{bottom:840.090450px;}
.yd_c00170{bottom:860.790450px;}
.yc_c00170{bottom:881.490450px;}
.yb_c00170{bottom:902.190450px;}
.ya_c00170{bottom:922.890450px;}
.y9_c00170{bottom:943.590450px;}
.y8_c00170{bottom:964.290450px;}
.y7_c00170{bottom:984.990450px;}
.y6_c00170{bottom:1005.690450px;}
.y5_c00170{bottom:1026.390450px;}
.y4_c00170{bottom:1066.440450px;}
.y3_c00170{bottom:1097.490450px;}
.h1_c00170{height:63.175781px;}
.h2_c00170{height:64.546875px;}
.h3_c00170{height:75.093750px;}
.h0_c00170{height:1263.000000px;}
.w1_c00170{width:892.500000px;}
.w0_c00170{width:892.830000px;}
.x0_c00170{left:0.000000px;}
.x2_c00170{left:170.100000px;}
.x3_c00170{left:191.430000px;}
.x1_c00170{left:738.360000px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.lsd_c00170{letter-spacing:-0.102400pt;}
.ls10_c00170{letter-spacing:-0.089600pt;}
.lsa_c00170{letter-spacing:-0.083200pt;}
.lse_c00170{letter-spacing:-0.070400pt;}
.lsf_c00170{letter-spacing:-0.064000pt;}
.ls8_c00170{letter-spacing:-0.057600pt;}
.ls9_c00170{letter-spacing:-0.051200pt;}
.ls7_c00170{letter-spacing:-0.044800pt;}
.ls4_c00170{letter-spacing:-0.038400pt;}
.ls3_c00170{letter-spacing:-0.032000pt;}
.ls6_c00170{letter-spacing:-0.025600pt;}
.ls5_c00170{letter-spacing:-0.019200pt;}
.lsc_c00170{letter-spacing:-0.012800pt;}
.lsb_c00170{letter-spacing:-0.006400pt;}
.ls2_c00170{letter-spacing:0.000000pt;}
.ls1_c00170{letter-spacing:0.006400pt;}
.ls0_c00170{letter-spacing:0.128000pt;}
.ls11_c00170{letter-spacing:750.220800pt;}
.ws32_c00170{word-spacing:-4.038400pt;}
.ws39_c00170{word-spacing:-4.032000pt;}
.ws38_c00170{word-spacing:-3.955200pt;}
.ws33_c00170{word-spacing:-3.948800pt;}
.ws2b_c00170{word-spacing:-2.092800pt;}
.ws2a_c00170{word-spacing:-2.067200pt;}
.ws2d_c00170{word-spacing:-1.440000pt;}
.ws2c_c00170{word-spacing:-1.376000pt;}
.ws1f_c00170{word-spacing:-1.132800pt;}
.ws18_c00170{word-spacing:-1.126400pt;}
.ws16_c00170{word-spacing:-1.094400pt;}
.ws17_c00170{word-spacing:-1.036800pt;}
.ws20_c00170{word-spacing:-1.030400pt;}
.ws3f_c00170{word-spacing:-0.761600pt;}
.ws3e_c00170{word-spacing:-0.704000pt;}
.wsc_c00170{word-spacing:-0.473600pt;}
.ws22_c00170{word-spacing:-0.460800pt;}
.ws23_c00170{word-spacing:-0.441600pt;}
.wsd_c00170{word-spacing:-0.422400pt;}
.ws0_c00170{word-spacing:0.000000pt;}
.ws42_c00170{word-spacing:0.025600pt;}
.ws1c_c00170{word-spacing:0.076800pt;}
.ws8_c00170{word-spacing:0.140800pt;}
.ws43_c00170{word-spacing:0.147200pt;}
.ws29_c00170{word-spacing:0.153600pt;}
.ws3_c00170{word-spacing:0.160000pt;}
.ws4_c00170{word-spacing:0.172800pt;}
.ws1b_c00170{word-spacing:0.243200pt;}
.ws19_c00170{word-spacing:0.780800pt;}
.ws1a_c00170{word-spacing:0.825600pt;}
.ws27_c00170{word-spacing:1.427200pt;}
.ws28_c00170{word-spacing:1.497600pt;}
.ws36_c00170{word-spacing:2.374400pt;}
.ws37_c00170{word-spacing:2.393600pt;}
.ws6_c00170{word-spacing:4.326400pt;}
.ws7_c00170{word-spacing:4.345600pt;}
.wsf_c00170{word-spacing:6.227200pt;}
.wse_c00170{word-spacing:6.252800pt;}
.ws2f_c00170{word-spacing:7.193600pt;}
.ws2e_c00170{word-spacing:7.206400pt;}
.ws1_c00170{word-spacing:8.172800pt;}
.ws2_c00170{word-spacing:8.179200pt;}
.ws21_c00170{word-spacing:10.156800pt;}
.ws25_c00170{word-spacing:11.340800pt;}
.ws24_c00170{word-spacing:11.347200pt;}
.ws3a_c00170{word-spacing:11.686400pt;}
.wsa_c00170{word-spacing:11.712000pt;}
.ws9_c00170{word-spacing:11.718400pt;}
.wsb_c00170{word-spacing:11.744000pt;}
.ws31_c00170{word-spacing:12.000000pt;}
.ws30_c00170{word-spacing:12.006400pt;}
.ws41_c00170{word-spacing:12.524800pt;}
.ws40_c00170{word-spacing:12.646400pt;}
.ws3b_c00170{word-spacing:14.252800pt;}
.ws12_c00170{word-spacing:14.560000pt;}
.ws13_c00170{word-spacing:14.617600pt;}
.ws14_c00170{word-spacing:15.840000pt;}
.ws15_c00170{word-spacing:15.846400pt;}
.ws26_c00170{word-spacing:19.699200pt;}
.ws5_c00170{word-spacing:22.579200pt;}
.ws3d_c00170{word-spacing:24.185600pt;}
.ws3c_c00170{word-spacing:24.204800pt;}
.ws34_c00170{word-spacing:24.800000pt;}
.ws35_c00170{word-spacing:24.889600pt;}
.ws1d_c00170{word-spacing:33.094400pt;}
.ws1e_c00170{word-spacing:33.126400pt;}
.ws10_c00170{word-spacing:38.880000pt;}
.ws11_c00170{word-spacing:38.976000pt;}
._0_c00170{width:0.934400pt;}
.fs0_c00170{font-size:64.000000pt;}
.y0_c00170{bottom:0.000000pt;}
.y2_c00170{bottom:41.627067pt;}
.y1_c00170{bottom:60.027067pt;}
.y29_c00170{bottom:144.347067pt;}
.y28_c00170{bottom:178.827067pt;}
.y27_c00170{bottom:197.227067pt;}
.y26_c00170{bottom:215.627067pt;}
.y25_c00170{bottom:234.027067pt;}
.y24_c00170{bottom:252.427067pt;}
.y23_c00170{bottom:270.827067pt;}
.y22_c00170{bottom:289.227067pt;}
.y21_c00170{bottom:307.627067pt;}
.y20_c00170{bottom:325.947067pt;}
.y1f_c00170{bottom:344.347067pt;}
.y1e_c00170{bottom:362.747067pt;}
.y1d_c00170{bottom:381.147067pt;}
.y1c_c00170{bottom:399.547067pt;}
.y1b_c00170{bottom:417.947067pt;}
.y1a_c00170{bottom:461.547067pt;}
.y19_c00170{bottom:489.147067pt;}
.y18_c00170{bottom:516.747067pt;}
.y17_c00170{bottom:544.347067pt;}
.y16_c00170{bottom:571.947067pt;}
.y15_c00170{bottom:599.547067pt;}
.y14_c00170{bottom:627.147067pt;}
.y13_c00170{bottom:654.747067pt;}
.y12_c00170{bottom:673.147067pt;}
.y11_c00170{bottom:691.547067pt;}
.y10_c00170{bottom:709.947067pt;}
.yf_c00170{bottom:728.347067pt;}
.ye_c00170{bottom:746.747067pt;}
.yd_c00170{bottom:765.147067pt;}
.yc_c00170{bottom:783.547067pt;}
.yb_c00170{bottom:801.947067pt;}
.ya_c00170{bottom:820.347067pt;}
.y9_c00170{bottom:838.747067pt;}
.y8_c00170{bottom:857.147067pt;}
.y7_c00170{bottom:875.547067pt;}
.y6_c00170{bottom:893.947067pt;}
.y5_c00170{bottom:912.347067pt;}
.y4_c00170{bottom:947.947067pt;}
.y3_c00170{bottom:975.547067pt;}
.h1_c00170{height:56.156250pt;}
.h2_c00170{height:57.375000pt;}
.h3_c00170{height:66.750000pt;}
.h0_c00170{height:1122.666667pt;}
.w1_c00170{width:793.333333pt;}
.w0_c00170{width:793.626667pt;}
.x0_c00170{left:0.000000pt;}
.x2_c00170{left:151.200000pt;}
.x3_c00170{left:170.160000pt;}
.x1_c00170{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_79c10387674845492a104a58.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.093262;font-style:normal;font-weight:normal;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_a12926c207225281a226b5d2.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00171{letter-spacing:0.000000px;}
.ls1_c00171{letter-spacing:843.998400px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00171{word-spacing:0.000000px;}
.fc0_c00171{color:rgb(0,0,0);}
.fs0_c00171{font-size:72.000000px;}
.y0_c00171{bottom:0.000000px;}
.y2_c00171{bottom:46.830450px;}
.y1_c00171{bottom:67.530450px;}
.y3_c00171{bottom:1097.400450px;}
.h1_c00171{height:63.175781px;}
.h2_c00171{height:75.093750px;}
.h0_c00171{height:1263.000000px;}
.w1_c00171{width:892.500000px;}
.w0_c00171{width:892.830000px;}
.x0_c00171{left:0.000000px;}
.x2_c00171{left:127.620000px;}
.x1_c00171{left:695.880000px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls0_c00171{letter-spacing:0.000000pt;}
.ls1_c00171{letter-spacing:750.220800pt;}
.ws0_c00171{word-spacing:0.000000pt;}
.fs0_c00171{font-size:64.000000pt;}
.y0_c00171{bottom:0.000000pt;}
.y2_c00171{bottom:41.627067pt;}
.y1_c00171{bottom:60.027067pt;}
.y3_c00171{bottom:975.467067pt;}
.h1_c00171{height:56.156250pt;}
.h2_c00171{height:66.750000pt;}
.h0_c00171{height:1122.666667pt;}
.w1_c00171{width:793.333333pt;}
.w0_c00171{width:793.626667pt;}
.x0_c00171{left:0.000000pt;}
.x2_c00171{left:113.440000pt;}
.x1_c00171{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_45d33aa7c73818ed897c26f0.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.093262;font-style:normal;font-weight:normal;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_fe580ba7f0fbfba5eedbb3b7.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00172;src:url('chunks/assets/font_b1295573efd2af574ada5482.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.ls5_c00172{letter-spacing:-0.086400px;}
.ls6_c00172{letter-spacing:-0.072000px;}
.ls7_c00172{letter-spacing:-0.064800px;}
.lsa_c00172{letter-spacing:-0.057600px;}
.lsb_c00172{letter-spacing:-0.050400px;}
.ls4_c00172{letter-spacing:-0.043200px;}
.ls2_c00172{letter-spacing:-0.036000px;}
.ls3_c00172{letter-spacing:-0.028800px;}
.ls9_c00172{letter-spacing:-0.021600px;}
.ls8_c00172{letter-spacing:-0.014400px;}
.lsc_c00172{letter-spacing:-0.007200px;}
.ls1_c00172{letter-spacing:0.000000px;}
.ls0_c00172{letter-spacing:0.050328px;}
.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;}
}
.ws32_c00172{word-spacing:-4.248000px;}
.ws20_c00172{word-spacing:-4.104000px;}
.ws33_c00172{word-spacing:-4.082400px;}
.ws2_c00172{word-spacing:-3.405600px;}
.ws3_c00172{word-spacing:-3.355200px;}
.ws21_c00172{word-spacing:-1.965600px;}
.ws22_c00172{word-spacing:-1.944000px;}
.ws1a_c00172{word-spacing:-1.591200px;}
.ws0_c00172{word-spacing:0.000000px;}
.ws2d_c00172{word-spacing:0.021600px;}
.ws1_c00172{word-spacing:0.041940px;}
.ws24_c00172{word-spacing:0.108000px;}
.ws1f_c00172{word-spacing:0.165600px;}
.wse_c00172{word-spacing:0.187200px;}
.ws23_c00172{word-spacing:0.194400px;}
.ws4_c00172{word-spacing:0.547200px;}
.ws5_c00172{word-spacing:0.561600px;}
.ws29_c00172{word-spacing:0.914400px;}
.ws28_c00172{word-spacing:0.936000px;}
.ws31_c00172{word-spacing:2.354400px;}
.ws30_c00172{word-spacing:2.412000px;}
.ws26_c00172{word-spacing:2.714400px;}
.ws27_c00172{word-spacing:2.793600px;}
.ws7_c00172{word-spacing:3.664800px;}
.ws6_c00172{word-spacing:3.708000px;}
.ws25_c00172{word-spacing:3.787200px;}
.ws8_c00172{word-spacing:3.794400px;}
.ws1e_c00172{word-spacing:4.183200px;}
.ws2c_c00172{word-spacing:5.241600px;}
.ws2b_c00172{word-spacing:5.256000px;}
.ws1d_c00172{word-spacing:5.616000px;}
.wsf_c00172{word-spacing:7.689600px;}
.ws10_c00172{word-spacing:7.783200px;}
.ws11_c00172{word-spacing:10.612800px;}
.ws14_c00172{word-spacing:10.972800px;}
.ws15_c00172{word-spacing:10.994400px;}
.ws2f_c00172{word-spacing:13.536000px;}
.ws2e_c00172{word-spacing:13.550400px;}
.ws2a_c00172{word-spacing:13.881600px;}
.ws16_c00172{word-spacing:16.020000px;}
.ws17_c00172{word-spacing:16.048800px;}
.ws34_c00172{word-spacing:19.677600px;}
.wsd_c00172{word-spacing:21.074400px;}
.wsc_c00172{word-spacing:21.182400px;}
.ws1b_c00172{word-spacing:24.573600px;}
.ws1c_c00172{word-spacing:24.710400px;}
.ws13_c00172{word-spacing:25.056000px;}
.ws12_c00172{word-spacing:25.092000px;}
.wsa_c00172{word-spacing:25.272000px;}
.ws9_c00172{word-spacing:25.401600px;}
.wsb_c00172{word-spacing:25.444800px;}
.ws18_c00172{word-spacing:46.620000px;}
.ws19_c00172{word-spacing:46.627200px;}
._1_c00172{width:1.087200px;}
._2_c00172{width:4.320000px;}
._0_c00172{width:9.730080px;}
.fc0_c00172{color:rgb(0,0,0);}
.fs0_c00172{font-size:72.000000px;}
.fs1_c00172{font-size:83.880000px;}
.y0_c00172{bottom:0.000000px;}
.y2_c00172{bottom:46.830450px;}
.y1_c00172{bottom:67.530450px;}
.y24_c00172{bottom:136.020450px;}
.y23_c00172{bottom:156.720450px;}
.y22_c00172{bottom:177.420450px;}
.y21_c00172{bottom:198.120450px;}
.y20_c00172{bottom:247.170450px;}
.y1f_c00172{bottom:278.220450px;}
.y1e_c00172{bottom:309.270450px;}
.y1d_c00172{bottom:340.320450px;}
.y1c_c00172{bottom:371.370450px;}
.y1b_c00172{bottom:411.420450px;}
.y1a_c00172{bottom:442.470450px;}
.y19_c00172{bottom:473.520450px;}
.y18_c00172{bottom:504.570450px;}
.y17_c00172{bottom:535.620450px;}
.y16_c00172{bottom:574.320450px;}
.y15_c00172{bottom:613.020450px;}
.y14_c00172{bottom:633.720450px;}
.y13_c00172{bottom:654.420450px;}
.y12_c00172{bottom:675.120450px;}
.y11_c00172{bottom:695.820450px;}
.y10_c00172{bottom:716.520450px;}
.yf_c00172{bottom:737.220450px;}
.ye_c00172{bottom:757.920450px;}
.yd_c00172{bottom:778.620450px;}
.yc_c00172{bottom:799.320450px;}
.yb_c00172{bottom:820.020450px;}
.ya_c00172{bottom:869.070450px;}
.y9_c00172{bottom:900.120450px;}
.y8_c00172{bottom:931.170450px;}
.y7_c00172{bottom:962.220450px;}
.y6_c00172{bottom:993.270450px;}
.y5_c00172{bottom:1024.320450px;}
.y4_c00172{bottom:1064.370450px;}
.y3_c00172{bottom:1094.520450px;}
.h1_c00172{height:63.175781px;}
.h3_c00172{height:64.546875px;}
.h2_c00172{height:87.484219px;}
.h0_c00172{height:1263.000000px;}
.w1_c00172{width:892.500000px;}
.w0_c00172{width:892.830000px;}
.x0_c00172{left:0.000000px;}
.x2_c00172{left:170.100000px;}
.x4_c00172{left:191.430000px;}
.x3_c00172{left:251.100000px;}
.x1_c00172{left:738.360000px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls5_c00172{letter-spacing:-0.076800pt;}
.ls6_c00172{letter-spacing:-0.064000pt;}
.ls7_c00172{letter-spacing:-0.057600pt;}
.lsa_c00172{letter-spacing:-0.051200pt;}
.lsb_c00172{letter-spacing:-0.044800pt;}
.ls4_c00172{letter-spacing:-0.038400pt;}
.ls2_c00172{letter-spacing:-0.032000pt;}
.ls3_c00172{letter-spacing:-0.025600pt;}
.ls9_c00172{letter-spacing:-0.019200pt;}
.ls8_c00172{letter-spacing:-0.012800pt;}
.lsc_c00172{letter-spacing:-0.006400pt;}
.ls1_c00172{letter-spacing:0.000000pt;}
.ls0_c00172{letter-spacing:0.044736pt;}
.ws32_c00172{word-spacing:-3.776000pt;}
.ws20_c00172{word-spacing:-3.648000pt;}
.ws33_c00172{word-spacing:-3.628800pt;}
.ws2_c00172{word-spacing:-3.027200pt;}
.ws3_c00172{word-spacing:-2.982400pt;}
.ws21_c00172{word-spacing:-1.747200pt;}
.ws22_c00172{word-spacing:-1.728000pt;}
.ws1a_c00172{word-spacing:-1.414400pt;}
.ws0_c00172{word-spacing:0.000000pt;}
.ws2d_c00172{word-spacing:0.019200pt;}
.ws1_c00172{word-spacing:0.037280pt;}
.ws24_c00172{word-spacing:0.096000pt;}
.ws1f_c00172{word-spacing:0.147200pt;}
.wse_c00172{word-spacing:0.166400pt;}
.ws23_c00172{word-spacing:0.172800pt;}
.ws4_c00172{word-spacing:0.486400pt;}
.ws5_c00172{word-spacing:0.499200pt;}
.ws29_c00172{word-spacing:0.812800pt;}
.ws28_c00172{word-spacing:0.832000pt;}
.ws31_c00172{word-spacing:2.092800pt;}
.ws30_c00172{word-spacing:2.144000pt;}
.ws26_c00172{word-spacing:2.412800pt;}
.ws27_c00172{word-spacing:2.483200pt;}
.ws7_c00172{word-spacing:3.257600pt;}
.ws6_c00172{word-spacing:3.296000pt;}
.ws25_c00172{word-spacing:3.366400pt;}
.ws8_c00172{word-spacing:3.372800pt;}
.ws1e_c00172{word-spacing:3.718400pt;}
.ws2c_c00172{word-spacing:4.659200pt;}
.ws2b_c00172{word-spacing:4.672000pt;}
.ws1d_c00172{word-spacing:4.992000pt;}
.wsf_c00172{word-spacing:6.835200pt;}
.ws10_c00172{word-spacing:6.918400pt;}
.ws11_c00172{word-spacing:9.433600pt;}
.ws14_c00172{word-spacing:9.753600pt;}
.ws15_c00172{word-spacing:9.772800pt;}
.ws2f_c00172{word-spacing:12.032000pt;}
.ws2e_c00172{word-spacing:12.044800pt;}
.ws2a_c00172{word-spacing:12.339200pt;}
.ws16_c00172{word-spacing:14.240000pt;}
.ws17_c00172{word-spacing:14.265600pt;}
.ws34_c00172{word-spacing:17.491200pt;}
.wsd_c00172{word-spacing:18.732800pt;}
.wsc_c00172{word-spacing:18.828800pt;}
.ws1b_c00172{word-spacing:21.843200pt;}
.ws1c_c00172{word-spacing:21.964800pt;}
.ws13_c00172{word-spacing:22.272000pt;}
.ws12_c00172{word-spacing:22.304000pt;}
.wsa_c00172{word-spacing:22.464000pt;}
.ws9_c00172{word-spacing:22.579200pt;}
.wsb_c00172{word-spacing:22.617600pt;}
.ws18_c00172{word-spacing:41.440000pt;}
.ws19_c00172{word-spacing:41.446400pt;}
._1_c00172{width:0.966400pt;}
._2_c00172{width:3.840000pt;}
._0_c00172{width:8.648960pt;}
.fs0_c00172{font-size:64.000000pt;}
.fs1_c00172{font-size:74.560000pt;}
.y0_c00172{bottom:0.000000pt;}
.y2_c00172{bottom:41.627067pt;}
.y1_c00172{bottom:60.027067pt;}
.y24_c00172{bottom:120.907067pt;}
.y23_c00172{bottom:139.307067pt;}
.y22_c00172{bottom:157.707067pt;}
.y21_c00172{bottom:176.107067pt;}
.y20_c00172{bottom:219.707067pt;}
.y1f_c00172{bottom:247.307067pt;}
.y1e_c00172{bottom:274.907067pt;}
.y1d_c00172{bottom:302.507067pt;}
.y1c_c00172{bottom:330.107067pt;}
.y1b_c00172{bottom:365.707067pt;}
.y1a_c00172{bottom:393.307067pt;}
.y19_c00172{bottom:420.907067pt;}
.y18_c00172{bottom:448.507067pt;}
.y17_c00172{bottom:476.107067pt;}
.y16_c00172{bottom:510.507067pt;}
.y15_c00172{bottom:544.907067pt;}
.y14_c00172{bottom:563.307067pt;}
.y13_c00172{bottom:581.707067pt;}
.y12_c00172{bottom:600.107067pt;}
.y11_c00172{bottom:618.507067pt;}
.y10_c00172{bottom:636.907067pt;}
.yf_c00172{bottom:655.307067pt;}
.ye_c00172{bottom:673.707067pt;}
.yd_c00172{bottom:692.107067pt;}
.yc_c00172{bottom:710.507067pt;}
.yb_c00172{bottom:728.907067pt;}
.ya_c00172{bottom:772.507067pt;}
.y9_c00172{bottom:800.107067pt;}
.y8_c00172{bottom:827.707067pt;}
.y7_c00172{bottom:855.307067pt;}
.y6_c00172{bottom:882.907067pt;}
.y5_c00172{bottom:910.507067pt;}
.y4_c00172{bottom:946.107067pt;}
.y3_c00172{bottom:972.907067pt;}
.h1_c00172{height:56.156250pt;}
.h3_c00172{height:57.375000pt;}
.h2_c00172{height:77.763750pt;}
.h0_c00172{height:1122.666667pt;}
.w1_c00172{width:793.333333pt;}
.w0_c00172{width:793.626667pt;}
.x0_c00172{left:0.000000pt;}
.x2_c00172{left:151.200000pt;}
.x4_c00172{left:170.160000pt;}
.x3_c00172{left:223.200000pt;}
.x1_c00172{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_767d5f2fc8150c09f1eeb346.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.093262;font-style:normal;font-weight:normal;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_f381b0678acc74d4227f7623.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00173{vertical-align:0.000000px;}
.ls9_c00173{letter-spacing:-0.086400px;}
.ls5_c00173{letter-spacing:-0.079200px;}
.ls2_c00173{letter-spacing:-0.072000px;}
.lsb_c00173{letter-spacing:-0.064800px;}
.ls6_c00173{letter-spacing:-0.057600px;}
.ls3_c00173{letter-spacing:-0.050400px;}
.lsc_c00173{letter-spacing:-0.043200px;}
.ls1_c00173{letter-spacing:-0.036000px;}
.ls4_c00173{letter-spacing:-0.028800px;}
.lsa_c00173{letter-spacing:-0.021600px;}
.ls7_c00173{letter-spacing:-0.014400px;}
.ls8_c00173{letter-spacing:-0.007200px;}
.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;}
}
.ws7_c00173{word-spacing:-4.147200px;}
.ws8_c00173{word-spacing:-4.132800px;}
.ws29_c00173{word-spacing:-2.325600px;}
.ws2a_c00173{word-spacing:-2.253600px;}
.ws2f_c00173{word-spacing:-2.196000px;}
.ws2e_c00173{word-spacing:-1.965600px;}
.ws37_c00173{word-spacing:-0.597600px;}
.ws36_c00173{word-spacing:-0.446400px;}
.ws0_c00173{word-spacing:0.000000px;}
.ws2d_c00173{word-spacing:0.079200px;}
.ws23_c00173{word-spacing:0.115200px;}
.ws1a_c00173{word-spacing:0.129600px;}
.ws22_c00173{word-spacing:0.187200px;}
.ws15_c00173{word-spacing:0.194400px;}
.ws38_c00173{word-spacing:0.547200px;}
.ws11_c00173{word-spacing:1.238400px;}
.ws10_c00173{word-spacing:1.260000px;}
.ws2_c00173{word-spacing:1.548000px;}
.ws1_c00173{word-spacing:1.634400px;}
.ws21_c00173{word-spacing:1.684800px;}
.ws31_c00173{word-spacing:3.830400px;}
.ws4_c00173{word-spacing:4.773600px;}
.wsc_c00173{word-spacing:4.816800px;}
.wsd_c00173{word-spacing:4.874400px;}
.ws3_c00173{word-spacing:4.888800px;}
.ws17_c00173{word-spacing:5.882400px;}
.ws16_c00173{word-spacing:5.911200px;}
.ws30_c00173{word-spacing:5.954400px;}
.ws35_c00173{word-spacing:6.264000px;}
.ws34_c00173{word-spacing:6.314400px;}
.ws18_c00173{word-spacing:9.914400px;}
.ws19_c00173{word-spacing:9.928800px;}
.ws5_c00173{word-spacing:10.605600px;}
.ws26_c00173{word-spacing:10.620000px;}
.ws6_c00173{word-spacing:10.656000px;}
.ws20_c00173{word-spacing:11.340000px;}
.ws32_c00173{word-spacing:13.068000px;}
.wsa_c00173{word-spacing:13.125600px;}
.ws33_c00173{word-spacing:13.161600px;}
.ws27_c00173{word-spacing:13.500000px;}
.ws9_c00173{word-spacing:13.514400px;}
.ws28_c00173{word-spacing:13.543200px;}
.wsb_c00173{word-spacing:13.550400px;}
.ws12_c00173{word-spacing:14.212800px;}
.ws14_c00173{word-spacing:14.241600px;}
.ws13_c00173{word-spacing:14.277600px;}
.ws2b_c00173{word-spacing:19.994400px;}
.ws2c_c00173{word-spacing:20.116800px;}
.ws25_c00173{word-spacing:25.372800px;}
.ws24_c00173{word-spacing:25.408800px;}
.ws1f_c00173{word-spacing:36.540000px;}
.ws1d_c00173{word-spacing:36.640800px;}
.ws1e_c00173{word-spacing:36.921600px;}
.ws1c_c00173{word-spacing:37.987200px;}
.ws1b_c00173{word-spacing:38.016000px;}
.wse_c00173{word-spacing:50.608800px;}
.wsf_c00173{word-spacing:50.637600px;}
._0_c00173{margin-left:-1.296000px;}
._1_c00173{width:1.044000px;}
.fc0_c00173{color:rgb(0,0,0);}
.fs0_c00173{font-size:72.000000px;}
.y0_c00173{bottom:0.000000px;}
.y2_c00173{bottom:46.830450px;}
.y1_c00173{bottom:67.530450px;}
.y23_c00173{bottom:153.480450px;}
.y22_c00173{bottom:184.530450px;}
.y21_c00173{bottom:215.580450px;}
.y20_c00173{bottom:246.630450px;}
.y1f_c00173{bottom:277.680450px;}
.y1e_c00173{bottom:308.730450px;}
.y1d_c00173{bottom:339.690450px;}
.y1c_c00173{bottom:379.740450px;}
.y1b_c00173{bottom:410.790450px;}
.y1a_c00173{bottom:441.840450px;}
.y19_c00173{bottom:481.890450px;}
.y18_c00173{bottom:512.940450px;}
.y17_c00173{bottom:543.990450px;}
.y16_c00173{bottom:575.040450px;}
.y15_c00173{bottom:606.090450px;}
.y14_c00173{bottom:637.140450px;}
.y13_c00173{bottom:668.190450px;}
.y12_c00173{bottom:699.240450px;}
.y11_c00173{bottom:730.290450px;}
.y10_c00173{bottom:770.340450px;}
.yf_c00173{bottom:801.390450px;}
.ye_c00173{bottom:832.440450px;}
.yd_c00173{bottom:872.490450px;}
.yc_c00173{bottom:911.190450px;}
.yb_c00173{bottom:931.890450px;}
.ya_c00173{bottom:952.590450px;}
.y9_c00173{bottom:973.290450px;}
.y8_c00173{bottom:993.990450px;}
.y7_c00173{bottom:1014.690450px;}
.y6_c00173{bottom:1035.390450px;}
.y5_c00173{bottom:1056.090450px;}
.y4_c00173{bottom:1076.790450px;}
.y3_c00173{bottom:1097.490450px;}
.h1_c00173{height:63.175781px;}
.h2_c00173{height:64.546875px;}
.h0_c00173{height:1263.000000px;}
.w1_c00173{width:892.500000px;}
.w0_c00173{width:892.830000px;}
.x0_c00173{left:0.000000px;}
.x2_c00173{left:127.620000px;}
.x3_c00173{left:148.950000px;}
.x1_c00173{left:695.880000px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls9_c00173{letter-spacing:-0.076800pt;}
.ls5_c00173{letter-spacing:-0.070400pt;}
.ls2_c00173{letter-spacing:-0.064000pt;}
.lsb_c00173{letter-spacing:-0.057600pt;}
.ls6_c00173{letter-spacing:-0.051200pt;}
.ls3_c00173{letter-spacing:-0.044800pt;}
.lsc_c00173{letter-spacing:-0.038400pt;}
.ls1_c00173{letter-spacing:-0.032000pt;}
.ls4_c00173{letter-spacing:-0.025600pt;}
.lsa_c00173{letter-spacing:-0.019200pt;}
.ls7_c00173{letter-spacing:-0.012800pt;}
.ls8_c00173{letter-spacing:-0.006400pt;}
.ls0_c00173{letter-spacing:0.000000pt;}
.ws7_c00173{word-spacing:-3.686400pt;}
.ws8_c00173{word-spacing:-3.673600pt;}
.ws29_c00173{word-spacing:-2.067200pt;}
.ws2a_c00173{word-spacing:-2.003200pt;}
.ws2f_c00173{word-spacing:-1.952000pt;}
.ws2e_c00173{word-spacing:-1.747200pt;}
.ws37_c00173{word-spacing:-0.531200pt;}
.ws36_c00173{word-spacing:-0.396800pt;}
.ws0_c00173{word-spacing:0.000000pt;}
.ws2d_c00173{word-spacing:0.070400pt;}
.ws23_c00173{word-spacing:0.102400pt;}
.ws1a_c00173{word-spacing:0.115200pt;}
.ws22_c00173{word-spacing:0.166400pt;}
.ws15_c00173{word-spacing:0.172800pt;}
.ws38_c00173{word-spacing:0.486400pt;}
.ws11_c00173{word-spacing:1.100800pt;}
.ws10_c00173{word-spacing:1.120000pt;}
.ws2_c00173{word-spacing:1.376000pt;}
.ws1_c00173{word-spacing:1.452800pt;}
.ws21_c00173{word-spacing:1.497600pt;}
.ws31_c00173{word-spacing:3.404800pt;}
.ws4_c00173{word-spacing:4.243200pt;}
.wsc_c00173{word-spacing:4.281600pt;}
.wsd_c00173{word-spacing:4.332800pt;}
.ws3_c00173{word-spacing:4.345600pt;}
.ws17_c00173{word-spacing:5.228800pt;}
.ws16_c00173{word-spacing:5.254400pt;}
.ws30_c00173{word-spacing:5.292800pt;}
.ws35_c00173{word-spacing:5.568000pt;}
.ws34_c00173{word-spacing:5.612800pt;}
.ws18_c00173{word-spacing:8.812800pt;}
.ws19_c00173{word-spacing:8.825600pt;}
.ws5_c00173{word-spacing:9.427200pt;}
.ws26_c00173{word-spacing:9.440000pt;}
.ws6_c00173{word-spacing:9.472000pt;}
.ws20_c00173{word-spacing:10.080000pt;}
.ws32_c00173{word-spacing:11.616000pt;}
.wsa_c00173{word-spacing:11.667200pt;}
.ws33_c00173{word-spacing:11.699200pt;}
.ws27_c00173{word-spacing:12.000000pt;}
.ws9_c00173{word-spacing:12.012800pt;}
.ws28_c00173{word-spacing:12.038400pt;}
.wsb_c00173{word-spacing:12.044800pt;}
.ws12_c00173{word-spacing:12.633600pt;}
.ws14_c00173{word-spacing:12.659200pt;}
.ws13_c00173{word-spacing:12.691200pt;}
.ws2b_c00173{word-spacing:17.772800pt;}
.ws2c_c00173{word-spacing:17.881600pt;}
.ws25_c00173{word-spacing:22.553600pt;}
.ws24_c00173{word-spacing:22.585600pt;}
.ws1f_c00173{word-spacing:32.480000pt;}
.ws1d_c00173{word-spacing:32.569600pt;}
.ws1e_c00173{word-spacing:32.819200pt;}
.ws1c_c00173{word-spacing:33.766400pt;}
.ws1b_c00173{word-spacing:33.792000pt;}
.wse_c00173{word-spacing:44.985600pt;}
.wsf_c00173{word-spacing:45.011200pt;}
._0_c00173{margin-left:-1.152000pt;}
._1_c00173{width:0.928000pt;}
.fs0_c00173{font-size:64.000000pt;}
.y0_c00173{bottom:0.000000pt;}
.y2_c00173{bottom:41.627067pt;}
.y1_c00173{bottom:60.027067pt;}
.y23_c00173{bottom:136.427067pt;}
.y22_c00173{bottom:164.027067pt;}
.y21_c00173{bottom:191.627067pt;}
.y20_c00173{bottom:219.227067pt;}
.y1f_c00173{bottom:246.827067pt;}
.y1e_c00173{bottom:274.427067pt;}
.y1d_c00173{bottom:301.947067pt;}
.y1c_c00173{bottom:337.547067pt;}
.y1b_c00173{bottom:365.147067pt;}
.y1a_c00173{bottom:392.747067pt;}
.y19_c00173{bottom:428.347067pt;}
.y18_c00173{bottom:455.947067pt;}
.y17_c00173{bottom:483.547067pt;}
.y16_c00173{bottom:511.147067pt;}
.y15_c00173{bottom:538.747067pt;}
.y14_c00173{bottom:566.347067pt;}
.y13_c00173{bottom:593.947067pt;}
.y12_c00173{bottom:621.547067pt;}
.y11_c00173{bottom:649.147067pt;}
.y10_c00173{bottom:684.747067pt;}
.yf_c00173{bottom:712.347067pt;}
.ye_c00173{bottom:739.947067pt;}
.yd_c00173{bottom:775.547067pt;}
.yc_c00173{bottom:809.947067pt;}
.yb_c00173{bottom:828.347067pt;}
.ya_c00173{bottom:846.747067pt;}
.y9_c00173{bottom:865.147067pt;}
.y8_c00173{bottom:883.547067pt;}
.y7_c00173{bottom:901.947067pt;}
.y6_c00173{bottom:920.347067pt;}
.y5_c00173{bottom:938.747067pt;}
.y4_c00173{bottom:957.147067pt;}
.y3_c00173{bottom:975.547067pt;}
.h1_c00173{height:56.156250pt;}
.h2_c00173{height:57.375000pt;}
.h0_c00173{height:1122.666667pt;}
.w1_c00173{width:793.333333pt;}
.w0_c00173{width:793.626667pt;}
.x0_c00173{left:0.000000pt;}
.x2_c00173{left:113.440000pt;}
.x3_c00173{left:132.400000pt;}
.x1_c00173{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_478046dbfa9e26023fd3841a.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.093262;font-style:normal;font-weight:normal;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_2fdb17f1e402327ddf59f459.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.106934;font-style:normal;font-weight:normal;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_19790df8248c3baf7027ddc9.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls6_c00174{letter-spacing:-0.079200px;}
.lsb_c00174{letter-spacing:-0.072000px;}
.ls3_c00174{letter-spacing:-0.064800px;}
.ls8_c00174{letter-spacing:-0.057600px;}
.ls7_c00174{letter-spacing:-0.050400px;}
.ls2_c00174{letter-spacing:-0.043200px;}
.ls5_c00174{letter-spacing:-0.036000px;}
.ls1_c00174{letter-spacing:-0.028800px;}
.ls4_c00174{letter-spacing:-0.021600px;}
.ls9_c00174{letter-spacing:-0.014400px;}
.lsa_c00174{letter-spacing:-0.007200px;}
.ls0_c00174{letter-spacing:0.000000px;}
.sc__c00174{text-shadow:none;}
.sc0_c00174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00174{-webkit-text-stroke:0px transparent;}
.sc0_c00174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2c_c00174{word-spacing:-4.852800px;}
.ws2d_c00174{word-spacing:-4.752000px;}
.wsc_c00174{word-spacing:-4.111200px;}
.ws11_c00174{word-spacing:-3.038400px;}
.ws10_c00174{word-spacing:-3.016800px;}
.ws2_c00174{word-spacing:-2.678400px;}
.ws3_c00174{word-spacing:-2.599200px;}
.ws2b_c00174{word-spacing:-2.325600px;}
.ws2a_c00174{word-spacing:-2.289600px;}
.ws29_c00174{word-spacing:-2.232000px;}
.ws19_c00174{word-spacing:-1.987200px;}
.ws18_c00174{word-spacing:-1.965600px;}
.ws21_c00174{word-spacing:-1.576800px;}
.ws27_c00174{word-spacing:-0.381600px;}
.ws28_c00174{word-spacing:-0.187200px;}
.ws26_c00174{word-spacing:-0.158400px;}
.ws0_c00174{word-spacing:0.000000px;}
.wse_c00174{word-spacing:0.115200px;}
.ws14_c00174{word-spacing:0.180000px;}
.ws23_c00174{word-spacing:0.252000px;}
.wsf_c00174{word-spacing:0.288000px;}
.ws15_c00174{word-spacing:0.950400px;}
.ws20_c00174{word-spacing:1.281600px;}
.ws1_c00174{word-spacing:2.311200px;}
.ws5_c00174{word-spacing:6.638400px;}
.ws4_c00174{word-spacing:6.753600px;}
.ws22_c00174{word-spacing:7.754400px;}
.ws31_c00174{word-spacing:8.064000px;}
.ws30_c00174{word-spacing:8.092800px;}
.ws32_c00174{word-spacing:8.114400px;}
.ws2e_c00174{word-spacing:8.172000px;}
.ws2f_c00174{word-spacing:8.272800px;}
.ws24_c00174{word-spacing:9.547200px;}
.ws25_c00174{word-spacing:9.554400px;}
.ws8_c00174{word-spacing:10.260000px;}
.ws9_c00174{word-spacing:10.274400px;}
.wsd_c00174{word-spacing:11.023200px;}
.ws13_c00174{word-spacing:12.420000px;}
.ws1d_c00174{word-spacing:13.478400px;}
.ws1c_c00174{word-spacing:13.492800px;}
.ws7_c00174{word-spacing:15.681600px;}
.ws6_c00174{word-spacing:15.732000px;}
.ws1f_c00174{word-spacing:17.078400px;}
.ws1e_c00174{word-spacing:17.114400px;}
.ws33_c00174{word-spacing:20.340000px;}
.ws34_c00174{word-spacing:20.433600px;}
.ws1b_c00174{word-spacing:22.111200px;}
.ws1a_c00174{word-spacing:22.125600px;}
.wsb_c00174{word-spacing:26.100000px;}
.wsa_c00174{word-spacing:26.157600px;}
.ws17_c00174{word-spacing:38.642400px;}
.ws16_c00174{word-spacing:38.692800px;}
.ws12_c00174{word-spacing:40.147200px;}
._0_c00174{margin-left:-1.800000px;}
._1_c00174{width:1.065600px;}
.fc0_c00174{color:rgb(0,0,0);}
.fs0_c00174{font-size:72.000000px;}
.y0_c00174{bottom:0.000000px;}
.y2_c00174{bottom:46.830450px;}
.y1_c00174{bottom:67.530450px;}
.y21_c00174{bottom:140.430450px;}
.y20_c00174{bottom:161.130450px;}
.y1f_c00174{bottom:210.180450px;}
.y1e_c00174{bottom:241.230450px;}
.y1d_c00174{bottom:272.280450px;}
.y1c_c00174{bottom:303.330450px;}
.y1b_c00174{bottom:334.380450px;}
.y1a_c00174{bottom:365.430450px;}
.y19_c00174{bottom:405.390450px;}
.y18_c00174{bottom:436.440450px;}
.y17_c00174{bottom:467.490450px;}
.y16_c00174{bottom:498.540450px;}
.y15_c00174{bottom:529.590450px;}
.y14_c00174{bottom:560.640450px;}
.y13_c00174{bottom:591.690450px;}
.y12_c00174{bottom:622.740450px;}
.y11_c00174{bottom:653.790450px;}
.y10_c00174{bottom:684.840450px;}
.yf_c00174{bottom:724.890450px;}
.ye_c00174{bottom:755.940450px;}
.yd_c00174{bottom:786.990450px;}
.yc_c00174{bottom:818.040450px;}
.yb_c00174{bottom:849.090450px;}
.ya_c00174{bottom:880.140450px;}
.y9_c00174{bottom:911.190450px;}
.y8_c00174{bottom:942.240450px;}
.y7_c00174{bottom:973.290450px;}
.y6_c00174{bottom:1004.340450px;}
.y5_c00174{bottom:1035.390450px;}
.y4_c00174{bottom:1066.440450px;}
.y3_c00174{bottom:1097.490450px;}
.h1_c00174{height:63.175781px;}
.h2_c00174{height:64.546875px;}
.h3_c00174{height:75.093750px;}
.h0_c00174{height:1263.000000px;}
.w1_c00174{width:892.500000px;}
.w0_c00174{width:892.830000px;}
.x0_c00174{left:0.000000px;}
.x2_c00174{left:170.100000px;}
.x3_c00174{left:191.430000px;}
.x1_c00174{left:738.360000px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls6_c00174{letter-spacing:-0.070400pt;}
.lsb_c00174{letter-spacing:-0.064000pt;}
.ls3_c00174{letter-spacing:-0.057600pt;}
.ls8_c00174{letter-spacing:-0.051200pt;}
.ls7_c00174{letter-spacing:-0.044800pt;}
.ls2_c00174{letter-spacing:-0.038400pt;}
.ls5_c00174{letter-spacing:-0.032000pt;}
.ls1_c00174{letter-spacing:-0.025600pt;}
.ls4_c00174{letter-spacing:-0.019200pt;}
.ls9_c00174{letter-spacing:-0.012800pt;}
.lsa_c00174{letter-spacing:-0.006400pt;}
.ls0_c00174{letter-spacing:0.000000pt;}
.ws2c_c00174{word-spacing:-4.313600pt;}
.ws2d_c00174{word-spacing:-4.224000pt;}
.wsc_c00174{word-spacing:-3.654400pt;}
.ws11_c00174{word-spacing:-2.700800pt;}
.ws10_c00174{word-spacing:-2.681600pt;}
.ws2_c00174{word-spacing:-2.380800pt;}
.ws3_c00174{word-spacing:-2.310400pt;}
.ws2b_c00174{word-spacing:-2.067200pt;}
.ws2a_c00174{word-spacing:-2.035200pt;}
.ws29_c00174{word-spacing:-1.984000pt;}
.ws19_c00174{word-spacing:-1.766400pt;}
.ws18_c00174{word-spacing:-1.747200pt;}
.ws21_c00174{word-spacing:-1.401600pt;}
.ws27_c00174{word-spacing:-0.339200pt;}
.ws28_c00174{word-spacing:-0.166400pt;}
.ws26_c00174{word-spacing:-0.140800pt;}
.ws0_c00174{word-spacing:0.000000pt;}
.wse_c00174{word-spacing:0.102400pt;}
.ws14_c00174{word-spacing:0.160000pt;}
.ws23_c00174{word-spacing:0.224000pt;}
.wsf_c00174{word-spacing:0.256000pt;}
.ws15_c00174{word-spacing:0.844800pt;}
.ws20_c00174{word-spacing:1.139200pt;}
.ws1_c00174{word-spacing:2.054400pt;}
.ws5_c00174{word-spacing:5.900800pt;}
.ws4_c00174{word-spacing:6.003200pt;}
.ws22_c00174{word-spacing:6.892800pt;}
.ws31_c00174{word-spacing:7.168000pt;}
.ws30_c00174{word-spacing:7.193600pt;}
.ws32_c00174{word-spacing:7.212800pt;}
.ws2e_c00174{word-spacing:7.264000pt;}
.ws2f_c00174{word-spacing:7.353600pt;}
.ws24_c00174{word-spacing:8.486400pt;}
.ws25_c00174{word-spacing:8.492800pt;}
.ws8_c00174{word-spacing:9.120000pt;}
.ws9_c00174{word-spacing:9.132800pt;}
.wsd_c00174{word-spacing:9.798400pt;}
.ws13_c00174{word-spacing:11.040000pt;}
.ws1d_c00174{word-spacing:11.980800pt;}
.ws1c_c00174{word-spacing:11.993600pt;}
.ws7_c00174{word-spacing:13.939200pt;}
.ws6_c00174{word-spacing:13.984000pt;}
.ws1f_c00174{word-spacing:15.180800pt;}
.ws1e_c00174{word-spacing:15.212800pt;}
.ws33_c00174{word-spacing:18.080000pt;}
.ws34_c00174{word-spacing:18.163200pt;}
.ws1b_c00174{word-spacing:19.654400pt;}
.ws1a_c00174{word-spacing:19.667200pt;}
.wsb_c00174{word-spacing:23.200000pt;}
.wsa_c00174{word-spacing:23.251200pt;}
.ws17_c00174{word-spacing:34.348800pt;}
.ws16_c00174{word-spacing:34.393600pt;}
.ws12_c00174{word-spacing:35.686400pt;}
._0_c00174{margin-left:-1.600000pt;}
._1_c00174{width:0.947200pt;}
.fs0_c00174{font-size:64.000000pt;}
.y0_c00174{bottom:0.000000pt;}
.y2_c00174{bottom:41.627067pt;}
.y1_c00174{bottom:60.027067pt;}
.y21_c00174{bottom:124.827067pt;}
.y20_c00174{bottom:143.227067pt;}
.y1f_c00174{bottom:186.827067pt;}
.y1e_c00174{bottom:214.427067pt;}
.y1d_c00174{bottom:242.027067pt;}
.y1c_c00174{bottom:269.627067pt;}
.y1b_c00174{bottom:297.227067pt;}
.y1a_c00174{bottom:324.827067pt;}
.y19_c00174{bottom:360.347067pt;}
.y18_c00174{bottom:387.947067pt;}
.y17_c00174{bottom:415.547067pt;}
.y16_c00174{bottom:443.147067pt;}
.y15_c00174{bottom:470.747067pt;}
.y14_c00174{bottom:498.347067pt;}
.y13_c00174{bottom:525.947067pt;}
.y12_c00174{bottom:553.547067pt;}
.y11_c00174{bottom:581.147067pt;}
.y10_c00174{bottom:608.747067pt;}
.yf_c00174{bottom:644.347067pt;}
.ye_c00174{bottom:671.947067pt;}
.yd_c00174{bottom:699.547067pt;}
.yc_c00174{bottom:727.147067pt;}
.yb_c00174{bottom:754.747067pt;}
.ya_c00174{bottom:782.347067pt;}
.y9_c00174{bottom:809.947067pt;}
.y8_c00174{bottom:837.547067pt;}
.y7_c00174{bottom:865.147067pt;}
.y6_c00174{bottom:892.747067pt;}
.y5_c00174{bottom:920.347067pt;}
.y4_c00174{bottom:947.947067pt;}
.y3_c00174{bottom:975.547067pt;}
.h1_c00174{height:56.156250pt;}
.h2_c00174{height:57.375000pt;}
.h3_c00174{height:66.750000pt;}
.h0_c00174{height:1122.666667pt;}
.w1_c00174{width:793.333333pt;}
.w0_c00174{width:793.626667pt;}
.x0_c00174{left:0.000000pt;}
.x2_c00174{left:151.200000pt;}
.x3_c00174{left:170.160000pt;}
.x1_c00174{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_67ef9cb2095617e0c3f90778.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.093262;font-style:normal;font-weight:normal;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_6a54793161111a4ca2f5785f.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.106934;font-style:normal;font-weight:normal;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_3f2c19e6eed0e096d47bd368.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls8_c00175{letter-spacing:-0.108000px;}
.lsc_c00175{letter-spacing:-0.064800px;}
.lsb_c00175{letter-spacing:-0.057600px;}
.ls7_c00175{letter-spacing:-0.050400px;}
.ls3_c00175{letter-spacing:-0.043200px;}
.ls5_c00175{letter-spacing:-0.036000px;}
.ls4_c00175{letter-spacing:-0.028800px;}
.ls6_c00175{letter-spacing:-0.021600px;}
.lsa_c00175{letter-spacing:-0.014400px;}
.ls9_c00175{letter-spacing:-0.007200px;}
.ls2_c00175{letter-spacing:0.000000px;}
.ls0_c00175{letter-spacing:0.007200px;}
.ls1_c00175{letter-spacing:0.144000px;}
.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;}
}
.ws39_c00175{word-spacing:-2.750400px;}
.ws3a_c00175{word-spacing:-2.671200px;}
.ws6_c00175{word-spacing:-2.383200px;}
.ws7_c00175{word-spacing:-2.376000px;}
.ws24_c00175{word-spacing:-1.994400px;}
.ws25_c00175{word-spacing:-1.972800px;}
.ws1b_c00175{word-spacing:-0.885600px;}
.ws1c_c00175{word-spacing:-0.864000px;}
.ws0_c00175{word-spacing:0.000000px;}
.ws2a_c00175{word-spacing:0.100800px;}
.ws28_c00175{word-spacing:0.108000px;}
.ws1a_c00175{word-spacing:0.172800px;}
.ws29_c00175{word-spacing:0.180000px;}
.ws32_c00175{word-spacing:0.187200px;}
.ws3e_c00175{word-spacing:0.201600px;}
.ws33_c00175{word-spacing:0.489600px;}
.ws34_c00175{word-spacing:0.532800px;}
.ws2f_c00175{word-spacing:1.231200px;}
.ws30_c00175{word-spacing:1.288800px;}
.ws31_c00175{word-spacing:1.303200px;}
.ws1d_c00175{word-spacing:1.641600px;}
.ws8_c00175{word-spacing:1.987200px;}
.ws9_c00175{word-spacing:2.073600px;}
.ws37_c00175{word-spacing:2.340000px;}
.ws38_c00175{word-spacing:2.419200px;}
.ws12_c00175{word-spacing:2.671200px;}
.ws14_c00175{word-spacing:2.685600px;}
.ws13_c00175{word-spacing:2.714400px;}
.ws4_c00175{word-spacing:3.009600px;}
.ws3_c00175{word-spacing:3.074400px;}
.ws10_c00175{word-spacing:3.081600px;}
.ws1e_c00175{word-spacing:5.932800px;}
.wse_c00175{word-spacing:6.580800px;}
.ws27_c00175{word-spacing:6.624000px;}
.ws26_c00175{word-spacing:6.674400px;}
.wsf_c00175{word-spacing:6.688800px;}
.ws19_c00175{word-spacing:7.027200px;}
.ws18_c00175{word-spacing:7.092000px;}
.ws36_c00175{word-spacing:7.387200px;}
.ws23_c00175{word-spacing:7.394400px;}
.ws35_c00175{word-spacing:7.408800px;}
.ws21_c00175{word-spacing:7.452000px;}
.ws22_c00175{word-spacing:7.502400px;}
.wsd_c00175{word-spacing:9.849600px;}
.wsc_c00175{word-spacing:9.907200px;}
.ws5_c00175{word-spacing:11.008800px;}
.ws15_c00175{word-spacing:14.220000px;}
.ws16_c00175{word-spacing:14.320800px;}
.ws2e_c00175{word-spacing:14.968800px;}
.ws2d_c00175{word-spacing:14.976000px;}
.ws2_c00175{word-spacing:15.667200px;}
.ws1_c00175{word-spacing:15.681600px;}
.ws20_c00175{word-spacing:17.812800px;}
.ws1f_c00175{word-spacing:17.820000px;}
.wsb_c00175{word-spacing:21.427200px;}
.wsa_c00175{word-spacing:21.506400px;}
.ws3d_c00175{word-spacing:21.801600px;}
.ws2c_c00175{word-spacing:29.347200px;}
.ws2b_c00175{word-spacing:29.376000px;}
.ws17_c00175{word-spacing:31.874400px;}
.ws11_c00175{word-spacing:47.347200px;}
.ws3c_c00175{word-spacing:62.481600px;}
.ws3b_c00175{word-spacing:62.589600px;}
._0_c00175{width:1.418400px;}
.fc0_c00175{color:rgb(0,0,0);}
.fs0_c00175{font-size:72.000000px;}
.y0_c00175{bottom:0.000000px;}
.y2_c00175{bottom:46.830450px;}
.y1_c00175{bottom:67.530450px;}
.y27_c00175{bottom:135.480450px;}
.y26_c00175{bottom:174.180450px;}
.y25_c00175{bottom:194.880450px;}
.y24_c00175{bottom:215.580450px;}
.y23_c00175{bottom:236.280450px;}
.y22_c00175{bottom:256.980450px;}
.y21_c00175{bottom:277.680450px;}
.y20_c00175{bottom:298.380450px;}
.y1f_c00175{bottom:347.430450px;}
.y1e_c00175{bottom:378.390450px;}
.y1d_c00175{bottom:409.440450px;}
.y1c_c00175{bottom:440.490450px;}
.y1b_c00175{bottom:471.540450px;}
.y1a_c00175{bottom:511.590450px;}
.y19_c00175{bottom:542.640450px;}
.y18_c00175{bottom:573.690450px;}
.y17_c00175{bottom:604.740450px;}
.y16_c00175{bottom:635.790450px;}
.y15_c00175{bottom:666.840450px;}
.y14_c00175{bottom:697.890450px;}
.y13_c00175{bottom:728.940450px;}
.y12_c00175{bottom:768.990450px;}
.y11_c00175{bottom:807.690450px;}
.y10_c00175{bottom:828.390450px;}
.yf_c00175{bottom:849.090450px;}
.ye_c00175{bottom:869.790450px;}
.yd_c00175{bottom:890.490450px;}
.yc_c00175{bottom:911.190450px;}
.yb_c00175{bottom:931.890450px;}
.ya_c00175{bottom:952.590450px;}
.y9_c00175{bottom:973.290450px;}
.y8_c00175{bottom:993.990450px;}
.y7_c00175{bottom:1014.690450px;}
.y6_c00175{bottom:1035.390450px;}
.y5_c00175{bottom:1056.090450px;}
.y4_c00175{bottom:1076.790450px;}
.y3_c00175{bottom:1097.490450px;}
.h1_c00175{height:63.175781px;}
.h2_c00175{height:64.546875px;}
.h3_c00175{height:75.093750px;}
.h0_c00175{height:1263.000000px;}
.w1_c00175{width:892.500000px;}
.w0_c00175{width:892.830000px;}
.x0_c00175{left:0.000000px;}
.x2_c00175{left:127.620000px;}
.x3_c00175{left:148.950000px;}
.x1_c00175{left:695.880000px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls8_c00175{letter-spacing:-0.096000pt;}
.lsc_c00175{letter-spacing:-0.057600pt;}
.lsb_c00175{letter-spacing:-0.051200pt;}
.ls7_c00175{letter-spacing:-0.044800pt;}
.ls3_c00175{letter-spacing:-0.038400pt;}
.ls5_c00175{letter-spacing:-0.032000pt;}
.ls4_c00175{letter-spacing:-0.025600pt;}
.ls6_c00175{letter-spacing:-0.019200pt;}
.lsa_c00175{letter-spacing:-0.012800pt;}
.ls9_c00175{letter-spacing:-0.006400pt;}
.ls2_c00175{letter-spacing:0.000000pt;}
.ls0_c00175{letter-spacing:0.006400pt;}
.ls1_c00175{letter-spacing:0.128000pt;}
.ws39_c00175{word-spacing:-2.444800pt;}
.ws3a_c00175{word-spacing:-2.374400pt;}
.ws6_c00175{word-spacing:-2.118400pt;}
.ws7_c00175{word-spacing:-2.112000pt;}
.ws24_c00175{word-spacing:-1.772800pt;}
.ws25_c00175{word-spacing:-1.753600pt;}
.ws1b_c00175{word-spacing:-0.787200pt;}
.ws1c_c00175{word-spacing:-0.768000pt;}
.ws0_c00175{word-spacing:0.000000pt;}
.ws2a_c00175{word-spacing:0.089600pt;}
.ws28_c00175{word-spacing:0.096000pt;}
.ws1a_c00175{word-spacing:0.153600pt;}
.ws29_c00175{word-spacing:0.160000pt;}
.ws32_c00175{word-spacing:0.166400pt;}
.ws3e_c00175{word-spacing:0.179200pt;}
.ws33_c00175{word-spacing:0.435200pt;}
.ws34_c00175{word-spacing:0.473600pt;}
.ws2f_c00175{word-spacing:1.094400pt;}
.ws30_c00175{word-spacing:1.145600pt;}
.ws31_c00175{word-spacing:1.158400pt;}
.ws1d_c00175{word-spacing:1.459200pt;}
.ws8_c00175{word-spacing:1.766400pt;}
.ws9_c00175{word-spacing:1.843200pt;}
.ws37_c00175{word-spacing:2.080000pt;}
.ws38_c00175{word-spacing:2.150400pt;}
.ws12_c00175{word-spacing:2.374400pt;}
.ws14_c00175{word-spacing:2.387200pt;}
.ws13_c00175{word-spacing:2.412800pt;}
.ws4_c00175{word-spacing:2.675200pt;}
.ws3_c00175{word-spacing:2.732800pt;}
.ws10_c00175{word-spacing:2.739200pt;}
.ws1e_c00175{word-spacing:5.273600pt;}
.wse_c00175{word-spacing:5.849600pt;}
.ws27_c00175{word-spacing:5.888000pt;}
.ws26_c00175{word-spacing:5.932800pt;}
.wsf_c00175{word-spacing:5.945600pt;}
.ws19_c00175{word-spacing:6.246400pt;}
.ws18_c00175{word-spacing:6.304000pt;}
.ws36_c00175{word-spacing:6.566400pt;}
.ws23_c00175{word-spacing:6.572800pt;}
.ws35_c00175{word-spacing:6.585600pt;}
.ws21_c00175{word-spacing:6.624000pt;}
.ws22_c00175{word-spacing:6.668800pt;}
.wsd_c00175{word-spacing:8.755200pt;}
.wsc_c00175{word-spacing:8.806400pt;}
.ws5_c00175{word-spacing:9.785600pt;}
.ws15_c00175{word-spacing:12.640000pt;}
.ws16_c00175{word-spacing:12.729600pt;}
.ws2e_c00175{word-spacing:13.305600pt;}
.ws2d_c00175{word-spacing:13.312000pt;}
.ws2_c00175{word-spacing:13.926400pt;}
.ws1_c00175{word-spacing:13.939200pt;}
.ws20_c00175{word-spacing:15.833600pt;}
.ws1f_c00175{word-spacing:15.840000pt;}
.wsb_c00175{word-spacing:19.046400pt;}
.wsa_c00175{word-spacing:19.116800pt;}
.ws3d_c00175{word-spacing:19.379200pt;}
.ws2c_c00175{word-spacing:26.086400pt;}
.ws2b_c00175{word-spacing:26.112000pt;}
.ws17_c00175{word-spacing:28.332800pt;}
.ws11_c00175{word-spacing:42.086400pt;}
.ws3c_c00175{word-spacing:55.539200pt;}
.ws3b_c00175{word-spacing:55.635200pt;}
._0_c00175{width:1.260800pt;}
.fs0_c00175{font-size:64.000000pt;}
.y0_c00175{bottom:0.000000pt;}
.y2_c00175{bottom:41.627067pt;}
.y1_c00175{bottom:60.027067pt;}
.y27_c00175{bottom:120.427067pt;}
.y26_c00175{bottom:154.827067pt;}
.y25_c00175{bottom:173.227067pt;}
.y24_c00175{bottom:191.627067pt;}
.y23_c00175{bottom:210.027067pt;}
.y22_c00175{bottom:228.427067pt;}
.y21_c00175{bottom:246.827067pt;}
.y20_c00175{bottom:265.227067pt;}
.y1f_c00175{bottom:308.827067pt;}
.y1e_c00175{bottom:336.347067pt;}
.y1d_c00175{bottom:363.947067pt;}
.y1c_c00175{bottom:391.547067pt;}
.y1b_c00175{bottom:419.147067pt;}
.y1a_c00175{bottom:454.747067pt;}
.y19_c00175{bottom:482.347067pt;}
.y18_c00175{bottom:509.947067pt;}
.y17_c00175{bottom:537.547067pt;}
.y16_c00175{bottom:565.147067pt;}
.y15_c00175{bottom:592.747067pt;}
.y14_c00175{bottom:620.347067pt;}
.y13_c00175{bottom:647.947067pt;}
.y12_c00175{bottom:683.547067pt;}
.y11_c00175{bottom:717.947067pt;}
.y10_c00175{bottom:736.347067pt;}
.yf_c00175{bottom:754.747067pt;}
.ye_c00175{bottom:773.147067pt;}
.yd_c00175{bottom:791.547067pt;}
.yc_c00175{bottom:809.947067pt;}
.yb_c00175{bottom:828.347067pt;}
.ya_c00175{bottom:846.747067pt;}
.y9_c00175{bottom:865.147067pt;}
.y8_c00175{bottom:883.547067pt;}
.y7_c00175{bottom:901.947067pt;}
.y6_c00175{bottom:920.347067pt;}
.y5_c00175{bottom:938.747067pt;}
.y4_c00175{bottom:957.147067pt;}
.y3_c00175{bottom:975.547067pt;}
.h1_c00175{height:56.156250pt;}
.h2_c00175{height:57.375000pt;}
.h3_c00175{height:66.750000pt;}
.h0_c00175{height:1122.666667pt;}
.w1_c00175{width:793.333333pt;}
.w0_c00175{width:793.626667pt;}
.x0_c00175{left:0.000000pt;}
.x2_c00175{left:113.440000pt;}
.x3_c00175{left:132.400000pt;}
.x1_c00175{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bffcae0b424ed7415b90055d.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.093262;font-style:normal;font-weight:normal;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_43e14e03723db76ad2c3e603.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.ls1_c00176{letter-spacing:-0.064800px;}
.ls2_c00176{letter-spacing:-0.057600px;}
.ls4_c00176{letter-spacing:-0.050400px;}
.ls3_c00176{letter-spacing:-0.021600px;}
.ls0_c00176{letter-spacing:0.000000px;}
.ls5_c00176{letter-spacing:843.998400px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00176{word-spacing:-3.376800px;}
.ws0_c00176{word-spacing:0.000000px;}
.ws4_c00176{word-spacing:0.180000px;}
.ws2_c00176{word-spacing:7.380000px;}
.ws3_c00176{word-spacing:7.480800px;}
._0_c00176{width:1.051200px;}
.fc0_c00176{color:rgb(0,0,0);}
.fs0_c00176{font-size:72.000000px;}
.y0_c00176{bottom:0.000000px;}
.y2_c00176{bottom:46.830450px;}
.y1_c00176{bottom:67.530450px;}
.y7_c00176{bottom:955.290450px;}
.y6_c00176{bottom:995.340450px;}
.y5_c00176{bottom:1035.390450px;}
.y4_c00176{bottom:1066.440450px;}
.y3_c00176{bottom:1097.490450px;}
.h1_c00176{height:63.175781px;}
.h2_c00176{height:64.546875px;}
.h0_c00176{height:1263.000000px;}
.w1_c00176{width:892.500000px;}
.w0_c00176{width:892.830000px;}
.x0_c00176{left:0.000000px;}
.x2_c00176{left:170.100000px;}
.x1_c00176{left:738.360000px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls1_c00176{letter-spacing:-0.057600pt;}
.ls2_c00176{letter-spacing:-0.051200pt;}
.ls4_c00176{letter-spacing:-0.044800pt;}
.ls3_c00176{letter-spacing:-0.019200pt;}
.ls0_c00176{letter-spacing:0.000000pt;}
.ls5_c00176{letter-spacing:750.220800pt;}
.ws1_c00176{word-spacing:-3.001600pt;}
.ws0_c00176{word-spacing:0.000000pt;}
.ws4_c00176{word-spacing:0.160000pt;}
.ws2_c00176{word-spacing:6.560000pt;}
.ws3_c00176{word-spacing:6.649600pt;}
._0_c00176{width:0.934400pt;}
.fs0_c00176{font-size:64.000000pt;}
.y0_c00176{bottom:0.000000pt;}
.y2_c00176{bottom:41.627067pt;}
.y1_c00176{bottom:60.027067pt;}
.y7_c00176{bottom:849.147067pt;}
.y6_c00176{bottom:884.747067pt;}
.y5_c00176{bottom:920.347067pt;}
.y4_c00176{bottom:947.947067pt;}
.y3_c00176{bottom:975.547067pt;}
.h1_c00176{height:56.156250pt;}
.h2_c00176{height:57.375000pt;}
.h0_c00176{height:1122.666667pt;}
.w1_c00176{width:793.333333pt;}
.w0_c00176{width:793.626667pt;}
.x0_c00176{left:0.000000pt;}
.x2_c00176{left:151.200000pt;}
.x1_c00176{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8f7097210f098b3d500da0b4.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00177{vertical-align:0.000000px;}
.ls0_c00177{letter-spacing:0.000000px;}
.ls1_c00177{letter-spacing:843.998400px;}
.sc__c00177{text-shadow:none;}
.sc0_c00177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00177{-webkit-text-stroke:0px transparent;}
.sc0_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00177{word-spacing:0.000000px;}
.fc0_c00177{color:rgb(0,0,0);}
.fs0_c00177{font-size:72.000000px;}
.y0_c00177{bottom:0.000000px;}
.y2_c00177{bottom:46.830450px;}
.y1_c00177{bottom:67.530450px;}
.y3_c00177{bottom:1097.490450px;}
.h1_c00177{height:63.175781px;}
.h2_c00177{height:64.546875px;}
.h0_c00177{height:1263.000000px;}
.w1_c00177{width:892.500000px;}
.w0_c00177{width:892.830000px;}
.x0_c00177{left:0.000000px;}
.x2_c00177{left:127.620000px;}
.x1_c00177{left:695.880000px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls0_c00177{letter-spacing:0.000000pt;}
.ls1_c00177{letter-spacing:750.220800pt;}
.ws0_c00177{word-spacing:0.000000pt;}
.fs0_c00177{font-size:64.000000pt;}
.y0_c00177{bottom:0.000000pt;}
.y2_c00177{bottom:41.627067pt;}
.y1_c00177{bottom:60.027067pt;}
.y3_c00177{bottom:975.547067pt;}
.h1_c00177{height:56.156250pt;}
.h2_c00177{height:57.375000pt;}
.h0_c00177{height:1122.666667pt;}
.w1_c00177{width:793.333333pt;}
.w0_c00177{width:793.626667pt;}
.x0_c00177{left:0.000000pt;}
.x2_c00177{left:113.440000pt;}
.x1_c00177{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7c9dbbc14745da7b3a9b24b6.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.093262;font-style:normal;font-weight:normal;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_bc863675d30c62b7f2a95dba.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.106934;font-style:normal;font-weight:normal;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_ba667c85dde6ad0887e9a5f1.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00178;src:url('chunks/assets/font_dae6dd611fce57a88fa17322.woff2')format("woff");}.ff4_c00178{font-family:ff4_c00178;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00178{letter-spacing:-0.108000px;}
.ls10_c00178{letter-spacing:-0.086400px;}
.lse_c00178{letter-spacing:-0.072000px;}
.lsf_c00178{letter-spacing:-0.064800px;}
.lsc_c00178{letter-spacing:-0.057600px;}
.ls6_c00178{letter-spacing:-0.050400px;}
.lsa_c00178{letter-spacing:-0.043200px;}
.ls5_c00178{letter-spacing:-0.036000px;}
.ls7_c00178{letter-spacing:-0.028800px;}
.ls8_c00178{letter-spacing:-0.021600px;}
.lsd_c00178{letter-spacing:-0.014400px;}
.ls9_c00178{letter-spacing:-0.007200px;}
.ls2_c00178{letter-spacing:0.000000px;}
.ls1_c00178{letter-spacing:0.014400px;}
.ls4_c00178{letter-spacing:0.025164px;}
.ls11_c00178{letter-spacing:0.036000px;}
.ls0_c00178{letter-spacing:0.050328px;}
.ls3_c00178{letter-spacing:0.158400px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00178{word-spacing:-20.030400px;}
.ws1_c00178{word-spacing:-19.929600px;}
.ws1e_c00178{word-spacing:-3.456000px;}
.ws1f_c00178{word-spacing:-3.398400px;}
.wsb_c00178{word-spacing:-2.426400px;}
.wsc_c00178{word-spacing:-2.361600px;}
.wsa_c00178{word-spacing:-2.340000px;}
.wsd_c00178{word-spacing:-2.325600px;}
.ws26_c00178{word-spacing:-0.237600px;}
.ws2_c00178{word-spacing:0.000000px;}
.ws4_c00178{word-spacing:0.067104px;}
.ws3_c00178{word-spacing:0.100656px;}
.ws25_c00178{word-spacing:0.172800px;}
.ws22_c00178{word-spacing:0.180000px;}
.ws8_c00178{word-spacing:0.187200px;}
.ws9_c00178{word-spacing:0.194400px;}
.ws11_c00178{word-spacing:0.201600px;}
.ws5_c00178{word-spacing:1.274400px;}
.ws19_c00178{word-spacing:1.627200px;}
.wsf_c00178{word-spacing:2.628000px;}
.ws10_c00178{word-spacing:2.656800px;}
.ws21_c00178{word-spacing:2.678400px;}
.ws20_c00178{word-spacing:2.743200px;}
.ws1a_c00178{word-spacing:3.038400px;}
.ws16_c00178{word-spacing:3.067200px;}
.ws15_c00178{word-spacing:3.074400px;}
.ws1b_c00178{word-spacing:3.110400px;}
.ws2a_c00178{word-spacing:3.427200px;}
.ws24_c00178{word-spacing:4.140000px;}
.ws23_c00178{word-spacing:4.161600px;}
.ws14_c00178{word-spacing:7.351200px;}
.ws28_c00178{word-spacing:8.028000px;}
.ws18_c00178{word-spacing:8.100000px;}
.ws29_c00178{word-spacing:8.128800px;}
.ws17_c00178{word-spacing:8.215200px;}
.ws6_c00178{word-spacing:13.780800px;}
.ws7_c00178{word-spacing:13.824000px;}
.ws27_c00178{word-spacing:16.034400px;}
.wse_c00178{word-spacing:17.798400px;}
.ws12_c00178{word-spacing:18.194400px;}
.ws13_c00178{word-spacing:18.266400px;}
.ws1c_c00178{word-spacing:31.507200px;}
.ws1d_c00178{word-spacing:31.550400px;}
._1_c00178{margin-left:-18.000000px;}
._2_c00178{width:1.533600px;}
._0_c00178{width:9.646200px;}
.fc0_c00178{color:rgb(0,0,0);}
.fs0_c00178{font-size:72.000000px;}
.fs1_c00178{font-size:83.880000px;}
.y0_c00178{bottom:0.000000px;}
.y2_c00178{bottom:46.830450px;}
.y1_c00178{bottom:67.530450px;}
.y20_c00178{bottom:178.500450px;}
.y1f_c00178{bottom:217.200450px;}
.y1e_c00178{bottom:237.900450px;}
.y1d_c00178{bottom:258.600450px;}
.y1c_c00178{bottom:279.300450px;}
.y1b_c00178{bottom:328.350450px;}
.y1a_c00178{bottom:359.400450px;}
.y19_c00178{bottom:399.450450px;}
.y18_c00178{bottom:430.500450px;}
.y17_c00178{bottom:461.550450px;}
.y16_c00178{bottom:492.600450px;}
.y15_c00178{bottom:523.650450px;}
.y14_c00178{bottom:554.700450px;}
.y13_c00178{bottom:585.750450px;}
.y12_c00178{bottom:616.800450px;}
.y11_c00178{bottom:647.850450px;}
.y10_c00178{bottom:678.900450px;}
.yf_c00178{bottom:718.860450px;}
.ye_c00178{bottom:749.910450px;}
.yd_c00178{bottom:780.960450px;}
.yc_c00178{bottom:812.010450px;}
.yb_c00178{bottom:843.060450px;}
.ya_c00178{bottom:883.110450px;}
.y9_c00178{bottom:914.160450px;}
.y8_c00178{bottom:945.210450px;}
.y7_c00178{bottom:975.000450px;}
.y6_c00178{bottom:995.700450px;}
.y5_c00178{bottom:1021.354950px;}
.y4_c00178{bottom:1045.470450px;}
.y3_c00178{bottom:1097.490450px;}
.h1_c00178{height:63.175781px;}
.h2_c00178{height:64.546875px;}
.h4_c00178{height:75.093750px;}
.h3_c00178{height:87.484219px;}
.h0_c00178{height:1263.000000px;}
.w1_c00178{width:892.500000px;}
.w0_c00178{width:892.830000px;}
.x0_c00178{left:0.000000px;}
.x2_c00178{left:170.100000px;}
.x5_c00178{left:191.430000px;}
.x3_c00178{left:251.100000px;}
.x4_c00178{left:299.708460px;}
.x1_c00178{left:738.360000px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.lsb_c00178{letter-spacing:-0.096000pt;}
.ls10_c00178{letter-spacing:-0.076800pt;}
.lse_c00178{letter-spacing:-0.064000pt;}
.lsf_c00178{letter-spacing:-0.057600pt;}
.lsc_c00178{letter-spacing:-0.051200pt;}
.ls6_c00178{letter-spacing:-0.044800pt;}
.lsa_c00178{letter-spacing:-0.038400pt;}
.ls5_c00178{letter-spacing:-0.032000pt;}
.ls7_c00178{letter-spacing:-0.025600pt;}
.ls8_c00178{letter-spacing:-0.019200pt;}
.lsd_c00178{letter-spacing:-0.012800pt;}
.ls9_c00178{letter-spacing:-0.006400pt;}
.ls2_c00178{letter-spacing:0.000000pt;}
.ls1_c00178{letter-spacing:0.012800pt;}
.ls4_c00178{letter-spacing:0.022368pt;}
.ls11_c00178{letter-spacing:0.032000pt;}
.ls0_c00178{letter-spacing:0.044736pt;}
.ls3_c00178{letter-spacing:0.140800pt;}
.ws0_c00178{word-spacing:-17.804800pt;}
.ws1_c00178{word-spacing:-17.715200pt;}
.ws1e_c00178{word-spacing:-3.072000pt;}
.ws1f_c00178{word-spacing:-3.020800pt;}
.wsb_c00178{word-spacing:-2.156800pt;}
.wsc_c00178{word-spacing:-2.099200pt;}
.wsa_c00178{word-spacing:-2.080000pt;}
.wsd_c00178{word-spacing:-2.067200pt;}
.ws26_c00178{word-spacing:-0.211200pt;}
.ws2_c00178{word-spacing:0.000000pt;}
.ws4_c00178{word-spacing:0.059648pt;}
.ws3_c00178{word-spacing:0.089472pt;}
.ws25_c00178{word-spacing:0.153600pt;}
.ws22_c00178{word-spacing:0.160000pt;}
.ws8_c00178{word-spacing:0.166400pt;}
.ws9_c00178{word-spacing:0.172800pt;}
.ws11_c00178{word-spacing:0.179200pt;}
.ws5_c00178{word-spacing:1.132800pt;}
.ws19_c00178{word-spacing:1.446400pt;}
.wsf_c00178{word-spacing:2.336000pt;}
.ws10_c00178{word-spacing:2.361600pt;}
.ws21_c00178{word-spacing:2.380800pt;}
.ws20_c00178{word-spacing:2.438400pt;}
.ws1a_c00178{word-spacing:2.700800pt;}
.ws16_c00178{word-spacing:2.726400pt;}
.ws15_c00178{word-spacing:2.732800pt;}
.ws1b_c00178{word-spacing:2.764800pt;}
.ws2a_c00178{word-spacing:3.046400pt;}
.ws24_c00178{word-spacing:3.680000pt;}
.ws23_c00178{word-spacing:3.699200pt;}
.ws14_c00178{word-spacing:6.534400pt;}
.ws28_c00178{word-spacing:7.136000pt;}
.ws18_c00178{word-spacing:7.200000pt;}
.ws29_c00178{word-spacing:7.225600pt;}
.ws17_c00178{word-spacing:7.302400pt;}
.ws6_c00178{word-spacing:12.249600pt;}
.ws7_c00178{word-spacing:12.288000pt;}
.ws27_c00178{word-spacing:14.252800pt;}
.wse_c00178{word-spacing:15.820800pt;}
.ws12_c00178{word-spacing:16.172800pt;}
.ws13_c00178{word-spacing:16.236800pt;}
.ws1c_c00178{word-spacing:28.006400pt;}
.ws1d_c00178{word-spacing:28.044800pt;}
._1_c00178{margin-left:-16.000000pt;}
._2_c00178{width:1.363200pt;}
._0_c00178{width:8.574400pt;}
.fs0_c00178{font-size:64.000000pt;}
.fs1_c00178{font-size:74.560000pt;}
.y0_c00178{bottom:0.000000pt;}
.y2_c00178{bottom:41.627067pt;}
.y1_c00178{bottom:60.027067pt;}
.y20_c00178{bottom:158.667067pt;}
.y1f_c00178{bottom:193.067067pt;}
.y1e_c00178{bottom:211.467067pt;}
.y1d_c00178{bottom:229.867067pt;}
.y1c_c00178{bottom:248.267067pt;}
.y1b_c00178{bottom:291.867067pt;}
.y1a_c00178{bottom:319.467067pt;}
.y19_c00178{bottom:355.067067pt;}
.y18_c00178{bottom:382.667067pt;}
.y17_c00178{bottom:410.267067pt;}
.y16_c00178{bottom:437.867067pt;}
.y15_c00178{bottom:465.467067pt;}
.y14_c00178{bottom:493.067067pt;}
.y13_c00178{bottom:520.667067pt;}
.y12_c00178{bottom:548.267067pt;}
.y11_c00178{bottom:575.867067pt;}
.y10_c00178{bottom:603.467067pt;}
.yf_c00178{bottom:638.987067pt;}
.ye_c00178{bottom:666.587067pt;}
.yd_c00178{bottom:694.187067pt;}
.yc_c00178{bottom:721.787067pt;}
.yb_c00178{bottom:749.387067pt;}
.ya_c00178{bottom:784.987067pt;}
.y9_c00178{bottom:812.587067pt;}
.y8_c00178{bottom:840.187067pt;}
.y7_c00178{bottom:866.667067pt;}
.y6_c00178{bottom:885.067067pt;}
.y5_c00178{bottom:907.871067pt;}
.y4_c00178{bottom:929.307067pt;}
.y3_c00178{bottom:975.547067pt;}
.h1_c00178{height:56.156250pt;}
.h2_c00178{height:57.375000pt;}
.h4_c00178{height:66.750000pt;}
.h3_c00178{height:77.763750pt;}
.h0_c00178{height:1122.666667pt;}
.w1_c00178{width:793.333333pt;}
.w0_c00178{width:793.626667pt;}
.x0_c00178{left:0.000000pt;}
.x2_c00178{left:151.200000pt;}
.x5_c00178{left:170.160000pt;}
.x3_c00178{left:223.200000pt;}
.x4_c00178{left:266.407520pt;}
.x1_c00178{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_38744ba4030b3bd6283436b7.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.093262;font-style:normal;font-weight:normal;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_2a1dee676b28479610c6fe4b.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.106934;font-style:normal;font-weight:normal;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_c720b0f87b9665e15b3ef8fb.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00179{letter-spacing:-0.086400px;}
.lsc_c00179{letter-spacing:-0.079200px;}
.ls8_c00179{letter-spacing:-0.072000px;}
.ls4_c00179{letter-spacing:-0.064800px;}
.lsa_c00179{letter-spacing:-0.057600px;}
.ls2_c00179{letter-spacing:-0.050400px;}
.ls6_c00179{letter-spacing:-0.043200px;}
.ls1_c00179{letter-spacing:-0.036000px;}
.ls3_c00179{letter-spacing:-0.028800px;}
.ls5_c00179{letter-spacing:-0.021600px;}
.ls7_c00179{letter-spacing:-0.014400px;}
.ls0_c00179{letter-spacing:0.000000px;}
.lsb_c00179{letter-spacing:0.151200px;}
.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;}
}
.ws1d_c00179{word-spacing:-4.860000px;}
.ws1c_c00179{word-spacing:-4.788000px;}
.ws4_c00179{word-spacing:-0.518400px;}
.ws27_c00179{word-spacing:-0.180000px;}
.ws0_c00179{word-spacing:0.000000px;}
.ws8_c00179{word-spacing:0.194400px;}
.ws26_c00179{word-spacing:0.208800px;}
.ws17_c00179{word-spacing:0.230400px;}
.ws2e_c00179{word-spacing:0.244800px;}
.ws1a_c00179{word-spacing:1.130400px;}
.ws18_c00179{word-spacing:1.260000px;}
.ws1b_c00179{word-spacing:1.288800px;}
.ws19_c00179{word-spacing:1.296000px;}
.wsd_c00179{word-spacing:2.404800px;}
.wse_c00179{word-spacing:2.505600px;}
.ws2d_c00179{word-spacing:3.038400px;}
.ws5_c00179{word-spacing:3.067200px;}
.ws2c_c00179{word-spacing:3.074400px;}
.ws7_c00179{word-spacing:3.448800px;}
.ws6_c00179{word-spacing:3.463200px;}
.ws23_c00179{word-spacing:3.780000px;}
.ws22_c00179{word-spacing:3.808800px;}
.ws9_c00179{word-spacing:4.140000px;}
.wsa_c00179{word-spacing:4.161600px;}
.ws12_c00179{word-spacing:4.492800px;}
.ws13_c00179{word-spacing:4.543200px;}
.ws28_c00179{word-spacing:5.572800px;}
.ws29_c00179{word-spacing:5.608800px;}
.ws24_c00179{word-spacing:5.860800px;}
.ws25_c00179{word-spacing:5.947200px;}
.ws1_c00179{word-spacing:5.954400px;}
.ws16_c00179{word-spacing:6.652800px;}
.ws15_c00179{word-spacing:6.724800px;}
.ws14_c00179{word-spacing:10.670400px;}
.ws2b_c00179{word-spacing:16.027200px;}
.ws20_c00179{word-spacing:21.247200px;}
.ws21_c00179{word-spacing:21.427200px;}
.wsc_c00179{word-spacing:23.140800px;}
.wsb_c00179{word-spacing:23.227200px;}
.ws2a_c00179{word-spacing:24.328800px;}
.ws1e_c00179{word-spacing:25.387200px;}
.ws1f_c00179{word-spacing:25.430400px;}
.ws11_c00179{word-spacing:25.747200px;}
.ws2_c00179{word-spacing:28.944000px;}
.ws3_c00179{word-spacing:29.008800px;}
.wsf_c00179{word-spacing:35.460000px;}
.ws10_c00179{word-spacing:35.712000px;}
._0_c00179{width:1.022400px;}
.fc0_c00179{color:rgb(0,0,0);}
.fs0_c00179{font-size:72.000000px;}
.y0_c00179{bottom:0.000000px;}
.y2_c00179{bottom:46.830450px;}
.y1_c00179{bottom:67.530450px;}
.y20_c00179{bottom:161.130450px;}
.y1f_c00179{bottom:192.180450px;}
.y1e_c00179{bottom:223.230450px;}
.y1d_c00179{bottom:254.280450px;}
.y1c_c00179{bottom:285.330450px;}
.y1b_c00179{bottom:325.380450px;}
.y1a_c00179{bottom:356.430450px;}
.y19_c00179{bottom:387.390450px;}
.y18_c00179{bottom:418.440450px;}
.y17_c00179{bottom:449.490450px;}
.y16_c00179{bottom:489.540450px;}
.y15_c00179{bottom:520.500450px;}
.y14_c00179{bottom:551.640450px;}
.y13_c00179{bottom:582.690450px;}
.y12_c00179{bottom:622.740450px;}
.y11_c00179{bottom:653.790450px;}
.y10_c00179{bottom:684.840450px;}
.yf_c00179{bottom:715.890450px;}
.ye_c00179{bottom:746.940450px;}
.yd_c00179{bottom:777.990450px;}
.yc_c00179{bottom:809.040450px;}
.yb_c00179{bottom:840.090450px;}
.ya_c00179{bottom:871.140450px;}
.y9_c00179{bottom:902.190450px;}
.y8_c00179{bottom:942.240450px;}
.y7_c00179{bottom:973.290450px;}
.y6_c00179{bottom:1004.340450px;}
.y5_c00179{bottom:1035.390450px;}
.y4_c00179{bottom:1066.440450px;}
.y3_c00179{bottom:1097.490450px;}
.h1_c00179{height:63.175781px;}
.h2_c00179{height:64.546875px;}
.h3_c00179{height:75.093750px;}
.h0_c00179{height:1263.000000px;}
.w1_c00179{width:892.500000px;}
.w0_c00179{width:892.830000px;}
.x0_c00179{left:0.000000px;}
.x2_c00179{left:127.620000px;}
.x1_c00179{left:695.880000px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls9_c00179{letter-spacing:-0.076800pt;}
.lsc_c00179{letter-spacing:-0.070400pt;}
.ls8_c00179{letter-spacing:-0.064000pt;}
.ls4_c00179{letter-spacing:-0.057600pt;}
.lsa_c00179{letter-spacing:-0.051200pt;}
.ls2_c00179{letter-spacing:-0.044800pt;}
.ls6_c00179{letter-spacing:-0.038400pt;}
.ls1_c00179{letter-spacing:-0.032000pt;}
.ls3_c00179{letter-spacing:-0.025600pt;}
.ls5_c00179{letter-spacing:-0.019200pt;}
.ls7_c00179{letter-spacing:-0.012800pt;}
.ls0_c00179{letter-spacing:0.000000pt;}
.lsb_c00179{letter-spacing:0.134400pt;}
.ws1d_c00179{word-spacing:-4.320000pt;}
.ws1c_c00179{word-spacing:-4.256000pt;}
.ws4_c00179{word-spacing:-0.460800pt;}
.ws27_c00179{word-spacing:-0.160000pt;}
.ws0_c00179{word-spacing:0.000000pt;}
.ws8_c00179{word-spacing:0.172800pt;}
.ws26_c00179{word-spacing:0.185600pt;}
.ws17_c00179{word-spacing:0.204800pt;}
.ws2e_c00179{word-spacing:0.217600pt;}
.ws1a_c00179{word-spacing:1.004800pt;}
.ws18_c00179{word-spacing:1.120000pt;}
.ws1b_c00179{word-spacing:1.145600pt;}
.ws19_c00179{word-spacing:1.152000pt;}
.wsd_c00179{word-spacing:2.137600pt;}
.wse_c00179{word-spacing:2.227200pt;}
.ws2d_c00179{word-spacing:2.700800pt;}
.ws5_c00179{word-spacing:2.726400pt;}
.ws2c_c00179{word-spacing:2.732800pt;}
.ws7_c00179{word-spacing:3.065600pt;}
.ws6_c00179{word-spacing:3.078400pt;}
.ws23_c00179{word-spacing:3.360000pt;}
.ws22_c00179{word-spacing:3.385600pt;}
.ws9_c00179{word-spacing:3.680000pt;}
.wsa_c00179{word-spacing:3.699200pt;}
.ws12_c00179{word-spacing:3.993600pt;}
.ws13_c00179{word-spacing:4.038400pt;}
.ws28_c00179{word-spacing:4.953600pt;}
.ws29_c00179{word-spacing:4.985600pt;}
.ws24_c00179{word-spacing:5.209600pt;}
.ws25_c00179{word-spacing:5.286400pt;}
.ws1_c00179{word-spacing:5.292800pt;}
.ws16_c00179{word-spacing:5.913600pt;}
.ws15_c00179{word-spacing:5.977600pt;}
.ws14_c00179{word-spacing:9.484800pt;}
.ws2b_c00179{word-spacing:14.246400pt;}
.ws20_c00179{word-spacing:18.886400pt;}
.ws21_c00179{word-spacing:19.046400pt;}
.wsc_c00179{word-spacing:20.569600pt;}
.wsb_c00179{word-spacing:20.646400pt;}
.ws2a_c00179{word-spacing:21.625600pt;}
.ws1e_c00179{word-spacing:22.566400pt;}
.ws1f_c00179{word-spacing:22.604800pt;}
.ws11_c00179{word-spacing:22.886400pt;}
.ws2_c00179{word-spacing:25.728000pt;}
.ws3_c00179{word-spacing:25.785600pt;}
.wsf_c00179{word-spacing:31.520000pt;}
.ws10_c00179{word-spacing:31.744000pt;}
._0_c00179{width:0.908800pt;}
.fs0_c00179{font-size:64.000000pt;}
.y0_c00179{bottom:0.000000pt;}
.y2_c00179{bottom:41.627067pt;}
.y1_c00179{bottom:60.027067pt;}
.y20_c00179{bottom:143.227067pt;}
.y1f_c00179{bottom:170.827067pt;}
.y1e_c00179{bottom:198.427067pt;}
.y1d_c00179{bottom:226.027067pt;}
.y1c_c00179{bottom:253.627067pt;}
.y1b_c00179{bottom:289.227067pt;}
.y1a_c00179{bottom:316.827067pt;}
.y19_c00179{bottom:344.347067pt;}
.y18_c00179{bottom:371.947067pt;}
.y17_c00179{bottom:399.547067pt;}
.y16_c00179{bottom:435.147067pt;}
.y15_c00179{bottom:462.667067pt;}
.y14_c00179{bottom:490.347067pt;}
.y13_c00179{bottom:517.947067pt;}
.y12_c00179{bottom:553.547067pt;}
.y11_c00179{bottom:581.147067pt;}
.y10_c00179{bottom:608.747067pt;}
.yf_c00179{bottom:636.347067pt;}
.ye_c00179{bottom:663.947067pt;}
.yd_c00179{bottom:691.547067pt;}
.yc_c00179{bottom:719.147067pt;}
.yb_c00179{bottom:746.747067pt;}
.ya_c00179{bottom:774.347067pt;}
.y9_c00179{bottom:801.947067pt;}
.y8_c00179{bottom:837.547067pt;}
.y7_c00179{bottom:865.147067pt;}
.y6_c00179{bottom:892.747067pt;}
.y5_c00179{bottom:920.347067pt;}
.y4_c00179{bottom:947.947067pt;}
.y3_c00179{bottom:975.547067pt;}
.h1_c00179{height:56.156250pt;}
.h2_c00179{height:57.375000pt;}
.h3_c00179{height:66.750000pt;}
.h0_c00179{height:1122.666667pt;}
.w1_c00179{width:793.333333pt;}
.w0_c00179{width:793.626667pt;}
.x0_c00179{left:0.000000pt;}
.x2_c00179{left:113.440000pt;}
.x1_c00179{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_120594a67f6b1ac35edcc433.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.093262;font-style:normal;font-weight:normal;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_f7bb79a6526b31e04291a291.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.106934;font-style:normal;font-weight:normal;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_9c3ab4efad92196e332c18f9.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls3_c00180{letter-spacing:-0.086400px;}
.lse_c00180{letter-spacing:-0.072000px;}
.lsd_c00180{letter-spacing:-0.064800px;}
.lsa_c00180{letter-spacing:-0.057600px;}
.ls6_c00180{letter-spacing:-0.050400px;}
.lsb_c00180{letter-spacing:-0.043200px;}
.ls9_c00180{letter-spacing:-0.036000px;}
.ls7_c00180{letter-spacing:-0.028800px;}
.ls5_c00180{letter-spacing:-0.021600px;}
.ls4_c00180{letter-spacing:-0.014400px;}
.ls8_c00180{letter-spacing:-0.007200px;}
.ls2_c00180{letter-spacing:0.000000px;}
.ls0_c00180{letter-spacing:0.028800px;}
.lsc_c00180{letter-spacing:0.036000px;}
.ls1_c00180{letter-spacing:0.144000px;}
.lsf_c00180{letter-spacing:843.998400px;}
.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;}
}
.ws27_c00180{word-spacing:-1.980000px;}
.ws26_c00180{word-spacing:-1.965600px;}
.ws2_c00180{word-spacing:-0.892800px;}
.ws1_c00180{word-spacing:-0.835200px;}
.ws20_c00180{word-spacing:-0.489600px;}
.ws1d_c00180{word-spacing:-0.237600px;}
.ws0_c00180{word-spacing:0.000000px;}
.ws1c_c00180{word-spacing:0.043200px;}
.wse_c00180{word-spacing:0.093600px;}
.ws15_c00180{word-spacing:0.129600px;}
.wsa_c00180{word-spacing:0.165600px;}
.ws29_c00180{word-spacing:0.180000px;}
.ws9_c00180{word-spacing:0.187200px;}
.ws28_c00180{word-spacing:0.201600px;}
.ws2b_c00180{word-spacing:0.216000px;}
.ws25_c00180{word-spacing:0.504000px;}
.ws5_c00180{word-spacing:0.540000px;}
.ws24_c00180{word-spacing:0.547200px;}
.ws6_c00180{word-spacing:0.568800px;}
.ws14_c00180{word-spacing:0.921600px;}
.ws13_c00180{word-spacing:1.015200px;}
.wsf_c00180{word-spacing:1.951200px;}
.ws10_c00180{word-spacing:2.001600px;}
.ws3_c00180{word-spacing:2.260800px;}
.ws4_c00180{word-spacing:2.340000px;}
.ws1f_c00180{word-spacing:2.743200px;}
.ws1e_c00180{word-spacing:2.779200px;}
.ws7_c00180{word-spacing:6.292800px;}
.ws8_c00180{word-spacing:6.408000px;}
.ws12_c00180{word-spacing:6.681600px;}
.ws11_c00180{word-spacing:6.688800px;}
.ws18_c00180{word-spacing:7.048800px;}
.wsc_c00180{word-spacing:7.387200px;}
.ws1b_c00180{word-spacing:7.401600px;}
.wsd_c00180{word-spacing:7.408800px;}
.ws21_c00180{word-spacing:7.660800px;}
.ws22_c00180{word-spacing:7.754400px;}
.ws17_c00180{word-spacing:10.980000px;}
.ws16_c00180{word-spacing:11.001600px;}
.wsb_c00180{word-spacing:22.154400px;}
.ws19_c00180{word-spacing:25.344000px;}
.ws1a_c00180{word-spacing:25.408800px;}
.ws2a_c00180{word-spacing:26.510400px;}
.ws23_c00180{word-spacing:31.500000px;}
._2_c00180{margin-left:-26.136000px;}
._1_c00180{margin-left:-25.128000px;}
._0_c00180{width:1.022400px;}
.fc0_c00180{color:rgb(0,0,0);}
.fs0_c00180{font-size:72.000000px;}
.y0_c00180{bottom:0.000000px;}
.y2_c00180{bottom:46.830450px;}
.y1_c00180{bottom:67.530450px;}
.y20_c00180{bottom:198.930450px;}
.y1f_c00180{bottom:238.980450px;}
.y1e_c00180{bottom:270.030450px;}
.y1d_c00180{bottom:301.080450px;}
.y1c_c00180{bottom:341.040450px;}
.y1b_c00180{bottom:372.090450px;}
.y1a_c00180{bottom:403.140450px;}
.y19_c00180{bottom:434.190450px;}
.y18_c00180{bottom:465.240450px;}
.y17_c00180{bottom:496.290450px;}
.y16_c00180{bottom:527.340450px;}
.y15_c00180{bottom:567.390450px;}
.y14_c00180{bottom:598.440450px;}
.y13_c00180{bottom:629.490450px;}
.y12_c00180{bottom:668.190450px;}
.y11_c00180{bottom:706.890450px;}
.y10_c00180{bottom:727.590450px;}
.yf_c00180{bottom:748.290450px;}
.ye_c00180{bottom:768.990450px;}
.yd_c00180{bottom:789.690450px;}
.yc_c00180{bottom:810.390450px;}
.yb_c00180{bottom:831.090450px;}
.ya_c00180{bottom:871.140450px;}
.y9_c00180{bottom:902.190450px;}
.y8_c00180{bottom:933.240450px;}
.y7_c00180{bottom:973.290450px;}
.y6_c00180{bottom:1004.340450px;}
.y5_c00180{bottom:1035.390450px;}
.y4_c00180{bottom:1066.440450px;}
.y3_c00180{bottom:1097.490450px;}
.h1_c00180{height:63.175781px;}
.h2_c00180{height:64.546875px;}
.h3_c00180{height:75.093750px;}
.h0_c00180{height:1263.000000px;}
.w1_c00180{width:892.500000px;}
.w0_c00180{width:892.830000px;}
.x0_c00180{left:0.000000px;}
.x2_c00180{left:170.100000px;}
.x3_c00180{left:191.430000px;}
.x1_c00180{left:738.360000px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls3_c00180{letter-spacing:-0.076800pt;}
.lse_c00180{letter-spacing:-0.064000pt;}
.lsd_c00180{letter-spacing:-0.057600pt;}
.lsa_c00180{letter-spacing:-0.051200pt;}
.ls6_c00180{letter-spacing:-0.044800pt;}
.lsb_c00180{letter-spacing:-0.038400pt;}
.ls9_c00180{letter-spacing:-0.032000pt;}
.ls7_c00180{letter-spacing:-0.025600pt;}
.ls5_c00180{letter-spacing:-0.019200pt;}
.ls4_c00180{letter-spacing:-0.012800pt;}
.ls8_c00180{letter-spacing:-0.006400pt;}
.ls2_c00180{letter-spacing:0.000000pt;}
.ls0_c00180{letter-spacing:0.025600pt;}
.lsc_c00180{letter-spacing:0.032000pt;}
.ls1_c00180{letter-spacing:0.128000pt;}
.lsf_c00180{letter-spacing:750.220800pt;}
.ws27_c00180{word-spacing:-1.760000pt;}
.ws26_c00180{word-spacing:-1.747200pt;}
.ws2_c00180{word-spacing:-0.793600pt;}
.ws1_c00180{word-spacing:-0.742400pt;}
.ws20_c00180{word-spacing:-0.435200pt;}
.ws1d_c00180{word-spacing:-0.211200pt;}
.ws0_c00180{word-spacing:0.000000pt;}
.ws1c_c00180{word-spacing:0.038400pt;}
.wse_c00180{word-spacing:0.083200pt;}
.ws15_c00180{word-spacing:0.115200pt;}
.wsa_c00180{word-spacing:0.147200pt;}
.ws29_c00180{word-spacing:0.160000pt;}
.ws9_c00180{word-spacing:0.166400pt;}
.ws28_c00180{word-spacing:0.179200pt;}
.ws2b_c00180{word-spacing:0.192000pt;}
.ws25_c00180{word-spacing:0.448000pt;}
.ws5_c00180{word-spacing:0.480000pt;}
.ws24_c00180{word-spacing:0.486400pt;}
.ws6_c00180{word-spacing:0.505600pt;}
.ws14_c00180{word-spacing:0.819200pt;}
.ws13_c00180{word-spacing:0.902400pt;}
.wsf_c00180{word-spacing:1.734400pt;}
.ws10_c00180{word-spacing:1.779200pt;}
.ws3_c00180{word-spacing:2.009600pt;}
.ws4_c00180{word-spacing:2.080000pt;}
.ws1f_c00180{word-spacing:2.438400pt;}
.ws1e_c00180{word-spacing:2.470400pt;}
.ws7_c00180{word-spacing:5.593600pt;}
.ws8_c00180{word-spacing:5.696000pt;}
.ws12_c00180{word-spacing:5.939200pt;}
.ws11_c00180{word-spacing:5.945600pt;}
.ws18_c00180{word-spacing:6.265600pt;}
.wsc_c00180{word-spacing:6.566400pt;}
.ws1b_c00180{word-spacing:6.579200pt;}
.wsd_c00180{word-spacing:6.585600pt;}
.ws21_c00180{word-spacing:6.809600pt;}
.ws22_c00180{word-spacing:6.892800pt;}
.ws17_c00180{word-spacing:9.760000pt;}
.ws16_c00180{word-spacing:9.779200pt;}
.wsb_c00180{word-spacing:19.692800pt;}
.ws19_c00180{word-spacing:22.528000pt;}
.ws1a_c00180{word-spacing:22.585600pt;}
.ws2a_c00180{word-spacing:23.564800pt;}
.ws23_c00180{word-spacing:28.000000pt;}
._2_c00180{margin-left:-23.232000pt;}
._1_c00180{margin-left:-22.336000pt;}
._0_c00180{width:0.908800pt;}
.fs0_c00180{font-size:64.000000pt;}
.y0_c00180{bottom:0.000000pt;}
.y2_c00180{bottom:41.627067pt;}
.y1_c00180{bottom:60.027067pt;}
.y20_c00180{bottom:176.827067pt;}
.y1f_c00180{bottom:212.427067pt;}
.y1e_c00180{bottom:240.027067pt;}
.y1d_c00180{bottom:267.627067pt;}
.y1c_c00180{bottom:303.147067pt;}
.y1b_c00180{bottom:330.747067pt;}
.y1a_c00180{bottom:358.347067pt;}
.y19_c00180{bottom:385.947067pt;}
.y18_c00180{bottom:413.547067pt;}
.y17_c00180{bottom:441.147067pt;}
.y16_c00180{bottom:468.747067pt;}
.y15_c00180{bottom:504.347067pt;}
.y14_c00180{bottom:531.947067pt;}
.y13_c00180{bottom:559.547067pt;}
.y12_c00180{bottom:593.947067pt;}
.y11_c00180{bottom:628.347067pt;}
.y10_c00180{bottom:646.747067pt;}
.yf_c00180{bottom:665.147067pt;}
.ye_c00180{bottom:683.547067pt;}
.yd_c00180{bottom:701.947067pt;}
.yc_c00180{bottom:720.347067pt;}
.yb_c00180{bottom:738.747067pt;}
.ya_c00180{bottom:774.347067pt;}
.y9_c00180{bottom:801.947067pt;}
.y8_c00180{bottom:829.547067pt;}
.y7_c00180{bottom:865.147067pt;}
.y6_c00180{bottom:892.747067pt;}
.y5_c00180{bottom:920.347067pt;}
.y4_c00180{bottom:947.947067pt;}
.y3_c00180{bottom:975.547067pt;}
.h1_c00180{height:56.156250pt;}
.h2_c00180{height:57.375000pt;}
.h3_c00180{height:66.750000pt;}
.h0_c00180{height:1122.666667pt;}
.w1_c00180{width:793.333333pt;}
.w0_c00180{width:793.626667pt;}
.x0_c00180{left:0.000000pt;}
.x2_c00180{left:151.200000pt;}
.x3_c00180{left:170.160000pt;}
.x1_c00180{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c9287e626e2dc90ef724bd9c.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.106934;font-style: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;}
.ls0_c00181{letter-spacing:0.000000px;}
.ls1_c00181{letter-spacing:843.998400px;}
.sc__c00181{text-shadow:none;}
.sc0_c00181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00181{-webkit-text-stroke:0px transparent;}
.sc0_c00181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00181{word-spacing:0.000000px;}
.fc0_c00181{color:rgb(0,0,0);}
.fs0_c00181{font-size:72.000000px;}
.y0_c00181{bottom:0.000000px;}
.y2_c00181{bottom:46.830450px;}
.y1_c00181{bottom:67.530450px;}
.y3_c00181{bottom:1097.490450px;}
.h1_c00181{height:63.175781px;}
.h2_c00181{height:64.546875px;}
.h0_c00181{height:1263.000000px;}
.w1_c00181{width:892.500000px;}
.w0_c00181{width:892.830000px;}
.x0_c00181{left:0.000000px;}
.x2_c00181{left:127.620000px;}
.x1_c00181{left:695.880000px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls0_c00181{letter-spacing:0.000000pt;}
.ls1_c00181{letter-spacing:750.220800pt;}
.ws0_c00181{word-spacing:0.000000pt;}
.fs0_c00181{font-size:64.000000pt;}
.y0_c00181{bottom:0.000000pt;}
.y2_c00181{bottom:41.627067pt;}
.y1_c00181{bottom:60.027067pt;}
.y3_c00181{bottom:975.547067pt;}
.h1_c00181{height:56.156250pt;}
.h2_c00181{height:57.375000pt;}
.h0_c00181{height:1122.666667pt;}
.w1_c00181{width:793.333333pt;}
.w0_c00181{width:793.626667pt;}
.x0_c00181{left:0.000000pt;}
.x2_c00181{left:113.440000pt;}
.x1_c00181{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_06db7a9fd824543c4722556d.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.093262;font-style:normal;font-weight:normal;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_8661b23fb7c428a73d1009bc.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00182;src:url('chunks/assets/font_999984b7e2c0caba0693189b.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00182;src:url('chunks/assets/font_3f4e137bd94745bd16ccdc1e.woff2')format("woff");}.ff4_c00182{font-family:ff4_c00182;line-height:1.106934;font-style:normal;font-weight:normal;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_3dcb6c7a9dde73ad63e4e85c.woff2')format("woff");}.ff5_c00182{font-family:ff5_c00182;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lse_c00182{letter-spacing:-0.086400px;}
.ls7_c00182{letter-spacing:-0.072000px;}
.lsc_c00182{letter-spacing:-0.064800px;}
.ls6_c00182{letter-spacing:-0.057600px;}
.ls8_c00182{letter-spacing:-0.050400px;}
.lsd_c00182{letter-spacing:-0.043200px;}
.ls5_c00182{letter-spacing:-0.036000px;}
.ls10_c00182{letter-spacing:-0.028800px;}
.lsb_c00182{letter-spacing:-0.021600px;}
.ls9_c00182{letter-spacing:-0.014400px;}
.lsa_c00182{letter-spacing:-0.007200px;}
.ls2_c00182{letter-spacing:0.000000px;}
.lsf_c00182{letter-spacing:0.007200px;}
.ls1_c00182{letter-spacing:0.008388px;}
.ls0_c00182{letter-spacing:0.033552px;}
.ls3_c00182{letter-spacing:0.050328px;}
.ls4_c00182{letter-spacing:0.067104px;}
.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:-23.327028px;}
.ws1_c00182{word-spacing:-20.008800px;}
.ws11_c00182{word-spacing:-3.060000px;}
.ws12_c00182{word-spacing:-2.959200px;}
.ws32_c00182{word-spacing:-2.685600px;}
.ws33_c00182{word-spacing:-2.678400px;}
.ws9_c00182{word-spacing:-2.311200px;}
.wsa_c00182{word-spacing:-2.253600px;}
.ws2e_c00182{word-spacing:-1.965600px;}
.ws27_c00182{word-spacing:-1.699200px;}
.ws26_c00182{word-spacing:-1.663200px;}
.wsb_c00182{word-spacing:-0.612000px;}
.wsc_c00182{word-spacing:-0.525600px;}
.ws2b_c00182{word-spacing:-0.511200px;}
.ws7_c00182{word-spacing:-0.144000px;}
.ws8_c00182{word-spacing:-0.129600px;}
.ws3_c00182{word-spacing:-0.033552px;}
.ws2_c00182{word-spacing:0.000000px;}
.ws35_c00182{word-spacing:0.115200px;}
.ws15_c00182{word-spacing:0.165600px;}
.ws13_c00182{word-spacing:0.172800px;}
.ws2d_c00182{word-spacing:0.194400px;}
.ws34_c00182{word-spacing:0.280800px;}
.ws19_c00182{word-spacing:0.504000px;}
.ws1a_c00182{word-spacing:0.561600px;}
.ws2a_c00182{word-spacing:0.583200px;}
.ws2f_c00182{word-spacing:0.921600px;}
.ws16_c00182{word-spacing:3.074400px;}
.ws17_c00182{word-spacing:3.124800px;}
.ws1c_c00182{word-spacing:3.448800px;}
.ws1d_c00182{word-spacing:3.492000px;}
.ws18_c00182{word-spacing:3.744000px;}
.ws5_c00182{word-spacing:3.794400px;}
.ws6_c00182{word-spacing:3.816000px;}
.ws20_c00182{word-spacing:4.118400px;}
.ws1f_c00182{word-spacing:4.154400px;}
.ws1e_c00182{word-spacing:6.256800px;}
.ws24_c00182{word-spacing:6.552000px;}
.ws23_c00182{word-spacing:6.660000px;}
.ws25_c00182{word-spacing:6.674400px;}
.ws1b_c00182{word-spacing:10.627200px;}
.ws4_c00182{word-spacing:15.314400px;}
.wsd_c00182{word-spacing:16.668000px;}
.wse_c00182{word-spacing:16.783200px;}
.ws30_c00182{word-spacing:19.245600px;}
.ws31_c00182{word-spacing:19.317600px;}
.ws22_c00182{word-spacing:25.351200px;}
.ws21_c00182{word-spacing:25.380000px;}
.ws29_c00182{word-spacing:27.518400px;}
.ws28_c00182{word-spacing:27.561600px;}
.ws2c_c00182{word-spacing:34.776000px;}
.ws14_c00182{word-spacing:40.492800px;}
.wsf_c00182{word-spacing:44.085600px;}
.ws10_c00182{word-spacing:44.121600px;}
._1_c00182{margin-left:-15.120000px;}
._4_c00182{margin-left:-2.023200px;}
._2_c00182{width:1.260000px;}
._3_c00182{width:2.340000px;}
._0_c00182{width:9.763632px;}
.fc0_c00182{color:rgb(0,0,0);}
.fs0_c00182{font-size:72.000000px;}
.fs1_c00182{font-size:83.880000px;}
.y0_c00182{bottom:0.000000px;}
.y2_c00182{bottom:46.830450px;}
.y1_c00182{bottom:67.530450px;}
.y26_c00182{bottom:137.550450px;}
.y25_c00182{bottom:168.600450px;}
.y24_c00182{bottom:199.650450px;}
.y23_c00182{bottom:230.700450px;}
.y22_c00182{bottom:261.750450px;}
.y21_c00182{bottom:291.450450px;}
.y20_c00182{bottom:321.150450px;}
.y1f_c00182{bottom:350.850450px;}
.y1e_c00182{bottom:371.550450px;}
.y1d_c00182{bottom:392.250450px;}
.y1c_c00182{bottom:412.950450px;}
.y1b_c00182{bottom:433.650450px;}
.y1a_c00182{bottom:454.350450px;}
.y19_c00182{bottom:475.050450px;}
.y18_c00182{bottom:495.750450px;}
.y17_c00182{bottom:516.450450px;}
.y16_c00182{bottom:537.150450px;}
.y15_c00182{bottom:557.850450px;}
.y14_c00182{bottom:578.550450px;}
.y13_c00182{bottom:599.250450px;}
.y12_c00182{bottom:619.950450px;}
.y11_c00182{bottom:640.650450px;}
.y10_c00182{bottom:680.700450px;}
.yf_c00182{bottom:711.750450px;}
.ye_c00182{bottom:751.710450px;}
.yd_c00182{bottom:782.760450px;}
.yc_c00182{bottom:813.810450px;}
.yb_c00182{bottom:844.860450px;}
.ya_c00182{bottom:875.910450px;}
.y9_c00182{bottom:906.960450px;}
.y8_c00182{bottom:938.010450px;}
.y7_c00182{bottom:969.060450px;}
.y6_c00182{bottom:1000.110450px;}
.y5_c00182{bottom:1040.160450px;}
.y4_c00182{bottom:1070.404950px;}
.y3_c00182{bottom:1094.520450px;}
.h1_c00182{height:63.175781px;}
.h3_c00182{height:64.546875px;}
.h4_c00182{height:75.093750px;}
.h2_c00182{height:87.484219px;}
.h0_c00182{height:1263.000000px;}
.w1_c00182{width:892.500000px;}
.w0_c00182{width:892.830000px;}
.x0_c00182{left:0.000000px;}
.x2_c00182{left:170.100000px;}
.x5_c00182{left:191.430000px;}
.x3_c00182{left:251.100000px;}
.x4_c00182{left:299.708460px;}
.x1_c00182{left:738.360000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.lse_c00182{letter-spacing:-0.076800pt;}
.ls7_c00182{letter-spacing:-0.064000pt;}
.lsc_c00182{letter-spacing:-0.057600pt;}
.ls6_c00182{letter-spacing:-0.051200pt;}
.ls8_c00182{letter-spacing:-0.044800pt;}
.lsd_c00182{letter-spacing:-0.038400pt;}
.ls5_c00182{letter-spacing:-0.032000pt;}
.ls10_c00182{letter-spacing:-0.025600pt;}
.lsb_c00182{letter-spacing:-0.019200pt;}
.ls9_c00182{letter-spacing:-0.012800pt;}
.lsa_c00182{letter-spacing:-0.006400pt;}
.ls2_c00182{letter-spacing:0.000000pt;}
.lsf_c00182{letter-spacing:0.006400pt;}
.ls1_c00182{letter-spacing:0.007456pt;}
.ls0_c00182{letter-spacing:0.029824pt;}
.ls3_c00182{letter-spacing:0.044736pt;}
.ls4_c00182{letter-spacing:0.059648pt;}
.ws0_c00182{word-spacing:-20.735136pt;}
.ws1_c00182{word-spacing:-17.785600pt;}
.ws11_c00182{word-spacing:-2.720000pt;}
.ws12_c00182{word-spacing:-2.630400pt;}
.ws32_c00182{word-spacing:-2.387200pt;}
.ws33_c00182{word-spacing:-2.380800pt;}
.ws9_c00182{word-spacing:-2.054400pt;}
.wsa_c00182{word-spacing:-2.003200pt;}
.ws2e_c00182{word-spacing:-1.747200pt;}
.ws27_c00182{word-spacing:-1.510400pt;}
.ws26_c00182{word-spacing:-1.478400pt;}
.wsb_c00182{word-spacing:-0.544000pt;}
.wsc_c00182{word-spacing:-0.467200pt;}
.ws2b_c00182{word-spacing:-0.454400pt;}
.ws7_c00182{word-spacing:-0.128000pt;}
.ws8_c00182{word-spacing:-0.115200pt;}
.ws3_c00182{word-spacing:-0.029824pt;}
.ws2_c00182{word-spacing:0.000000pt;}
.ws35_c00182{word-spacing:0.102400pt;}
.ws15_c00182{word-spacing:0.147200pt;}
.ws13_c00182{word-spacing:0.153600pt;}
.ws2d_c00182{word-spacing:0.172800pt;}
.ws34_c00182{word-spacing:0.249600pt;}
.ws19_c00182{word-spacing:0.448000pt;}
.ws1a_c00182{word-spacing:0.499200pt;}
.ws2a_c00182{word-spacing:0.518400pt;}
.ws2f_c00182{word-spacing:0.819200pt;}
.ws16_c00182{word-spacing:2.732800pt;}
.ws17_c00182{word-spacing:2.777600pt;}
.ws1c_c00182{word-spacing:3.065600pt;}
.ws1d_c00182{word-spacing:3.104000pt;}
.ws18_c00182{word-spacing:3.328000pt;}
.ws5_c00182{word-spacing:3.372800pt;}
.ws6_c00182{word-spacing:3.392000pt;}
.ws20_c00182{word-spacing:3.660800pt;}
.ws1f_c00182{word-spacing:3.692800pt;}
.ws1e_c00182{word-spacing:5.561600pt;}
.ws24_c00182{word-spacing:5.824000pt;}
.ws23_c00182{word-spacing:5.920000pt;}
.ws25_c00182{word-spacing:5.932800pt;}
.ws1b_c00182{word-spacing:9.446400pt;}
.ws4_c00182{word-spacing:13.612800pt;}
.wsd_c00182{word-spacing:14.816000pt;}
.wse_c00182{word-spacing:14.918400pt;}
.ws30_c00182{word-spacing:17.107200pt;}
.ws31_c00182{word-spacing:17.171200pt;}
.ws22_c00182{word-spacing:22.534400pt;}
.ws21_c00182{word-spacing:22.560000pt;}
.ws29_c00182{word-spacing:24.460800pt;}
.ws28_c00182{word-spacing:24.499200pt;}
.ws2c_c00182{word-spacing:30.912000pt;}
.ws14_c00182{word-spacing:35.993600pt;}
.wsf_c00182{word-spacing:39.187200pt;}
.ws10_c00182{word-spacing:39.219200pt;}
._1_c00182{margin-left:-13.440000pt;}
._4_c00182{margin-left:-1.798400pt;}
._2_c00182{width:1.120000pt;}
._3_c00182{width:2.080000pt;}
._0_c00182{width:8.678784pt;}
.fs0_c00182{font-size:64.000000pt;}
.fs1_c00182{font-size:74.560000pt;}
.y0_c00182{bottom:0.000000pt;}
.y2_c00182{bottom:41.627067pt;}
.y1_c00182{bottom:60.027067pt;}
.y26_c00182{bottom:122.267067pt;}
.y25_c00182{bottom:149.867067pt;}
.y24_c00182{bottom:177.467067pt;}
.y23_c00182{bottom:205.067067pt;}
.y22_c00182{bottom:232.667067pt;}
.y21_c00182{bottom:259.067067pt;}
.y20_c00182{bottom:285.467067pt;}
.y1f_c00182{bottom:311.867067pt;}
.y1e_c00182{bottom:330.267067pt;}
.y1d_c00182{bottom:348.667067pt;}
.y1c_c00182{bottom:367.067067pt;}
.y1b_c00182{bottom:385.467067pt;}
.y1a_c00182{bottom:403.867067pt;}
.y19_c00182{bottom:422.267067pt;}
.y18_c00182{bottom:440.667067pt;}
.y17_c00182{bottom:459.067067pt;}
.y16_c00182{bottom:477.467067pt;}
.y15_c00182{bottom:495.867067pt;}
.y14_c00182{bottom:514.267067pt;}
.y13_c00182{bottom:532.667067pt;}
.y12_c00182{bottom:551.067067pt;}
.y11_c00182{bottom:569.467067pt;}
.y10_c00182{bottom:605.067067pt;}
.yf_c00182{bottom:632.667067pt;}
.ye_c00182{bottom:668.187067pt;}
.yd_c00182{bottom:695.787067pt;}
.yc_c00182{bottom:723.387067pt;}
.yb_c00182{bottom:750.987067pt;}
.ya_c00182{bottom:778.587067pt;}
.y9_c00182{bottom:806.187067pt;}
.y8_c00182{bottom:833.787067pt;}
.y7_c00182{bottom:861.387067pt;}
.y6_c00182{bottom:888.987067pt;}
.y5_c00182{bottom:924.587067pt;}
.y4_c00182{bottom:951.471067pt;}
.y3_c00182{bottom:972.907067pt;}
.h1_c00182{height:56.156250pt;}
.h3_c00182{height:57.375000pt;}
.h4_c00182{height:66.750000pt;}
.h2_c00182{height:77.763750pt;}
.h0_c00182{height:1122.666667pt;}
.w1_c00182{width:793.333333pt;}
.w0_c00182{width:793.626667pt;}
.x0_c00182{left:0.000000pt;}
.x2_c00182{left:151.200000pt;}
.x5_c00182{left:170.160000pt;}
.x3_c00182{left:223.200000pt;}
.x4_c00182{left:266.407520pt;}
.x1_c00182{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1a29c871cf9bef179bbdeda6.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.093262;font-style:normal;font-weight:normal;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_5791c1ad0262de330332c130.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.106934;font-style:normal;font-weight:normal;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_4e7968da8cada1ada0607686.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00183{letter-spacing:-0.093600px;}
.ls3_c00183{letter-spacing:-0.072000px;}
.ls8_c00183{letter-spacing:-0.064800px;}
.ls6_c00183{letter-spacing:-0.057600px;}
.ls7_c00183{letter-spacing:-0.050400px;}
.ls9_c00183{letter-spacing:-0.043200px;}
.ls4_c00183{letter-spacing:-0.036000px;}
.lsb_c00183{letter-spacing:-0.028800px;}
.ls1_c00183{letter-spacing:-0.021600px;}
.ls5_c00183{letter-spacing:-0.014400px;}
.ls2_c00183{letter-spacing:-0.007200px;}
.ls0_c00183{letter-spacing:0.000000px;}
.lsa_c00183{letter-spacing:0.043200px;}
.sc__c00183{text-shadow:none;}
.sc0_c00183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00183{-webkit-text-stroke:0px transparent;}
.sc0_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00183{word-spacing:-19.965600px;}
.ws29_c00183{word-spacing:-4.600800px;}
.ws1f_c00183{word-spacing:-4.464000px;}
.ws2a_c00183{word-spacing:-4.356000px;}
.ws26_c00183{word-spacing:-4.154400px;}
.ws25_c00183{word-spacing:-4.147200px;}
.wsf_c00183{word-spacing:-3.405600px;}
.wse_c00183{word-spacing:-3.391200px;}
.ws33_c00183{word-spacing:-2.412000px;}
.ws32_c00183{word-spacing:-2.289600px;}
.wsb_c00183{word-spacing:-2.001600px;}
.wsa_c00183{word-spacing:-1.828800px;}
.ws22_c00183{word-spacing:-0.381600px;}
.ws23_c00183{word-spacing:-0.230400px;}
.ws1_c00183{word-spacing:0.000000px;}
.ws16_c00183{word-spacing:0.158400px;}
.ws2c_c00183{word-spacing:0.165600px;}
.ws17_c00183{word-spacing:0.172800px;}
.ws7_c00183{word-spacing:0.180000px;}
.ws2b_c00183{word-spacing:0.194400px;}
.wsd_c00183{word-spacing:0.900000px;}
.ws6_c00183{word-spacing:1.252800px;}
.ws5_c00183{word-spacing:1.274400px;}
.ws24_c00183{word-spacing:1.994400px;}
.ws28_c00183{word-spacing:3.038400px;}
.ws27_c00183{word-spacing:3.074400px;}
.ws18_c00183{word-spacing:3.722400px;}
.ws19_c00183{word-spacing:3.808800px;}
.ws9_c00183{word-spacing:3.816000px;}
.ws8_c00183{word-spacing:3.859200px;}
.wsc_c00183{word-spacing:4.492800px;}
.ws12_c00183{word-spacing:5.637600px;}
.ws11_c00183{word-spacing:5.688000px;}
.ws1e_c00183{word-spacing:10.980000px;}
.ws1d_c00183{word-spacing:11.059200px;}
.ws10_c00183{word-spacing:11.383200px;}
.ws15_c00183{word-spacing:11.995200px;}
.ws3_c00183{word-spacing:12.045600px;}
.ws14_c00183{word-spacing:12.052800px;}
.ws13_c00183{word-spacing:12.067200px;}
.ws2d_c00183{word-spacing:12.772800px;}
.ws2e_c00183{word-spacing:12.787200px;}
.ws2f_c00183{word-spacing:17.539200px;}
.ws30_c00183{word-spacing:17.589600px;}
.ws31_c00183{word-spacing:17.611200px;}
.ws2_c00183{word-spacing:19.260000px;}
.ws1b_c00183{word-spacing:19.987200px;}
.ws1c_c00183{word-spacing:20.023200px;}
.ws1a_c00183{word-spacing:20.340000px;}
.ws21_c00183{word-spacing:20.692800px;}
.ws20_c00183{word-spacing:20.714400px;}
.ws4_c00183{word-spacing:22.190400px;}
._0_c00183{width:1.152000px;}
.fc0_c00183{color:rgb(0,0,0);}
.fs0_c00183{font-size:72.000000px;}
.y0_c00183{bottom:0.000000px;}
.y2_c00183{bottom:46.830450px;}
.y1_c00183{bottom:67.530450px;}
.y24_c00183{bottom:166.530450px;}
.y23_c00183{bottom:187.230450px;}
.y22_c00183{bottom:207.930450px;}
.y21_c00183{bottom:247.980450px;}
.y20_c00183{bottom:277.680450px;}
.y1f_c00183{bottom:298.380450px;}
.y1e_c00183{bottom:319.080450px;}
.y1d_c00183{bottom:339.690450px;}
.y1c_c00183{bottom:360.390450px;}
.y1b_c00183{bottom:381.090450px;}
.y1a_c00183{bottom:421.140450px;}
.y19_c00183{bottom:450.840450px;}
.y18_c00183{bottom:480.540450px;}
.y17_c00183{bottom:501.240450px;}
.y16_c00183{bottom:521.940450px;}
.y15_c00183{bottom:542.640450px;}
.y14_c00183{bottom:563.340450px;}
.y13_c00183{bottom:584.040450px;}
.y12_c00183{bottom:604.740450px;}
.y11_c00183{bottom:644.790450px;}
.y10_c00183{bottom:684.840450px;}
.yf_c00183{bottom:715.890450px;}
.ye_c00183{bottom:746.940450px;}
.yd_c00183{bottom:777.990450px;}
.yc_c00183{bottom:809.040450px;}
.yb_c00183{bottom:840.090450px;}
.ya_c00183{bottom:871.140450px;}
.y9_c00183{bottom:902.190450px;}
.y8_c00183{bottom:933.240450px;}
.y7_c00183{bottom:973.290450px;}
.y6_c00183{bottom:1004.340450px;}
.y5_c00183{bottom:1035.390450px;}
.y4_c00183{bottom:1066.440450px;}
.y3_c00183{bottom:1097.490450px;}
.h1_c00183{height:63.175781px;}
.h2_c00183{height:64.546875px;}
.h3_c00183{height:75.093750px;}
.h0_c00183{height:1263.000000px;}
.w1_c00183{width:892.500000px;}
.w0_c00183{width:892.830000px;}
.x0_c00183{left:0.000000px;}
.x2_c00183{left:127.620000px;}
.x3_c00183{left:148.950000px;}
.x1_c00183{left:695.880000px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.lsc_c00183{letter-spacing:-0.083200pt;}
.ls3_c00183{letter-spacing:-0.064000pt;}
.ls8_c00183{letter-spacing:-0.057600pt;}
.ls6_c00183{letter-spacing:-0.051200pt;}
.ls7_c00183{letter-spacing:-0.044800pt;}
.ls9_c00183{letter-spacing:-0.038400pt;}
.ls4_c00183{letter-spacing:-0.032000pt;}
.lsb_c00183{letter-spacing:-0.025600pt;}
.ls1_c00183{letter-spacing:-0.019200pt;}
.ls5_c00183{letter-spacing:-0.012800pt;}
.ls2_c00183{letter-spacing:-0.006400pt;}
.ls0_c00183{letter-spacing:0.000000pt;}
.lsa_c00183{letter-spacing:0.038400pt;}
.ws0_c00183{word-spacing:-17.747200pt;}
.ws29_c00183{word-spacing:-4.089600pt;}
.ws1f_c00183{word-spacing:-3.968000pt;}
.ws2a_c00183{word-spacing:-3.872000pt;}
.ws26_c00183{word-spacing:-3.692800pt;}
.ws25_c00183{word-spacing:-3.686400pt;}
.wsf_c00183{word-spacing:-3.027200pt;}
.wse_c00183{word-spacing:-3.014400pt;}
.ws33_c00183{word-spacing:-2.144000pt;}
.ws32_c00183{word-spacing:-2.035200pt;}
.wsb_c00183{word-spacing:-1.779200pt;}
.wsa_c00183{word-spacing:-1.625600pt;}
.ws22_c00183{word-spacing:-0.339200pt;}
.ws23_c00183{word-spacing:-0.204800pt;}
.ws1_c00183{word-spacing:0.000000pt;}
.ws16_c00183{word-spacing:0.140800pt;}
.ws2c_c00183{word-spacing:0.147200pt;}
.ws17_c00183{word-spacing:0.153600pt;}
.ws7_c00183{word-spacing:0.160000pt;}
.ws2b_c00183{word-spacing:0.172800pt;}
.wsd_c00183{word-spacing:0.800000pt;}
.ws6_c00183{word-spacing:1.113600pt;}
.ws5_c00183{word-spacing:1.132800pt;}
.ws24_c00183{word-spacing:1.772800pt;}
.ws28_c00183{word-spacing:2.700800pt;}
.ws27_c00183{word-spacing:2.732800pt;}
.ws18_c00183{word-spacing:3.308800pt;}
.ws19_c00183{word-spacing:3.385600pt;}
.ws9_c00183{word-spacing:3.392000pt;}
.ws8_c00183{word-spacing:3.430400pt;}
.wsc_c00183{word-spacing:3.993600pt;}
.ws12_c00183{word-spacing:5.011200pt;}
.ws11_c00183{word-spacing:5.056000pt;}
.ws1e_c00183{word-spacing:9.760000pt;}
.ws1d_c00183{word-spacing:9.830400pt;}
.ws10_c00183{word-spacing:10.118400pt;}
.ws15_c00183{word-spacing:10.662400pt;}
.ws3_c00183{word-spacing:10.707200pt;}
.ws14_c00183{word-spacing:10.713600pt;}
.ws13_c00183{word-spacing:10.726400pt;}
.ws2d_c00183{word-spacing:11.353600pt;}
.ws2e_c00183{word-spacing:11.366400pt;}
.ws2f_c00183{word-spacing:15.590400pt;}
.ws30_c00183{word-spacing:15.635200pt;}
.ws31_c00183{word-spacing:15.654400pt;}
.ws2_c00183{word-spacing:17.120000pt;}
.ws1b_c00183{word-spacing:17.766400pt;}
.ws1c_c00183{word-spacing:17.798400pt;}
.ws1a_c00183{word-spacing:18.080000pt;}
.ws21_c00183{word-spacing:18.393600pt;}
.ws20_c00183{word-spacing:18.412800pt;}
.ws4_c00183{word-spacing:19.724800pt;}
._0_c00183{width:1.024000pt;}
.fs0_c00183{font-size:64.000000pt;}
.y0_c00183{bottom:0.000000pt;}
.y2_c00183{bottom:41.627067pt;}
.y1_c00183{bottom:60.027067pt;}
.y24_c00183{bottom:148.027067pt;}
.y23_c00183{bottom:166.427067pt;}
.y22_c00183{bottom:184.827067pt;}
.y21_c00183{bottom:220.427067pt;}
.y20_c00183{bottom:246.827067pt;}
.y1f_c00183{bottom:265.227067pt;}
.y1e_c00183{bottom:283.627067pt;}
.y1d_c00183{bottom:301.947067pt;}
.y1c_c00183{bottom:320.347067pt;}
.y1b_c00183{bottom:338.747067pt;}
.y1a_c00183{bottom:374.347067pt;}
.y19_c00183{bottom:400.747067pt;}
.y18_c00183{bottom:427.147067pt;}
.y17_c00183{bottom:445.547067pt;}
.y16_c00183{bottom:463.947067pt;}
.y15_c00183{bottom:482.347067pt;}
.y14_c00183{bottom:500.747067pt;}
.y13_c00183{bottom:519.147067pt;}
.y12_c00183{bottom:537.547067pt;}
.y11_c00183{bottom:573.147067pt;}
.y10_c00183{bottom:608.747067pt;}
.yf_c00183{bottom:636.347067pt;}
.ye_c00183{bottom:663.947067pt;}
.yd_c00183{bottom:691.547067pt;}
.yc_c00183{bottom:719.147067pt;}
.yb_c00183{bottom:746.747067pt;}
.ya_c00183{bottom:774.347067pt;}
.y9_c00183{bottom:801.947067pt;}
.y8_c00183{bottom:829.547067pt;}
.y7_c00183{bottom:865.147067pt;}
.y6_c00183{bottom:892.747067pt;}
.y5_c00183{bottom:920.347067pt;}
.y4_c00183{bottom:947.947067pt;}
.y3_c00183{bottom:975.547067pt;}
.h1_c00183{height:56.156250pt;}
.h2_c00183{height:57.375000pt;}
.h3_c00183{height:66.750000pt;}
.h0_c00183{height:1122.666667pt;}
.w1_c00183{width:793.333333pt;}
.w0_c00183{width:793.626667pt;}
.x0_c00183{left:0.000000pt;}
.x2_c00183{left:113.440000pt;}
.x3_c00183{left:132.400000pt;}
.x1_c00183{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_77484ba3d19ea18549a9acb8.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.093262;font-style:normal;font-weight:normal;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_077ddf843bba74f78f03054f.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.106934;font-style:normal;font-weight:normal;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_cb3bf72448431a539f3cd60b.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00184{letter-spacing:-0.122400px;}
.lsc_c00184{letter-spacing:-0.079200px;}
.lsa_c00184{letter-spacing:-0.064800px;}
.ls8_c00184{letter-spacing:-0.057600px;}
.lse_c00184{letter-spacing:-0.050400px;}
.ls5_c00184{letter-spacing:-0.043200px;}
.ls4_c00184{letter-spacing:-0.036000px;}
.lsb_c00184{letter-spacing:-0.028800px;}
.ls3_c00184{letter-spacing:-0.021600px;}
.ls6_c00184{letter-spacing:-0.014400px;}
.ls7_c00184{letter-spacing:-0.007200px;}
.ls2_c00184{letter-spacing:0.000000px;}
.lsd_c00184{letter-spacing:0.007200px;}
.ls1_c00184{letter-spacing:0.014400px;}
.ls0_c00184{letter-spacing:0.028800px;}
.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:-19.951200px;}
.ws11_c00184{word-spacing:-3.801600px;}
.ws13_c00184{word-spacing:-3.744000px;}
.ws12_c00184{word-spacing:-3.600000px;}
.ws32_c00184{word-spacing:-3.074400px;}
.ws33_c00184{word-spacing:-3.060000px;}
.ws25_c00184{word-spacing:-1.562400px;}
.ws24_c00184{word-spacing:-1.476000px;}
.ws1_c00184{word-spacing:0.000000px;}
.ws6_c00184{word-spacing:0.072000px;}
.ws2f_c00184{word-spacing:0.165600px;}
.ws5_c00184{word-spacing:0.172800px;}
.ws2c_c00184{word-spacing:0.187200px;}
.ws23_c00184{word-spacing:0.194400px;}
.ws4_c00184{word-spacing:0.201600px;}
.ws2a_c00184{word-spacing:0.540000px;}
.ws2b_c00184{word-spacing:0.604800px;}
.ws20_c00184{word-spacing:1.634400px;}
.ws2_c00184{word-spacing:2.340000px;}
.ws3_c00184{word-spacing:2.412000px;}
.wse_c00184{word-spacing:5.176800px;}
.wsf_c00184{word-spacing:5.248800px;}
.ws9_c00184{word-spacing:6.314400px;}
.ws26_c00184{word-spacing:7.761600px;}
.ws27_c00184{word-spacing:7.768800px;}
.ws1f_c00184{word-spacing:9.907200px;}
.ws1e_c00184{word-spacing:9.964800px;}
.ws15_c00184{word-spacing:11.685600px;}
.ws14_c00184{word-spacing:11.721600px;}
.wsd_c00184{word-spacing:14.947200px;}
.wsc_c00184{word-spacing:14.954400px;}
.ws19_c00184{word-spacing:16.012800px;}
.ws2e_c00184{word-spacing:17.805600px;}
.ws2d_c00184{word-spacing:17.812800px;}
.ws1b_c00184{word-spacing:20.037600px;}
.ws1a_c00184{word-spacing:20.095200px;}
.ws10_c00184{word-spacing:20.728800px;}
.ws30_c00184{word-spacing:23.184000px;}
.ws31_c00184{word-spacing:23.392800px;}
.ws21_c00184{word-spacing:23.544000px;}
.ws22_c00184{word-spacing:23.616000px;}
.ws28_c00184{word-spacing:24.660000px;}
.ws29_c00184{word-spacing:24.789600px;}
.ws7_c00184{word-spacing:25.416000px;}
.ws8_c00184{word-spacing:25.423200px;}
.wsb_c00184{word-spacing:33.321600px;}
.wsa_c00184{word-spacing:33.336000px;}
.ws1d_c00184{word-spacing:35.719200px;}
.ws1c_c00184{word-spacing:35.841600px;}
.ws17_c00184{word-spacing:49.809600px;}
.ws16_c00184{word-spacing:49.831200px;}
.ws18_c00184{word-spacing:49.939200px;}
._0_c00184{width:1.396800px;}
.fc0_c00184{color:rgb(0,0,0);}
.fs0_c00184{font-size:72.000000px;}
.y0_c00184{bottom:0.000000px;}
.y2_c00184{bottom:46.830450px;}
.y1_c00184{bottom:67.530450px;}
.y21_c00184{bottom:134.040450px;}
.y20_c00184{bottom:165.180450px;}
.y1f_c00184{bottom:205.230450px;}
.y1e_c00184{bottom:236.280450px;}
.y1d_c00184{bottom:267.330450px;}
.y1c_c00184{bottom:298.380450px;}
.y1b_c00184{bottom:329.430450px;}
.y1a_c00184{bottom:360.390450px;}
.y19_c00184{bottom:391.440450px;}
.y18_c00184{bottom:431.490450px;}
.y17_c00184{bottom:462.540450px;}
.y16_c00184{bottom:493.590450px;}
.y15_c00184{bottom:524.640450px;}
.y14_c00184{bottom:555.690450px;}
.y13_c00184{bottom:586.740450px;}
.y12_c00184{bottom:617.790450px;}
.y11_c00184{bottom:648.840450px;}
.y10_c00184{bottom:679.890450px;}
.yf_c00184{bottom:719.940450px;}
.ye_c00184{bottom:750.990450px;}
.yd_c00184{bottom:782.040450px;}
.yc_c00184{bottom:813.090450px;}
.yb_c00184{bottom:844.140450px;}
.ya_c00184{bottom:875.190450px;}
.y9_c00184{bottom:906.240450px;}
.y8_c00184{bottom:937.290450px;}
.y7_c00184{bottom:977.340450px;}
.y6_c00184{bottom:1017.390450px;}
.y5_c00184{bottom:1047.090450px;}
.y4_c00184{bottom:1076.790450px;}
.y3_c00184{bottom:1097.490450px;}
.h1_c00184{height:63.175781px;}
.h2_c00184{height:64.546875px;}
.h3_c00184{height:75.093750px;}
.h0_c00184{height:1263.000000px;}
.w1_c00184{width:892.500000px;}
.w0_c00184{width:892.830000px;}
.x0_c00184{left:0.000000px;}
.x2_c00184{left:170.100000px;}
.x3_c00184{left:191.430000px;}
.x1_c00184{left:738.360000px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls9_c00184{letter-spacing:-0.108800pt;}
.lsc_c00184{letter-spacing:-0.070400pt;}
.lsa_c00184{letter-spacing:-0.057600pt;}
.ls8_c00184{letter-spacing:-0.051200pt;}
.lse_c00184{letter-spacing:-0.044800pt;}
.ls5_c00184{letter-spacing:-0.038400pt;}
.ls4_c00184{letter-spacing:-0.032000pt;}
.lsb_c00184{letter-spacing:-0.025600pt;}
.ls3_c00184{letter-spacing:-0.019200pt;}
.ls6_c00184{letter-spacing:-0.012800pt;}
.ls7_c00184{letter-spacing:-0.006400pt;}
.ls2_c00184{letter-spacing:0.000000pt;}
.lsd_c00184{letter-spacing:0.006400pt;}
.ls1_c00184{letter-spacing:0.012800pt;}
.ls0_c00184{letter-spacing:0.025600pt;}
.ws0_c00184{word-spacing:-17.734400pt;}
.ws11_c00184{word-spacing:-3.379200pt;}
.ws13_c00184{word-spacing:-3.328000pt;}
.ws12_c00184{word-spacing:-3.200000pt;}
.ws32_c00184{word-spacing:-2.732800pt;}
.ws33_c00184{word-spacing:-2.720000pt;}
.ws25_c00184{word-spacing:-1.388800pt;}
.ws24_c00184{word-spacing:-1.312000pt;}
.ws1_c00184{word-spacing:0.000000pt;}
.ws6_c00184{word-spacing:0.064000pt;}
.ws2f_c00184{word-spacing:0.147200pt;}
.ws5_c00184{word-spacing:0.153600pt;}
.ws2c_c00184{word-spacing:0.166400pt;}
.ws23_c00184{word-spacing:0.172800pt;}
.ws4_c00184{word-spacing:0.179200pt;}
.ws2a_c00184{word-spacing:0.480000pt;}
.ws2b_c00184{word-spacing:0.537600pt;}
.ws20_c00184{word-spacing:1.452800pt;}
.ws2_c00184{word-spacing:2.080000pt;}
.ws3_c00184{word-spacing:2.144000pt;}
.wse_c00184{word-spacing:4.601600pt;}
.wsf_c00184{word-spacing:4.665600pt;}
.ws9_c00184{word-spacing:5.612800pt;}
.ws26_c00184{word-spacing:6.899200pt;}
.ws27_c00184{word-spacing:6.905600pt;}
.ws1f_c00184{word-spacing:8.806400pt;}
.ws1e_c00184{word-spacing:8.857600pt;}
.ws15_c00184{word-spacing:10.387200pt;}
.ws14_c00184{word-spacing:10.419200pt;}
.wsd_c00184{word-spacing:13.286400pt;}
.wsc_c00184{word-spacing:13.292800pt;}
.ws19_c00184{word-spacing:14.233600pt;}
.ws2e_c00184{word-spacing:15.827200pt;}
.ws2d_c00184{word-spacing:15.833600pt;}
.ws1b_c00184{word-spacing:17.811200pt;}
.ws1a_c00184{word-spacing:17.862400pt;}
.ws10_c00184{word-spacing:18.425600pt;}
.ws30_c00184{word-spacing:20.608000pt;}
.ws31_c00184{word-spacing:20.793600pt;}
.ws21_c00184{word-spacing:20.928000pt;}
.ws22_c00184{word-spacing:20.992000pt;}
.ws28_c00184{word-spacing:21.920000pt;}
.ws29_c00184{word-spacing:22.035200pt;}
.ws7_c00184{word-spacing:22.592000pt;}
.ws8_c00184{word-spacing:22.598400pt;}
.wsb_c00184{word-spacing:29.619200pt;}
.wsa_c00184{word-spacing:29.632000pt;}
.ws1d_c00184{word-spacing:31.750400pt;}
.ws1c_c00184{word-spacing:31.859200pt;}
.ws17_c00184{word-spacing:44.275200pt;}
.ws16_c00184{word-spacing:44.294400pt;}
.ws18_c00184{word-spacing:44.390400pt;}
._0_c00184{width:1.241600pt;}
.fs0_c00184{font-size:64.000000pt;}
.y0_c00184{bottom:0.000000pt;}
.y2_c00184{bottom:41.627067pt;}
.y1_c00184{bottom:60.027067pt;}
.y21_c00184{bottom:119.147067pt;}
.y20_c00184{bottom:146.827067pt;}
.y1f_c00184{bottom:182.427067pt;}
.y1e_c00184{bottom:210.027067pt;}
.y1d_c00184{bottom:237.627067pt;}
.y1c_c00184{bottom:265.227067pt;}
.y1b_c00184{bottom:292.827067pt;}
.y1a_c00184{bottom:320.347067pt;}
.y19_c00184{bottom:347.947067pt;}
.y18_c00184{bottom:383.547067pt;}
.y17_c00184{bottom:411.147067pt;}
.y16_c00184{bottom:438.747067pt;}
.y15_c00184{bottom:466.347067pt;}
.y14_c00184{bottom:493.947067pt;}
.y13_c00184{bottom:521.547067pt;}
.y12_c00184{bottom:549.147067pt;}
.y11_c00184{bottom:576.747067pt;}
.y10_c00184{bottom:604.347067pt;}
.yf_c00184{bottom:639.947067pt;}
.ye_c00184{bottom:667.547067pt;}
.yd_c00184{bottom:695.147067pt;}
.yc_c00184{bottom:722.747067pt;}
.yb_c00184{bottom:750.347067pt;}
.ya_c00184{bottom:777.947067pt;}
.y9_c00184{bottom:805.547067pt;}
.y8_c00184{bottom:833.147067pt;}
.y7_c00184{bottom:868.747067pt;}
.y6_c00184{bottom:904.347067pt;}
.y5_c00184{bottom:930.747067pt;}
.y4_c00184{bottom:957.147067pt;}
.y3_c00184{bottom:975.547067pt;}
.h1_c00184{height:56.156250pt;}
.h2_c00184{height:57.375000pt;}
.h3_c00184{height:66.750000pt;}
.h0_c00184{height:1122.666667pt;}
.w1_c00184{width:793.333333pt;}
.w0_c00184{width:793.626667pt;}
.x0_c00184{left:0.000000pt;}
.x2_c00184{left:151.200000pt;}
.x3_c00184{left:170.160000pt;}
.x1_c00184{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_abc38643dfec51908a727fde.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.093262;font-style:normal;font-weight:normal;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_5326b2086366e8ba246b29df.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00185;src:url('chunks/assets/font_bc0da8a187db320f6128afbf.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls8_c00185{letter-spacing:-0.072000px;}
.ls6_c00185{letter-spacing:-0.057600px;}
.ls7_c00185{letter-spacing:-0.050400px;}
.ls5_c00185{letter-spacing:-0.036000px;}
.ls9_c00185{letter-spacing:-0.028800px;}
.ls3_c00185{letter-spacing:-0.021600px;}
.ls2_c00185{letter-spacing:-0.014400px;}
.ls4_c00185{letter-spacing:-0.007200px;}
.ls1_c00185{letter-spacing:0.000000px;}
.ls0_c00185{letter-spacing:0.007200px;}
.lsa_c00185{letter-spacing:843.998400px;}
.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;}
}
.ws3_c00185{word-spacing:-4.888800px;}
.ws2_c00185{word-spacing:-4.874400px;}
.ws0_c00185{word-spacing:0.000000px;}
.ws11_c00185{word-spacing:0.172800px;}
.ws10_c00185{word-spacing:0.280800px;}
.wsd_c00185{word-spacing:1.267200px;}
.wsc_c00185{word-spacing:1.360800px;}
.ws6_c00185{word-spacing:1.814400px;}
.ws7_c00185{word-spacing:1.980000px;}
.ws5_c00185{word-spacing:1.994400px;}
.wsb_c00185{word-spacing:3.045600px;}
.wsa_c00185{word-spacing:3.088800px;}
.ws4_c00185{word-spacing:10.634400px;}
.wsf_c00185{word-spacing:12.398400px;}
.wse_c00185{word-spacing:12.499200px;}
.ws8_c00185{word-spacing:15.573600px;}
.ws9_c00185{word-spacing:15.696000px;}
.ws1_c00185{word-spacing:22.852800px;}
.fc0_c00185{color:rgb(0,0,0);}
.fs0_c00185{font-size:72.000000px;}
.y0_c00185{bottom:0.000000px;}
.y2_c00185{bottom:46.830450px;}
.y1_c00185{bottom:67.530450px;}
.yd_c00185{bottom:768.990450px;}
.yc_c00185{bottom:809.040450px;}
.yb_c00185{bottom:849.090450px;}
.ya_c00185{bottom:880.140450px;}
.y9_c00185{bottom:911.190450px;}
.y8_c00185{bottom:942.240450px;}
.y7_c00185{bottom:973.290450px;}
.y6_c00185{bottom:1004.340450px;}
.y5_c00185{bottom:1035.390450px;}
.y4_c00185{bottom:1066.440450px;}
.y3_c00185{bottom:1097.400450px;}
.h1_c00185{height:63.175781px;}
.h3_c00185{height:64.546875px;}
.h2_c00185{height:75.093750px;}
.h0_c00185{height:1263.000000px;}
.w1_c00185{width:892.500000px;}
.w0_c00185{width:892.830000px;}
.x0_c00185{left:0.000000px;}
.x2_c00185{left:127.620000px;}
.x1_c00185{left:695.880000px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls8_c00185{letter-spacing:-0.064000pt;}
.ls6_c00185{letter-spacing:-0.051200pt;}
.ls7_c00185{letter-spacing:-0.044800pt;}
.ls5_c00185{letter-spacing:-0.032000pt;}
.ls9_c00185{letter-spacing:-0.025600pt;}
.ls3_c00185{letter-spacing:-0.019200pt;}
.ls2_c00185{letter-spacing:-0.012800pt;}
.ls4_c00185{letter-spacing:-0.006400pt;}
.ls1_c00185{letter-spacing:0.000000pt;}
.ls0_c00185{letter-spacing:0.006400pt;}
.lsa_c00185{letter-spacing:750.220800pt;}
.ws3_c00185{word-spacing:-4.345600pt;}
.ws2_c00185{word-spacing:-4.332800pt;}
.ws0_c00185{word-spacing:0.000000pt;}
.ws11_c00185{word-spacing:0.153600pt;}
.ws10_c00185{word-spacing:0.249600pt;}
.wsd_c00185{word-spacing:1.126400pt;}
.wsc_c00185{word-spacing:1.209600pt;}
.ws6_c00185{word-spacing:1.612800pt;}
.ws7_c00185{word-spacing:1.760000pt;}
.ws5_c00185{word-spacing:1.772800pt;}
.wsb_c00185{word-spacing:2.707200pt;}
.wsa_c00185{word-spacing:2.745600pt;}
.ws4_c00185{word-spacing:9.452800pt;}
.wsf_c00185{word-spacing:11.020800pt;}
.wse_c00185{word-spacing:11.110400pt;}
.ws8_c00185{word-spacing:13.843200pt;}
.ws9_c00185{word-spacing:13.952000pt;}
.ws1_c00185{word-spacing:20.313600pt;}
.fs0_c00185{font-size:64.000000pt;}
.y0_c00185{bottom:0.000000pt;}
.y2_c00185{bottom:41.627067pt;}
.y1_c00185{bottom:60.027067pt;}
.yd_c00185{bottom:683.547067pt;}
.yc_c00185{bottom:719.147067pt;}
.yb_c00185{bottom:754.747067pt;}
.ya_c00185{bottom:782.347067pt;}
.y9_c00185{bottom:809.947067pt;}
.y8_c00185{bottom:837.547067pt;}
.y7_c00185{bottom:865.147067pt;}
.y6_c00185{bottom:892.747067pt;}
.y5_c00185{bottom:920.347067pt;}
.y4_c00185{bottom:947.947067pt;}
.y3_c00185{bottom:975.467067pt;}
.h1_c00185{height:56.156250pt;}
.h3_c00185{height:57.375000pt;}
.h2_c00185{height:66.750000pt;}
.h0_c00185{height:1122.666667pt;}
.w1_c00185{width:793.333333pt;}
.w0_c00185{width:793.626667pt;}
.x0_c00185{left:0.000000pt;}
.x2_c00185{left:113.440000pt;}
.x1_c00185{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8f7097210f098b3d500da0b4.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.093262;font-style:normal;font-weight:normal;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_27dbd7758ad7cc8f286c76fa.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00186;src:url('chunks/assets/font_66720462b40157f967b373ab.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00186;src:url('chunks/assets/font_cf4812302a62e6ac1eeb2af4.woff2')format("woff");}.ff4_c00186{font-family:ff4_c00186;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.lsa_c00186{letter-spacing:-0.122400px;}
.lsd_c00186{letter-spacing:-0.079200px;}
.ls11_c00186{letter-spacing:-0.072000px;}
.lsf_c00186{letter-spacing:-0.064800px;}
.lse_c00186{letter-spacing:-0.057600px;}
.ls12_c00186{letter-spacing:-0.050400px;}
.ls9_c00186{letter-spacing:-0.043200px;}
.ls5_c00186{letter-spacing:-0.036000px;}
.ls3_c00186{letter-spacing:-0.033552px;}
.lsc_c00186{letter-spacing:-0.028800px;}
.ls7_c00186{letter-spacing:-0.021600px;}
.lsb_c00186{letter-spacing:-0.014400px;}
.ls6_c00186{letter-spacing:-0.007200px;}
.ls2_c00186{letter-spacing:0.000000px;}
.ls10_c00186{letter-spacing:0.007200px;}
.ls8_c00186{letter-spacing:0.021600px;}
.ls0_c00186{letter-spacing:0.033552px;}
.ls4_c00186{letter-spacing:0.067104px;}
.ls1_c00186{letter-spacing:0.075492px;}
.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:-23.285088px;}
.ws20_c00186{word-spacing:-4.118400px;}
.ws1f_c00186{word-spacing:-4.082400px;}
.ws9_c00186{word-spacing:-2.253600px;}
.ws8_c00186{word-spacing:-2.239200px;}
.ws14_c00186{word-spacing:-1.627200px;}
.ws10_c00186{word-spacing:-1.245600px;}
.ws38_c00186{word-spacing:-0.885600px;}
.ws39_c00186{word-spacing:-0.864000px;}
.ws3_c00186{word-spacing:-0.050328px;}
.ws1_c00186{word-spacing:0.000000px;}
.ws2_c00186{word-spacing:0.016776px;}
.ws2f_c00186{word-spacing:0.165600px;}
.wsd_c00186{word-spacing:0.172800px;}
.ws1e_c00186{word-spacing:0.180000px;}
.ws1c_c00186{word-spacing:0.914400px;}
.ws1d_c00186{word-spacing:0.979200px;}
.ws2d_c00186{word-spacing:1.260000px;}
.ws2e_c00186{word-spacing:1.310400px;}
.ws32_c00186{word-spacing:1.569600px;}
.ws33_c00186{word-spacing:1.634400px;}
.ws30_c00186{word-spacing:1.951200px;}
.ws31_c00186{word-spacing:2.030400px;}
.ws16_c00186{word-spacing:2.714400px;}
.ws15_c00186{word-spacing:2.779200px;}
.wse_c00186{word-spacing:3.355200px;}
.wsf_c00186{word-spacing:3.369600px;}
.ws2b_c00186{word-spacing:7.344000px;}
.ws2c_c00186{word-spacing:7.423200px;}
.ws6_c00186{word-spacing:11.613600px;}
.ws7_c00186{word-spacing:11.700000px;}
.ws29_c00186{word-spacing:12.420000px;}
.ws28_c00186{word-spacing:12.434400px;}
.ws2a_c00186{word-spacing:12.650400px;}
.ws5_c00186{word-spacing:13.838400px;}
.ws4_c00186{word-spacing:13.874400px;}
.ws35_c00186{word-spacing:15.307200px;}
.ws34_c00186{word-spacing:15.328800px;}
.ws27_c00186{word-spacing:15.588000px;}
.ws26_c00186{word-spacing:15.652800px;}
.ws18_c00186{word-spacing:17.481600px;}
.ws17_c00186{word-spacing:17.560800px;}
.ws19_c00186{word-spacing:17.611200px;}
.ws37_c00186{word-spacing:17.776800px;}
.ws36_c00186{word-spacing:17.848800px;}
.ws1a_c00186{word-spacing:18.532800px;}
.ws1b_c00186{word-spacing:18.619200px;}
.ws22_c00186{word-spacing:19.987200px;}
.ws21_c00186{word-spacing:20.095200px;}
.ws23_c00186{word-spacing:20.347200px;}
.ws13_c00186{word-spacing:21.780000px;}
.ws12_c00186{word-spacing:22.104000px;}
.ws11_c00186{word-spacing:22.140000px;}
.ws25_c00186{word-spacing:22.845600px;}
.ws24_c00186{word-spacing:22.867200px;}
.wsc_c00186{word-spacing:42.998400px;}
.wsb_c00186{word-spacing:43.034400px;}
.wsa_c00186{word-spacing:43.041600px;}
._1_c00186{width:1.173600px;}
._0_c00186{width:9.763632px;}
.fc0_c00186{color:rgb(0,0,0);}
.fs0_c00186{font-size:72.000000px;}
.fs1_c00186{font-size:83.880000px;}
.y0_c00186{bottom:0.000000px;}
.y2_c00186{bottom:46.830450px;}
.y1_c00186{bottom:67.530450px;}
.y25_c00186{bottom:138.900450px;}
.y24_c00186{bottom:169.950450px;}
.y23_c00186{bottom:201.000450px;}
.y22_c00186{bottom:232.050450px;}
.y21_c00186{bottom:263.100450px;}
.y20_c00186{bottom:303.150450px;}
.y1f_c00186{bottom:332.850450px;}
.y1e_c00186{bottom:353.550450px;}
.y1d_c00186{bottom:374.250450px;}
.y1c_c00186{bottom:394.950450px;}
.y1b_c00186{bottom:415.650450px;}
.y1a_c00186{bottom:436.350450px;}
.y19_c00186{bottom:457.050450px;}
.y18_c00186{bottom:477.750450px;}
.y17_c00186{bottom:498.450450px;}
.y16_c00186{bottom:538.500450px;}
.y15_c00186{bottom:569.550450px;}
.y14_c00186{bottom:600.600450px;}
.y13_c00186{bottom:631.650450px;}
.y12_c00186{bottom:662.700450px;}
.y11_c00186{bottom:693.750450px;}
.y10_c00186{bottom:723.360450px;}
.yf_c00186{bottom:753.060450px;}
.ye_c00186{bottom:773.760450px;}
.yd_c00186{bottom:794.460450px;}
.yc_c00186{bottom:815.160450px;}
.yb_c00186{bottom:835.860450px;}
.ya_c00186{bottom:875.910450px;}
.y9_c00186{bottom:906.960450px;}
.y8_c00186{bottom:938.010450px;}
.y7_c00186{bottom:969.060450px;}
.y6_c00186{bottom:1000.110450px;}
.y5_c00186{bottom:1040.160450px;}
.y4_c00186{bottom:1070.404950px;}
.y3_c00186{bottom:1094.520450px;}
.h1_c00186{height:63.175781px;}
.h3_c00186{height:64.546875px;}
.h2_c00186{height:87.484219px;}
.h0_c00186{height:1263.000000px;}
.w1_c00186{width:892.500000px;}
.w0_c00186{width:892.830000px;}
.x0_c00186{left:0.000000px;}
.x2_c00186{left:170.100000px;}
.x5_c00186{left:191.430000px;}
.x3_c00186{left:251.100000px;}
.x4_c00186{left:299.708460px;}
.x1_c00186{left:738.360000px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.lsa_c00186{letter-spacing:-0.108800pt;}
.lsd_c00186{letter-spacing:-0.070400pt;}
.ls11_c00186{letter-spacing:-0.064000pt;}
.lsf_c00186{letter-spacing:-0.057600pt;}
.lse_c00186{letter-spacing:-0.051200pt;}
.ls12_c00186{letter-spacing:-0.044800pt;}
.ls9_c00186{letter-spacing:-0.038400pt;}
.ls5_c00186{letter-spacing:-0.032000pt;}
.ls3_c00186{letter-spacing:-0.029824pt;}
.lsc_c00186{letter-spacing:-0.025600pt;}
.ls7_c00186{letter-spacing:-0.019200pt;}
.lsb_c00186{letter-spacing:-0.012800pt;}
.ls6_c00186{letter-spacing:-0.006400pt;}
.ls2_c00186{letter-spacing:0.000000pt;}
.ls10_c00186{letter-spacing:0.006400pt;}
.ls8_c00186{letter-spacing:0.019200pt;}
.ls0_c00186{letter-spacing:0.029824pt;}
.ls4_c00186{letter-spacing:0.059648pt;}
.ls1_c00186{letter-spacing:0.067104pt;}
.ws0_c00186{word-spacing:-20.697856pt;}
.ws20_c00186{word-spacing:-3.660800pt;}
.ws1f_c00186{word-spacing:-3.628800pt;}
.ws9_c00186{word-spacing:-2.003200pt;}
.ws8_c00186{word-spacing:-1.990400pt;}
.ws14_c00186{word-spacing:-1.446400pt;}
.ws10_c00186{word-spacing:-1.107200pt;}
.ws38_c00186{word-spacing:-0.787200pt;}
.ws39_c00186{word-spacing:-0.768000pt;}
.ws3_c00186{word-spacing:-0.044736pt;}
.ws1_c00186{word-spacing:0.000000pt;}
.ws2_c00186{word-spacing:0.014912pt;}
.ws2f_c00186{word-spacing:0.147200pt;}
.wsd_c00186{word-spacing:0.153600pt;}
.ws1e_c00186{word-spacing:0.160000pt;}
.ws1c_c00186{word-spacing:0.812800pt;}
.ws1d_c00186{word-spacing:0.870400pt;}
.ws2d_c00186{word-spacing:1.120000pt;}
.ws2e_c00186{word-spacing:1.164800pt;}
.ws32_c00186{word-spacing:1.395200pt;}
.ws33_c00186{word-spacing:1.452800pt;}
.ws30_c00186{word-spacing:1.734400pt;}
.ws31_c00186{word-spacing:1.804800pt;}
.ws16_c00186{word-spacing:2.412800pt;}
.ws15_c00186{word-spacing:2.470400pt;}
.wse_c00186{word-spacing:2.982400pt;}
.wsf_c00186{word-spacing:2.995200pt;}
.ws2b_c00186{word-spacing:6.528000pt;}
.ws2c_c00186{word-spacing:6.598400pt;}
.ws6_c00186{word-spacing:10.323200pt;}
.ws7_c00186{word-spacing:10.400000pt;}
.ws29_c00186{word-spacing:11.040000pt;}
.ws28_c00186{word-spacing:11.052800pt;}
.ws2a_c00186{word-spacing:11.244800pt;}
.ws5_c00186{word-spacing:12.300800pt;}
.ws4_c00186{word-spacing:12.332800pt;}
.ws35_c00186{word-spacing:13.606400pt;}
.ws34_c00186{word-spacing:13.625600pt;}
.ws27_c00186{word-spacing:13.856000pt;}
.ws26_c00186{word-spacing:13.913600pt;}
.ws18_c00186{word-spacing:15.539200pt;}
.ws17_c00186{word-spacing:15.609600pt;}
.ws19_c00186{word-spacing:15.654400pt;}
.ws37_c00186{word-spacing:15.801600pt;}
.ws36_c00186{word-spacing:15.865600pt;}
.ws1a_c00186{word-spacing:16.473600pt;}
.ws1b_c00186{word-spacing:16.550400pt;}
.ws22_c00186{word-spacing:17.766400pt;}
.ws21_c00186{word-spacing:17.862400pt;}
.ws23_c00186{word-spacing:18.086400pt;}
.ws13_c00186{word-spacing:19.360000pt;}
.ws12_c00186{word-spacing:19.648000pt;}
.ws11_c00186{word-spacing:19.680000pt;}
.ws25_c00186{word-spacing:20.307200pt;}
.ws24_c00186{word-spacing:20.326400pt;}
.wsc_c00186{word-spacing:38.220800pt;}
.wsb_c00186{word-spacing:38.252800pt;}
.wsa_c00186{word-spacing:38.259200pt;}
._1_c00186{width:1.043200pt;}
._0_c00186{width:8.678784pt;}
.fs0_c00186{font-size:64.000000pt;}
.fs1_c00186{font-size:74.560000pt;}
.y0_c00186{bottom:0.000000pt;}
.y2_c00186{bottom:41.627067pt;}
.y1_c00186{bottom:60.027067pt;}
.y25_c00186{bottom:123.467067pt;}
.y24_c00186{bottom:151.067067pt;}
.y23_c00186{bottom:178.667067pt;}
.y22_c00186{bottom:206.267067pt;}
.y21_c00186{bottom:233.867067pt;}
.y20_c00186{bottom:269.467067pt;}
.y1f_c00186{bottom:295.867067pt;}
.y1e_c00186{bottom:314.267067pt;}
.y1d_c00186{bottom:332.667067pt;}
.y1c_c00186{bottom:351.067067pt;}
.y1b_c00186{bottom:369.467067pt;}
.y1a_c00186{bottom:387.867067pt;}
.y19_c00186{bottom:406.267067pt;}
.y18_c00186{bottom:424.667067pt;}
.y17_c00186{bottom:443.067067pt;}
.y16_c00186{bottom:478.667067pt;}
.y15_c00186{bottom:506.267067pt;}
.y14_c00186{bottom:533.867067pt;}
.y13_c00186{bottom:561.467067pt;}
.y12_c00186{bottom:589.067067pt;}
.y11_c00186{bottom:616.667067pt;}
.y10_c00186{bottom:642.987067pt;}
.yf_c00186{bottom:669.387067pt;}
.ye_c00186{bottom:687.787067pt;}
.yd_c00186{bottom:706.187067pt;}
.yc_c00186{bottom:724.587067pt;}
.yb_c00186{bottom:742.987067pt;}
.ya_c00186{bottom:778.587067pt;}
.y9_c00186{bottom:806.187067pt;}
.y8_c00186{bottom:833.787067pt;}
.y7_c00186{bottom:861.387067pt;}
.y6_c00186{bottom:888.987067pt;}
.y5_c00186{bottom:924.587067pt;}
.y4_c00186{bottom:951.471067pt;}
.y3_c00186{bottom:972.907067pt;}
.h1_c00186{height:56.156250pt;}
.h3_c00186{height:57.375000pt;}
.h2_c00186{height:77.763750pt;}
.h0_c00186{height:1122.666667pt;}
.w1_c00186{width:793.333333pt;}
.w0_c00186{width:793.626667pt;}
.x0_c00186{left:0.000000pt;}
.x2_c00186{left:151.200000pt;}
.x5_c00186{left:170.160000pt;}
.x3_c00186{left:223.200000pt;}
.x4_c00186{left:266.407520pt;}
.x1_c00186{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_120594a67f6b1ac35edcc433.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.093262;font-style:normal;font-weight:normal;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_079a981ccfcb462e34be6c6e.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.106934;font-style:normal;font-weight:normal;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_580777a6eae7ab5f35cc7038.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00187{letter-spacing:-0.100800px;}
.lse_c00187{letter-spacing:-0.086400px;}
.lsd_c00187{letter-spacing:-0.064800px;}
.ls9_c00187{letter-spacing:-0.057600px;}
.ls3_c00187{letter-spacing:-0.050400px;}
.ls6_c00187{letter-spacing:-0.043200px;}
.ls7_c00187{letter-spacing:-0.036000px;}
.ls5_c00187{letter-spacing:-0.028800px;}
.lsa_c00187{letter-spacing:-0.021600px;}
.lsb_c00187{letter-spacing:-0.014400px;}
.ls4_c00187{letter-spacing:-0.007200px;}
.ls2_c00187{letter-spacing:0.000000px;}
.ls0_c00187{letter-spacing:0.007200px;}
.ls1_c00187{letter-spacing:0.014400px;}
.ls8_c00187{letter-spacing:0.028800px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00187{word-spacing:-20.030400px;}
.ws1_c00187{word-spacing:-19.994400px;}
.wsd_c00187{word-spacing:-1.980000px;}
.wsc_c00187{word-spacing:-1.944000px;}
.ws26_c00187{word-spacing:-0.504000px;}
.ws25_c00187{word-spacing:-0.496800px;}
.ws30_c00187{word-spacing:-0.021600px;}
.ws2_c00187{word-spacing:0.000000px;}
.wsb_c00187{word-spacing:0.136800px;}
.ws20_c00187{word-spacing:0.165600px;}
.ws19_c00187{word-spacing:0.172800px;}
.ws24_c00187{word-spacing:0.180000px;}
.ws10_c00187{word-spacing:0.417600px;}
.ws11_c00187{word-spacing:0.540000px;}
.ws1e_c00187{word-spacing:0.921600px;}
.ws18_c00187{word-spacing:0.928800px;}
.ws1f_c00187{word-spacing:0.936000px;}
.ws1b_c00187{word-spacing:3.009600px;}
.ws1a_c00187{word-spacing:3.074400px;}
.ws3_c00187{word-spacing:4.528800px;}
.ws1c_c00187{word-spacing:4.816800px;}
.ws1d_c00187{word-spacing:4.867200px;}
.ws29_c00187{word-spacing:5.572800px;}
.ws12_c00187{word-spacing:5.580000px;}
.ws28_c00187{word-spacing:5.594400px;}
.ws2b_c00187{word-spacing:6.681600px;}
.ws2a_c00187{word-spacing:6.688800px;}
.ws13_c00187{word-spacing:8.100000px;}
.ws15_c00187{word-spacing:8.712000px;}
.ws14_c00187{word-spacing:8.841600px;}
.ws23_c00187{word-spacing:9.568800px;}
.wsa_c00187{word-spacing:10.929600px;}
.ws9_c00187{word-spacing:10.951200px;}
.ws8_c00187{word-spacing:11.109600px;}
.wsf_c00187{word-spacing:11.325600px;}
.wse_c00187{word-spacing:11.340000px;}
.ws7_c00187{word-spacing:11.354400px;}
.ws6_c00187{word-spacing:11.361600px;}
.ws21_c00187{word-spacing:12.441600px;}
.ws22_c00187{word-spacing:12.513600px;}
.ws27_c00187{word-spacing:16.351200px;}
.ws2f_c00187{word-spacing:16.495200px;}
.ws2c_c00187{word-spacing:17.488800px;}
.ws2d_c00187{word-spacing:17.496000px;}
.ws2e_c00187{word-spacing:19.260000px;}
.ws17_c00187{word-spacing:19.274400px;}
.ws16_c00187{word-spacing:19.296000px;}
.ws4_c00187{word-spacing:22.485600px;}
.ws5_c00187{word-spacing:22.507200px;}
._0_c00187{width:1.152000px;}
._1_c00187{width:16.459200px;}
.fc0_c00187{color:rgb(0,0,0);}
.fs0_c00187{font-size:72.000000px;}
.y0_c00187{bottom:0.000000px;}
.y2_c00187{bottom:46.830450px;}
.y1_c00187{bottom:67.530450px;}
.y21_c00187{bottom:153.480450px;}
.y20_c00187{bottom:184.530450px;}
.y1f_c00187{bottom:215.580450px;}
.y1e_c00187{bottom:246.630450px;}
.y1d_c00187{bottom:277.680450px;}
.y1c_c00187{bottom:308.730450px;}
.y1b_c00187{bottom:339.690450px;}
.y1a_c00187{bottom:370.740450px;}
.y19_c00187{bottom:410.790450px;}
.y18_c00187{bottom:441.840450px;}
.y17_c00187{bottom:472.890450px;}
.y16_c00187{bottom:512.940450px;}
.y15_c00187{bottom:542.640450px;}
.y14_c00187{bottom:563.340450px;}
.y13_c00187{bottom:584.040450px;}
.y12_c00187{bottom:604.740450px;}
.y11_c00187{bottom:644.790450px;}
.y10_c00187{bottom:675.840450px;}
.yf_c00187{bottom:715.890450px;}
.ye_c00187{bottom:746.940450px;}
.yd_c00187{bottom:777.990450px;}
.yc_c00187{bottom:809.040450px;}
.yb_c00187{bottom:840.090450px;}
.ya_c00187{bottom:871.140450px;}
.y9_c00187{bottom:902.190450px;}
.y8_c00187{bottom:933.240450px;}
.y7_c00187{bottom:973.290450px;}
.y6_c00187{bottom:1004.340450px;}
.y5_c00187{bottom:1035.390450px;}
.y4_c00187{bottom:1066.440450px;}
.y3_c00187{bottom:1097.490450px;}
.h1_c00187{height:63.175781px;}
.h2_c00187{height:64.546875px;}
.h3_c00187{height:75.093750px;}
.h0_c00187{height:1263.000000px;}
.w1_c00187{width:892.500000px;}
.w0_c00187{width:892.830000px;}
.x0_c00187{left:0.000000px;}
.x2_c00187{left:127.620000px;}
.x3_c00187{left:148.950000px;}
.x1_c00187{left:695.880000px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.lsc_c00187{letter-spacing:-0.089600pt;}
.lse_c00187{letter-spacing:-0.076800pt;}
.lsd_c00187{letter-spacing:-0.057600pt;}
.ls9_c00187{letter-spacing:-0.051200pt;}
.ls3_c00187{letter-spacing:-0.044800pt;}
.ls6_c00187{letter-spacing:-0.038400pt;}
.ls7_c00187{letter-spacing:-0.032000pt;}
.ls5_c00187{letter-spacing:-0.025600pt;}
.lsa_c00187{letter-spacing:-0.019200pt;}
.lsb_c00187{letter-spacing:-0.012800pt;}
.ls4_c00187{letter-spacing:-0.006400pt;}
.ls2_c00187{letter-spacing:0.000000pt;}
.ls0_c00187{letter-spacing:0.006400pt;}
.ls1_c00187{letter-spacing:0.012800pt;}
.ls8_c00187{letter-spacing:0.025600pt;}
.ws0_c00187{word-spacing:-17.804800pt;}
.ws1_c00187{word-spacing:-17.772800pt;}
.wsd_c00187{word-spacing:-1.760000pt;}
.wsc_c00187{word-spacing:-1.728000pt;}
.ws26_c00187{word-spacing:-0.448000pt;}
.ws25_c00187{word-spacing:-0.441600pt;}
.ws30_c00187{word-spacing:-0.019200pt;}
.ws2_c00187{word-spacing:0.000000pt;}
.wsb_c00187{word-spacing:0.121600pt;}
.ws20_c00187{word-spacing:0.147200pt;}
.ws19_c00187{word-spacing:0.153600pt;}
.ws24_c00187{word-spacing:0.160000pt;}
.ws10_c00187{word-spacing:0.371200pt;}
.ws11_c00187{word-spacing:0.480000pt;}
.ws1e_c00187{word-spacing:0.819200pt;}
.ws18_c00187{word-spacing:0.825600pt;}
.ws1f_c00187{word-spacing:0.832000pt;}
.ws1b_c00187{word-spacing:2.675200pt;}
.ws1a_c00187{word-spacing:2.732800pt;}
.ws3_c00187{word-spacing:4.025600pt;}
.ws1c_c00187{word-spacing:4.281600pt;}
.ws1d_c00187{word-spacing:4.326400pt;}
.ws29_c00187{word-spacing:4.953600pt;}
.ws12_c00187{word-spacing:4.960000pt;}
.ws28_c00187{word-spacing:4.972800pt;}
.ws2b_c00187{word-spacing:5.939200pt;}
.ws2a_c00187{word-spacing:5.945600pt;}
.ws13_c00187{word-spacing:7.200000pt;}
.ws15_c00187{word-spacing:7.744000pt;}
.ws14_c00187{word-spacing:7.859200pt;}
.ws23_c00187{word-spacing:8.505600pt;}
.wsa_c00187{word-spacing:9.715200pt;}
.ws9_c00187{word-spacing:9.734400pt;}
.ws8_c00187{word-spacing:9.875200pt;}
.wsf_c00187{word-spacing:10.067200pt;}
.wse_c00187{word-spacing:10.080000pt;}
.ws7_c00187{word-spacing:10.092800pt;}
.ws6_c00187{word-spacing:10.099200pt;}
.ws21_c00187{word-spacing:11.059200pt;}
.ws22_c00187{word-spacing:11.123200pt;}
.ws27_c00187{word-spacing:14.534400pt;}
.ws2f_c00187{word-spacing:14.662400pt;}
.ws2c_c00187{word-spacing:15.545600pt;}
.ws2d_c00187{word-spacing:15.552000pt;}
.ws2e_c00187{word-spacing:17.120000pt;}
.ws17_c00187{word-spacing:17.132800pt;}
.ws16_c00187{word-spacing:17.152000pt;}
.ws4_c00187{word-spacing:19.987200pt;}
.ws5_c00187{word-spacing:20.006400pt;}
._0_c00187{width:1.024000pt;}
._1_c00187{width:14.630400pt;}
.fs0_c00187{font-size:64.000000pt;}
.y0_c00187{bottom:0.000000pt;}
.y2_c00187{bottom:41.627067pt;}
.y1_c00187{bottom:60.027067pt;}
.y21_c00187{bottom:136.427067pt;}
.y20_c00187{bottom:164.027067pt;}
.y1f_c00187{bottom:191.627067pt;}
.y1e_c00187{bottom:219.227067pt;}
.y1d_c00187{bottom:246.827067pt;}
.y1c_c00187{bottom:274.427067pt;}
.y1b_c00187{bottom:301.947067pt;}
.y1a_c00187{bottom:329.547067pt;}
.y19_c00187{bottom:365.147067pt;}
.y18_c00187{bottom:392.747067pt;}
.y17_c00187{bottom:420.347067pt;}
.y16_c00187{bottom:455.947067pt;}
.y15_c00187{bottom:482.347067pt;}
.y14_c00187{bottom:500.747067pt;}
.y13_c00187{bottom:519.147067pt;}
.y12_c00187{bottom:537.547067pt;}
.y11_c00187{bottom:573.147067pt;}
.y10_c00187{bottom:600.747067pt;}
.yf_c00187{bottom:636.347067pt;}
.ye_c00187{bottom:663.947067pt;}
.yd_c00187{bottom:691.547067pt;}
.yc_c00187{bottom:719.147067pt;}
.yb_c00187{bottom:746.747067pt;}
.ya_c00187{bottom:774.347067pt;}
.y9_c00187{bottom:801.947067pt;}
.y8_c00187{bottom:829.547067pt;}
.y7_c00187{bottom:865.147067pt;}
.y6_c00187{bottom:892.747067pt;}
.y5_c00187{bottom:920.347067pt;}
.y4_c00187{bottom:947.947067pt;}
.y3_c00187{bottom:975.547067pt;}
.h1_c00187{height:56.156250pt;}
.h2_c00187{height:57.375000pt;}
.h3_c00187{height:66.750000pt;}
.h0_c00187{height:1122.666667pt;}
.w1_c00187{width:793.333333pt;}
.w0_c00187{width:793.626667pt;}
.x0_c00187{left:0.000000pt;}
.x2_c00187{left:113.440000pt;}
.x3_c00187{left:132.400000pt;}
.x1_c00187{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eb926c30d3df05afdff4a1ab.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.093262;font-style:normal;font-weight:normal;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_7d996a35ab4ece18f7db0a25.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.lsc_c00188{letter-spacing:-0.100800px;}
.lsb_c00188{letter-spacing:-0.079200px;}
.ls9_c00188{letter-spacing:-0.064800px;}
.ls8_c00188{letter-spacing:-0.057600px;}
.ls7_c00188{letter-spacing:-0.050400px;}
.ls5_c00188{letter-spacing:-0.043200px;}
.ls4_c00188{letter-spacing:-0.036000px;}
.ls3_c00188{letter-spacing:-0.028800px;}
.ls6_c00188{letter-spacing:-0.021600px;}
.ls1_c00188{letter-spacing:-0.014400px;}
.ls2_c00188{letter-spacing:-0.007200px;}
.ls0_c00188{letter-spacing:0.000000px;}
.lsa_c00188{letter-spacing:0.057600px;}
.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;}
}
.ws32_c00188{word-spacing:-4.147200px;}
.ws31_c00188{word-spacing:-4.132800px;}
.ws2b_c00188{word-spacing:-3.708000px;}
.ws37_c00188{word-spacing:-3.693600px;}
.ws2a_c00188{word-spacing:-3.664800px;}
.ws35_c00188{word-spacing:-3.499200px;}
.ws36_c00188{word-spacing:-3.391200px;}
.ws2f_c00188{word-spacing:-3.067200px;}
.ws30_c00188{word-spacing:-3.045600px;}
.ws16_c00188{word-spacing:-2.707200px;}
.ws14_c00188{word-spacing:-2.700000px;}
.ws15_c00188{word-spacing:-2.678400px;}
.ws17_c00188{word-spacing:-2.656800px;}
.ws8_c00188{word-spacing:-2.340000px;}
.ws7_c00188{word-spacing:-2.318400px;}
.ws1d_c00188{word-spacing:-2.001600px;}
.ws1c_c00188{word-spacing:-1.958400px;}
.ws1a_c00188{word-spacing:-0.972000px;}
.ws1b_c00188{word-spacing:-0.842400px;}
.ws25_c00188{word-spacing:-0.266400px;}
.ws24_c00188{word-spacing:-0.100800px;}
.ws0_c00188{word-spacing:0.000000px;}
.ws5_c00188{word-spacing:0.172800px;}
.wsf_c00188{word-spacing:0.180000px;}
.ws2c_c00188{word-spacing:0.201600px;}
.wse_c00188{word-spacing:0.388800px;}
.ws6_c00188{word-spacing:0.554400px;}
.ws18_c00188{word-spacing:2.700000px;}
.ws19_c00188{word-spacing:4.514400px;}
.ws1_c00188{word-spacing:5.212800px;}
.ws4_c00188{word-spacing:5.587200px;}
.ws3_c00188{word-spacing:5.659200px;}
.ws28_c00188{word-spacing:5.932800px;}
.ws29_c00188{word-spacing:5.940000px;}
.ws11_c00188{word-spacing:6.674400px;}
.ws10_c00188{word-spacing:6.696000px;}
.ws34_c00188{word-spacing:7.315200px;}
.ws33_c00188{word-spacing:7.322400px;}
.ws2_c00188{word-spacing:7.372800px;}
.ws21_c00188{word-spacing:10.159200px;}
.ws20_c00188{word-spacing:10.296000px;}
.wsa_c00188{word-spacing:15.559200px;}
.ws9_c00188{word-spacing:15.652800px;}
.wsb_c00188{word-spacing:15.861600px;}
.ws26_c00188{word-spacing:18.144000px;}
.ws27_c00188{word-spacing:18.201600px;}
.ws12_c00188{word-spacing:27.878400px;}
.ws13_c00188{word-spacing:27.986400px;}
.ws2d_c00188{word-spacing:30.434400px;}
.ws2e_c00188{word-spacing:30.441600px;}
.ws1f_c00188{word-spacing:38.678400px;}
.ws1e_c00188{word-spacing:38.700000px;}
.wsd_c00188{word-spacing:41.040000px;}
.wsc_c00188{word-spacing:41.205600px;}
.ws22_c00188{word-spacing:41.810400px;}
.ws23_c00188{word-spacing:41.954400px;}
._0_c00188{width:1.008000px;}
.fc0_c00188{color:rgb(0,0,0);}
.fs0_c00188{font-size:72.000000px;}
.y0_c00188{bottom:0.000000px;}
.y2_c00188{bottom:46.830450px;}
.y1_c00188{bottom:67.530450px;}
.y26_c00188{bottom:141.780450px;}
.y25_c00188{bottom:162.480450px;}
.y24_c00188{bottom:183.180450px;}
.y23_c00188{bottom:203.880450px;}
.y22_c00188{bottom:224.580450px;}
.y21_c00188{bottom:245.280450px;}
.y20_c00188{bottom:265.980450px;}
.y1f_c00188{bottom:286.680450px;}
.y1e_c00188{bottom:307.380450px;}
.y1d_c00188{bottom:328.080450px;}
.y1c_c00188{bottom:348.690450px;}
.y1b_c00188{bottom:369.390450px;}
.y1a_c00188{bottom:390.090450px;}
.y19_c00188{bottom:430.140450px;}
.y18_c00188{bottom:461.190450px;}
.y17_c00188{bottom:492.240450px;}
.y16_c00188{bottom:523.290450px;}
.y15_c00188{bottom:554.340450px;}
.y14_c00188{bottom:585.390450px;}
.y13_c00188{bottom:616.440450px;}
.y12_c00188{bottom:647.490450px;}
.y11_c00188{bottom:687.540450px;}
.y10_c00188{bottom:717.240450px;}
.yf_c00188{bottom:737.940450px;}
.ye_c00188{bottom:758.640450px;}
.yd_c00188{bottom:779.340450px;}
.yc_c00188{bottom:800.040450px;}
.yb_c00188{bottom:840.090450px;}
.ya_c00188{bottom:871.140450px;}
.y9_c00188{bottom:902.190450px;}
.y8_c00188{bottom:933.240450px;}
.y7_c00188{bottom:964.290450px;}
.y6_c00188{bottom:1004.340450px;}
.y5_c00188{bottom:1035.390450px;}
.y4_c00188{bottom:1066.440450px;}
.y3_c00188{bottom:1097.490450px;}
.h1_c00188{height:63.175781px;}
.h2_c00188{height:64.546875px;}
.h0_c00188{height:1263.000000px;}
.w1_c00188{width:892.500000px;}
.w0_c00188{width:892.830000px;}
.x0_c00188{left:0.000000px;}
.x2_c00188{left:170.100000px;}
.x3_c00188{left:191.430000px;}
.x1_c00188{left:738.360000px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.lsc_c00188{letter-spacing:-0.089600pt;}
.lsb_c00188{letter-spacing:-0.070400pt;}
.ls9_c00188{letter-spacing:-0.057600pt;}
.ls8_c00188{letter-spacing:-0.051200pt;}
.ls7_c00188{letter-spacing:-0.044800pt;}
.ls5_c00188{letter-spacing:-0.038400pt;}
.ls4_c00188{letter-spacing:-0.032000pt;}
.ls3_c00188{letter-spacing:-0.025600pt;}
.ls6_c00188{letter-spacing:-0.019200pt;}
.ls1_c00188{letter-spacing:-0.012800pt;}
.ls2_c00188{letter-spacing:-0.006400pt;}
.ls0_c00188{letter-spacing:0.000000pt;}
.lsa_c00188{letter-spacing:0.051200pt;}
.ws32_c00188{word-spacing:-3.686400pt;}
.ws31_c00188{word-spacing:-3.673600pt;}
.ws2b_c00188{word-spacing:-3.296000pt;}
.ws37_c00188{word-spacing:-3.283200pt;}
.ws2a_c00188{word-spacing:-3.257600pt;}
.ws35_c00188{word-spacing:-3.110400pt;}
.ws36_c00188{word-spacing:-3.014400pt;}
.ws2f_c00188{word-spacing:-2.726400pt;}
.ws30_c00188{word-spacing:-2.707200pt;}
.ws16_c00188{word-spacing:-2.406400pt;}
.ws14_c00188{word-spacing:-2.400000pt;}
.ws15_c00188{word-spacing:-2.380800pt;}
.ws17_c00188{word-spacing:-2.361600pt;}
.ws8_c00188{word-spacing:-2.080000pt;}
.ws7_c00188{word-spacing:-2.060800pt;}
.ws1d_c00188{word-spacing:-1.779200pt;}
.ws1c_c00188{word-spacing:-1.740800pt;}
.ws1a_c00188{word-spacing:-0.864000pt;}
.ws1b_c00188{word-spacing:-0.748800pt;}
.ws25_c00188{word-spacing:-0.236800pt;}
.ws24_c00188{word-spacing:-0.089600pt;}
.ws0_c00188{word-spacing:0.000000pt;}
.ws5_c00188{word-spacing:0.153600pt;}
.wsf_c00188{word-spacing:0.160000pt;}
.ws2c_c00188{word-spacing:0.179200pt;}
.wse_c00188{word-spacing:0.345600pt;}
.ws6_c00188{word-spacing:0.492800pt;}
.ws18_c00188{word-spacing:2.400000pt;}
.ws19_c00188{word-spacing:4.012800pt;}
.ws1_c00188{word-spacing:4.633600pt;}
.ws4_c00188{word-spacing:4.966400pt;}
.ws3_c00188{word-spacing:5.030400pt;}
.ws28_c00188{word-spacing:5.273600pt;}
.ws29_c00188{word-spacing:5.280000pt;}
.ws11_c00188{word-spacing:5.932800pt;}
.ws10_c00188{word-spacing:5.952000pt;}
.ws34_c00188{word-spacing:6.502400pt;}
.ws33_c00188{word-spacing:6.508800pt;}
.ws2_c00188{word-spacing:6.553600pt;}
.ws21_c00188{word-spacing:9.030400pt;}
.ws20_c00188{word-spacing:9.152000pt;}
.wsa_c00188{word-spacing:13.830400pt;}
.ws9_c00188{word-spacing:13.913600pt;}
.wsb_c00188{word-spacing:14.099200pt;}
.ws26_c00188{word-spacing:16.128000pt;}
.ws27_c00188{word-spacing:16.179200pt;}
.ws12_c00188{word-spacing:24.780800pt;}
.ws13_c00188{word-spacing:24.876800pt;}
.ws2d_c00188{word-spacing:27.052800pt;}
.ws2e_c00188{word-spacing:27.059200pt;}
.ws1f_c00188{word-spacing:34.380800pt;}
.ws1e_c00188{word-spacing:34.400000pt;}
.wsd_c00188{word-spacing:36.480000pt;}
.wsc_c00188{word-spacing:36.627200pt;}
.ws22_c00188{word-spacing:37.164800pt;}
.ws23_c00188{word-spacing:37.292800pt;}
._0_c00188{width:0.896000pt;}
.fs0_c00188{font-size:64.000000pt;}
.y0_c00188{bottom:0.000000pt;}
.y2_c00188{bottom:41.627067pt;}
.y1_c00188{bottom:60.027067pt;}
.y26_c00188{bottom:126.027067pt;}
.y25_c00188{bottom:144.427067pt;}
.y24_c00188{bottom:162.827067pt;}
.y23_c00188{bottom:181.227067pt;}
.y22_c00188{bottom:199.627067pt;}
.y21_c00188{bottom:218.027067pt;}
.y20_c00188{bottom:236.427067pt;}
.y1f_c00188{bottom:254.827067pt;}
.y1e_c00188{bottom:273.227067pt;}
.y1d_c00188{bottom:291.627067pt;}
.y1c_c00188{bottom:309.947067pt;}
.y1b_c00188{bottom:328.347067pt;}
.y1a_c00188{bottom:346.747067pt;}
.y19_c00188{bottom:382.347067pt;}
.y18_c00188{bottom:409.947067pt;}
.y17_c00188{bottom:437.547067pt;}
.y16_c00188{bottom:465.147067pt;}
.y15_c00188{bottom:492.747067pt;}
.y14_c00188{bottom:520.347067pt;}
.y13_c00188{bottom:547.947067pt;}
.y12_c00188{bottom:575.547067pt;}
.y11_c00188{bottom:611.147067pt;}
.y10_c00188{bottom:637.547067pt;}
.yf_c00188{bottom:655.947067pt;}
.ye_c00188{bottom:674.347067pt;}
.yd_c00188{bottom:692.747067pt;}
.yc_c00188{bottom:711.147067pt;}
.yb_c00188{bottom:746.747067pt;}
.ya_c00188{bottom:774.347067pt;}
.y9_c00188{bottom:801.947067pt;}
.y8_c00188{bottom:829.547067pt;}
.y7_c00188{bottom:857.147067pt;}
.y6_c00188{bottom:892.747067pt;}
.y5_c00188{bottom:920.347067pt;}
.y4_c00188{bottom:947.947067pt;}
.y3_c00188{bottom:975.547067pt;}
.h1_c00188{height:56.156250pt;}
.h2_c00188{height:57.375000pt;}
.h0_c00188{height:1122.666667pt;}
.w1_c00188{width:793.333333pt;}
.w0_c00188{width:793.626667pt;}
.x0_c00188{left:0.000000pt;}
.x2_c00188{left:151.200000pt;}
.x3_c00188{left:170.160000pt;}
.x1_c00188{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ef281ba2734bd3d0161fb39d.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.093262;font-style:normal;font-weight:normal;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_4b70c9a03fd219f2698ea558.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.ls7_c00189{letter-spacing:-0.086400px;}
.lsd_c00189{letter-spacing:-0.072000px;}
.ls5_c00189{letter-spacing:-0.064800px;}
.lsb_c00189{letter-spacing:-0.057600px;}
.ls6_c00189{letter-spacing:-0.050400px;}
.lsa_c00189{letter-spacing:-0.043200px;}
.ls2_c00189{letter-spacing:-0.036000px;}
.ls4_c00189{letter-spacing:-0.028800px;}
.ls3_c00189{letter-spacing:-0.021600px;}
.ls9_c00189{letter-spacing:-0.014400px;}
.lsc_c00189{letter-spacing:-0.007200px;}
.ls1_c00189{letter-spacing:0.000000px;}
.ls8_c00189{letter-spacing:0.007200px;}
.ls0_c00189{letter-spacing:0.014400px;}
.lse_c00189{letter-spacing:843.998400px;}
.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;}
}
.ws9_c00189{word-spacing:-3.348000px;}
.ws0_c00189{word-spacing:0.000000px;}
.ws16_c00189{word-spacing:0.144000px;}
.ws2_c00189{word-spacing:0.180000px;}
.ws1f_c00189{word-spacing:0.194400px;}
.ws20_c00189{word-spacing:0.230400px;}
.ws25_c00189{word-spacing:0.244800px;}
.ws17_c00189{word-spacing:0.331200px;}
.ws8_c00189{word-spacing:0.892800px;}
.ws7_c00189{word-spacing:0.928800px;}
.ws6_c00189{word-spacing:2.678400px;}
.ws5_c00189{word-spacing:2.714400px;}
.wsc_c00189{word-spacing:3.060000px;}
.ws1_c00189{word-spacing:3.074400px;}
.wsd_c00189{word-spacing:3.081600px;}
.ws23_c00189{word-spacing:4.420800px;}
.ws24_c00189{word-spacing:4.521600px;}
.ws15_c00189{word-spacing:5.212800px;}
.ws14_c00189{word-spacing:5.299200px;}
.ws10_c00189{word-spacing:6.307200px;}
.ws11_c00189{word-spacing:6.364800px;}
.wsf_c00189{word-spacing:8.107200px;}
.wse_c00189{word-spacing:8.114400px;}
.ws1d_c00189{word-spacing:10.620000px;}
.ws1c_c00189{word-spacing:10.720800px;}
.ws22_c00189{word-spacing:10.922400px;}
.ws21_c00189{word-spacing:11.059200px;}
.ws19_c00189{word-spacing:12.052800px;}
.ws1e_c00189{word-spacing:12.117600px;}
.ws18_c00189{word-spacing:12.124800px;}
.ws13_c00189{word-spacing:16.020000px;}
.ws12_c00189{word-spacing:16.034400px;}
.ws1a_c00189{word-spacing:17.784000px;}
.ws1b_c00189{word-spacing:17.978400px;}
.wsb_c00189{word-spacing:27.878400px;}
.wsa_c00189{word-spacing:27.892800px;}
.ws4_c00189{word-spacing:31.507200px;}
.ws3_c00189{word-spacing:31.514400px;}
._0_c00189{width:1.080000px;}
.fc0_c00189{color:rgb(0,0,0);}
.fs0_c00189{font-size:72.000000px;}
.y0_c00189{bottom:0.000000px;}
.y2_c00189{bottom:46.830450px;}
.y1_c00189{bottom:67.530450px;}
.y1c_c00189{bottom:439.140450px;}
.y1b_c00189{bottom:459.840450px;}
.y1a_c00189{bottom:480.540450px;}
.y19_c00189{bottom:501.240450px;}
.y18_c00189{bottom:521.940450px;}
.y17_c00189{bottom:561.990450px;}
.y16_c00189{bottom:593.040450px;}
.y15_c00189{bottom:624.090450px;}
.y14_c00189{bottom:655.140450px;}
.y13_c00189{bottom:686.190450px;}
.y12_c00189{bottom:726.240450px;}
.y11_c00189{bottom:757.290450px;}
.y10_c00189{bottom:788.340450px;}
.yf_c00189{bottom:819.390450px;}
.ye_c00189{bottom:850.440450px;}
.yd_c00189{bottom:890.490450px;}
.yc_c00189{bottom:911.190450px;}
.yb_c00189{bottom:931.890450px;}
.ya_c00189{bottom:952.590450px;}
.y9_c00189{bottom:973.290450px;}
.y8_c00189{bottom:993.990450px;}
.y7_c00189{bottom:1014.690450px;}
.y6_c00189{bottom:1035.390450px;}
.y5_c00189{bottom:1056.090450px;}
.y4_c00189{bottom:1076.790450px;}
.y3_c00189{bottom:1097.490450px;}
.h1_c00189{height:63.175781px;}
.h2_c00189{height:64.546875px;}
.h0_c00189{height:1263.000000px;}
.w1_c00189{width:892.500000px;}
.w0_c00189{width:892.830000px;}
.x0_c00189{left:0.000000px;}
.x2_c00189{left:127.620000px;}
.x3_c00189{left:148.950000px;}
.x1_c00189{left:695.880000px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls7_c00189{letter-spacing:-0.076800pt;}
.lsd_c00189{letter-spacing:-0.064000pt;}
.ls5_c00189{letter-spacing:-0.057600pt;}
.lsb_c00189{letter-spacing:-0.051200pt;}
.ls6_c00189{letter-spacing:-0.044800pt;}
.lsa_c00189{letter-spacing:-0.038400pt;}
.ls2_c00189{letter-spacing:-0.032000pt;}
.ls4_c00189{letter-spacing:-0.025600pt;}
.ls3_c00189{letter-spacing:-0.019200pt;}
.ls9_c00189{letter-spacing:-0.012800pt;}
.lsc_c00189{letter-spacing:-0.006400pt;}
.ls1_c00189{letter-spacing:0.000000pt;}
.ls8_c00189{letter-spacing:0.006400pt;}
.ls0_c00189{letter-spacing:0.012800pt;}
.lse_c00189{letter-spacing:750.220800pt;}
.ws9_c00189{word-spacing:-2.976000pt;}
.ws0_c00189{word-spacing:0.000000pt;}
.ws16_c00189{word-spacing:0.128000pt;}
.ws2_c00189{word-spacing:0.160000pt;}
.ws1f_c00189{word-spacing:0.172800pt;}
.ws20_c00189{word-spacing:0.204800pt;}
.ws25_c00189{word-spacing:0.217600pt;}
.ws17_c00189{word-spacing:0.294400pt;}
.ws8_c00189{word-spacing:0.793600pt;}
.ws7_c00189{word-spacing:0.825600pt;}
.ws6_c00189{word-spacing:2.380800pt;}
.ws5_c00189{word-spacing:2.412800pt;}
.wsc_c00189{word-spacing:2.720000pt;}
.ws1_c00189{word-spacing:2.732800pt;}
.wsd_c00189{word-spacing:2.739200pt;}
.ws23_c00189{word-spacing:3.929600pt;}
.ws24_c00189{word-spacing:4.019200pt;}
.ws15_c00189{word-spacing:4.633600pt;}
.ws14_c00189{word-spacing:4.710400pt;}
.ws10_c00189{word-spacing:5.606400pt;}
.ws11_c00189{word-spacing:5.657600pt;}
.wsf_c00189{word-spacing:7.206400pt;}
.wse_c00189{word-spacing:7.212800pt;}
.ws1d_c00189{word-spacing:9.440000pt;}
.ws1c_c00189{word-spacing:9.529600pt;}
.ws22_c00189{word-spacing:9.708800pt;}
.ws21_c00189{word-spacing:9.830400pt;}
.ws19_c00189{word-spacing:10.713600pt;}
.ws1e_c00189{word-spacing:10.771200pt;}
.ws18_c00189{word-spacing:10.777600pt;}
.ws13_c00189{word-spacing:14.240000pt;}
.ws12_c00189{word-spacing:14.252800pt;}
.ws1a_c00189{word-spacing:15.808000pt;}
.ws1b_c00189{word-spacing:15.980800pt;}
.wsb_c00189{word-spacing:24.780800pt;}
.wsa_c00189{word-spacing:24.793600pt;}
.ws4_c00189{word-spacing:28.006400pt;}
.ws3_c00189{word-spacing:28.012800pt;}
._0_c00189{width:0.960000pt;}
.fs0_c00189{font-size:64.000000pt;}
.y0_c00189{bottom:0.000000pt;}
.y2_c00189{bottom:41.627067pt;}
.y1_c00189{bottom:60.027067pt;}
.y1c_c00189{bottom:390.347067pt;}
.y1b_c00189{bottom:408.747067pt;}
.y1a_c00189{bottom:427.147067pt;}
.y19_c00189{bottom:445.547067pt;}
.y18_c00189{bottom:463.947067pt;}
.y17_c00189{bottom:499.547067pt;}
.y16_c00189{bottom:527.147067pt;}
.y15_c00189{bottom:554.747067pt;}
.y14_c00189{bottom:582.347067pt;}
.y13_c00189{bottom:609.947067pt;}
.y12_c00189{bottom:645.547067pt;}
.y11_c00189{bottom:673.147067pt;}
.y10_c00189{bottom:700.747067pt;}
.yf_c00189{bottom:728.347067pt;}
.ye_c00189{bottom:755.947067pt;}
.yd_c00189{bottom:791.547067pt;}
.yc_c00189{bottom:809.947067pt;}
.yb_c00189{bottom:828.347067pt;}
.ya_c00189{bottom:846.747067pt;}
.y9_c00189{bottom:865.147067pt;}
.y8_c00189{bottom:883.547067pt;}
.y7_c00189{bottom:901.947067pt;}
.y6_c00189{bottom:920.347067pt;}
.y5_c00189{bottom:938.747067pt;}
.y4_c00189{bottom:957.147067pt;}
.y3_c00189{bottom:975.547067pt;}
.h1_c00189{height:56.156250pt;}
.h2_c00189{height:57.375000pt;}
.h0_c00189{height:1122.666667pt;}
.w1_c00189{width:793.333333pt;}
.w0_c00189{width:793.626667pt;}
.x0_c00189{left:0.000000pt;}
.x2_c00189{left:113.440000pt;}
.x3_c00189{left:132.400000pt;}
.x1_c00189{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4531fc8bf4d169313a4bc836.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.093262;font-style:normal;font-weight:normal;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_4012dd7015062b42097b9e2f.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00190;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00190;src:url('chunks/assets/font_d8979c639f6a3d22eb368aa5.woff2')format("woff");}.ff4_c00190{font-family:ff4_c00190;line-height:1.106934;font-style:normal;font-weight:normal;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_1eb2ac667121e4b0fc40631b.woff2')format("woff");}.ff5_c00190{font-family:ff5_c00190;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00190{letter-spacing:-0.100800px;}
.ls9_c00190{letter-spacing:-0.064800px;}
.ls3_c00190{letter-spacing:-0.057600px;}
.lsa_c00190{letter-spacing:-0.050400px;}
.ls5_c00190{letter-spacing:-0.043200px;}
.ls8_c00190{letter-spacing:-0.036000px;}
.ls4_c00190{letter-spacing:-0.028800px;}
.ls7_c00190{letter-spacing:-0.021600px;}
.ls6_c00190{letter-spacing:-0.014400px;}
.lsb_c00190{letter-spacing:-0.007200px;}
.ls2_c00190{letter-spacing:0.000000px;}
.ls1_c00190{letter-spacing:0.007200px;}
.ls0_c00190{letter-spacing:0.067104px;}
.lsd_c00190{letter-spacing:0.108000px;}
.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:-20.016000px;}
.ws29_c00190{word-spacing:-4.888800px;}
.ws28_c00190{word-spacing:-4.744800px;}
.ws2a_c00190{word-spacing:-4.687200px;}
.ws4_c00190{word-spacing:-3.772800px;}
.ws3_c00190{word-spacing:-3.744000px;}
.ws2b_c00190{word-spacing:-3.052800px;}
.ws26_c00190{word-spacing:-2.700000px;}
.ws27_c00190{word-spacing:-2.678400px;}
.ws31_c00190{word-spacing:-2.376000px;}
.ws32_c00190{word-spacing:-2.311200px;}
.wsf_c00190{word-spacing:-1.620000px;}
.wsd_c00190{word-spacing:-0.842400px;}
.wse_c00190{word-spacing:-0.777600px;}
.ws1_c00190{word-spacing:0.000000px;}
.ws2_c00190{word-spacing:0.025164px;}
.ws30_c00190{word-spacing:0.093600px;}
.ws2f_c00190{word-spacing:0.158400px;}
.ws2c_c00190{word-spacing:0.165600px;}
.ws12_c00190{word-spacing:0.180000px;}
.ws13_c00190{word-spacing:0.187200px;}
.ws5_c00190{word-spacing:2.001600px;}
.ws1a_c00190{word-spacing:3.045600px;}
.ws1b_c00190{word-spacing:3.088800px;}
.wsb_c00190{word-spacing:3.304800px;}
.ws2d_c00190{word-spacing:3.355200px;}
.wsc_c00190{word-spacing:3.376800px;}
.ws2e_c00190{word-spacing:3.434400px;}
.ws21_c00190{word-spacing:4.478400px;}
.ws22_c00190{word-spacing:4.500000px;}
.ws18_c00190{word-spacing:4.507200px;}
.ws19_c00190{word-spacing:4.528800px;}
.ws23_c00190{word-spacing:5.565600px;}
.ws11_c00190{word-spacing:13.456800px;}
.ws10_c00190{word-spacing:13.536000px;}
.ws1d_c00190{word-spacing:15.343200px;}
.ws1e_c00190{word-spacing:15.350400px;}
.ws1c_c00190{word-spacing:15.379200px;}
.ws16_c00190{word-spacing:16.394400px;}
.ws17_c00190{word-spacing:16.473600px;}
.ws9_c00190{word-spacing:16.668000px;}
.wsa_c00190{word-spacing:16.783200px;}
.ws20_c00190{word-spacing:24.530400px;}
.ws1f_c00190{word-spacing:24.674400px;}
.ws6_c00190{word-spacing:27.172800px;}
.ws7_c00190{word-spacing:30.420000px;}
.ws8_c00190{word-spacing:30.434400px;}
.ws14_c00190{word-spacing:33.674400px;}
.ws15_c00190{word-spacing:33.703200px;}
.ws24_c00190{word-spacing:34.344000px;}
.ws25_c00190{word-spacing:37.274400px;}
._1_c00190{width:1.101600px;}
._0_c00190{width:153.332640px;}
.fc0_c00190{color:rgb(0,0,0);}
.fs0_c00190{font-size:72.000000px;}
.fs1_c00190{font-size:83.880000px;}
.y0_c00190{bottom:0.000000px;}
.y2_c00190{bottom:46.830450px;}
.y1_c00190{bottom:67.530450px;}
.y26_c00190{bottom:137.820450px;}
.y25_c00190{bottom:168.870450px;}
.y24_c00190{bottom:199.920450px;}
.y23_c00190{bottom:229.620450px;}
.y22_c00190{bottom:250.320450px;}
.y21_c00190{bottom:271.020450px;}
.y20_c00190{bottom:291.720450px;}
.y1f_c00190{bottom:312.420450px;}
.y1e_c00190{bottom:333.120450px;}
.y1d_c00190{bottom:353.820450px;}
.y1c_c00190{bottom:374.520450px;}
.y1b_c00190{bottom:395.220450px;}
.y1a_c00190{bottom:444.270450px;}
.y19_c00190{bottom:475.320450px;}
.y18_c00190{bottom:506.370450px;}
.y17_c00190{bottom:536.070450px;}
.y16_c00190{bottom:556.770450px;}
.y15_c00190{bottom:577.470450px;}
.y14_c00190{bottom:598.170450px;}
.y13_c00190{bottom:618.870450px;}
.y12_c00190{bottom:639.570450px;}
.y11_c00190{bottom:660.270450px;}
.y10_c00190{bottom:680.970450px;}
.yf_c00190{bottom:701.670450px;}
.ye_c00190{bottom:750.720450px;}
.yd_c00190{bottom:781.770450px;}
.yc_c00190{bottom:812.820450px;}
.yb_c00190{bottom:843.870450px;}
.ya_c00190{bottom:874.920450px;}
.y9_c00190{bottom:905.970450px;}
.y8_c00190{bottom:937.020450px;}
.y7_c00190{bottom:968.070450px;}
.y6_c00190{bottom:999.120450px;}
.y5_c00190{bottom:1030.170450px;}
.y4_c00190{bottom:1068.780450px;}
.y3_c00190{bottom:1094.520450px;}
.h1_c00190{height:63.175781px;}
.h4_c00190{height:64.546875px;}
.h3_c00190{height:75.093750px;}
.h2_c00190{height:87.484219px;}
.h0_c00190{height:1263.000000px;}
.w1_c00190{width:892.500000px;}
.w0_c00190{width:892.830000px;}
.x0_c00190{left:0.000000px;}
.x2_c00190{left:170.100000px;}
.x4_c00190{left:191.430000px;}
.x3_c00190{left:197.100000px;}
.x1_c00190{left:738.360000px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.lsc_c00190{letter-spacing:-0.089600pt;}
.ls9_c00190{letter-spacing:-0.057600pt;}
.ls3_c00190{letter-spacing:-0.051200pt;}
.lsa_c00190{letter-spacing:-0.044800pt;}
.ls5_c00190{letter-spacing:-0.038400pt;}
.ls8_c00190{letter-spacing:-0.032000pt;}
.ls4_c00190{letter-spacing:-0.025600pt;}
.ls7_c00190{letter-spacing:-0.019200pt;}
.ls6_c00190{letter-spacing:-0.012800pt;}
.lsb_c00190{letter-spacing:-0.006400pt;}
.ls2_c00190{letter-spacing:0.000000pt;}
.ls1_c00190{letter-spacing:0.006400pt;}
.ls0_c00190{letter-spacing:0.059648pt;}
.lsd_c00190{letter-spacing:0.096000pt;}
.ws0_c00190{word-spacing:-17.792000pt;}
.ws29_c00190{word-spacing:-4.345600pt;}
.ws28_c00190{word-spacing:-4.217600pt;}
.ws2a_c00190{word-spacing:-4.166400pt;}
.ws4_c00190{word-spacing:-3.353600pt;}
.ws3_c00190{word-spacing:-3.328000pt;}
.ws2b_c00190{word-spacing:-2.713600pt;}
.ws26_c00190{word-spacing:-2.400000pt;}
.ws27_c00190{word-spacing:-2.380800pt;}
.ws31_c00190{word-spacing:-2.112000pt;}
.ws32_c00190{word-spacing:-2.054400pt;}
.wsf_c00190{word-spacing:-1.440000pt;}
.wsd_c00190{word-spacing:-0.748800pt;}
.wse_c00190{word-spacing:-0.691200pt;}
.ws1_c00190{word-spacing:0.000000pt;}
.ws2_c00190{word-spacing:0.022368pt;}
.ws30_c00190{word-spacing:0.083200pt;}
.ws2f_c00190{word-spacing:0.140800pt;}
.ws2c_c00190{word-spacing:0.147200pt;}
.ws12_c00190{word-spacing:0.160000pt;}
.ws13_c00190{word-spacing:0.166400pt;}
.ws5_c00190{word-spacing:1.779200pt;}
.ws1a_c00190{word-spacing:2.707200pt;}
.ws1b_c00190{word-spacing:2.745600pt;}
.wsb_c00190{word-spacing:2.937600pt;}
.ws2d_c00190{word-spacing:2.982400pt;}
.wsc_c00190{word-spacing:3.001600pt;}
.ws2e_c00190{word-spacing:3.052800pt;}
.ws21_c00190{word-spacing:3.980800pt;}
.ws22_c00190{word-spacing:4.000000pt;}
.ws18_c00190{word-spacing:4.006400pt;}
.ws19_c00190{word-spacing:4.025600pt;}
.ws23_c00190{word-spacing:4.947200pt;}
.ws11_c00190{word-spacing:11.961600pt;}
.ws10_c00190{word-spacing:12.032000pt;}
.ws1d_c00190{word-spacing:13.638400pt;}
.ws1e_c00190{word-spacing:13.644800pt;}
.ws1c_c00190{word-spacing:13.670400pt;}
.ws16_c00190{word-spacing:14.572800pt;}
.ws17_c00190{word-spacing:14.643200pt;}
.ws9_c00190{word-spacing:14.816000pt;}
.wsa_c00190{word-spacing:14.918400pt;}
.ws20_c00190{word-spacing:21.804800pt;}
.ws1f_c00190{word-spacing:21.932800pt;}
.ws6_c00190{word-spacing:24.153600pt;}
.ws7_c00190{word-spacing:27.040000pt;}
.ws8_c00190{word-spacing:27.052800pt;}
.ws14_c00190{word-spacing:29.932800pt;}
.ws15_c00190{word-spacing:29.958400pt;}
.ws24_c00190{word-spacing:30.528000pt;}
.ws25_c00190{word-spacing:33.132800pt;}
._1_c00190{width:0.979200pt;}
._0_c00190{width:136.295680pt;}
.fs0_c00190{font-size:64.000000pt;}
.fs1_c00190{font-size:74.560000pt;}
.y0_c00190{bottom:0.000000pt;}
.y2_c00190{bottom:41.627067pt;}
.y1_c00190{bottom:60.027067pt;}
.y26_c00190{bottom:122.507067pt;}
.y25_c00190{bottom:150.107067pt;}
.y24_c00190{bottom:177.707067pt;}
.y23_c00190{bottom:204.107067pt;}
.y22_c00190{bottom:222.507067pt;}
.y21_c00190{bottom:240.907067pt;}
.y20_c00190{bottom:259.307067pt;}
.y1f_c00190{bottom:277.707067pt;}
.y1e_c00190{bottom:296.107067pt;}
.y1d_c00190{bottom:314.507067pt;}
.y1c_c00190{bottom:332.907067pt;}
.y1b_c00190{bottom:351.307067pt;}
.y1a_c00190{bottom:394.907067pt;}
.y19_c00190{bottom:422.507067pt;}
.y18_c00190{bottom:450.107067pt;}
.y17_c00190{bottom:476.507067pt;}
.y16_c00190{bottom:494.907067pt;}
.y15_c00190{bottom:513.307067pt;}
.y14_c00190{bottom:531.707067pt;}
.y13_c00190{bottom:550.107067pt;}
.y12_c00190{bottom:568.507067pt;}
.y11_c00190{bottom:586.907067pt;}
.y10_c00190{bottom:605.307067pt;}
.yf_c00190{bottom:623.707067pt;}
.ye_c00190{bottom:667.307067pt;}
.yd_c00190{bottom:694.907067pt;}
.yc_c00190{bottom:722.507067pt;}
.yb_c00190{bottom:750.107067pt;}
.ya_c00190{bottom:777.707067pt;}
.y9_c00190{bottom:805.307067pt;}
.y8_c00190{bottom:832.907067pt;}
.y7_c00190{bottom:860.507067pt;}
.y6_c00190{bottom:888.107067pt;}
.y5_c00190{bottom:915.707067pt;}
.y4_c00190{bottom:950.027067pt;}
.y3_c00190{bottom:972.907067pt;}
.h1_c00190{height:56.156250pt;}
.h4_c00190{height:57.375000pt;}
.h3_c00190{height:66.750000pt;}
.h2_c00190{height:77.763750pt;}
.h0_c00190{height:1122.666667pt;}
.w1_c00190{width:793.333333pt;}
.w0_c00190{width:793.626667pt;}
.x0_c00190{left:0.000000pt;}
.x2_c00190{left:151.200000pt;}
.x4_c00190{left:170.160000pt;}
.x3_c00190{left:175.200000pt;}
.x1_c00190{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_645a640ca2074584866b8a2e.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.093262;font-style:normal;font-weight:normal;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_b74c921e0874e1666efeaa60.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00191{vertical-align:0.000000px;}
.lsb_c00191{letter-spacing:-0.093600px;}
.ls9_c00191{letter-spacing:-0.079200px;}
.lsc_c00191{letter-spacing:-0.072000px;}
.ls3_c00191{letter-spacing:-0.064800px;}
.ls8_c00191{letter-spacing:-0.057600px;}
.ls7_c00191{letter-spacing:-0.050400px;}
.ls4_c00191{letter-spacing:-0.043200px;}
.ls6_c00191{letter-spacing:-0.036000px;}
.ls1_c00191{letter-spacing:-0.028800px;}
.lsa_c00191{letter-spacing:-0.021600px;}
.ls2_c00191{letter-spacing:-0.014400px;}
.ls5_c00191{letter-spacing:-0.007200px;}
.ls0_c00191{letter-spacing:0.000000px;}
.lsd_c00191{letter-spacing:0.021600px;}
.lse_c00191{letter-spacing:0.028800px;}
.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;}
}
.ws29_c00191{word-spacing:-4.478400px;}
.ws2a_c00191{word-spacing:-4.464000px;}
.ws6_c00191{word-spacing:-4.219200px;}
.ws11_c00191{word-spacing:-4.183200px;}
.ws5_c00191{word-spacing:-4.096800px;}
.ws12_c00191{word-spacing:-3.801600px;}
.ws13_c00191{word-spacing:-3.722400px;}
.wsc_c00191{word-spacing:-1.612800px;}
.ws1f_c00191{word-spacing:-1.591200px;}
.ws3b_c00191{word-spacing:-1.260000px;}
.ws3c_c00191{word-spacing:-1.144800px;}
.ws3f_c00191{word-spacing:-0.230400px;}
.ws0_c00191{word-spacing:0.000000px;}
.ws33_c00191{word-spacing:0.172800px;}
.ws32_c00191{word-spacing:0.187200px;}
.wsb_c00191{word-spacing:0.194400px;}
.ws4_c00191{word-spacing:0.273600px;}
.ws23_c00191{word-spacing:3.376800px;}
.ws24_c00191{word-spacing:3.420000px;}
.wsa_c00191{word-spacing:4.485600px;}
.ws9_c00191{word-spacing:4.521600px;}
.ws2c_c00191{word-spacing:4.536000px;}
.ws19_c00191{word-spacing:4.752000px;}
.ws2b_c00191{word-spacing:4.831200px;}
.ws1a_c00191{word-spacing:4.903200px;}
.ws2d_c00191{word-spacing:4.910400px;}
.ws38_c00191{word-spacing:5.176800px;}
.ws37_c00191{word-spacing:5.241600px;}
.ws1d_c00191{word-spacing:6.624000px;}
.ws21_c00191{word-spacing:6.681600px;}
.ws1e_c00191{word-spacing:6.688800px;}
.ws22_c00191{word-spacing:6.760800px;}
.ws3e_c00191{word-spacing:9.864000px;}
.ws30_c00191{word-spacing:9.871200px;}
.ws31_c00191{word-spacing:9.878400px;}
.ws3d_c00191{word-spacing:9.921600px;}
.ws20_c00191{word-spacing:9.964800px;}
.ws7_c00191{word-spacing:10.195200px;}
.ws8_c00191{word-spacing:10.260000px;}
.ws1c_c00191{word-spacing:10.612800px;}
.ws1b_c00191{word-spacing:10.821600px;}
.ws14_c00191{word-spacing:11.340000px;}
.ws15_c00191{word-spacing:11.412000px;}
.ws25_c00191{word-spacing:12.096000px;}
.ws26_c00191{word-spacing:12.146400px;}
.ws17_c00191{word-spacing:13.881600px;}
.ws18_c00191{word-spacing:13.896000px;}
.ws36_c00191{word-spacing:17.812800px;}
.wsf_c00191{word-spacing:18.432000px;}
.ws10_c00191{word-spacing:18.547200px;}
.ws35_c00191{word-spacing:20.361600px;}
.ws34_c00191{word-spacing:20.390400px;}
.ws1_c00191{word-spacing:21.384000px;}
.ws16_c00191{word-spacing:21.801600px;}
.ws3_c00191{word-spacing:22.759200px;}
.ws2_c00191{word-spacing:22.867200px;}
.ws27_c00191{word-spacing:27.561600px;}
.ws28_c00191{word-spacing:27.648000px;}
.ws2e_c00191{word-spacing:28.454400px;}
.ws2f_c00191{word-spacing:28.648800px;}
.wsd_c00191{word-spacing:33.580800px;}
.wse_c00191{word-spacing:33.681600px;}
.ws39_c00191{word-spacing:34.005600px;}
.ws3a_c00191{word-spacing:34.214400px;}
._0_c00191{width:1.080000px;}
.fc0_c00191{color:rgb(0,0,0);}
.fs0_c00191{font-size:72.000000px;}
.y0_c00191{bottom:0.000000px;}
.y2_c00191{bottom:46.830450px;}
.y1_c00191{bottom:67.530450px;}
.y28_c00191{bottom:152.130450px;}
.y27_c00191{bottom:183.180450px;}
.y26_c00191{bottom:214.230450px;}
.y25_c00191{bottom:245.280450px;}
.y24_c00191{bottom:276.330450px;}
.y23_c00191{bottom:307.380450px;}
.y22_c00191{bottom:338.430450px;}
.y21_c00191{bottom:368.040450px;}
.y20_c00191{bottom:388.740450px;}
.y1f_c00191{bottom:409.440450px;}
.y1e_c00191{bottom:430.140450px;}
.y1d_c00191{bottom:450.840450px;}
.y1c_c00191{bottom:471.540450px;}
.y1b_c00191{bottom:492.240450px;}
.y1a_c00191{bottom:512.940450px;}
.y19_c00191{bottom:533.640450px;}
.y18_c00191{bottom:554.340450px;}
.y17_c00191{bottom:575.040450px;}
.y16_c00191{bottom:595.740450px;}
.y15_c00191{bottom:616.440450px;}
.y14_c00191{bottom:637.140450px;}
.y13_c00191{bottom:657.840450px;}
.y12_c00191{bottom:678.540450px;}
.y11_c00191{bottom:699.240450px;}
.y10_c00191{bottom:719.940450px;}
.yf_c00191{bottom:740.640450px;}
.ye_c00191{bottom:761.340450px;}
.yd_c00191{bottom:782.040450px;}
.yc_c00191{bottom:802.740450px;}
.yb_c00191{bottom:823.440450px;}
.ya_c00191{bottom:844.140450px;}
.y9_c00191{bottom:893.190450px;}
.y8_c00191{bottom:924.240450px;}
.y7_c00191{bottom:955.290450px;}
.y6_c00191{bottom:986.340450px;}
.y5_c00191{bottom:1035.390450px;}
.y4_c00191{bottom:1066.440450px;}
.y3_c00191{bottom:1097.490450px;}
.h1_c00191{height:63.175781px;}
.h2_c00191{height:64.546875px;}
.h0_c00191{height:1263.000000px;}
.w1_c00191{width:892.500000px;}
.w0_c00191{width:892.830000px;}
.x0_c00191{left:0.000000px;}
.x2_c00191{left:127.620000px;}
.x3_c00191{left:148.950000px;}
.x1_c00191{left:695.880000px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.lsb_c00191{letter-spacing:-0.083200pt;}
.ls9_c00191{letter-spacing:-0.070400pt;}
.lsc_c00191{letter-spacing:-0.064000pt;}
.ls3_c00191{letter-spacing:-0.057600pt;}
.ls8_c00191{letter-spacing:-0.051200pt;}
.ls7_c00191{letter-spacing:-0.044800pt;}
.ls4_c00191{letter-spacing:-0.038400pt;}
.ls6_c00191{letter-spacing:-0.032000pt;}
.ls1_c00191{letter-spacing:-0.025600pt;}
.lsa_c00191{letter-spacing:-0.019200pt;}
.ls2_c00191{letter-spacing:-0.012800pt;}
.ls5_c00191{letter-spacing:-0.006400pt;}
.ls0_c00191{letter-spacing:0.000000pt;}
.lsd_c00191{letter-spacing:0.019200pt;}
.lse_c00191{letter-spacing:0.025600pt;}
.ws29_c00191{word-spacing:-3.980800pt;}
.ws2a_c00191{word-spacing:-3.968000pt;}
.ws6_c00191{word-spacing:-3.750400pt;}
.ws11_c00191{word-spacing:-3.718400pt;}
.ws5_c00191{word-spacing:-3.641600pt;}
.ws12_c00191{word-spacing:-3.379200pt;}
.ws13_c00191{word-spacing:-3.308800pt;}
.wsc_c00191{word-spacing:-1.433600pt;}
.ws1f_c00191{word-spacing:-1.414400pt;}
.ws3b_c00191{word-spacing:-1.120000pt;}
.ws3c_c00191{word-spacing:-1.017600pt;}
.ws3f_c00191{word-spacing:-0.204800pt;}
.ws0_c00191{word-spacing:0.000000pt;}
.ws33_c00191{word-spacing:0.153600pt;}
.ws32_c00191{word-spacing:0.166400pt;}
.wsb_c00191{word-spacing:0.172800pt;}
.ws4_c00191{word-spacing:0.243200pt;}
.ws23_c00191{word-spacing:3.001600pt;}
.ws24_c00191{word-spacing:3.040000pt;}
.wsa_c00191{word-spacing:3.987200pt;}
.ws9_c00191{word-spacing:4.019200pt;}
.ws2c_c00191{word-spacing:4.032000pt;}
.ws19_c00191{word-spacing:4.224000pt;}
.ws2b_c00191{word-spacing:4.294400pt;}
.ws1a_c00191{word-spacing:4.358400pt;}
.ws2d_c00191{word-spacing:4.364800pt;}
.ws38_c00191{word-spacing:4.601600pt;}
.ws37_c00191{word-spacing:4.659200pt;}
.ws1d_c00191{word-spacing:5.888000pt;}
.ws21_c00191{word-spacing:5.939200pt;}
.ws1e_c00191{word-spacing:5.945600pt;}
.ws22_c00191{word-spacing:6.009600pt;}
.ws3e_c00191{word-spacing:8.768000pt;}
.ws30_c00191{word-spacing:8.774400pt;}
.ws31_c00191{word-spacing:8.780800pt;}
.ws3d_c00191{word-spacing:8.819200pt;}
.ws20_c00191{word-spacing:8.857600pt;}
.ws7_c00191{word-spacing:9.062400pt;}
.ws8_c00191{word-spacing:9.120000pt;}
.ws1c_c00191{word-spacing:9.433600pt;}
.ws1b_c00191{word-spacing:9.619200pt;}
.ws14_c00191{word-spacing:10.080000pt;}
.ws15_c00191{word-spacing:10.144000pt;}
.ws25_c00191{word-spacing:10.752000pt;}
.ws26_c00191{word-spacing:10.796800pt;}
.ws17_c00191{word-spacing:12.339200pt;}
.ws18_c00191{word-spacing:12.352000pt;}
.ws36_c00191{word-spacing:15.833600pt;}
.wsf_c00191{word-spacing:16.384000pt;}
.ws10_c00191{word-spacing:16.486400pt;}
.ws35_c00191{word-spacing:18.099200pt;}
.ws34_c00191{word-spacing:18.124800pt;}
.ws1_c00191{word-spacing:19.008000pt;}
.ws16_c00191{word-spacing:19.379200pt;}
.ws3_c00191{word-spacing:20.230400pt;}
.ws2_c00191{word-spacing:20.326400pt;}
.ws27_c00191{word-spacing:24.499200pt;}
.ws28_c00191{word-spacing:24.576000pt;}
.ws2e_c00191{word-spacing:25.292800pt;}
.ws2f_c00191{word-spacing:25.465600pt;}
.wsd_c00191{word-spacing:29.849600pt;}
.wse_c00191{word-spacing:29.939200pt;}
.ws39_c00191{word-spacing:30.227200pt;}
.ws3a_c00191{word-spacing:30.412800pt;}
._0_c00191{width:0.960000pt;}
.fs0_c00191{font-size:64.000000pt;}
.y0_c00191{bottom:0.000000pt;}
.y2_c00191{bottom:41.627067pt;}
.y1_c00191{bottom:60.027067pt;}
.y28_c00191{bottom:135.227067pt;}
.y27_c00191{bottom:162.827067pt;}
.y26_c00191{bottom:190.427067pt;}
.y25_c00191{bottom:218.027067pt;}
.y24_c00191{bottom:245.627067pt;}
.y23_c00191{bottom:273.227067pt;}
.y22_c00191{bottom:300.827067pt;}
.y21_c00191{bottom:327.147067pt;}
.y20_c00191{bottom:345.547067pt;}
.y1f_c00191{bottom:363.947067pt;}
.y1e_c00191{bottom:382.347067pt;}
.y1d_c00191{bottom:400.747067pt;}
.y1c_c00191{bottom:419.147067pt;}
.y1b_c00191{bottom:437.547067pt;}
.y1a_c00191{bottom:455.947067pt;}
.y19_c00191{bottom:474.347067pt;}
.y18_c00191{bottom:492.747067pt;}
.y17_c00191{bottom:511.147067pt;}
.y16_c00191{bottom:529.547067pt;}
.y15_c00191{bottom:547.947067pt;}
.y14_c00191{bottom:566.347067pt;}
.y13_c00191{bottom:584.747067pt;}
.y12_c00191{bottom:603.147067pt;}
.y11_c00191{bottom:621.547067pt;}
.y10_c00191{bottom:639.947067pt;}
.yf_c00191{bottom:658.347067pt;}
.ye_c00191{bottom:676.747067pt;}
.yd_c00191{bottom:695.147067pt;}
.yc_c00191{bottom:713.547067pt;}
.yb_c00191{bottom:731.947067pt;}
.ya_c00191{bottom:750.347067pt;}
.y9_c00191{bottom:793.947067pt;}
.y8_c00191{bottom:821.547067pt;}
.y7_c00191{bottom:849.147067pt;}
.y6_c00191{bottom:876.747067pt;}
.y5_c00191{bottom:920.347067pt;}
.y4_c00191{bottom:947.947067pt;}
.y3_c00191{bottom:975.547067pt;}
.h1_c00191{height:56.156250pt;}
.h2_c00191{height:57.375000pt;}
.h0_c00191{height:1122.666667pt;}
.w1_c00191{width:793.333333pt;}
.w0_c00191{width:793.626667pt;}
.x0_c00191{left:0.000000pt;}
.x2_c00191{left:113.440000pt;}
.x3_c00191{left:132.400000pt;}
.x1_c00191{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_07f84d30d68a5daa588a7fd8.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.093262;font-style:normal;font-weight:normal;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_f6da5c24ef33e8894360c5f6.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.106934;font-style:normal;font-weight:normal;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_31895739fb15c0148e819019.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls11_c00192{letter-spacing:-0.151200px;}
.lsf_c00192{letter-spacing:-0.093600px;}
.ls10_c00192{letter-spacing:-0.086400px;}
.ls4_c00192{letter-spacing:-0.079200px;}
.lse_c00192{letter-spacing:-0.072000px;}
.lsd_c00192{letter-spacing:-0.064800px;}
.lsc_c00192{letter-spacing:-0.057600px;}
.lsa_c00192{letter-spacing:-0.050400px;}
.lsb_c00192{letter-spacing:-0.043200px;}
.ls6_c00192{letter-spacing:-0.036000px;}
.ls9_c00192{letter-spacing:-0.028800px;}
.ls5_c00192{letter-spacing:-0.021600px;}
.ls7_c00192{letter-spacing:-0.014400px;}
.ls8_c00192{letter-spacing:-0.007200px;}
.ls3_c00192{letter-spacing:0.000000px;}
.ls1_c00192{letter-spacing:0.007200px;}
.ls0_c00192{letter-spacing:0.014400px;}
.ls2_c00192{letter-spacing:0.144000px;}
.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:-19.994400px;}
.ws2_c00192{word-spacing:-19.980000px;}
.ws3_c00192{word-spacing:-19.972800px;}
.ws1_c00192{word-spacing:-19.944000px;}
.ws4_c00192{word-spacing:-19.864800px;}
.ws29_c00192{word-spacing:-4.500000px;}
.ws28_c00192{word-spacing:-4.464000px;}
.ws24_c00192{word-spacing:-1.965600px;}
.wsb_c00192{word-spacing:-1.274400px;}
.wsa_c00192{word-spacing:-1.173600px;}
.ws13_c00192{word-spacing:-0.180000px;}
.ws15_c00192{word-spacing:-0.151200px;}
.ws5_c00192{word-spacing:0.000000px;}
.wsf_c00192{word-spacing:0.057600px;}
.wse_c00192{word-spacing:0.122400px;}
.ws1e_c00192{word-spacing:0.151200px;}
.ws14_c00192{word-spacing:0.172800px;}
.ws18_c00192{word-spacing:0.180000px;}
.ws27_c00192{word-spacing:0.187200px;}
.ws2a_c00192{word-spacing:0.460800px;}
.ws2b_c00192{word-spacing:0.547200px;}
.ws25_c00192{word-spacing:0.554400px;}
.ws26_c00192{word-spacing:0.612000px;}
.ws31_c00192{word-spacing:0.856800px;}
.ws32_c00192{word-spacing:0.950400px;}
.ws17_c00192{word-spacing:1.296000px;}
.ws38_c00192{word-spacing:2.721600px;}
.ws37_c00192{word-spacing:2.736000px;}
.ws1a_c00192{word-spacing:3.355200px;}
.ws20_c00192{word-spacing:3.420000px;}
.ws19_c00192{word-spacing:3.427200px;}
.ws21_c00192{word-spacing:3.441600px;}
.ws1b_c00192{word-spacing:3.463200px;}
.ws12_c00192{word-spacing:4.075200px;}
.ws11_c00192{word-spacing:4.161600px;}
.wsc_c00192{word-spacing:7.387200px;}
.wsd_c00192{word-spacing:7.408800px;}
.ws16_c00192{word-spacing:8.114400px;}
.ws23_c00192{word-spacing:12.412800px;}
.ws22_c00192{word-spacing:12.448800px;}
.ws35_c00192{word-spacing:19.584000px;}
.ws36_c00192{word-spacing:19.980000px;}
.ws33_c00192{word-spacing:20.584800px;}
.ws34_c00192{word-spacing:20.700000px;}
.ws2f_c00192{word-spacing:21.650400px;}
.ws30_c00192{word-spacing:21.823200px;}
.ws10_c00192{word-spacing:23.932800px;}
.ws9_c00192{word-spacing:27.144000px;}
.ws8_c00192{word-spacing:27.280800px;}
.ws1d_c00192{word-spacing:29.311200px;}
.ws1c_c00192{word-spacing:29.325600px;}
.ws7_c00192{word-spacing:31.860000px;}
.ws6_c00192{word-spacing:31.917600px;}
.ws2d_c00192{word-spacing:33.998400px;}
.ws2c_c00192{word-spacing:34.048800px;}
.ws1f_c00192{word-spacing:36.525600px;}
.ws2e_c00192{word-spacing:67.478400px;}
._2_c00192{margin-left:-36.360000px;}
._1_c00192{margin-left:-3.240000px;}
._0_c00192{width:1.152000px;}
.fc0_c00192{color:rgb(0,0,0);}
.fs0_c00192{font-size:72.000000px;}
.y0_c00192{bottom:0.000000px;}
.y2_c00192{bottom:46.830450px;}
.y1_c00192{bottom:67.530450px;}
.y22_c00192{bottom:136.830450px;}
.y21_c00192{bottom:167.880450px;}
.y20_c00192{bottom:198.930450px;}
.y1f_c00192{bottom:247.980450px;}
.y1e_c00192{bottom:279.030450px;}
.y1d_c00192{bottom:310.080450px;}
.y1c_c00192{bottom:341.040450px;}
.y1b_c00192{bottom:372.090450px;}
.y1a_c00192{bottom:403.140450px;}
.y19_c00192{bottom:434.190450px;}
.y18_c00192{bottom:483.240450px;}
.y17_c00192{bottom:514.290450px;}
.y16_c00192{bottom:545.340450px;}
.y15_c00192{bottom:576.390450px;}
.y14_c00192{bottom:607.440450px;}
.y13_c00192{bottom:638.490450px;}
.y12_c00192{bottom:687.540450px;}
.y11_c00192{bottom:718.590450px;}
.y10_c00192{bottom:749.640450px;}
.yf_c00192{bottom:779.340450px;}
.ye_c00192{bottom:800.040450px;}
.yd_c00192{bottom:820.740450px;}
.yc_c00192{bottom:841.440450px;}
.yb_c00192{bottom:862.140450px;}
.ya_c00192{bottom:882.840450px;}
.y9_c00192{bottom:903.540450px;}
.y8_c00192{bottom:924.240450px;}
.y7_c00192{bottom:973.290450px;}
.y6_c00192{bottom:1004.340450px;}
.y5_c00192{bottom:1035.390450px;}
.y4_c00192{bottom:1066.440450px;}
.y3_c00192{bottom:1097.490450px;}
.h1_c00192{height:63.175781px;}
.h2_c00192{height:64.546875px;}
.h3_c00192{height:75.093750px;}
.h0_c00192{height:1263.000000px;}
.w1_c00192{width:892.500000px;}
.w0_c00192{width:892.830000px;}
.x0_c00192{left:0.000000px;}
.x2_c00192{left:170.100000px;}
.x3_c00192{left:191.430000px;}
.x1_c00192{left:738.360000px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls11_c00192{letter-spacing:-0.134400pt;}
.lsf_c00192{letter-spacing:-0.083200pt;}
.ls10_c00192{letter-spacing:-0.076800pt;}
.ls4_c00192{letter-spacing:-0.070400pt;}
.lse_c00192{letter-spacing:-0.064000pt;}
.lsd_c00192{letter-spacing:-0.057600pt;}
.lsc_c00192{letter-spacing:-0.051200pt;}
.lsa_c00192{letter-spacing:-0.044800pt;}
.lsb_c00192{letter-spacing:-0.038400pt;}
.ls6_c00192{letter-spacing:-0.032000pt;}
.ls9_c00192{letter-spacing:-0.025600pt;}
.ls5_c00192{letter-spacing:-0.019200pt;}
.ls7_c00192{letter-spacing:-0.012800pt;}
.ls8_c00192{letter-spacing:-0.006400pt;}
.ls3_c00192{letter-spacing:0.000000pt;}
.ls1_c00192{letter-spacing:0.006400pt;}
.ls0_c00192{letter-spacing:0.012800pt;}
.ls2_c00192{letter-spacing:0.128000pt;}
.ws0_c00192{word-spacing:-17.772800pt;}
.ws2_c00192{word-spacing:-17.760000pt;}
.ws3_c00192{word-spacing:-17.753600pt;}
.ws1_c00192{word-spacing:-17.728000pt;}
.ws4_c00192{word-spacing:-17.657600pt;}
.ws29_c00192{word-spacing:-4.000000pt;}
.ws28_c00192{word-spacing:-3.968000pt;}
.ws24_c00192{word-spacing:-1.747200pt;}
.wsb_c00192{word-spacing:-1.132800pt;}
.wsa_c00192{word-spacing:-1.043200pt;}
.ws13_c00192{word-spacing:-0.160000pt;}
.ws15_c00192{word-spacing:-0.134400pt;}
.ws5_c00192{word-spacing:0.000000pt;}
.wsf_c00192{word-spacing:0.051200pt;}
.wse_c00192{word-spacing:0.108800pt;}
.ws1e_c00192{word-spacing:0.134400pt;}
.ws14_c00192{word-spacing:0.153600pt;}
.ws18_c00192{word-spacing:0.160000pt;}
.ws27_c00192{word-spacing:0.166400pt;}
.ws2a_c00192{word-spacing:0.409600pt;}
.ws2b_c00192{word-spacing:0.486400pt;}
.ws25_c00192{word-spacing:0.492800pt;}
.ws26_c00192{word-spacing:0.544000pt;}
.ws31_c00192{word-spacing:0.761600pt;}
.ws32_c00192{word-spacing:0.844800pt;}
.ws17_c00192{word-spacing:1.152000pt;}
.ws38_c00192{word-spacing:2.419200pt;}
.ws37_c00192{word-spacing:2.432000pt;}
.ws1a_c00192{word-spacing:2.982400pt;}
.ws20_c00192{word-spacing:3.040000pt;}
.ws19_c00192{word-spacing:3.046400pt;}
.ws21_c00192{word-spacing:3.059200pt;}
.ws1b_c00192{word-spacing:3.078400pt;}
.ws12_c00192{word-spacing:3.622400pt;}
.ws11_c00192{word-spacing:3.699200pt;}
.wsc_c00192{word-spacing:6.566400pt;}
.wsd_c00192{word-spacing:6.585600pt;}
.ws16_c00192{word-spacing:7.212800pt;}
.ws23_c00192{word-spacing:11.033600pt;}
.ws22_c00192{word-spacing:11.065600pt;}
.ws35_c00192{word-spacing:17.408000pt;}
.ws36_c00192{word-spacing:17.760000pt;}
.ws33_c00192{word-spacing:18.297600pt;}
.ws34_c00192{word-spacing:18.400000pt;}
.ws2f_c00192{word-spacing:19.244800pt;}
.ws30_c00192{word-spacing:19.398400pt;}
.ws10_c00192{word-spacing:21.273600pt;}
.ws9_c00192{word-spacing:24.128000pt;}
.ws8_c00192{word-spacing:24.249600pt;}
.ws1d_c00192{word-spacing:26.054400pt;}
.ws1c_c00192{word-spacing:26.067200pt;}
.ws7_c00192{word-spacing:28.320000pt;}
.ws6_c00192{word-spacing:28.371200pt;}
.ws2d_c00192{word-spacing:30.220800pt;}
.ws2c_c00192{word-spacing:30.265600pt;}
.ws1f_c00192{word-spacing:32.467200pt;}
.ws2e_c00192{word-spacing:59.980800pt;}
._2_c00192{margin-left:-32.320000pt;}
._1_c00192{margin-left:-2.880000pt;}
._0_c00192{width:1.024000pt;}
.fs0_c00192{font-size:64.000000pt;}
.y0_c00192{bottom:0.000000pt;}
.y2_c00192{bottom:41.627067pt;}
.y1_c00192{bottom:60.027067pt;}
.y22_c00192{bottom:121.627067pt;}
.y21_c00192{bottom:149.227067pt;}
.y20_c00192{bottom:176.827067pt;}
.y1f_c00192{bottom:220.427067pt;}
.y1e_c00192{bottom:248.027067pt;}
.y1d_c00192{bottom:275.627067pt;}
.y1c_c00192{bottom:303.147067pt;}
.y1b_c00192{bottom:330.747067pt;}
.y1a_c00192{bottom:358.347067pt;}
.y19_c00192{bottom:385.947067pt;}
.y18_c00192{bottom:429.547067pt;}
.y17_c00192{bottom:457.147067pt;}
.y16_c00192{bottom:484.747067pt;}
.y15_c00192{bottom:512.347067pt;}
.y14_c00192{bottom:539.947067pt;}
.y13_c00192{bottom:567.547067pt;}
.y12_c00192{bottom:611.147067pt;}
.y11_c00192{bottom:638.747067pt;}
.y10_c00192{bottom:666.347067pt;}
.yf_c00192{bottom:692.747067pt;}
.ye_c00192{bottom:711.147067pt;}
.yd_c00192{bottom:729.547067pt;}
.yc_c00192{bottom:747.947067pt;}
.yb_c00192{bottom:766.347067pt;}
.ya_c00192{bottom:784.747067pt;}
.y9_c00192{bottom:803.147067pt;}
.y8_c00192{bottom:821.547067pt;}
.y7_c00192{bottom:865.147067pt;}
.y6_c00192{bottom:892.747067pt;}
.y5_c00192{bottom:920.347067pt;}
.y4_c00192{bottom:947.947067pt;}
.y3_c00192{bottom:975.547067pt;}
.h1_c00192{height:56.156250pt;}
.h2_c00192{height:57.375000pt;}
.h3_c00192{height:66.750000pt;}
.h0_c00192{height:1122.666667pt;}
.w1_c00192{width:793.333333pt;}
.w0_c00192{width:793.626667pt;}
.x0_c00192{left:0.000000pt;}
.x2_c00192{left:151.200000pt;}
.x3_c00192{left:170.160000pt;}
.x1_c00192{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5283835cca8909442e9f304b.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.093262;font-style:normal;font-weight:normal;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_3e44d2491a60744f9a66cdd7.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.lsb_c00193{letter-spacing:-0.086400px;}
.ls7_c00193{letter-spacing:-0.079200px;}
.ls9_c00193{letter-spacing:-0.072000px;}
.ls5_c00193{letter-spacing:-0.064800px;}
.lsa_c00193{letter-spacing:-0.057600px;}
.ls8_c00193{letter-spacing:-0.050400px;}
.ls3_c00193{letter-spacing:-0.043200px;}
.ls6_c00193{letter-spacing:-0.036000px;}
.ls1_c00193{letter-spacing:-0.028800px;}
.ls4_c00193{letter-spacing:-0.014400px;}
.ls2_c00193{letter-spacing:-0.007200px;}
.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;}
}
.ws14_c00193{word-spacing:-3.427200px;}
.ws15_c00193{word-spacing:-3.355200px;}
.ws12_c00193{word-spacing:-0.979200px;}
.ws11_c00193{word-spacing:-0.849600px;}
.ws0_c00193{word-spacing:0.000000px;}
.ws13_c00193{word-spacing:0.165600px;}
.ws1d_c00193{word-spacing:0.187200px;}
.ws21_c00193{word-spacing:0.194400px;}
.ws18_c00193{word-spacing:1.648800px;}
.wsf_c00193{word-spacing:2.354400px;}
.wsa_c00193{word-spacing:2.714400px;}
.wsb_c00193{word-spacing:2.750400px;}
.ws1c_c00193{word-spacing:4.082400px;}
.ws1b_c00193{word-spacing:4.168800px;}
.wsd_c00193{word-spacing:6.307200px;}
.wse_c00193{word-spacing:6.357600px;}
.ws19_c00193{word-spacing:7.027200px;}
.ws1a_c00193{word-spacing:7.048800px;}
.ws9_c00193{word-spacing:12.067200px;}
.ws10_c00193{word-spacing:14.608800px;}
.ws8_c00193{word-spacing:17.719200px;}
.wsc_c00193{word-spacing:17.812800px;}
.ws7_c00193{word-spacing:17.863200px;}
.ws1e_c00193{word-spacing:18.230400px;}
.ws20_c00193{word-spacing:18.979200px;}
.ws1f_c00193{word-spacing:19.000800px;}
.ws6_c00193{word-spacing:19.958400px;}
.ws5_c00193{word-spacing:19.972800px;}
.ws17_c00193{word-spacing:22.809600px;}
.ws16_c00193{word-spacing:22.867200px;}
.ws2_c00193{word-spacing:36.907200px;}
.ws1_c00193{word-spacing:36.979200px;}
.ws3_c00193{word-spacing:40.125600px;}
.ws4_c00193{word-spacing:40.161600px;}
._0_c00193{width:1.008000px;}
.fc0_c00193{color:rgb(0,0,0);}
.fs0_c00193{font-size:72.000000px;}
.y0_c00193{bottom:0.000000px;}
.y2_c00193{bottom:46.830450px;}
.y1_c00193{bottom:67.530450px;}
.y1a_c00193{bottom:421.140450px;}
.y19_c00193{bottom:452.190450px;}
.y18_c00193{bottom:483.240450px;}
.y17_c00193{bottom:512.940450px;}
.y16_c00193{bottom:533.640450px;}
.y15_c00193{bottom:554.340450px;}
.y14_c00193{bottom:575.040450px;}
.y13_c00193{bottom:595.740450px;}
.y12_c00193{bottom:616.440450px;}
.y11_c00193{bottom:637.140450px;}
.y10_c00193{bottom:657.840450px;}
.yf_c00193{bottom:706.890450px;}
.ye_c00193{bottom:737.940450px;}
.yd_c00193{bottom:768.990450px;}
.yc_c00193{bottom:800.040450px;}
.yb_c00193{bottom:831.090450px;}
.ya_c00193{bottom:862.140450px;}
.y9_c00193{bottom:893.190450px;}
.y8_c00193{bottom:924.240450px;}
.y7_c00193{bottom:955.290450px;}
.y6_c00193{bottom:1004.340450px;}
.y5_c00193{bottom:1035.390450px;}
.y4_c00193{bottom:1066.440450px;}
.y3_c00193{bottom:1097.490450px;}
.h1_c00193{height:63.175781px;}
.h2_c00193{height:64.546875px;}
.h0_c00193{height:1263.000000px;}
.w1_c00193{width:892.500000px;}
.w0_c00193{width:892.830000px;}
.x0_c00193{left:0.000000px;}
.x2_c00193{left:127.620000px;}
.x3_c00193{left:148.950000px;}
.x1_c00193{left:695.880000px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.lsb_c00193{letter-spacing:-0.076800pt;}
.ls7_c00193{letter-spacing:-0.070400pt;}
.ls9_c00193{letter-spacing:-0.064000pt;}
.ls5_c00193{letter-spacing:-0.057600pt;}
.lsa_c00193{letter-spacing:-0.051200pt;}
.ls8_c00193{letter-spacing:-0.044800pt;}
.ls3_c00193{letter-spacing:-0.038400pt;}
.ls6_c00193{letter-spacing:-0.032000pt;}
.ls1_c00193{letter-spacing:-0.025600pt;}
.ls4_c00193{letter-spacing:-0.012800pt;}
.ls2_c00193{letter-spacing:-0.006400pt;}
.ls0_c00193{letter-spacing:0.000000pt;}
.ws14_c00193{word-spacing:-3.046400pt;}
.ws15_c00193{word-spacing:-2.982400pt;}
.ws12_c00193{word-spacing:-0.870400pt;}
.ws11_c00193{word-spacing:-0.755200pt;}
.ws0_c00193{word-spacing:0.000000pt;}
.ws13_c00193{word-spacing:0.147200pt;}
.ws1d_c00193{word-spacing:0.166400pt;}
.ws21_c00193{word-spacing:0.172800pt;}
.ws18_c00193{word-spacing:1.465600pt;}
.wsf_c00193{word-spacing:2.092800pt;}
.wsa_c00193{word-spacing:2.412800pt;}
.wsb_c00193{word-spacing:2.444800pt;}
.ws1c_c00193{word-spacing:3.628800pt;}
.ws1b_c00193{word-spacing:3.705600pt;}
.wsd_c00193{word-spacing:5.606400pt;}
.wse_c00193{word-spacing:5.651200pt;}
.ws19_c00193{word-spacing:6.246400pt;}
.ws1a_c00193{word-spacing:6.265600pt;}
.ws9_c00193{word-spacing:10.726400pt;}
.ws10_c00193{word-spacing:12.985600pt;}
.ws8_c00193{word-spacing:15.750400pt;}
.wsc_c00193{word-spacing:15.833600pt;}
.ws7_c00193{word-spacing:15.878400pt;}
.ws1e_c00193{word-spacing:16.204800pt;}
.ws20_c00193{word-spacing:16.870400pt;}
.ws1f_c00193{word-spacing:16.889600pt;}
.ws6_c00193{word-spacing:17.740800pt;}
.ws5_c00193{word-spacing:17.753600pt;}
.ws17_c00193{word-spacing:20.275200pt;}
.ws16_c00193{word-spacing:20.326400pt;}
.ws2_c00193{word-spacing:32.806400pt;}
.ws1_c00193{word-spacing:32.870400pt;}
.ws3_c00193{word-spacing:35.667200pt;}
.ws4_c00193{word-spacing:35.699200pt;}
._0_c00193{width:0.896000pt;}
.fs0_c00193{font-size:64.000000pt;}
.y0_c00193{bottom:0.000000pt;}
.y2_c00193{bottom:41.627067pt;}
.y1_c00193{bottom:60.027067pt;}
.y1a_c00193{bottom:374.347067pt;}
.y19_c00193{bottom:401.947067pt;}
.y18_c00193{bottom:429.547067pt;}
.y17_c00193{bottom:455.947067pt;}
.y16_c00193{bottom:474.347067pt;}
.y15_c00193{bottom:492.747067pt;}
.y14_c00193{bottom:511.147067pt;}
.y13_c00193{bottom:529.547067pt;}
.y12_c00193{bottom:547.947067pt;}
.y11_c00193{bottom:566.347067pt;}
.y10_c00193{bottom:584.747067pt;}
.yf_c00193{bottom:628.347067pt;}
.ye_c00193{bottom:655.947067pt;}
.yd_c00193{bottom:683.547067pt;}
.yc_c00193{bottom:711.147067pt;}
.yb_c00193{bottom:738.747067pt;}
.ya_c00193{bottom:766.347067pt;}
.y9_c00193{bottom:793.947067pt;}
.y8_c00193{bottom:821.547067pt;}
.y7_c00193{bottom:849.147067pt;}
.y6_c00193{bottom:892.747067pt;}
.y5_c00193{bottom:920.347067pt;}
.y4_c00193{bottom:947.947067pt;}
.y3_c00193{bottom:975.547067pt;}
.h1_c00193{height:56.156250pt;}
.h2_c00193{height:57.375000pt;}
.h0_c00193{height:1122.666667pt;}
.w1_c00193{width:793.333333pt;}
.w0_c00193{width:793.626667pt;}
.x0_c00193{left:0.000000pt;}
.x2_c00193{left:113.440000pt;}
.x3_c00193{left:132.400000pt;}
.x1_c00193{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7959d4a193387e5367c3d578.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.093262;font-style:normal;font-weight:normal;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_d457e5fec1efd75a08e3eba6.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00194;src:url('chunks/assets/font_65760ef11092295c3b13f1fc.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:1.106934;font-style:normal;font-weight:normal;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_af132dc7810e3aafb1b6a269.woff2')format("woff");}.ff4_c00194{font-family:ff4_c00194;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls8_c00194{letter-spacing:-0.079200px;}
.ls10_c00194{letter-spacing:-0.064800px;}
.ls7_c00194{letter-spacing:-0.057600px;}
.lsf_c00194{letter-spacing:-0.050400px;}
.lsb_c00194{letter-spacing:-0.043200px;}
.lsc_c00194{letter-spacing:-0.036000px;}
.lsd_c00194{letter-spacing:-0.028800px;}
.lse_c00194{letter-spacing:-0.021600px;}
.ls9_c00194{letter-spacing:-0.014400px;}
.lsa_c00194{letter-spacing:-0.007200px;}
.ls4_c00194{letter-spacing:0.000000px;}
.ls1_c00194{letter-spacing:0.007200px;}
.ls2_c00194{letter-spacing:0.021600px;}
.ls5_c00194{letter-spacing:0.041940px;}
.ls0_c00194{letter-spacing:0.050328px;}
.ls3_c00194{letter-spacing:0.057600px;}
.ls6_c00194{letter-spacing:0.058716px;}
.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;}
}
.ws1_c00194{word-spacing:-20.073600px;}
.ws0_c00194{word-spacing:-19.936800px;}
.wsa_c00194{word-spacing:-2.707200px;}
.wsb_c00194{word-spacing:-2.613600px;}
.ws33_c00194{word-spacing:-1.972800px;}
.ws32_c00194{word-spacing:-1.951200px;}
.ws27_c00194{word-spacing:-0.936000px;}
.ws1c_c00194{word-spacing:-0.864000px;}
.ws2_c00194{word-spacing:0.000000px;}
.ws5_c00194{word-spacing:0.033552px;}
.ws3_c00194{word-spacing:0.041940px;}
.ws4_c00194{word-spacing:0.050328px;}
.ws2d_c00194{word-spacing:0.172800px;}
.ws1b_c00194{word-spacing:0.180000px;}
.ws15_c00194{word-spacing:0.900000px;}
.ws14_c00194{word-spacing:0.921600px;}
.ws2a_c00194{word-spacing:2.008800px;}
.ws29_c00194{word-spacing:2.066400px;}
.ws16_c00194{word-spacing:3.067200px;}
.ws17_c00194{word-spacing:3.074400px;}
.ws18_c00194{word-spacing:3.088800px;}
.ws2e_c00194{word-spacing:3.765600px;}
.ws2f_c00194{word-spacing:3.801600px;}
.wsc_c00194{word-spacing:5.587200px;}
.ws26_c00194{word-spacing:6.256800px;}
.ws25_c00194{word-spacing:6.307200px;}
.ws23_c00194{word-spacing:6.631200px;}
.ws24_c00194{word-spacing:6.717600px;}
.ws2b_c00194{word-spacing:6.919200px;}
.ws2c_c00194{word-spacing:7.063200px;}
.ws13_c00194{word-spacing:9.165600px;}
.ws11_c00194{word-spacing:9.273600px;}
.ws12_c00194{word-spacing:9.439200px;}
.ws31_c00194{word-spacing:10.987200px;}
.ws19_c00194{word-spacing:13.168800px;}
.ws1a_c00194{word-spacing:13.176000px;}
.wse_c00194{word-spacing:14.191200px;}
.wsd_c00194{word-spacing:14.335200px;}
.ws7_c00194{word-spacing:14.572800px;}
.wsf_c00194{word-spacing:14.616000px;}
.ws6_c00194{word-spacing:14.731200px;}
.ws1e_c00194{word-spacing:18.885600px;}
.ws1d_c00194{word-spacing:18.979200px;}
.ws28_c00194{word-spacing:19.260000px;}
.ws10_c00194{word-spacing:22.896000px;}
.ws21_c00194{word-spacing:27.180000px;}
.ws22_c00194{word-spacing:27.187200px;}
.ws30_c00194{word-spacing:29.347200px;}
.ws9_c00194{word-spacing:35.028000px;}
.ws8_c00194{word-spacing:35.085600px;}
.ws1f_c00194{word-spacing:46.706400px;}
.ws20_c00194{word-spacing:46.735200px;}
._1_c00194{width:1.396800px;}
._0_c00194{width:187.555680px;}
.fc0_c00194{color:rgb(0,0,0);}
.fs0_c00194{font-size:72.000000px;}
.fs1_c00194{font-size:83.880000px;}
.y0_c00194{bottom:0.000000px;}
.y2_c00194{bottom:46.830450px;}
.y1_c00194{bottom:67.530450px;}
.y20_c00194{bottom:145.830450px;}
.y1f_c00194{bottom:176.880450px;}
.y1e_c00194{bottom:207.930450px;}
.y1d_c00194{bottom:238.980450px;}
.y1c_c00194{bottom:288.030450px;}
.y1b_c00194{bottom:319.080450px;}
.y1a_c00194{bottom:350.040450px;}
.y19_c00194{bottom:381.090450px;}
.y18_c00194{bottom:412.140450px;}
.y17_c00194{bottom:443.190450px;}
.y16_c00194{bottom:474.240450px;}
.y15_c00194{bottom:505.290450px;}
.y14_c00194{bottom:536.340450px;}
.y13_c00194{bottom:567.390450px;}
.y12_c00194{bottom:598.440450px;}
.y11_c00194{bottom:647.490450px;}
.y10_c00194{bottom:678.540450px;}
.yf_c00194{bottom:709.590450px;}
.ye_c00194{bottom:740.640450px;}
.yd_c00194{bottom:771.690450px;}
.yc_c00194{bottom:802.740450px;}
.yb_c00194{bottom:833.790450px;}
.ya_c00194{bottom:864.840450px;}
.y9_c00194{bottom:895.890450px;}
.y8_c00194{bottom:926.940450px;}
.y7_c00194{bottom:957.990450px;}
.y6_c00194{bottom:1007.040450px;}
.y5_c00194{bottom:1046.184600px;}
.y4_c00194{bottom:1070.404950px;}
.y3_c00194{bottom:1094.520450px;}
.h1_c00194{height:63.175781px;}
.h3_c00194{height:64.546875px;}
.h4_c00194{height:75.093750px;}
.h2_c00194{height:87.484219px;}
.h0_c00194{height:1263.000000px;}
.w1_c00194{width:892.500000px;}
.w0_c00194{width:892.830000px;}
.x0_c00194{left:0.000000px;}
.x2_c00194{left:170.100000px;}
.x3_c00194{left:224.100000px;}
.x4_c00194{left:261.908910px;}
.x1_c00194{left:738.360000px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls8_c00194{letter-spacing:-0.070400pt;}
.ls10_c00194{letter-spacing:-0.057600pt;}
.ls7_c00194{letter-spacing:-0.051200pt;}
.lsf_c00194{letter-spacing:-0.044800pt;}
.lsb_c00194{letter-spacing:-0.038400pt;}
.lsc_c00194{letter-spacing:-0.032000pt;}
.lsd_c00194{letter-spacing:-0.025600pt;}
.lse_c00194{letter-spacing:-0.019200pt;}
.ls9_c00194{letter-spacing:-0.012800pt;}
.lsa_c00194{letter-spacing:-0.006400pt;}
.ls4_c00194{letter-spacing:0.000000pt;}
.ls1_c00194{letter-spacing:0.006400pt;}
.ls2_c00194{letter-spacing:0.019200pt;}
.ls5_c00194{letter-spacing:0.037280pt;}
.ls0_c00194{letter-spacing:0.044736pt;}
.ls3_c00194{letter-spacing:0.051200pt;}
.ls6_c00194{letter-spacing:0.052192pt;}
.ws1_c00194{word-spacing:-17.843200pt;}
.ws0_c00194{word-spacing:-17.721600pt;}
.wsa_c00194{word-spacing:-2.406400pt;}
.wsb_c00194{word-spacing:-2.323200pt;}
.ws33_c00194{word-spacing:-1.753600pt;}
.ws32_c00194{word-spacing:-1.734400pt;}
.ws27_c00194{word-spacing:-0.832000pt;}
.ws1c_c00194{word-spacing:-0.768000pt;}
.ws2_c00194{word-spacing:0.000000pt;}
.ws5_c00194{word-spacing:0.029824pt;}
.ws3_c00194{word-spacing:0.037280pt;}
.ws4_c00194{word-spacing:0.044736pt;}
.ws2d_c00194{word-spacing:0.153600pt;}
.ws1b_c00194{word-spacing:0.160000pt;}
.ws15_c00194{word-spacing:0.800000pt;}
.ws14_c00194{word-spacing:0.819200pt;}
.ws2a_c00194{word-spacing:1.785600pt;}
.ws29_c00194{word-spacing:1.836800pt;}
.ws16_c00194{word-spacing:2.726400pt;}
.ws17_c00194{word-spacing:2.732800pt;}
.ws18_c00194{word-spacing:2.745600pt;}
.ws2e_c00194{word-spacing:3.347200pt;}
.ws2f_c00194{word-spacing:3.379200pt;}
.wsc_c00194{word-spacing:4.966400pt;}
.ws26_c00194{word-spacing:5.561600pt;}
.ws25_c00194{word-spacing:5.606400pt;}
.ws23_c00194{word-spacing:5.894400pt;}
.ws24_c00194{word-spacing:5.971200pt;}
.ws2b_c00194{word-spacing:6.150400pt;}
.ws2c_c00194{word-spacing:6.278400pt;}
.ws13_c00194{word-spacing:8.147200pt;}
.ws11_c00194{word-spacing:8.243200pt;}
.ws12_c00194{word-spacing:8.390400pt;}
.ws31_c00194{word-spacing:9.766400pt;}
.ws19_c00194{word-spacing:11.705600pt;}
.ws1a_c00194{word-spacing:11.712000pt;}
.wse_c00194{word-spacing:12.614400pt;}
.wsd_c00194{word-spacing:12.742400pt;}
.ws7_c00194{word-spacing:12.953600pt;}
.wsf_c00194{word-spacing:12.992000pt;}
.ws6_c00194{word-spacing:13.094400pt;}
.ws1e_c00194{word-spacing:16.787200pt;}
.ws1d_c00194{word-spacing:16.870400pt;}
.ws28_c00194{word-spacing:17.120000pt;}
.ws10_c00194{word-spacing:20.352000pt;}
.ws21_c00194{word-spacing:24.160000pt;}
.ws22_c00194{word-spacing:24.166400pt;}
.ws30_c00194{word-spacing:26.086400pt;}
.ws9_c00194{word-spacing:31.136000pt;}
.ws8_c00194{word-spacing:31.187200pt;}
.ws1f_c00194{word-spacing:41.516800pt;}
.ws20_c00194{word-spacing:41.542400pt;}
._1_c00194{width:1.241600pt;}
._0_c00194{width:166.716160pt;}
.fs0_c00194{font-size:64.000000pt;}
.fs1_c00194{font-size:74.560000pt;}
.y0_c00194{bottom:0.000000pt;}
.y2_c00194{bottom:41.627067pt;}
.y1_c00194{bottom:60.027067pt;}
.y20_c00194{bottom:129.627067pt;}
.y1f_c00194{bottom:157.227067pt;}
.y1e_c00194{bottom:184.827067pt;}
.y1d_c00194{bottom:212.427067pt;}
.y1c_c00194{bottom:256.027067pt;}
.y1b_c00194{bottom:283.627067pt;}
.y1a_c00194{bottom:311.147067pt;}
.y19_c00194{bottom:338.747067pt;}
.y18_c00194{bottom:366.347067pt;}
.y17_c00194{bottom:393.947067pt;}
.y16_c00194{bottom:421.547067pt;}
.y15_c00194{bottom:449.147067pt;}
.y14_c00194{bottom:476.747067pt;}
.y13_c00194{bottom:504.347067pt;}
.y12_c00194{bottom:531.947067pt;}
.y11_c00194{bottom:575.547067pt;}
.y10_c00194{bottom:603.147067pt;}
.yf_c00194{bottom:630.747067pt;}
.ye_c00194{bottom:658.347067pt;}
.yd_c00194{bottom:685.947067pt;}
.yc_c00194{bottom:713.547067pt;}
.yb_c00194{bottom:741.147067pt;}
.ya_c00194{bottom:768.747067pt;}
.y9_c00194{bottom:796.347067pt;}
.y8_c00194{bottom:823.947067pt;}
.y7_c00194{bottom:851.547067pt;}
.y6_c00194{bottom:895.147067pt;}
.y5_c00194{bottom:929.941867pt;}
.y4_c00194{bottom:951.471067pt;}
.y3_c00194{bottom:972.907067pt;}
.h1_c00194{height:56.156250pt;}
.h3_c00194{height:57.375000pt;}
.h4_c00194{height:66.750000pt;}
.h2_c00194{height:77.763750pt;}
.h0_c00194{height:1122.666667pt;}
.w1_c00194{width:793.333333pt;}
.w0_c00194{width:793.626667pt;}
.x0_c00194{left:0.000000pt;}
.x2_c00194{left:151.200000pt;}
.x3_c00194{left:199.200000pt;}
.x4_c00194{left:232.807920pt;}
.x1_c00194{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b680439357c9009ecd42ed44.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.093262;font-style:normal;font-weight:normal;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_4bac160cd01599415e4bcae8.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.106934;font-style:normal;font-weight:normal;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_d4f712c3e467784deb11e255.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00195{letter-spacing:-0.086400px;}
.lse_c00195{letter-spacing:-0.072000px;}
.lsa_c00195{letter-spacing:-0.064800px;}
.lsc_c00195{letter-spacing:-0.057600px;}
.ls6_c00195{letter-spacing:-0.050400px;}
.ls9_c00195{letter-spacing:-0.043200px;}
.ls3_c00195{letter-spacing:-0.036000px;}
.lsb_c00195{letter-spacing:-0.028800px;}
.ls5_c00195{letter-spacing:-0.021600px;}
.ls8_c00195{letter-spacing:-0.014400px;}
.ls4_c00195{letter-spacing:-0.007200px;}
.ls2_c00195{letter-spacing:0.000000px;}
.ls1_c00195{letter-spacing:0.028800px;}
.ls7_c00195{letter-spacing:0.043200px;}
.ls0_c00195{letter-spacing:0.144000px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00195{word-spacing:-20.008800px;}
.ws1_c00195{word-spacing:-19.944000px;}
.ws21_c00195{word-spacing:-4.125600px;}
.wsa_c00195{word-spacing:-2.764800px;}
.ws27_c00195{word-spacing:-2.692800px;}
.ws9_c00195{word-spacing:-2.671200px;}
.ws17_c00195{word-spacing:-0.532800px;}
.ws16_c00195{word-spacing:-0.511200px;}
.ws15_c00195{word-spacing:-0.475200px;}
.wsd_c00195{word-spacing:-0.187200px;}
.ws13_c00195{word-spacing:-0.172800px;}
.ws14_c00195{word-spacing:-0.144000px;}
.ws2_c00195{word-spacing:0.000000px;}
.ws1b_c00195{word-spacing:0.079200px;}
.ws22_c00195{word-spacing:0.172800px;}
.ws8_c00195{word-spacing:0.194400px;}
.ws28_c00195{word-spacing:0.201600px;}
.ws1e_c00195{word-spacing:4.140000px;}
.ws1f_c00195{word-spacing:4.219200px;}
.ws18_c00195{word-spacing:4.449600px;}
.ws19_c00195{word-spacing:4.492800px;}
.ws1a_c00195{word-spacing:4.507200px;}
.ws1d_c00195{word-spacing:5.896800px;}
.ws1c_c00195{word-spacing:5.918400px;}
.ws24_c00195{word-spacing:6.609600px;}
.ws23_c00195{word-spacing:6.674400px;}
.ws20_c00195{word-spacing:9.208800px;}
.wsf_c00195{word-spacing:12.074400px;}
.wse_c00195{word-spacing:12.081600px;}
.ws7_c00195{word-spacing:20.563200px;}
.ws6_c00195{word-spacing:20.577600px;}
.ws11_c00195{word-spacing:22.327200px;}
.ws12_c00195{word-spacing:22.528800px;}
.ws10_c00195{word-spacing:22.543200px;}
.wsc_c00195{word-spacing:24.991200px;}
.wsb_c00195{word-spacing:25.048800px;}
.ws26_c00195{word-spacing:32.961600px;}
.ws25_c00195{word-spacing:33.040800px;}
.ws3_c00195{word-spacing:35.438400px;}
.ws5_c00195{word-spacing:35.445600px;}
.ws4_c00195{word-spacing:35.474400px;}
._1_c00195{margin-left:-5.803200px;}
._0_c00195{width:1.166400px;}
.fc0_c00195{color:rgb(0,0,0);}
.fs0_c00195{font-size:72.000000px;}
.y0_c00195{bottom:0.000000px;}
.y2_c00195{bottom:46.830450px;}
.y1_c00195{bottom:67.530450px;}
.y19_c00195{bottom:306.300450px;}
.y18_c00195{bottom:355.440450px;}
.y17_c00195{bottom:386.490450px;}
.y16_c00195{bottom:417.540450px;}
.y15_c00195{bottom:448.590450px;}
.y14_c00195{bottom:497.640450px;}
.y13_c00195{bottom:546.600450px;}
.y12_c00195{bottom:577.650450px;}
.y11_c00195{bottom:608.700450px;}
.y10_c00195{bottom:639.750450px;}
.yf_c00195{bottom:670.890450px;}
.ye_c00195{bottom:719.940450px;}
.yd_c00195{bottom:750.990450px;}
.yc_c00195{bottom:782.040450px;}
.yb_c00195{bottom:813.090450px;}
.ya_c00195{bottom:844.140450px;}
.y9_c00195{bottom:875.190450px;}
.y8_c00195{bottom:924.240450px;}
.y7_c00195{bottom:955.290450px;}
.y6_c00195{bottom:986.340450px;}
.y5_c00195{bottom:1035.390450px;}
.y4_c00195{bottom:1066.440450px;}
.y3_c00195{bottom:1097.490450px;}
.h1_c00195{height:63.175781px;}
.h3_c00195{height:64.546875px;}
.h2_c00195{height:75.093750px;}
.h0_c00195{height:1263.000000px;}
.w1_c00195{width:892.500000px;}
.w0_c00195{width:892.830000px;}
.x0_c00195{left:0.000000px;}
.x2_c00195{left:127.620000px;}
.x1_c00195{left:695.880000px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.lsd_c00195{letter-spacing:-0.076800pt;}
.lse_c00195{letter-spacing:-0.064000pt;}
.lsa_c00195{letter-spacing:-0.057600pt;}
.lsc_c00195{letter-spacing:-0.051200pt;}
.ls6_c00195{letter-spacing:-0.044800pt;}
.ls9_c00195{letter-spacing:-0.038400pt;}
.ls3_c00195{letter-spacing:-0.032000pt;}
.lsb_c00195{letter-spacing:-0.025600pt;}
.ls5_c00195{letter-spacing:-0.019200pt;}
.ls8_c00195{letter-spacing:-0.012800pt;}
.ls4_c00195{letter-spacing:-0.006400pt;}
.ls2_c00195{letter-spacing:0.000000pt;}
.ls1_c00195{letter-spacing:0.025600pt;}
.ls7_c00195{letter-spacing:0.038400pt;}
.ls0_c00195{letter-spacing:0.128000pt;}
.ws0_c00195{word-spacing:-17.785600pt;}
.ws1_c00195{word-spacing:-17.728000pt;}
.ws21_c00195{word-spacing:-3.667200pt;}
.wsa_c00195{word-spacing:-2.457600pt;}
.ws27_c00195{word-spacing:-2.393600pt;}
.ws9_c00195{word-spacing:-2.374400pt;}
.ws17_c00195{word-spacing:-0.473600pt;}
.ws16_c00195{word-spacing:-0.454400pt;}
.ws15_c00195{word-spacing:-0.422400pt;}
.wsd_c00195{word-spacing:-0.166400pt;}
.ws13_c00195{word-spacing:-0.153600pt;}
.ws14_c00195{word-spacing:-0.128000pt;}
.ws2_c00195{word-spacing:0.000000pt;}
.ws1b_c00195{word-spacing:0.070400pt;}
.ws22_c00195{word-spacing:0.153600pt;}
.ws8_c00195{word-spacing:0.172800pt;}
.ws28_c00195{word-spacing:0.179200pt;}
.ws1e_c00195{word-spacing:3.680000pt;}
.ws1f_c00195{word-spacing:3.750400pt;}
.ws18_c00195{word-spacing:3.955200pt;}
.ws19_c00195{word-spacing:3.993600pt;}
.ws1a_c00195{word-spacing:4.006400pt;}
.ws1d_c00195{word-spacing:5.241600pt;}
.ws1c_c00195{word-spacing:5.260800pt;}
.ws24_c00195{word-spacing:5.875200pt;}
.ws23_c00195{word-spacing:5.932800pt;}
.ws20_c00195{word-spacing:8.185600pt;}
.wsf_c00195{word-spacing:10.732800pt;}
.wse_c00195{word-spacing:10.739200pt;}
.ws7_c00195{word-spacing:18.278400pt;}
.ws6_c00195{word-spacing:18.291200pt;}
.ws11_c00195{word-spacing:19.846400pt;}
.ws12_c00195{word-spacing:20.025600pt;}
.ws10_c00195{word-spacing:20.038400pt;}
.wsc_c00195{word-spacing:22.214400pt;}
.wsb_c00195{word-spacing:22.265600pt;}
.ws26_c00195{word-spacing:29.299200pt;}
.ws25_c00195{word-spacing:29.369600pt;}
.ws3_c00195{word-spacing:31.500800pt;}
.ws5_c00195{word-spacing:31.507200pt;}
.ws4_c00195{word-spacing:31.532800pt;}
._1_c00195{margin-left:-5.158400pt;}
._0_c00195{width:1.036800pt;}
.fs0_c00195{font-size:64.000000pt;}
.y0_c00195{bottom:0.000000pt;}
.y2_c00195{bottom:41.627067pt;}
.y1_c00195{bottom:60.027067pt;}
.y19_c00195{bottom:272.267067pt;}
.y18_c00195{bottom:315.947067pt;}
.y17_c00195{bottom:343.547067pt;}
.y16_c00195{bottom:371.147067pt;}
.y15_c00195{bottom:398.747067pt;}
.y14_c00195{bottom:442.347067pt;}
.y13_c00195{bottom:485.867067pt;}
.y12_c00195{bottom:513.467067pt;}
.y11_c00195{bottom:541.067067pt;}
.y10_c00195{bottom:568.667067pt;}
.yf_c00195{bottom:596.347067pt;}
.ye_c00195{bottom:639.947067pt;}
.yd_c00195{bottom:667.547067pt;}
.yc_c00195{bottom:695.147067pt;}
.yb_c00195{bottom:722.747067pt;}
.ya_c00195{bottom:750.347067pt;}
.y9_c00195{bottom:777.947067pt;}
.y8_c00195{bottom:821.547067pt;}
.y7_c00195{bottom:849.147067pt;}
.y6_c00195{bottom:876.747067pt;}
.y5_c00195{bottom:920.347067pt;}
.y4_c00195{bottom:947.947067pt;}
.y3_c00195{bottom:975.547067pt;}
.h1_c00195{height:56.156250pt;}
.h3_c00195{height:57.375000pt;}
.h2_c00195{height:66.750000pt;}
.h0_c00195{height:1122.666667pt;}
.w1_c00195{width:793.333333pt;}
.w0_c00195{width:793.626667pt;}
.x0_c00195{left:0.000000pt;}
.x2_c00195{left:113.440000pt;}
.x1_c00195{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7c9dbbc14745da7b3a9b24b6.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.093262;font-style:normal;font-weight:normal;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_f284bb092f9783ef7b0005b5.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00196;src:url('chunks/assets/font_da8e52ab506c2235fc1a0e91.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:1.106934;font-style:normal;font-weight:normal;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_b6f890bb2bb1d6c63a63f0a9.woff2')format("woff");}.ff4_c00196{font-family:ff4_c00196;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00196{letter-spacing:-0.100800px;}
.lsa_c00196{letter-spacing:-0.079200px;}
.lsc_c00196{letter-spacing:-0.064800px;}
.ls8_c00196{letter-spacing:-0.057600px;}
.ls5_c00196{letter-spacing:-0.050400px;}
.ls7_c00196{letter-spacing:-0.043200px;}
.lsb_c00196{letter-spacing:-0.036000px;}
.lse_c00196{letter-spacing:-0.028800px;}
.ls6_c00196{letter-spacing:-0.021600px;}
.ls9_c00196{letter-spacing:-0.014400px;}
.lsf_c00196{letter-spacing:-0.007200px;}
.ls4_c00196{letter-spacing:0.000000px;}
.ls2_c00196{letter-spacing:0.007200px;}
.ls3_c00196{letter-spacing:0.043200px;}
.ls0_c00196{letter-spacing:0.067104px;}
.ls1_c00196{letter-spacing:0.083880px;}
.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:-19.936800px;}
.wsf_c00196{word-spacing:-4.838400px;}
.wse_c00196{word-spacing:-4.788000px;}
.ws10_c00196{word-spacing:-3.384000px;}
.ws11_c00196{word-spacing:-3.376800px;}
.ws2d_c00196{word-spacing:-3.247200px;}
.ws2e_c00196{word-spacing:-3.016800px;}
.ws33_c00196{word-spacing:-2.354400px;}
.ws32_c00196{word-spacing:-2.332800px;}
.ws29_c00196{word-spacing:-1.958400px;}
.ws2a_c00196{word-spacing:-1.936800px;}
.ws31_c00196{word-spacing:-1.598400px;}
.ws6_c00196{word-spacing:-1.260000px;}
.ws7_c00196{word-spacing:-1.238400px;}
.ws2f_c00196{word-spacing:-0.532800px;}
.ws30_c00196{word-spacing:-0.504000px;}
.ws1_c00196{word-spacing:0.000000px;}
.ws3_c00196{word-spacing:0.008388px;}
.ws2_c00196{word-spacing:0.025164px;}
.ws34_c00196{word-spacing:0.158400px;}
.ws1c_c00196{word-spacing:0.180000px;}
.ws1b_c00196{word-spacing:0.187200px;}
.ws12_c00196{word-spacing:0.849600px;}
.wsd_c00196{word-spacing:0.871200px;}
.wsb_c00196{word-spacing:0.892800px;}
.wsc_c00196{word-spacing:0.957600px;}
.ws13_c00196{word-spacing:0.993600px;}
.ws16_c00196{word-spacing:4.435200px;}
.ws15_c00196{word-spacing:4.528800px;}
.ws14_c00196{word-spacing:4.536000px;}
.ws27_c00196{word-spacing:5.954400px;}
.ws28_c00196{word-spacing:6.040800px;}
.ws21_c00196{word-spacing:6.660000px;}
.ws22_c00196{word-spacing:6.667200px;}
.ws1a_c00196{word-spacing:7.797600px;}
.ws18_c00196{word-spacing:7.855200px;}
.ws19_c00196{word-spacing:7.999200px;}
.ws5_c00196{word-spacing:12.780000px;}
.ws4_c00196{word-spacing:12.808800px;}
.ws9_c00196{word-spacing:17.791200px;}
.ws8_c00196{word-spacing:17.841600px;}
.ws1d_c00196{word-spacing:20.887200px;}
.ws20_c00196{word-spacing:21.031200px;}
.ws1f_c00196{word-spacing:21.045600px;}
.ws1e_c00196{word-spacing:21.088800px;}
.wsa_c00196{word-spacing:22.536000px;}
.ws26_c00196{word-spacing:28.476000px;}
.ws25_c00196{word-spacing:28.627200px;}
.ws2b_c00196{word-spacing:28.972800px;}
.ws2c_c00196{word-spacing:29.023200px;}
.ws17_c00196{word-spacing:30.391200px;}
.ws23_c00196{word-spacing:47.368800px;}
.ws24_c00196{word-spacing:47.419200px;}
._2_c00196{margin-left:-1.072800px;}
._1_c00196{width:1.281600px;}
._0_c00196{width:187.555680px;}
.fc0_c00196{color:rgb(0,0,0);}
.fs0_c00196{font-size:72.000000px;}
.fs1_c00196{font-size:83.880000px;}
.y0_c00196{bottom:0.000000px;}
.y2_c00196{bottom:46.830450px;}
.y1_c00196{bottom:67.530450px;}
.y21_c00196{bottom:149.250450px;}
.y20_c00196{bottom:169.950450px;}
.y1f_c00196{bottom:190.650450px;}
.y1e_c00196{bottom:211.350450px;}
.y1d_c00196{bottom:232.050450px;}
.y1c_c00196{bottom:281.100450px;}
.y1b_c00196{bottom:312.150450px;}
.y1a_c00196{bottom:343.200450px;}
.y19_c00196{bottom:374.250450px;}
.y18_c00196{bottom:405.300450px;}
.y17_c00196{bottom:436.350450px;}
.y16_c00196{bottom:467.400450px;}
.y15_c00196{bottom:498.450450px;}
.y14_c00196{bottom:529.500450px;}
.y13_c00196{bottom:560.550450px;}
.y12_c00196{bottom:591.600450px;}
.y11_c00196{bottom:640.650450px;}
.y10_c00196{bottom:671.700450px;}
.yf_c00196{bottom:702.750450px;}
.ye_c00196{bottom:733.710450px;}
.yd_c00196{bottom:764.760450px;}
.yc_c00196{bottom:795.810450px;}
.yb_c00196{bottom:826.860450px;}
.ya_c00196{bottom:857.910450px;}
.y9_c00196{bottom:888.960450px;}
.y8_c00196{bottom:920.010450px;}
.y7_c00196{bottom:951.060450px;}
.y6_c00196{bottom:982.110450px;}
.y5_c00196{bottom:1031.160450px;}
.y4_c00196{bottom:1070.404950px;}
.y3_c00196{bottom:1094.520450px;}
.h1_c00196{height:63.175781px;}
.h3_c00196{height:64.546875px;}
.h4_c00196{height:75.093750px;}
.h2_c00196{height:87.484219px;}
.h0_c00196{height:1263.000000px;}
.w1_c00196{width:892.500000px;}
.w0_c00196{width:892.830000px;}
.x0_c00196{left:0.000000px;}
.x2_c00196{left:170.100000px;}
.x5_c00196{left:191.430000px;}
.x3_c00196{left:224.100000px;}
.x4_c00196{left:261.908910px;}
.x1_c00196{left:738.360000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.lsd_c00196{letter-spacing:-0.089600pt;}
.lsa_c00196{letter-spacing:-0.070400pt;}
.lsc_c00196{letter-spacing:-0.057600pt;}
.ls8_c00196{letter-spacing:-0.051200pt;}
.ls5_c00196{letter-spacing:-0.044800pt;}
.ls7_c00196{letter-spacing:-0.038400pt;}
.lsb_c00196{letter-spacing:-0.032000pt;}
.lse_c00196{letter-spacing:-0.025600pt;}
.ls6_c00196{letter-spacing:-0.019200pt;}
.ls9_c00196{letter-spacing:-0.012800pt;}
.lsf_c00196{letter-spacing:-0.006400pt;}
.ls4_c00196{letter-spacing:0.000000pt;}
.ls2_c00196{letter-spacing:0.006400pt;}
.ls3_c00196{letter-spacing:0.038400pt;}
.ls0_c00196{letter-spacing:0.059648pt;}
.ls1_c00196{letter-spacing:0.074560pt;}
.ws0_c00196{word-spacing:-17.721600pt;}
.wsf_c00196{word-spacing:-4.300800pt;}
.wse_c00196{word-spacing:-4.256000pt;}
.ws10_c00196{word-spacing:-3.008000pt;}
.ws11_c00196{word-spacing:-3.001600pt;}
.ws2d_c00196{word-spacing:-2.886400pt;}
.ws2e_c00196{word-spacing:-2.681600pt;}
.ws33_c00196{word-spacing:-2.092800pt;}
.ws32_c00196{word-spacing:-2.073600pt;}
.ws29_c00196{word-spacing:-1.740800pt;}
.ws2a_c00196{word-spacing:-1.721600pt;}
.ws31_c00196{word-spacing:-1.420800pt;}
.ws6_c00196{word-spacing:-1.120000pt;}
.ws7_c00196{word-spacing:-1.100800pt;}
.ws2f_c00196{word-spacing:-0.473600pt;}
.ws30_c00196{word-spacing:-0.448000pt;}
.ws1_c00196{word-spacing:0.000000pt;}
.ws3_c00196{word-spacing:0.007456pt;}
.ws2_c00196{word-spacing:0.022368pt;}
.ws34_c00196{word-spacing:0.140800pt;}
.ws1c_c00196{word-spacing:0.160000pt;}
.ws1b_c00196{word-spacing:0.166400pt;}
.ws12_c00196{word-spacing:0.755200pt;}
.wsd_c00196{word-spacing:0.774400pt;}
.wsb_c00196{word-spacing:0.793600pt;}
.wsc_c00196{word-spacing:0.851200pt;}
.ws13_c00196{word-spacing:0.883200pt;}
.ws16_c00196{word-spacing:3.942400pt;}
.ws15_c00196{word-spacing:4.025600pt;}
.ws14_c00196{word-spacing:4.032000pt;}
.ws27_c00196{word-spacing:5.292800pt;}
.ws28_c00196{word-spacing:5.369600pt;}
.ws21_c00196{word-spacing:5.920000pt;}
.ws22_c00196{word-spacing:5.926400pt;}
.ws1a_c00196{word-spacing:6.931200pt;}
.ws18_c00196{word-spacing:6.982400pt;}
.ws19_c00196{word-spacing:7.110400pt;}
.ws5_c00196{word-spacing:11.360000pt;}
.ws4_c00196{word-spacing:11.385600pt;}
.ws9_c00196{word-spacing:15.814400pt;}
.ws8_c00196{word-spacing:15.859200pt;}
.ws1d_c00196{word-spacing:18.566400pt;}
.ws20_c00196{word-spacing:18.694400pt;}
.ws1f_c00196{word-spacing:18.707200pt;}
.ws1e_c00196{word-spacing:18.745600pt;}
.wsa_c00196{word-spacing:20.032000pt;}
.ws26_c00196{word-spacing:25.312000pt;}
.ws25_c00196{word-spacing:25.446400pt;}
.ws2b_c00196{word-spacing:25.753600pt;}
.ws2c_c00196{word-spacing:25.798400pt;}
.ws17_c00196{word-spacing:27.014400pt;}
.ws23_c00196{word-spacing:42.105600pt;}
.ws24_c00196{word-spacing:42.150400pt;}
._2_c00196{margin-left:-0.953600pt;}
._1_c00196{width:1.139200pt;}
._0_c00196{width:166.716160pt;}
.fs0_c00196{font-size:64.000000pt;}
.fs1_c00196{font-size:74.560000pt;}
.y0_c00196{bottom:0.000000pt;}
.y2_c00196{bottom:41.627067pt;}
.y1_c00196{bottom:60.027067pt;}
.y21_c00196{bottom:132.667067pt;}
.y20_c00196{bottom:151.067067pt;}
.y1f_c00196{bottom:169.467067pt;}
.y1e_c00196{bottom:187.867067pt;}
.y1d_c00196{bottom:206.267067pt;}
.y1c_c00196{bottom:249.867067pt;}
.y1b_c00196{bottom:277.467067pt;}
.y1a_c00196{bottom:305.067067pt;}
.y19_c00196{bottom:332.667067pt;}
.y18_c00196{bottom:360.267067pt;}
.y17_c00196{bottom:387.867067pt;}
.y16_c00196{bottom:415.467067pt;}
.y15_c00196{bottom:443.067067pt;}
.y14_c00196{bottom:470.667067pt;}
.y13_c00196{bottom:498.267067pt;}
.y12_c00196{bottom:525.867067pt;}
.y11_c00196{bottom:569.467067pt;}
.y10_c00196{bottom:597.067067pt;}
.yf_c00196{bottom:624.667067pt;}
.ye_c00196{bottom:652.187067pt;}
.yd_c00196{bottom:679.787067pt;}
.yc_c00196{bottom:707.387067pt;}
.yb_c00196{bottom:734.987067pt;}
.ya_c00196{bottom:762.587067pt;}
.y9_c00196{bottom:790.187067pt;}
.y8_c00196{bottom:817.787067pt;}
.y7_c00196{bottom:845.387067pt;}
.y6_c00196{bottom:872.987067pt;}
.y5_c00196{bottom:916.587067pt;}
.y4_c00196{bottom:951.471067pt;}
.y3_c00196{bottom:972.907067pt;}
.h1_c00196{height:56.156250pt;}
.h3_c00196{height:57.375000pt;}
.h4_c00196{height:66.750000pt;}
.h2_c00196{height:77.763750pt;}
.h0_c00196{height:1122.666667pt;}
.w1_c00196{width:793.333333pt;}
.w0_c00196{width:793.626667pt;}
.x0_c00196{left:0.000000pt;}
.x2_c00196{left:151.200000pt;}
.x5_c00196{left:170.160000pt;}
.x3_c00196{left:199.200000pt;}
.x4_c00196{left:232.807920pt;}
.x1_c00196{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eb926c30d3df05afdff4a1ab.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.093262;font-style:normal;font-weight:normal;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_a749e9d7c83a7a27c138bc72.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.106934;font-style:normal;font-weight:normal;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_43c33bab6d8c59de7888bce9.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls7_c00197{letter-spacing:-0.093600px;}
.ls5_c00197{letter-spacing:-0.079200px;}
.lse_c00197{letter-spacing:-0.072000px;}
.lsc_c00197{letter-spacing:-0.064800px;}
.ls9_c00197{letter-spacing:-0.057600px;}
.ls8_c00197{letter-spacing:-0.050400px;}
.ls6_c00197{letter-spacing:-0.043200px;}
.ls3_c00197{letter-spacing:-0.036000px;}
.lsa_c00197{letter-spacing:-0.028800px;}
.ls4_c00197{letter-spacing:-0.021600px;}
.lsd_c00197{letter-spacing:-0.014400px;}
.ls10_c00197{letter-spacing:-0.007200px;}
.ls2_c00197{letter-spacing:0.000000px;}
.lsb_c00197{letter-spacing:0.014400px;}
.lsf_c00197{letter-spacing:0.021600px;}
.ls1_c00197{letter-spacing:0.028800px;}
.ls0_c00197{letter-spacing:0.129600px;}
.sc__c00197{text-shadow:none;}
.sc0_c00197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00197{-webkit-text-stroke:0px transparent;}
.sc0_c00197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00197{word-spacing:-19.944000px;}
.ws21_c00197{word-spacing:-3.132000px;}
.ws38_c00197{word-spacing:-3.110400px;}
.ws20_c00197{word-spacing:-3.038400px;}
.ws37_c00197{word-spacing:-3.024000px;}
.ws3_c00197{word-spacing:-2.700000px;}
.ws2_c00197{word-spacing:-2.685600px;}
.ws5_c00197{word-spacing:-0.993600px;}
.ws30_c00197{word-spacing:-0.943200px;}
.ws4_c00197{word-spacing:-0.900000px;}
.ws2f_c00197{word-spacing:-0.806400px;}
.ws2e_c00197{word-spacing:-0.748800px;}
.ws26_c00197{word-spacing:-0.180000px;}
.ws25_c00197{word-spacing:-0.151200px;}
.ws18_c00197{word-spacing:-0.007200px;}
.ws1_c00197{word-spacing:0.000000px;}
.wsc_c00197{word-spacing:0.158400px;}
.ws31_c00197{word-spacing:0.172800px;}
.wsd_c00197{word-spacing:0.208800px;}
.ws17_c00197{word-spacing:0.223200px;}
.ws1f_c00197{word-spacing:0.576000px;}
.ws1e_c00197{word-spacing:0.626400px;}
.ws2a_c00197{word-spacing:1.562400px;}
.ws2b_c00197{word-spacing:1.612800px;}
.ws7_c00197{word-spacing:1.936800px;}
.ws6_c00197{word-spacing:2.052000px;}
.ws13_c00197{word-spacing:2.736000px;}
.ws8_c00197{word-spacing:3.016800px;}
.ws9_c00197{word-spacing:3.081600px;}
.ws33_c00197{word-spacing:3.765600px;}
.ws34_c00197{word-spacing:3.780000px;}
.ws32_c00197{word-spacing:3.844800px;}
.ws10_c00197{word-spacing:4.104000px;}
.ws11_c00197{word-spacing:4.161600px;}
.ws12_c00197{word-spacing:4.168800px;}
.wsb_c00197{word-spacing:4.500000px;}
.wsa_c00197{word-spacing:4.521600px;}
.ws1c_c00197{word-spacing:5.961600px;}
.ws1d_c00197{word-spacing:6.040800px;}
.ws40_c00197{word-spacing:7.761600px;}
.ws24_c00197{word-spacing:9.828000px;}
.ws23_c00197{word-spacing:9.921600px;}
.wse_c00197{word-spacing:12.420000px;}
.wsf_c00197{word-spacing:12.448800px;}
.ws19_c00197{word-spacing:13.557600px;}
.ws15_c00197{word-spacing:14.155200px;}
.ws16_c00197{word-spacing:14.184000px;}
.ws14_c00197{word-spacing:14.227200px;}
.ws3d_c00197{word-spacing:14.889600px;}
.ws3f_c00197{word-spacing:14.932800px;}
.ws3c_c00197{word-spacing:14.947200px;}
.ws3e_c00197{word-spacing:14.954400px;}
.ws3b_c00197{word-spacing:17.128800px;}
.ws39_c00197{word-spacing:17.136000px;}
.ws3a_c00197{word-spacing:17.143200px;}
.ws36_c00197{word-spacing:19.238400px;}
.ws35_c00197{word-spacing:19.260000px;}
.ws27_c00197{word-spacing:20.397600px;}
.ws29_c00197{word-spacing:20.419200px;}
.ws22_c00197{word-spacing:20.728800px;}
.ws28_c00197{word-spacing:20.772000px;}
.ws1b_c00197{word-spacing:28.108800px;}
.ws1a_c00197{word-spacing:28.281600px;}
.ws2c_c00197{word-spacing:34.380000px;}
.ws2d_c00197{word-spacing:34.394400px;}
._0_c00197{width:1.015200px;}
.fc0_c00197{color:rgb(0,0,0);}
.fs0_c00197{font-size:72.000000px;}
.y0_c00197{bottom:0.000000px;}
.y2_c00197{bottom:46.830450px;}
.y1_c00197{bottom:67.530450px;}
.y23_c00197{bottom:141.780450px;}
.y22_c00197{bottom:172.830450px;}
.y21_c00197{bottom:203.880450px;}
.y20_c00197{bottom:234.930450px;}
.y1f_c00197{bottom:265.980450px;}
.y1e_c00197{bottom:297.030450px;}
.y1d_c00197{bottom:346.080450px;}
.y1c_c00197{bottom:377.040450px;}
.y1b_c00197{bottom:408.090450px;}
.y1a_c00197{bottom:439.140450px;}
.y19_c00197{bottom:470.190450px;}
.y18_c00197{bottom:501.240450px;}
.y17_c00197{bottom:532.290450px;}
.y16_c00197{bottom:563.340450px;}
.y15_c00197{bottom:594.390450px;}
.y14_c00197{bottom:625.440450px;}
.y13_c00197{bottom:656.490450px;}
.y12_c00197{bottom:687.540450px;}
.y11_c00197{bottom:718.590450px;}
.y10_c00197{bottom:748.290450px;}
.yf_c00197{bottom:768.990450px;}
.ye_c00197{bottom:789.690450px;}
.yd_c00197{bottom:810.390450px;}
.yc_c00197{bottom:831.090450px;}
.yb_c00197{bottom:851.790450px;}
.ya_c00197{bottom:872.490450px;}
.y9_c00197{bottom:893.190450px;}
.y8_c00197{bottom:942.240450px;}
.y7_c00197{bottom:973.290450px;}
.y6_c00197{bottom:1004.340450px;}
.y5_c00197{bottom:1035.390450px;}
.y4_c00197{bottom:1066.440450px;}
.y3_c00197{bottom:1097.490450px;}
.h1_c00197{height:63.175781px;}
.h2_c00197{height:64.546875px;}
.h3_c00197{height:75.093750px;}
.h0_c00197{height:1263.000000px;}
.w1_c00197{width:892.500000px;}
.w0_c00197{width:892.830000px;}
.x0_c00197{left:0.000000px;}
.x2_c00197{left:127.620000px;}
.x3_c00197{left:148.950000px;}
.x1_c00197{left:695.880000px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls7_c00197{letter-spacing:-0.083200pt;}
.ls5_c00197{letter-spacing:-0.070400pt;}
.lse_c00197{letter-spacing:-0.064000pt;}
.lsc_c00197{letter-spacing:-0.057600pt;}
.ls9_c00197{letter-spacing:-0.051200pt;}
.ls8_c00197{letter-spacing:-0.044800pt;}
.ls6_c00197{letter-spacing:-0.038400pt;}
.ls3_c00197{letter-spacing:-0.032000pt;}
.lsa_c00197{letter-spacing:-0.025600pt;}
.ls4_c00197{letter-spacing:-0.019200pt;}
.lsd_c00197{letter-spacing:-0.012800pt;}
.ls10_c00197{letter-spacing:-0.006400pt;}
.ls2_c00197{letter-spacing:0.000000pt;}
.lsb_c00197{letter-spacing:0.012800pt;}
.lsf_c00197{letter-spacing:0.019200pt;}
.ls1_c00197{letter-spacing:0.025600pt;}
.ls0_c00197{letter-spacing:0.115200pt;}
.ws0_c00197{word-spacing:-17.728000pt;}
.ws21_c00197{word-spacing:-2.784000pt;}
.ws38_c00197{word-spacing:-2.764800pt;}
.ws20_c00197{word-spacing:-2.700800pt;}
.ws37_c00197{word-spacing:-2.688000pt;}
.ws3_c00197{word-spacing:-2.400000pt;}
.ws2_c00197{word-spacing:-2.387200pt;}
.ws5_c00197{word-spacing:-0.883200pt;}
.ws30_c00197{word-spacing:-0.838400pt;}
.ws4_c00197{word-spacing:-0.800000pt;}
.ws2f_c00197{word-spacing:-0.716800pt;}
.ws2e_c00197{word-spacing:-0.665600pt;}
.ws26_c00197{word-spacing:-0.160000pt;}
.ws25_c00197{word-spacing:-0.134400pt;}
.ws18_c00197{word-spacing:-0.006400pt;}
.ws1_c00197{word-spacing:0.000000pt;}
.wsc_c00197{word-spacing:0.140800pt;}
.ws31_c00197{word-spacing:0.153600pt;}
.wsd_c00197{word-spacing:0.185600pt;}
.ws17_c00197{word-spacing:0.198400pt;}
.ws1f_c00197{word-spacing:0.512000pt;}
.ws1e_c00197{word-spacing:0.556800pt;}
.ws2a_c00197{word-spacing:1.388800pt;}
.ws2b_c00197{word-spacing:1.433600pt;}
.ws7_c00197{word-spacing:1.721600pt;}
.ws6_c00197{word-spacing:1.824000pt;}
.ws13_c00197{word-spacing:2.432000pt;}
.ws8_c00197{word-spacing:2.681600pt;}
.ws9_c00197{word-spacing:2.739200pt;}
.ws33_c00197{word-spacing:3.347200pt;}
.ws34_c00197{word-spacing:3.360000pt;}
.ws32_c00197{word-spacing:3.417600pt;}
.ws10_c00197{word-spacing:3.648000pt;}
.ws11_c00197{word-spacing:3.699200pt;}
.ws12_c00197{word-spacing:3.705600pt;}
.wsb_c00197{word-spacing:4.000000pt;}
.wsa_c00197{word-spacing:4.019200pt;}
.ws1c_c00197{word-spacing:5.299200pt;}
.ws1d_c00197{word-spacing:5.369600pt;}
.ws40_c00197{word-spacing:6.899200pt;}
.ws24_c00197{word-spacing:8.736000pt;}
.ws23_c00197{word-spacing:8.819200pt;}
.wse_c00197{word-spacing:11.040000pt;}
.wsf_c00197{word-spacing:11.065600pt;}
.ws19_c00197{word-spacing:12.051200pt;}
.ws15_c00197{word-spacing:12.582400pt;}
.ws16_c00197{word-spacing:12.608000pt;}
.ws14_c00197{word-spacing:12.646400pt;}
.ws3d_c00197{word-spacing:13.235200pt;}
.ws3f_c00197{word-spacing:13.273600pt;}
.ws3c_c00197{word-spacing:13.286400pt;}
.ws3e_c00197{word-spacing:13.292800pt;}
.ws3b_c00197{word-spacing:15.225600pt;}
.ws39_c00197{word-spacing:15.232000pt;}
.ws3a_c00197{word-spacing:15.238400pt;}
.ws36_c00197{word-spacing:17.100800pt;}
.ws35_c00197{word-spacing:17.120000pt;}
.ws27_c00197{word-spacing:18.131200pt;}
.ws29_c00197{word-spacing:18.150400pt;}
.ws22_c00197{word-spacing:18.425600pt;}
.ws28_c00197{word-spacing:18.464000pt;}
.ws1b_c00197{word-spacing:24.985600pt;}
.ws1a_c00197{word-spacing:25.139200pt;}
.ws2c_c00197{word-spacing:30.560000pt;}
.ws2d_c00197{word-spacing:30.572800pt;}
._0_c00197{width:0.902400pt;}
.fs0_c00197{font-size:64.000000pt;}
.y0_c00197{bottom:0.000000pt;}
.y2_c00197{bottom:41.627067pt;}
.y1_c00197{bottom:60.027067pt;}
.y23_c00197{bottom:126.027067pt;}
.y22_c00197{bottom:153.627067pt;}
.y21_c00197{bottom:181.227067pt;}
.y20_c00197{bottom:208.827067pt;}
.y1f_c00197{bottom:236.427067pt;}
.y1e_c00197{bottom:264.027067pt;}
.y1d_c00197{bottom:307.627067pt;}
.y1c_c00197{bottom:335.147067pt;}
.y1b_c00197{bottom:362.747067pt;}
.y1a_c00197{bottom:390.347067pt;}
.y19_c00197{bottom:417.947067pt;}
.y18_c00197{bottom:445.547067pt;}
.y17_c00197{bottom:473.147067pt;}
.y16_c00197{bottom:500.747067pt;}
.y15_c00197{bottom:528.347067pt;}
.y14_c00197{bottom:555.947067pt;}
.y13_c00197{bottom:583.547067pt;}
.y12_c00197{bottom:611.147067pt;}
.y11_c00197{bottom:638.747067pt;}
.y10_c00197{bottom:665.147067pt;}
.yf_c00197{bottom:683.547067pt;}
.ye_c00197{bottom:701.947067pt;}
.yd_c00197{bottom:720.347067pt;}
.yc_c00197{bottom:738.747067pt;}
.yb_c00197{bottom:757.147067pt;}
.ya_c00197{bottom:775.547067pt;}
.y9_c00197{bottom:793.947067pt;}
.y8_c00197{bottom:837.547067pt;}
.y7_c00197{bottom:865.147067pt;}
.y6_c00197{bottom:892.747067pt;}
.y5_c00197{bottom:920.347067pt;}
.y4_c00197{bottom:947.947067pt;}
.y3_c00197{bottom:975.547067pt;}
.h1_c00197{height:56.156250pt;}
.h2_c00197{height:57.375000pt;}
.h3_c00197{height:66.750000pt;}
.h0_c00197{height:1122.666667pt;}
.w1_c00197{width:793.333333pt;}
.w0_c00197{width:793.626667pt;}
.x0_c00197{left:0.000000pt;}
.x2_c00197{left:113.440000pt;}
.x3_c00197{left:132.400000pt;}
.x1_c00197{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4531fc8bf4d169313a4bc836.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.093262;font-style:normal;font-weight:normal;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_e371821dbfcafbedf82be664.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.106934;font-style:normal;font-weight:normal;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_ad8b7c1b593ccc2a24bbcf51.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls3_c00198{letter-spacing:-0.072000px;}
.ls4_c00198{letter-spacing:-0.064800px;}
.ls5_c00198{letter-spacing:-0.057600px;}
.ls7_c00198{letter-spacing:-0.050400px;}
.ls6_c00198{letter-spacing:-0.043200px;}
.ls8_c00198{letter-spacing:-0.036000px;}
.ls2_c00198{letter-spacing:-0.028800px;}
.lsa_c00198{letter-spacing:-0.021600px;}
.lsb_c00198{letter-spacing:-0.014400px;}
.ls9_c00198{letter-spacing:-0.007200px;}
.ls1_c00198{letter-spacing:0.000000px;}
.ls0_c00198{letter-spacing:0.014400px;}
.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:-19.972800px;}
.ws24_c00198{word-spacing:-3.067200px;}
.wsa_c00198{word-spacing:-1.951200px;}
.ws30_c00198{word-spacing:-1.252800px;}
.ws2f_c00198{word-spacing:-1.238400px;}
.ws1_c00198{word-spacing:0.000000px;}
.ws9_c00198{word-spacing:0.158400px;}
.wse_c00198{word-spacing:0.165600px;}
.wsd_c00198{word-spacing:0.194400px;}
.ws33_c00198{word-spacing:0.849600px;}
.ws34_c00198{word-spacing:0.943200px;}
.ws13_c00198{word-spacing:2.001600px;}
.ws26_c00198{word-spacing:3.052800px;}
.ws25_c00198{word-spacing:3.132000px;}
.ws2e_c00198{word-spacing:4.125600px;}
.ws2d_c00198{word-spacing:4.168800px;}
.ws17_c00198{word-spacing:4.413600px;}
.ws16_c00198{word-spacing:4.500000px;}
.ws15_c00198{word-spacing:4.507200px;}
.ws14_c00198{word-spacing:4.521600px;}
.ws5_c00198{word-spacing:4.903200px;}
.ws29_c00198{word-spacing:5.212800px;}
.ws2a_c00198{word-spacing:5.241600px;}
.ws36_c00198{word-spacing:6.278400px;}
.ws35_c00198{word-spacing:6.328800px;}
.ws21_c00198{word-spacing:7.394400px;}
.ws32_c00198{word-spacing:7.401600px;}
.ws20_c00198{word-spacing:7.423200px;}
.ws31_c00198{word-spacing:7.473600px;}
.ws4_c00198{word-spacing:8.064000px;}
.ws2_c00198{word-spacing:8.107200px;}
.ws3_c00198{word-spacing:8.150400px;}
.ws23_c00198{word-spacing:9.590400px;}
.ws22_c00198{word-spacing:9.597600px;}
.ws6_c00198{word-spacing:9.741600px;}
.ws8_c00198{word-spacing:9.907200px;}
.ws7_c00198{word-spacing:9.921600px;}
.ws12_c00198{word-spacing:11.685600px;}
.ws11_c00198{word-spacing:11.714400px;}
.ws1a_c00198{word-spacing:12.405600px;}
.ws1b_c00198{word-spacing:12.564000px;}
.ws1f_c00198{word-spacing:12.780000px;}
.ws1e_c00198{word-spacing:12.859200px;}
.ws27_c00198{word-spacing:13.140000px;}
.ws28_c00198{word-spacing:13.176000px;}
.ws19_c00198{word-spacing:13.514400px;}
.ws18_c00198{word-spacing:13.586400px;}
.wsf_c00198{word-spacing:18.979200px;}
.ws10_c00198{word-spacing:19.058400px;}
.wsc_c00198{word-spacing:20.700000px;}
.wsb_c00198{word-spacing:20.779200px;}
.ws1d_c00198{word-spacing:21.427200px;}
.ws1c_c00198{word-spacing:21.456000px;}
.ws2c_c00198{word-spacing:29.772000px;}
.ws2b_c00198{word-spacing:29.793600px;}
._0_c00198{width:1.108800px;}
.fc0_c00198{color:rgb(0,0,0);}
.fs0_c00198{font-size:72.000000px;}
.y0_c00198{bottom:0.000000px;}
.y2_c00198{bottom:46.830450px;}
.y1_c00198{bottom:67.530450px;}
.y23_c00198{bottom:162.480450px;}
.y22_c00198{bottom:193.530450px;}
.y21_c00198{bottom:224.580450px;}
.y20_c00198{bottom:255.630450px;}
.y1f_c00198{bottom:286.680450px;}
.y1e_c00198{bottom:317.730450px;}
.y1d_c00198{bottom:348.690450px;}
.y1c_c00198{bottom:379.740450px;}
.y1b_c00198{bottom:410.790450px;}
.y1a_c00198{bottom:441.840450px;}
.y19_c00198{bottom:472.890450px;}
.y18_c00198{bottom:503.940450px;}
.y17_c00198{bottom:534.990450px;}
.y16_c00198{bottom:566.040450px;}
.y15_c00198{bottom:597.090450px;}
.y14_c00198{bottom:646.050450px;}
.y13_c00198{bottom:677.100450px;}
.y12_c00198{bottom:708.240450px;}
.y11_c00198{bottom:739.290450px;}
.y10_c00198{bottom:768.990450px;}
.yf_c00198{bottom:789.690450px;}
.ye_c00198{bottom:810.390450px;}
.yd_c00198{bottom:831.090450px;}
.yc_c00198{bottom:851.790450px;}
.yb_c00198{bottom:872.490450px;}
.ya_c00198{bottom:893.190450px;}
.y9_c00198{bottom:913.890450px;}
.y8_c00198{bottom:934.590450px;}
.y7_c00198{bottom:955.290450px;}
.y6_c00198{bottom:1004.340450px;}
.y5_c00198{bottom:1035.390450px;}
.y4_c00198{bottom:1066.440450px;}
.y3_c00198{bottom:1097.490450px;}
.h1_c00198{height:63.175781px;}
.h3_c00198{height:64.546875px;}
.h2_c00198{height:75.093750px;}
.h0_c00198{height:1263.000000px;}
.w1_c00198{width:892.500000px;}
.w0_c00198{width:892.830000px;}
.x0_c00198{left:0.000000px;}
.x2_c00198{left:170.100000px;}
.x3_c00198{left:191.430000px;}
.x1_c00198{left:738.360000px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls3_c00198{letter-spacing:-0.064000pt;}
.ls4_c00198{letter-spacing:-0.057600pt;}
.ls5_c00198{letter-spacing:-0.051200pt;}
.ls7_c00198{letter-spacing:-0.044800pt;}
.ls6_c00198{letter-spacing:-0.038400pt;}
.ls8_c00198{letter-spacing:-0.032000pt;}
.ls2_c00198{letter-spacing:-0.025600pt;}
.lsa_c00198{letter-spacing:-0.019200pt;}
.lsb_c00198{letter-spacing:-0.012800pt;}
.ls9_c00198{letter-spacing:-0.006400pt;}
.ls1_c00198{letter-spacing:0.000000pt;}
.ls0_c00198{letter-spacing:0.012800pt;}
.ws0_c00198{word-spacing:-17.753600pt;}
.ws24_c00198{word-spacing:-2.726400pt;}
.wsa_c00198{word-spacing:-1.734400pt;}
.ws30_c00198{word-spacing:-1.113600pt;}
.ws2f_c00198{word-spacing:-1.100800pt;}
.ws1_c00198{word-spacing:0.000000pt;}
.ws9_c00198{word-spacing:0.140800pt;}
.wse_c00198{word-spacing:0.147200pt;}
.wsd_c00198{word-spacing:0.172800pt;}
.ws33_c00198{word-spacing:0.755200pt;}
.ws34_c00198{word-spacing:0.838400pt;}
.ws13_c00198{word-spacing:1.779200pt;}
.ws26_c00198{word-spacing:2.713600pt;}
.ws25_c00198{word-spacing:2.784000pt;}
.ws2e_c00198{word-spacing:3.667200pt;}
.ws2d_c00198{word-spacing:3.705600pt;}
.ws17_c00198{word-spacing:3.923200pt;}
.ws16_c00198{word-spacing:4.000000pt;}
.ws15_c00198{word-spacing:4.006400pt;}
.ws14_c00198{word-spacing:4.019200pt;}
.ws5_c00198{word-spacing:4.358400pt;}
.ws29_c00198{word-spacing:4.633600pt;}
.ws2a_c00198{word-spacing:4.659200pt;}
.ws36_c00198{word-spacing:5.580800pt;}
.ws35_c00198{word-spacing:5.625600pt;}
.ws21_c00198{word-spacing:6.572800pt;}
.ws32_c00198{word-spacing:6.579200pt;}
.ws20_c00198{word-spacing:6.598400pt;}
.ws31_c00198{word-spacing:6.643200pt;}
.ws4_c00198{word-spacing:7.168000pt;}
.ws2_c00198{word-spacing:7.206400pt;}
.ws3_c00198{word-spacing:7.244800pt;}
.ws23_c00198{word-spacing:8.524800pt;}
.ws22_c00198{word-spacing:8.531200pt;}
.ws6_c00198{word-spacing:8.659200pt;}
.ws8_c00198{word-spacing:8.806400pt;}
.ws7_c00198{word-spacing:8.819200pt;}
.ws12_c00198{word-spacing:10.387200pt;}
.ws11_c00198{word-spacing:10.412800pt;}
.ws1a_c00198{word-spacing:11.027200pt;}
.ws1b_c00198{word-spacing:11.168000pt;}
.ws1f_c00198{word-spacing:11.360000pt;}
.ws1e_c00198{word-spacing:11.430400pt;}
.ws27_c00198{word-spacing:11.680000pt;}
.ws28_c00198{word-spacing:11.712000pt;}
.ws19_c00198{word-spacing:12.012800pt;}
.ws18_c00198{word-spacing:12.076800pt;}
.wsf_c00198{word-spacing:16.870400pt;}
.ws10_c00198{word-spacing:16.940800pt;}
.wsc_c00198{word-spacing:18.400000pt;}
.wsb_c00198{word-spacing:18.470400pt;}
.ws1d_c00198{word-spacing:19.046400pt;}
.ws1c_c00198{word-spacing:19.072000pt;}
.ws2c_c00198{word-spacing:26.464000pt;}
.ws2b_c00198{word-spacing:26.483200pt;}
._0_c00198{width:0.985600pt;}
.fs0_c00198{font-size:64.000000pt;}
.y0_c00198{bottom:0.000000pt;}
.y2_c00198{bottom:41.627067pt;}
.y1_c00198{bottom:60.027067pt;}
.y23_c00198{bottom:144.427067pt;}
.y22_c00198{bottom:172.027067pt;}
.y21_c00198{bottom:199.627067pt;}
.y20_c00198{bottom:227.227067pt;}
.y1f_c00198{bottom:254.827067pt;}
.y1e_c00198{bottom:282.427067pt;}
.y1d_c00198{bottom:309.947067pt;}
.y1c_c00198{bottom:337.547067pt;}
.y1b_c00198{bottom:365.147067pt;}
.y1a_c00198{bottom:392.747067pt;}
.y19_c00198{bottom:420.347067pt;}
.y18_c00198{bottom:447.947067pt;}
.y17_c00198{bottom:475.547067pt;}
.y16_c00198{bottom:503.147067pt;}
.y15_c00198{bottom:530.747067pt;}
.y14_c00198{bottom:574.267067pt;}
.y13_c00198{bottom:601.867067pt;}
.y12_c00198{bottom:629.547067pt;}
.y11_c00198{bottom:657.147067pt;}
.y10_c00198{bottom:683.547067pt;}
.yf_c00198{bottom:701.947067pt;}
.ye_c00198{bottom:720.347067pt;}
.yd_c00198{bottom:738.747067pt;}
.yc_c00198{bottom:757.147067pt;}
.yb_c00198{bottom:775.547067pt;}
.ya_c00198{bottom:793.947067pt;}
.y9_c00198{bottom:812.347067pt;}
.y8_c00198{bottom:830.747067pt;}
.y7_c00198{bottom:849.147067pt;}
.y6_c00198{bottom:892.747067pt;}
.y5_c00198{bottom:920.347067pt;}
.y4_c00198{bottom:947.947067pt;}
.y3_c00198{bottom:975.547067pt;}
.h1_c00198{height:56.156250pt;}
.h3_c00198{height:57.375000pt;}
.h2_c00198{height:66.750000pt;}
.h0_c00198{height:1122.666667pt;}
.w1_c00198{width:793.333333pt;}
.w0_c00198{width:793.626667pt;}
.x0_c00198{left:0.000000pt;}
.x2_c00198{left:151.200000pt;}
.x3_c00198{left:170.160000pt;}
.x1_c00198{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_94172922a23c0c9e414de577.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.093262;font-style:normal;font-weight:normal;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_9daceb48d0d22adcc979f182.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:1.106934;font-style:normal;font-weight:normal;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_e314a73e66414c1b5a035df8.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00199;src:url('chunks/assets/font_66464611b58521178a99bc3d.woff2')format("woff");}.ff4_c00199{font-family:ff4_c00199;line-height:0.765625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00199{vertical-align:0.000000px;}
.ls6_c00199{letter-spacing:-0.093600px;}
.lsb_c00199{letter-spacing:-0.079200px;}
.lse_c00199{letter-spacing:-0.072000px;}
.lsa_c00199{letter-spacing:-0.064800px;}
.ls4_c00199{letter-spacing:-0.057600px;}
.ls3_c00199{letter-spacing:-0.050400px;}
.ls8_c00199{letter-spacing:-0.043200px;}
.ls5_c00199{letter-spacing:-0.036000px;}
.ls7_c00199{letter-spacing:-0.028800px;}
.lsd_c00199{letter-spacing:-0.021600px;}
.lsc_c00199{letter-spacing:-0.014400px;}
.ls9_c00199{letter-spacing:-0.007200px;}
.ls2_c00199{letter-spacing:0.000000px;}
.ls1_c00199{letter-spacing:0.007200px;}
.ls0_c00199{letter-spacing:0.014400px;}
.sc__c00199{text-shadow:none;}
.sc0_c00199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00199{-webkit-text-stroke:0px transparent;}
.sc0_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00199{word-spacing:-72.000000px;}
.ws0_c00199{word-spacing:-19.980000px;}
.ws7_c00199{word-spacing:-4.672800px;}
.ws5_c00199{word-spacing:-4.485600px;}
.ws4_c00199{word-spacing:-4.464000px;}
.ws6_c00199{word-spacing:-4.428000px;}
.ws18_c00199{word-spacing:-3.456000px;}
.ws11_c00199{word-spacing:-3.398400px;}
.ws3_c00199{word-spacing:-3.391200px;}
.wsd_c00199{word-spacing:-3.074400px;}
.wsc_c00199{word-spacing:-2.959200px;}
.ws27_c00199{word-spacing:-0.180000px;}
.ws26_c00199{word-spacing:-0.136800px;}
.ws2_c00199{word-spacing:0.000000px;}
.ws2d_c00199{word-spacing:0.043200px;}
.ws2c_c00199{word-spacing:0.151200px;}
.ws25_c00199{word-spacing:0.165600px;}
.ws2e_c00199{word-spacing:0.244800px;}
.ws12_c00199{word-spacing:0.921600px;}
.ws1f_c00199{word-spacing:1.980000px;}
.ws1e_c00199{word-spacing:2.080800px;}
.ws2f_c00199{word-spacing:2.361600px;}
.ws28_c00199{word-spacing:2.700000px;}
.ws29_c00199{word-spacing:2.772000px;}
.ws15_c00199{word-spacing:6.300000px;}
.ws1d_c00199{word-spacing:6.660000px;}
.ws1b_c00199{word-spacing:8.445600px;}
.ws1c_c00199{word-spacing:8.452800px;}
.ws13_c00199{word-spacing:8.834400px;}
.ws14_c00199{word-spacing:8.863200px;}
.wsb_c00199{word-spacing:11.354400px;}
.wse_c00199{word-spacing:11.707200px;}
.wsf_c00199{word-spacing:11.786400px;}
.ws10_c00199{word-spacing:11.829600px;}
.ws24_c00199{word-spacing:13.874400px;}
.ws21_c00199{word-spacing:14.184000px;}
.ws20_c00199{word-spacing:14.320800px;}
.ws1a_c00199{word-spacing:16.970400px;}
.ws16_c00199{word-spacing:17.035200px;}
.ws8_c00199{word-spacing:17.100000px;}
.ws19_c00199{word-spacing:17.107200px;}
.ws17_c00199{word-spacing:17.157600px;}
.ws9_c00199{word-spacing:25.041600px;}
.wsa_c00199{word-spacing:25.048800px;}
.ws23_c00199{word-spacing:25.768800px;}
.ws22_c00199{word-spacing:25.776000px;}
.ws2b_c00199{word-spacing:26.100000px;}
.ws2a_c00199{word-spacing:26.121600px;}
._0_c00199{width:1.396800px;}
._2_c00199{width:29.088000px;}
._1_c00199{width:31.248000px;}
.fc0_c00199{color:rgb(0,0,0);}
.fs0_c00199{font-size:72.000000px;}
.y0_c00199{bottom:0.000000px;}
.y2_c00199{bottom:46.830450px;}
.y1_c00199{bottom:67.530450px;}
.y1f_c00199{bottom:138.180450px;}
.y1e_c00199{bottom:187.230450px;}
.y1d_c00199{bottom:236.280450px;}
.y1c_c00199{bottom:285.330450px;}
.y1b_c00199{bottom:334.380450px;}
.y1a_c00199{bottom:365.430450px;}
.y19_c00199{bottom:396.390450px;}
.y18_c00199{bottom:427.440450px;}
.y17_c00199{bottom:476.490450px;}
.y16_c00199{bottom:507.540450px;}
.y15_c00199{bottom:538.590450px;}
.y14_c00199{bottom:569.640450px;}
.y13_c00199{bottom:600.690450px;}
.y12_c00199{bottom:631.740450px;}
.y11_c00199{bottom:662.790450px;}
.y10_c00199{bottom:693.840450px;}
.yf_c00199{bottom:724.890450px;}
.ye_c00199{bottom:755.940450px;}
.yd_c00199{bottom:786.990450px;}
.yc_c00199{bottom:818.040450px;}
.yb_c00199{bottom:849.090450px;}
.ya_c00199{bottom:880.140450px;}
.y9_c00199{bottom:911.190450px;}
.y8_c00199{bottom:942.240450px;}
.y7_c00199{bottom:973.290450px;}
.y6_c00199{bottom:1004.340450px;}
.y5_c00199{bottom:1035.390450px;}
.y4_c00199{bottom:1066.440450px;}
.y3_c00199{bottom:1097.490450px;}
.h1_c00199{height:63.175781px;}
.h2_c00199{height:64.546875px;}
.h3_c00199{height:75.093750px;}
.h0_c00199{height:1263.000000px;}
.w1_c00199{width:892.500000px;}
.w0_c00199{width:892.830000px;}
.x0_c00199{left:0.000000px;}
.x2_c00199{left:127.620000px;}
.x3_c00199{left:154.620000px;}
.x1_c00199{left:695.880000px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls6_c00199{letter-spacing:-0.083200pt;}
.lsb_c00199{letter-spacing:-0.070400pt;}
.lse_c00199{letter-spacing:-0.064000pt;}
.lsa_c00199{letter-spacing:-0.057600pt;}
.ls4_c00199{letter-spacing:-0.051200pt;}
.ls3_c00199{letter-spacing:-0.044800pt;}
.ls8_c00199{letter-spacing:-0.038400pt;}
.ls5_c00199{letter-spacing:-0.032000pt;}
.ls7_c00199{letter-spacing:-0.025600pt;}
.lsd_c00199{letter-spacing:-0.019200pt;}
.lsc_c00199{letter-spacing:-0.012800pt;}
.ls9_c00199{letter-spacing:-0.006400pt;}
.ls2_c00199{letter-spacing:0.000000pt;}
.ls1_c00199{letter-spacing:0.006400pt;}
.ls0_c00199{letter-spacing:0.012800pt;}
.ws1_c00199{word-spacing:-64.000000pt;}
.ws0_c00199{word-spacing:-17.760000pt;}
.ws7_c00199{word-spacing:-4.153600pt;}
.ws5_c00199{word-spacing:-3.987200pt;}
.ws4_c00199{word-spacing:-3.968000pt;}
.ws6_c00199{word-spacing:-3.936000pt;}
.ws18_c00199{word-spacing:-3.072000pt;}
.ws11_c00199{word-spacing:-3.020800pt;}
.ws3_c00199{word-spacing:-3.014400pt;}
.wsd_c00199{word-spacing:-2.732800pt;}
.wsc_c00199{word-spacing:-2.630400pt;}
.ws27_c00199{word-spacing:-0.160000pt;}
.ws26_c00199{word-spacing:-0.121600pt;}
.ws2_c00199{word-spacing:0.000000pt;}
.ws2d_c00199{word-spacing:0.038400pt;}
.ws2c_c00199{word-spacing:0.134400pt;}
.ws25_c00199{word-spacing:0.147200pt;}
.ws2e_c00199{word-spacing:0.217600pt;}
.ws12_c00199{word-spacing:0.819200pt;}
.ws1f_c00199{word-spacing:1.760000pt;}
.ws1e_c00199{word-spacing:1.849600pt;}
.ws2f_c00199{word-spacing:2.099200pt;}
.ws28_c00199{word-spacing:2.400000pt;}
.ws29_c00199{word-spacing:2.464000pt;}
.ws15_c00199{word-spacing:5.600000pt;}
.ws1d_c00199{word-spacing:5.920000pt;}
.ws1b_c00199{word-spacing:7.507200pt;}
.ws1c_c00199{word-spacing:7.513600pt;}
.ws13_c00199{word-spacing:7.852800pt;}
.ws14_c00199{word-spacing:7.878400pt;}
.wsb_c00199{word-spacing:10.092800pt;}
.wse_c00199{word-spacing:10.406400pt;}
.wsf_c00199{word-spacing:10.476800pt;}
.ws10_c00199{word-spacing:10.515200pt;}
.ws24_c00199{word-spacing:12.332800pt;}
.ws21_c00199{word-spacing:12.608000pt;}
.ws20_c00199{word-spacing:12.729600pt;}
.ws1a_c00199{word-spacing:15.084800pt;}
.ws16_c00199{word-spacing:15.142400pt;}
.ws8_c00199{word-spacing:15.200000pt;}
.ws19_c00199{word-spacing:15.206400pt;}
.ws17_c00199{word-spacing:15.251200pt;}
.ws9_c00199{word-spacing:22.259200pt;}
.wsa_c00199{word-spacing:22.265600pt;}
.ws23_c00199{word-spacing:22.905600pt;}
.ws22_c00199{word-spacing:22.912000pt;}
.ws2b_c00199{word-spacing:23.200000pt;}
.ws2a_c00199{word-spacing:23.219200pt;}
._0_c00199{width:1.241600pt;}
._2_c00199{width:25.856000pt;}
._1_c00199{width:27.776000pt;}
.fs0_c00199{font-size:64.000000pt;}
.y0_c00199{bottom:0.000000pt;}
.y2_c00199{bottom:41.627067pt;}
.y1_c00199{bottom:60.027067pt;}
.y1f_c00199{bottom:122.827067pt;}
.y1e_c00199{bottom:166.427067pt;}
.y1d_c00199{bottom:210.027067pt;}
.y1c_c00199{bottom:253.627067pt;}
.y1b_c00199{bottom:297.227067pt;}
.y1a_c00199{bottom:324.827067pt;}
.y19_c00199{bottom:352.347067pt;}
.y18_c00199{bottom:379.947067pt;}
.y17_c00199{bottom:423.547067pt;}
.y16_c00199{bottom:451.147067pt;}
.y15_c00199{bottom:478.747067pt;}
.y14_c00199{bottom:506.347067pt;}
.y13_c00199{bottom:533.947067pt;}
.y12_c00199{bottom:561.547067pt;}
.y11_c00199{bottom:589.147067pt;}
.y10_c00199{bottom:616.747067pt;}
.yf_c00199{bottom:644.347067pt;}
.ye_c00199{bottom:671.947067pt;}
.yd_c00199{bottom:699.547067pt;}
.yc_c00199{bottom:727.147067pt;}
.yb_c00199{bottom:754.747067pt;}
.ya_c00199{bottom:782.347067pt;}
.y9_c00199{bottom:809.947067pt;}
.y8_c00199{bottom:837.547067pt;}
.y7_c00199{bottom:865.147067pt;}
.y6_c00199{bottom:892.747067pt;}
.y5_c00199{bottom:920.347067pt;}
.y4_c00199{bottom:947.947067pt;}
.y3_c00199{bottom:975.547067pt;}
.h1_c00199{height:56.156250pt;}
.h2_c00199{height:57.375000pt;}
.h3_c00199{height:66.750000pt;}
.h0_c00199{height:1122.666667pt;}
.w1_c00199{width:793.333333pt;}
.w0_c00199{width:793.626667pt;}
.x0_c00199{left:0.000000pt;}
.x2_c00199{left:113.440000pt;}
.x3_c00199{left:137.440000pt;}
.x1_c00199{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7f1e1cbb911a91dbb831282d.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.093262;font-style:normal;font-weight:normal;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_7ba8829785882276d3717c7e.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.106934;font-style:normal;font-weight:normal;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_66464611b58521178a99bc3d.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;line-height:0.765625;font-style:normal;font-weight:normal;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_077f03f07d619928f7010fd1.woff2')format("woff");}.ff4_c00200{font-family:ff4_c00200;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00200{letter-spacing:-0.072000px;}
.lsc_c00200{letter-spacing:-0.064800px;}
.lsa_c00200{letter-spacing:-0.057600px;}
.lsb_c00200{letter-spacing:-0.050400px;}
.ls7_c00200{letter-spacing:-0.043200px;}
.ls8_c00200{letter-spacing:-0.036000px;}
.ls9_c00200{letter-spacing:-0.028800px;}
.ls6_c00200{letter-spacing:-0.021600px;}
.ls4_c00200{letter-spacing:-0.014400px;}
.ls5_c00200{letter-spacing:-0.007200px;}
.ls3_c00200{letter-spacing:0.000000px;}
.ls1_c00200{letter-spacing:0.007200px;}
.ls0_c00200{letter-spacing:0.014400px;}
.ls2_c00200{letter-spacing:0.028800px;}
.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:-72.000000px;}
.wsd_c00200{word-spacing:-3.499200px;}
.wse_c00200{word-spacing:-3.398400px;}
.ws27_c00200{word-spacing:-2.678400px;}
.ws28_c00200{word-spacing:-2.671200px;}
.ws14_c00200{word-spacing:-1.648800px;}
.ws16_c00200{word-spacing:-1.620000px;}
.ws15_c00200{word-spacing:-1.418400px;}
.ws20_c00200{word-spacing:-0.172800px;}
.ws21_c00200{word-spacing:-0.136800px;}
.ws1_c00200{word-spacing:0.000000px;}
.ws4_c00200{word-spacing:0.144000px;}
.ws3_c00200{word-spacing:0.165600px;}
.ws13_c00200{word-spacing:0.180000px;}
.ws26_c00200{word-spacing:0.187200px;}
.wsa_c00200{word-spacing:0.489600px;}
.ws9_c00200{word-spacing:0.532800px;}
.ws30_c00200{word-spacing:0.907200px;}
.ws2f_c00200{word-spacing:0.921600px;}
.ws5_c00200{word-spacing:4.485600px;}
.ws6_c00200{word-spacing:4.500000px;}
.ws24_c00200{word-spacing:5.450400px;}
.ws25_c00200{word-spacing:5.536800px;}
.wsf_c00200{word-spacing:5.594400px;}
.ws10_c00200{word-spacing:5.616000px;}
.ws1c_c00200{word-spacing:6.271200px;}
.ws1d_c00200{word-spacing:6.307200px;}
.ws32_c00200{word-spacing:7.286400px;}
.ws11_c00200{word-spacing:7.380000px;}
.ws12_c00200{word-spacing:7.387200px;}
.ws31_c00200{word-spacing:7.430400px;}
.wsb_c00200{word-spacing:8.409600px;}
.wsc_c00200{word-spacing:8.467200px;}
.ws19_c00200{word-spacing:9.835200px;}
.ws2_c00200{word-spacing:9.892800px;}
.ws1a_c00200{word-spacing:9.936000px;}
.ws18_c00200{word-spacing:12.420000px;}
.ws17_c00200{word-spacing:12.441600px;}
.ws2c_c00200{word-spacing:13.507200px;}
.ws2d_c00200{word-spacing:13.600800px;}
.ws22_c00200{word-spacing:14.220000px;}
.ws23_c00200{word-spacing:14.241600px;}
.ws1f_c00200{word-spacing:19.260000px;}
.ws1e_c00200{word-spacing:19.281600px;}
.ws7_c00200{word-spacing:25.732800px;}
.ws8_c00200{word-spacing:25.761600px;}
.ws2e_c00200{word-spacing:26.524800px;}
.ws33_c00200{word-spacing:29.707200px;}
.ws29_c00200{word-spacing:33.523200px;}
.ws2a_c00200{word-spacing:33.681600px;}
.ws2b_c00200{word-spacing:33.688800px;}
.ws1b_c00200{word-spacing:108.172800px;}
._3_c00200{margin-left:-7.358400px;}
._2_c00200{width:1.310400px;}
._0_c00200{width:21.528000px;}
._1_c00200{width:31.248000px;}
.fc0_c00200{color:rgb(0,0,0);}
.fs0_c00200{font-size:72.000000px;}
.y0_c00200{bottom:0.000000px;}
.y2_c00200{bottom:46.830450px;}
.y1_c00200{bottom:67.530450px;}
.y1f_c00200{bottom:138.180450px;}
.y1e_c00200{bottom:169.230450px;}
.y1d_c00200{bottom:200.280450px;}
.y1c_c00200{bottom:231.330450px;}
.y1b_c00200{bottom:262.380450px;}
.y1a_c00200{bottom:293.430450px;}
.y19_c00200{bottom:324.390450px;}
.y18_c00200{bottom:373.440450px;}
.y17_c00200{bottom:404.490450px;}
.y16_c00200{bottom:435.540450px;}
.y15_c00200{bottom:466.590450px;}
.y14_c00200{bottom:497.640450px;}
.y13_c00200{bottom:528.690450px;}
.y12_c00200{bottom:559.740450px;}
.y11_c00200{bottom:590.790450px;}
.y10_c00200{bottom:621.840450px;}
.yf_c00200{bottom:652.890450px;}
.ye_c00200{bottom:701.940450px;}
.yd_c00200{bottom:732.990450px;}
.yc_c00200{bottom:764.040450px;}
.yb_c00200{bottom:795.090450px;}
.ya_c00200{bottom:826.140450px;}
.y9_c00200{bottom:857.190450px;}
.y8_c00200{bottom:888.240450px;}
.y7_c00200{bottom:919.290450px;}
.y6_c00200{bottom:968.340450px;}
.y5_c00200{bottom:1017.390450px;}
.y4_c00200{bottom:1048.440450px;}
.y3_c00200{bottom:1097.490450px;}
.h1_c00200{height:63.175781px;}
.h2_c00200{height:64.546875px;}
.h3_c00200{height:75.093750px;}
.h0_c00200{height:1263.000000px;}
.w1_c00200{width:892.500000px;}
.w0_c00200{width:892.830000px;}
.x0_c00200{left:0.000000px;}
.x2_c00200{left:170.100000px;}
.x4_c00200{left:197.100000px;}
.x3_c00200{left:224.100000px;}
.x1_c00200{left:738.360000px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.lsd_c00200{letter-spacing:-0.064000pt;}
.lsc_c00200{letter-spacing:-0.057600pt;}
.lsa_c00200{letter-spacing:-0.051200pt;}
.lsb_c00200{letter-spacing:-0.044800pt;}
.ls7_c00200{letter-spacing:-0.038400pt;}
.ls8_c00200{letter-spacing:-0.032000pt;}
.ls9_c00200{letter-spacing:-0.025600pt;}
.ls6_c00200{letter-spacing:-0.019200pt;}
.ls4_c00200{letter-spacing:-0.012800pt;}
.ls5_c00200{letter-spacing:-0.006400pt;}
.ls3_c00200{letter-spacing:0.000000pt;}
.ls1_c00200{letter-spacing:0.006400pt;}
.ls0_c00200{letter-spacing:0.012800pt;}
.ls2_c00200{letter-spacing:0.025600pt;}
.ws0_c00200{word-spacing:-64.000000pt;}
.wsd_c00200{word-spacing:-3.110400pt;}
.wse_c00200{word-spacing:-3.020800pt;}
.ws27_c00200{word-spacing:-2.380800pt;}
.ws28_c00200{word-spacing:-2.374400pt;}
.ws14_c00200{word-spacing:-1.465600pt;}
.ws16_c00200{word-spacing:-1.440000pt;}
.ws15_c00200{word-spacing:-1.260800pt;}
.ws20_c00200{word-spacing:-0.153600pt;}
.ws21_c00200{word-spacing:-0.121600pt;}
.ws1_c00200{word-spacing:0.000000pt;}
.ws4_c00200{word-spacing:0.128000pt;}
.ws3_c00200{word-spacing:0.147200pt;}
.ws13_c00200{word-spacing:0.160000pt;}
.ws26_c00200{word-spacing:0.166400pt;}
.wsa_c00200{word-spacing:0.435200pt;}
.ws9_c00200{word-spacing:0.473600pt;}
.ws30_c00200{word-spacing:0.806400pt;}
.ws2f_c00200{word-spacing:0.819200pt;}
.ws5_c00200{word-spacing:3.987200pt;}
.ws6_c00200{word-spacing:4.000000pt;}
.ws24_c00200{word-spacing:4.844800pt;}
.ws25_c00200{word-spacing:4.921600pt;}
.wsf_c00200{word-spacing:4.972800pt;}
.ws10_c00200{word-spacing:4.992000pt;}
.ws1c_c00200{word-spacing:5.574400pt;}
.ws1d_c00200{word-spacing:5.606400pt;}
.ws32_c00200{word-spacing:6.476800pt;}
.ws11_c00200{word-spacing:6.560000pt;}
.ws12_c00200{word-spacing:6.566400pt;}
.ws31_c00200{word-spacing:6.604800pt;}
.wsb_c00200{word-spacing:7.475200pt;}
.wsc_c00200{word-spacing:7.526400pt;}
.ws19_c00200{word-spacing:8.742400pt;}
.ws2_c00200{word-spacing:8.793600pt;}
.ws1a_c00200{word-spacing:8.832000pt;}
.ws18_c00200{word-spacing:11.040000pt;}
.ws17_c00200{word-spacing:11.059200pt;}
.ws2c_c00200{word-spacing:12.006400pt;}
.ws2d_c00200{word-spacing:12.089600pt;}
.ws22_c00200{word-spacing:12.640000pt;}
.ws23_c00200{word-spacing:12.659200pt;}
.ws1f_c00200{word-spacing:17.120000pt;}
.ws1e_c00200{word-spacing:17.139200pt;}
.ws7_c00200{word-spacing:22.873600pt;}
.ws8_c00200{word-spacing:22.899200pt;}
.ws2e_c00200{word-spacing:23.577600pt;}
.ws33_c00200{word-spacing:26.406400pt;}
.ws29_c00200{word-spacing:29.798400pt;}
.ws2a_c00200{word-spacing:29.939200pt;}
.ws2b_c00200{word-spacing:29.945600pt;}
.ws1b_c00200{word-spacing:96.153600pt;}
._3_c00200{margin-left:-6.540800pt;}
._2_c00200{width:1.164800pt;}
._0_c00200{width:19.136000pt;}
._1_c00200{width:27.776000pt;}
.fs0_c00200{font-size:64.000000pt;}
.y0_c00200{bottom:0.000000pt;}
.y2_c00200{bottom:41.627067pt;}
.y1_c00200{bottom:60.027067pt;}
.y1f_c00200{bottom:122.827067pt;}
.y1e_c00200{bottom:150.427067pt;}
.y1d_c00200{bottom:178.027067pt;}
.y1c_c00200{bottom:205.627067pt;}
.y1b_c00200{bottom:233.227067pt;}
.y1a_c00200{bottom:260.827067pt;}
.y19_c00200{bottom:288.347067pt;}
.y18_c00200{bottom:331.947067pt;}
.y17_c00200{bottom:359.547067pt;}
.y16_c00200{bottom:387.147067pt;}
.y15_c00200{bottom:414.747067pt;}
.y14_c00200{bottom:442.347067pt;}
.y13_c00200{bottom:469.947067pt;}
.y12_c00200{bottom:497.547067pt;}
.y11_c00200{bottom:525.147067pt;}
.y10_c00200{bottom:552.747067pt;}
.yf_c00200{bottom:580.347067pt;}
.ye_c00200{bottom:623.947067pt;}
.yd_c00200{bottom:651.547067pt;}
.yc_c00200{bottom:679.147067pt;}
.yb_c00200{bottom:706.747067pt;}
.ya_c00200{bottom:734.347067pt;}
.y9_c00200{bottom:761.947067pt;}
.y8_c00200{bottom:789.547067pt;}
.y7_c00200{bottom:817.147067pt;}
.y6_c00200{bottom:860.747067pt;}
.y5_c00200{bottom:904.347067pt;}
.y4_c00200{bottom:931.947067pt;}
.y3_c00200{bottom:975.547067pt;}
.h1_c00200{height:56.156250pt;}
.h2_c00200{height:57.375000pt;}
.h3_c00200{height:66.750000pt;}
.h0_c00200{height:1122.666667pt;}
.w1_c00200{width:793.333333pt;}
.w0_c00200{width:793.626667pt;}
.x0_c00200{left:0.000000pt;}
.x2_c00200{left:151.200000pt;}
.x4_c00200{left:175.200000pt;}
.x3_c00200{left:199.200000pt;}
.x1_c00200{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_94172922a23c0c9e414de577.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.093262;font-style:normal;font-weight:normal;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_821cb6a491fcac4e233cb8f2.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00201;src:url('chunks/assets/font_c60563a41bf2b73b3fe0b7a4.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00201{vertical-align:0.000000px;}
.lse_c00201{letter-spacing:-0.108000px;}
.ls10_c00201{letter-spacing:-0.079200px;}
.lsd_c00201{letter-spacing:-0.064800px;}
.ls7_c00201{letter-spacing:-0.057600px;}
.ls6_c00201{letter-spacing:-0.050400px;}
.lsa_c00201{letter-spacing:-0.043200px;}
.ls4_c00201{letter-spacing:-0.036000px;}
.ls5_c00201{letter-spacing:-0.028800px;}
.ls8_c00201{letter-spacing:-0.021600px;}
.lsb_c00201{letter-spacing:-0.014400px;}
.lsf_c00201{letter-spacing:-0.007200px;}
.ls3_c00201{letter-spacing:0.000000px;}
.ls1_c00201{letter-spacing:0.007200px;}
.ls9_c00201{letter-spacing:0.014400px;}
.lsc_c00201{letter-spacing:0.021600px;}
.ls2_c00201{letter-spacing:0.036000px;}
.ls0_c00201{letter-spacing:0.144000px;}
.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;}
}
.ws31_c00201{word-spacing:-4.917600px;}
.ws32_c00201{word-spacing:-4.867200px;}
.ws30_c00201{word-spacing:-4.766400px;}
.ws3c_c00201{word-spacing:-4.471200px;}
.wsf_c00201{word-spacing:-3.801600px;}
.wse_c00201{word-spacing:-3.772800px;}
.wsd_c00201{word-spacing:-3.744000px;}
.wsb_c00201{word-spacing:-2.095200px;}
.wsc_c00201{word-spacing:-2.016000px;}
.wsa_c00201{word-spacing:-2.001600px;}
.ws1a_c00201{word-spacing:-1.663200px;}
.ws19_c00201{word-spacing:-1.620000px;}
.ws25_c00201{word-spacing:-0.878400px;}
.ws26_c00201{word-spacing:-0.842400px;}
.ws5_c00201{word-spacing:-0.504000px;}
.ws4_c00201{word-spacing:-0.331200px;}
.ws0_c00201{word-spacing:0.000000px;}
.ws37_c00201{word-spacing:0.180000px;}
.ws38_c00201{word-spacing:0.280800px;}
.ws3b_c00201{word-spacing:0.936000px;}
.ws1c_c00201{word-spacing:1.533600px;}
.ws1b_c00201{word-spacing:1.641600px;}
.ws7_c00201{word-spacing:2.534400px;}
.ws6_c00201{word-spacing:2.707200px;}
.ws20_c00201{word-spacing:2.959200px;}
.ws1f_c00201{word-spacing:3.096000px;}
.ws11_c00201{word-spacing:3.412800px;}
.ws10_c00201{word-spacing:3.441600px;}
.ws1_c00201{word-spacing:4.154400px;}
.ws2_c00201{word-spacing:4.262400px;}
.ws34_c00201{word-spacing:4.485600px;}
.ws33_c00201{word-spacing:4.500000px;}
.ws18_c00201{word-spacing:7.336800px;}
.ws17_c00201{word-spacing:7.358400px;}
.ws39_c00201{word-spacing:8.128800px;}
.ws3a_c00201{word-spacing:8.200800px;}
.ws13_c00201{word-spacing:9.187200px;}
.ws12_c00201{word-spacing:9.324000px;}
.ws3d_c00201{word-spacing:17.049600px;}
.ws3e_c00201{word-spacing:17.121600px;}
.ws3_c00201{word-spacing:17.128800px;}
.ws1d_c00201{word-spacing:18.201600px;}
.ws1e_c00201{word-spacing:18.223200px;}
.ws2a_c00201{word-spacing:18.554400px;}
.ws2b_c00201{word-spacing:18.561600px;}
.ws16_c00201{word-spacing:18.928800px;}
.ws8_c00201{word-spacing:19.598400px;}
.ws9_c00201{word-spacing:19.620000px;}
.ws27_c00201{word-spacing:23.220000px;}
.ws22_c00201{word-spacing:24.645600px;}
.ws21_c00201{word-spacing:24.688800px;}
.ws28_c00201{word-spacing:28.562400px;}
.ws2e_c00201{word-spacing:28.605600px;}
.ws2d_c00201{word-spacing:28.620000px;}
.ws29_c00201{word-spacing:28.627200px;}
.ws2c_c00201{word-spacing:28.663200px;}
.ws15_c00201{word-spacing:36.468000px;}
.ws14_c00201{word-spacing:36.554400px;}
.ws2f_c00201{word-spacing:38.728800px;}
.ws36_c00201{word-spacing:43.740000px;}
.ws35_c00201{word-spacing:43.776000px;}
.ws24_c00201{word-spacing:82.123200px;}
.ws23_c00201{word-spacing:82.274400px;}
._0_c00201{width:1.008000px;}
._1_c00201{width:24.768000px;}
.fc0_c00201{color:rgb(0,0,0);}
.fs0_c00201{font-size:72.000000px;}
.y0_c00201{bottom:0.000000px;}
.y2_c00201{bottom:46.830450px;}
.y1_c00201{bottom:67.530450px;}
.y22_c00201{bottom:148.080450px;}
.y21_c00201{bottom:168.780450px;}
.y20_c00201{bottom:189.480450px;}
.y1f_c00201{bottom:210.180450px;}
.y1e_c00201{bottom:259.230450px;}
.y1d_c00201{bottom:290.280450px;}
.y1c_c00201{bottom:321.330450px;}
.y1b_c00201{bottom:352.380450px;}
.y1a_c00201{bottom:383.430450px;}
.y19_c00201{bottom:414.390450px;}
.y18_c00201{bottom:445.440450px;}
.y17_c00201{bottom:476.490450px;}
.y16_c00201{bottom:507.540450px;}
.y15_c00201{bottom:538.590450px;}
.y14_c00201{bottom:569.640450px;}
.y13_c00201{bottom:600.690450px;}
.y12_c00201{bottom:631.740450px;}
.y11_c00201{bottom:662.790450px;}
.y10_c00201{bottom:693.840450px;}
.yf_c00201{bottom:724.890450px;}
.ye_c00201{bottom:755.940450px;}
.yd_c00201{bottom:786.990450px;}
.yc_c00201{bottom:818.040450px;}
.yb_c00201{bottom:849.090450px;}
.ya_c00201{bottom:880.140450px;}
.y9_c00201{bottom:911.190450px;}
.y8_c00201{bottom:942.240450px;}
.y7_c00201{bottom:973.290450px;}
.y6_c00201{bottom:1004.340450px;}
.y5_c00201{bottom:1035.390450px;}
.y4_c00201{bottom:1066.440450px;}
.y3_c00201{bottom:1097.490450px;}
.h1_c00201{height:63.175781px;}
.h3_c00201{height:64.546875px;}
.h2_c00201{height:75.093750px;}
.h0_c00201{height:1263.000000px;}
.w1_c00201{width:892.500000px;}
.w0_c00201{width:892.830000px;}
.x0_c00201{left:0.000000px;}
.x2_c00201{left:127.620000px;}
.x3_c00201{left:148.950000px;}
.x1_c00201{left:695.880000px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.lse_c00201{letter-spacing:-0.096000pt;}
.ls10_c00201{letter-spacing:-0.070400pt;}
.lsd_c00201{letter-spacing:-0.057600pt;}
.ls7_c00201{letter-spacing:-0.051200pt;}
.ls6_c00201{letter-spacing:-0.044800pt;}
.lsa_c00201{letter-spacing:-0.038400pt;}
.ls4_c00201{letter-spacing:-0.032000pt;}
.ls5_c00201{letter-spacing:-0.025600pt;}
.ls8_c00201{letter-spacing:-0.019200pt;}
.lsb_c00201{letter-spacing:-0.012800pt;}
.lsf_c00201{letter-spacing:-0.006400pt;}
.ls3_c00201{letter-spacing:0.000000pt;}
.ls1_c00201{letter-spacing:0.006400pt;}
.ls9_c00201{letter-spacing:0.012800pt;}
.lsc_c00201{letter-spacing:0.019200pt;}
.ls2_c00201{letter-spacing:0.032000pt;}
.ls0_c00201{letter-spacing:0.128000pt;}
.ws31_c00201{word-spacing:-4.371200pt;}
.ws32_c00201{word-spacing:-4.326400pt;}
.ws30_c00201{word-spacing:-4.236800pt;}
.ws3c_c00201{word-spacing:-3.974400pt;}
.wsf_c00201{word-spacing:-3.379200pt;}
.wse_c00201{word-spacing:-3.353600pt;}
.wsd_c00201{word-spacing:-3.328000pt;}
.wsb_c00201{word-spacing:-1.862400pt;}
.wsc_c00201{word-spacing:-1.792000pt;}
.wsa_c00201{word-spacing:-1.779200pt;}
.ws1a_c00201{word-spacing:-1.478400pt;}
.ws19_c00201{word-spacing:-1.440000pt;}
.ws25_c00201{word-spacing:-0.780800pt;}
.ws26_c00201{word-spacing:-0.748800pt;}
.ws5_c00201{word-spacing:-0.448000pt;}
.ws4_c00201{word-spacing:-0.294400pt;}
.ws0_c00201{word-spacing:0.000000pt;}
.ws37_c00201{word-spacing:0.160000pt;}
.ws38_c00201{word-spacing:0.249600pt;}
.ws3b_c00201{word-spacing:0.832000pt;}
.ws1c_c00201{word-spacing:1.363200pt;}
.ws1b_c00201{word-spacing:1.459200pt;}
.ws7_c00201{word-spacing:2.252800pt;}
.ws6_c00201{word-spacing:2.406400pt;}
.ws20_c00201{word-spacing:2.630400pt;}
.ws1f_c00201{word-spacing:2.752000pt;}
.ws11_c00201{word-spacing:3.033600pt;}
.ws10_c00201{word-spacing:3.059200pt;}
.ws1_c00201{word-spacing:3.692800pt;}
.ws2_c00201{word-spacing:3.788800pt;}
.ws34_c00201{word-spacing:3.987200pt;}
.ws33_c00201{word-spacing:4.000000pt;}
.ws18_c00201{word-spacing:6.521600pt;}
.ws17_c00201{word-spacing:6.540800pt;}
.ws39_c00201{word-spacing:7.225600pt;}
.ws3a_c00201{word-spacing:7.289600pt;}
.ws13_c00201{word-spacing:8.166400pt;}
.ws12_c00201{word-spacing:8.288000pt;}
.ws3d_c00201{word-spacing:15.155200pt;}
.ws3e_c00201{word-spacing:15.219200pt;}
.ws3_c00201{word-spacing:15.225600pt;}
.ws1d_c00201{word-spacing:16.179200pt;}
.ws1e_c00201{word-spacing:16.198400pt;}
.ws2a_c00201{word-spacing:16.492800pt;}
.ws2b_c00201{word-spacing:16.499200pt;}
.ws16_c00201{word-spacing:16.825600pt;}
.ws8_c00201{word-spacing:17.420800pt;}
.ws9_c00201{word-spacing:17.440000pt;}
.ws27_c00201{word-spacing:20.640000pt;}
.ws22_c00201{word-spacing:21.907200pt;}
.ws21_c00201{word-spacing:21.945600pt;}
.ws28_c00201{word-spacing:25.388800pt;}
.ws2e_c00201{word-spacing:25.427200pt;}
.ws2d_c00201{word-spacing:25.440000pt;}
.ws29_c00201{word-spacing:25.446400pt;}
.ws2c_c00201{word-spacing:25.478400pt;}
.ws15_c00201{word-spacing:32.416000pt;}
.ws14_c00201{word-spacing:32.492800pt;}
.ws2f_c00201{word-spacing:34.425600pt;}
.ws36_c00201{word-spacing:38.880000pt;}
.ws35_c00201{word-spacing:38.912000pt;}
.ws24_c00201{word-spacing:72.998400pt;}
.ws23_c00201{word-spacing:73.132800pt;}
._0_c00201{width:0.896000pt;}
._1_c00201{width:22.016000pt;}
.fs0_c00201{font-size:64.000000pt;}
.y0_c00201{bottom:0.000000pt;}
.y2_c00201{bottom:41.627067pt;}
.y1_c00201{bottom:60.027067pt;}
.y22_c00201{bottom:131.627067pt;}
.y21_c00201{bottom:150.027067pt;}
.y20_c00201{bottom:168.427067pt;}
.y1f_c00201{bottom:186.827067pt;}
.y1e_c00201{bottom:230.427067pt;}
.y1d_c00201{bottom:258.027067pt;}
.y1c_c00201{bottom:285.627067pt;}
.y1b_c00201{bottom:313.227067pt;}
.y1a_c00201{bottom:340.827067pt;}
.y19_c00201{bottom:368.347067pt;}
.y18_c00201{bottom:395.947067pt;}
.y17_c00201{bottom:423.547067pt;}
.y16_c00201{bottom:451.147067pt;}
.y15_c00201{bottom:478.747067pt;}
.y14_c00201{bottom:506.347067pt;}
.y13_c00201{bottom:533.947067pt;}
.y12_c00201{bottom:561.547067pt;}
.y11_c00201{bottom:589.147067pt;}
.y10_c00201{bottom:616.747067pt;}
.yf_c00201{bottom:644.347067pt;}
.ye_c00201{bottom:671.947067pt;}
.yd_c00201{bottom:699.547067pt;}
.yc_c00201{bottom:727.147067pt;}
.yb_c00201{bottom:754.747067pt;}
.ya_c00201{bottom:782.347067pt;}
.y9_c00201{bottom:809.947067pt;}
.y8_c00201{bottom:837.547067pt;}
.y7_c00201{bottom:865.147067pt;}
.y6_c00201{bottom:892.747067pt;}
.y5_c00201{bottom:920.347067pt;}
.y4_c00201{bottom:947.947067pt;}
.y3_c00201{bottom:975.547067pt;}
.h1_c00201{height:56.156250pt;}
.h3_c00201{height:57.375000pt;}
.h2_c00201{height:66.750000pt;}
.h0_c00201{height:1122.666667pt;}
.w1_c00201{width:793.333333pt;}
.w0_c00201{width:793.626667pt;}
.x0_c00201{left:0.000000pt;}
.x2_c00201{left:113.440000pt;}
.x3_c00201{left:132.400000pt;}
.x1_c00201{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_836f8bd9cfd783dd604ac6af.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.093262;font-style:normal;font-weight:normal;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_41881d4db36e7bf056b26650.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.106934;font-style:normal;font-weight:normal;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_c81d8d78d640a361d4be1334.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00202{letter-spacing:-0.086400px;}
.ls2_c00202{letter-spacing:-0.072000px;}
.ls7_c00202{letter-spacing:-0.064800px;}
.ls9_c00202{letter-spacing:-0.057600px;}
.lsa_c00202{letter-spacing:-0.043200px;}
.ls3_c00202{letter-spacing:-0.036000px;}
.ls4_c00202{letter-spacing:-0.028800px;}
.ls6_c00202{letter-spacing:-0.021600px;}
.ls8_c00202{letter-spacing:-0.014400px;}
.ls5_c00202{letter-spacing:-0.007200px;}
.ls1_c00202{letter-spacing:0.000000px;}
.lsb_c00202{letter-spacing:0.014400px;}
.lsd_c00202{letter-spacing:0.021600px;}
.ls0_c00202{letter-spacing:0.144000px;}
.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;}
}
.wsc_c00202{word-spacing:-4.867200px;}
.ws20_c00202{word-spacing:-4.168800px;}
.ws21_c00202{word-spacing:-4.125600px;}
.ws15_c00202{word-spacing:-3.132000px;}
.ws16_c00202{word-spacing:-3.074400px;}
.ws14_c00202{word-spacing:-3.067200px;}
.ws4_c00202{word-spacing:-3.060000px;}
.ws30_c00202{word-spacing:-0.223200px;}
.ws0_c00202{word-spacing:0.000000px;}
.ws22_c00202{word-spacing:0.072000px;}
.ws5_c00202{word-spacing:0.086400px;}
.ws23_c00202{word-spacing:0.144000px;}
.wsf_c00202{word-spacing:0.201600px;}
.ws26_c00202{word-spacing:1.260000px;}
.ws27_c00202{word-spacing:1.274400px;}
.ws8_c00202{word-spacing:1.605600px;}
.ws9_c00202{word-spacing:1.620000px;}
.wsa_c00202{word-spacing:2.023200px;}
.ws2_c00202{word-spacing:3.794400px;}
.ws1_c00202{word-spacing:3.830400px;}
.ws28_c00202{word-spacing:6.652800px;}
.ws29_c00202{word-spacing:6.660000px;}
.wsd_c00202{word-spacing:7.394400px;}
.wse_c00202{word-spacing:7.416000px;}
.ws13_c00202{word-spacing:7.747200px;}
.ws12_c00202{word-spacing:7.761600px;}
.ws25_c00202{word-spacing:8.467200px;}
.ws24_c00202{word-spacing:8.524800px;}
.ws2b_c00202{word-spacing:10.929600px;}
.ws2c_c00202{word-spacing:10.965600px;}
.ws1f_c00202{word-spacing:11.073600px;}
.ws2e_c00202{word-spacing:12.780000px;}
.ws2d_c00202{word-spacing:12.974400px;}
.ws2f_c00202{word-spacing:13.039200px;}
.ws6_c00202{word-spacing:14.205600px;}
.ws7_c00202{word-spacing:14.220000px;}
.ws2a_c00202{word-spacing:14.572800px;}
.ws1d_c00202{word-spacing:14.580000px;}
.ws1e_c00202{word-spacing:14.587200px;}
.ws17_c00202{word-spacing:17.460000px;}
.ws3_c00202{word-spacing:20.707200px;}
.wsb_c00202{word-spacing:23.580000px;}
.ws18_c00202{word-spacing:28.252800px;}
.ws19_c00202{word-spacing:28.281600px;}
.ws11_c00202{word-spacing:28.987200px;}
.ws10_c00202{word-spacing:29.001600px;}
.ws1c_c00202{word-spacing:29.181600px;}
.ws1b_c00202{word-spacing:32.587200px;}
.ws1a_c00202{word-spacing:32.796000px;}
._0_c00202{width:1.245600px;}
.fc0_c00202{color:rgb(0,0,0);}
.fs0_c00202{font-size:72.000000px;}
.y0_c00202{bottom:0.000000px;}
.y2_c00202{bottom:46.830450px;}
.y1_c00202{bottom:67.530450px;}
.y21_c00202{bottom:183.180450px;}
.y20_c00202{bottom:214.230450px;}
.y1f_c00202{bottom:245.280450px;}
.y1e_c00202{bottom:276.330450px;}
.y1d_c00202{bottom:307.380450px;}
.y1c_c00202{bottom:338.430450px;}
.y1b_c00202{bottom:369.390450px;}
.y1a_c00202{bottom:418.440450px;}
.y19_c00202{bottom:449.490450px;}
.y18_c00202{bottom:480.540450px;}
.y17_c00202{bottom:511.590450px;}
.y16_c00202{bottom:542.640450px;}
.y15_c00202{bottom:573.690450px;}
.y14_c00202{bottom:604.740450px;}
.y13_c00202{bottom:635.790450px;}
.y12_c00202{bottom:666.840450px;}
.y11_c00202{bottom:697.890450px;}
.y10_c00202{bottom:728.940450px;}
.yf_c00202{bottom:759.990450px;}
.ye_c00202{bottom:809.040450px;}
.yd_c00202{bottom:840.090450px;}
.yc_c00202{bottom:871.140450px;}
.yb_c00202{bottom:902.190450px;}
.ya_c00202{bottom:933.240450px;}
.y9_c00202{bottom:964.290450px;}
.y8_c00202{bottom:993.990450px;}
.y7_c00202{bottom:1014.690450px;}
.y6_c00202{bottom:1035.390450px;}
.y5_c00202{bottom:1056.090450px;}
.y4_c00202{bottom:1076.790450px;}
.y3_c00202{bottom:1097.490450px;}
.h1_c00202{height:63.175781px;}
.h2_c00202{height:64.546875px;}
.h3_c00202{height:75.093750px;}
.h0_c00202{height:1263.000000px;}
.w1_c00202{width:892.500000px;}
.w0_c00202{width:892.830000px;}
.x0_c00202{left:0.000000px;}
.x2_c00202{left:170.100000px;}
.x3_c00202{left:191.430000px;}
.x1_c00202{left:738.360000px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.lsc_c00202{letter-spacing:-0.076800pt;}
.ls2_c00202{letter-spacing:-0.064000pt;}
.ls7_c00202{letter-spacing:-0.057600pt;}
.ls9_c00202{letter-spacing:-0.051200pt;}
.lsa_c00202{letter-spacing:-0.038400pt;}
.ls3_c00202{letter-spacing:-0.032000pt;}
.ls4_c00202{letter-spacing:-0.025600pt;}
.ls6_c00202{letter-spacing:-0.019200pt;}
.ls8_c00202{letter-spacing:-0.012800pt;}
.ls5_c00202{letter-spacing:-0.006400pt;}
.ls1_c00202{letter-spacing:0.000000pt;}
.lsb_c00202{letter-spacing:0.012800pt;}
.lsd_c00202{letter-spacing:0.019200pt;}
.ls0_c00202{letter-spacing:0.128000pt;}
.wsc_c00202{word-spacing:-4.326400pt;}
.ws20_c00202{word-spacing:-3.705600pt;}
.ws21_c00202{word-spacing:-3.667200pt;}
.ws15_c00202{word-spacing:-2.784000pt;}
.ws16_c00202{word-spacing:-2.732800pt;}
.ws14_c00202{word-spacing:-2.726400pt;}
.ws4_c00202{word-spacing:-2.720000pt;}
.ws30_c00202{word-spacing:-0.198400pt;}
.ws0_c00202{word-spacing:0.000000pt;}
.ws22_c00202{word-spacing:0.064000pt;}
.ws5_c00202{word-spacing:0.076800pt;}
.ws23_c00202{word-spacing:0.128000pt;}
.wsf_c00202{word-spacing:0.179200pt;}
.ws26_c00202{word-spacing:1.120000pt;}
.ws27_c00202{word-spacing:1.132800pt;}
.ws8_c00202{word-spacing:1.427200pt;}
.ws9_c00202{word-spacing:1.440000pt;}
.wsa_c00202{word-spacing:1.798400pt;}
.ws2_c00202{word-spacing:3.372800pt;}
.ws1_c00202{word-spacing:3.404800pt;}
.ws28_c00202{word-spacing:5.913600pt;}
.ws29_c00202{word-spacing:5.920000pt;}
.wsd_c00202{word-spacing:6.572800pt;}
.wse_c00202{word-spacing:6.592000pt;}
.ws13_c00202{word-spacing:6.886400pt;}
.ws12_c00202{word-spacing:6.899200pt;}
.ws25_c00202{word-spacing:7.526400pt;}
.ws24_c00202{word-spacing:7.577600pt;}
.ws2b_c00202{word-spacing:9.715200pt;}
.ws2c_c00202{word-spacing:9.747200pt;}
.ws1f_c00202{word-spacing:9.843200pt;}
.ws2e_c00202{word-spacing:11.360000pt;}
.ws2d_c00202{word-spacing:11.532800pt;}
.ws2f_c00202{word-spacing:11.590400pt;}
.ws6_c00202{word-spacing:12.627200pt;}
.ws7_c00202{word-spacing:12.640000pt;}
.ws2a_c00202{word-spacing:12.953600pt;}
.ws1d_c00202{word-spacing:12.960000pt;}
.ws1e_c00202{word-spacing:12.966400pt;}
.ws17_c00202{word-spacing:15.520000pt;}
.ws3_c00202{word-spacing:18.406400pt;}
.wsb_c00202{word-spacing:20.960000pt;}
.ws18_c00202{word-spacing:25.113600pt;}
.ws19_c00202{word-spacing:25.139200pt;}
.ws11_c00202{word-spacing:25.766400pt;}
.ws10_c00202{word-spacing:25.779200pt;}
.ws1c_c00202{word-spacing:25.939200pt;}
.ws1b_c00202{word-spacing:28.966400pt;}
.ws1a_c00202{word-spacing:29.152000pt;}
._0_c00202{width:1.107200pt;}
.fs0_c00202{font-size:64.000000pt;}
.y0_c00202{bottom:0.000000pt;}
.y2_c00202{bottom:41.627067pt;}
.y1_c00202{bottom:60.027067pt;}
.y21_c00202{bottom:162.827067pt;}
.y20_c00202{bottom:190.427067pt;}
.y1f_c00202{bottom:218.027067pt;}
.y1e_c00202{bottom:245.627067pt;}
.y1d_c00202{bottom:273.227067pt;}
.y1c_c00202{bottom:300.827067pt;}
.y1b_c00202{bottom:328.347067pt;}
.y1a_c00202{bottom:371.947067pt;}
.y19_c00202{bottom:399.547067pt;}
.y18_c00202{bottom:427.147067pt;}
.y17_c00202{bottom:454.747067pt;}
.y16_c00202{bottom:482.347067pt;}
.y15_c00202{bottom:509.947067pt;}
.y14_c00202{bottom:537.547067pt;}
.y13_c00202{bottom:565.147067pt;}
.y12_c00202{bottom:592.747067pt;}
.y11_c00202{bottom:620.347067pt;}
.y10_c00202{bottom:647.947067pt;}
.yf_c00202{bottom:675.547067pt;}
.ye_c00202{bottom:719.147067pt;}
.yd_c00202{bottom:746.747067pt;}
.yc_c00202{bottom:774.347067pt;}
.yb_c00202{bottom:801.947067pt;}
.ya_c00202{bottom:829.547067pt;}
.y9_c00202{bottom:857.147067pt;}
.y8_c00202{bottom:883.547067pt;}
.y7_c00202{bottom:901.947067pt;}
.y6_c00202{bottom:920.347067pt;}
.y5_c00202{bottom:938.747067pt;}
.y4_c00202{bottom:957.147067pt;}
.y3_c00202{bottom:975.547067pt;}
.h1_c00202{height:56.156250pt;}
.h2_c00202{height:57.375000pt;}
.h3_c00202{height:66.750000pt;}
.h0_c00202{height:1122.666667pt;}
.w1_c00202{width:793.333333pt;}
.w0_c00202{width:793.626667pt;}
.x0_c00202{left:0.000000pt;}
.x2_c00202{left:151.200000pt;}
.x3_c00202{left:170.160000pt;}
.x1_c00202{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3b48e1e2db813eb6b711d5d1.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.093262;font-style:normal;font-weight:normal;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_1de3e6bb92975d9462ae5bf2.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.106934;font-style:normal;font-weight:normal;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_fdebecaf8bb81db7d2830e6f.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsa_c00203{letter-spacing:-0.108000px;}
.ls4_c00203{letter-spacing:-0.100800px;}
.ls5_c00203{letter-spacing:-0.086400px;}
.lsc_c00203{letter-spacing:-0.079200px;}
.ls3_c00203{letter-spacing:-0.072000px;}
.lse_c00203{letter-spacing:-0.064800px;}
.ls7_c00203{letter-spacing:-0.057600px;}
.ls2_c00203{letter-spacing:-0.050400px;}
.ls9_c00203{letter-spacing:-0.043200px;}
.lsd_c00203{letter-spacing:-0.036000px;}
.ls6_c00203{letter-spacing:-0.028800px;}
.lsb_c00203{letter-spacing:-0.021600px;}
.ls8_c00203{letter-spacing:-0.014400px;}
.lsf_c00203{letter-spacing:-0.007200px;}
.ls1_c00203{letter-spacing:0.000000px;}
.ls0_c00203{letter-spacing:0.144000px;}
.sc__c00203{text-shadow:none;}
.sc0_c00203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00203{-webkit-text-stroke:0px transparent;}
.sc0_c00203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00203{word-spacing:-19.994400px;}
.ws1_c00203{word-spacing:-19.958400px;}
.ws38_c00203{word-spacing:-3.859200px;}
.ws39_c00203{word-spacing:-3.794400px;}
.wsd_c00203{word-spacing:-3.787200px;}
.ws37_c00203{word-spacing:-3.772800px;}
.wse_c00203{word-spacing:-3.751200px;}
.ws3e_c00203{word-spacing:-3.456000px;}
.ws3d_c00203{word-spacing:-3.405600px;}
.wsc_c00203{word-spacing:-1.951200px;}
.wsa_c00203{word-spacing:-1.915200px;}
.wsb_c00203{word-spacing:-1.893600px;}
.ws28_c00203{word-spacing:-1.605600px;}
.ws29_c00203{word-spacing:-1.591200px;}
.ws20_c00203{word-spacing:-1.267200px;}
.ws21_c00203{word-spacing:-1.245600px;}
.ws15_c00203{word-spacing:-1.101600px;}
.ws16_c00203{word-spacing:-0.979200px;}
.ws1c_c00203{word-spacing:-0.878400px;}
.ws14_c00203{word-spacing:-0.864000px;}
.ws1f_c00203{word-spacing:-0.172800px;}
.ws1e_c00203{word-spacing:-0.129600px;}
.ws2_c00203{word-spacing:0.000000px;}
.ws2a_c00203{word-spacing:0.158400px;}
.ws1a_c00203{word-spacing:0.194400px;}
.ws19_c00203{word-spacing:0.216000px;}
.ws36_c00203{word-spacing:0.244800px;}
.ws3_c00203{word-spacing:0.928800px;}
.ws4_c00203{word-spacing:1.065600px;}
.ws27_c00203{word-spacing:1.627200px;}
.ws26_c00203{word-spacing:1.807200px;}
.ws1d_c00203{word-spacing:1.951200px;}
.ws12_c00203{word-spacing:2.304000px;}
.ws13_c00203{word-spacing:2.397600px;}
.ws6_c00203{word-spacing:2.404800px;}
.ws5_c00203{word-spacing:2.419200px;}
.ws25_c00203{word-spacing:4.492800px;}
.ws24_c00203{word-spacing:4.514400px;}
.ws3b_c00203{word-spacing:6.660000px;}
.ws3a_c00203{word-spacing:6.674400px;}
.ws3c_c00203{word-spacing:6.796800px;}
.ws23_c00203{word-spacing:8.834400px;}
.ws30_c00203{word-spacing:10.612800px;}
.ws2f_c00203{word-spacing:10.627200px;}
.ws9_c00203{word-spacing:10.965600px;}
.ws7_c00203{word-spacing:10.987200px;}
.ws8_c00203{word-spacing:11.030400px;}
.ws34_c00203{word-spacing:11.707200px;}
.ws35_c00203{word-spacing:11.757600px;}
.ws32_c00203{word-spacing:12.592800px;}
.ws33_c00203{word-spacing:12.787200px;}
.ws31_c00203{word-spacing:12.794400px;}
.ws11_c00203{word-spacing:16.380000px;}
.ws1b_c00203{word-spacing:16.452000px;}
.wsf_c00203{word-spacing:20.008800px;}
.ws10_c00203{word-spacing:20.066400px;}
.ws2d_c00203{word-spacing:20.368800px;}
.ws2b_c00203{word-spacing:20.426400px;}
.ws2c_c00203{word-spacing:20.505600px;}
.ws18_c00203{word-spacing:20.721600px;}
.ws17_c00203{word-spacing:20.757600px;}
.ws22_c00203{word-spacing:24.616800px;}
.ws2e_c00203{word-spacing:39.448800px;}
._0_c00203{width:1.274400px;}
.fc0_c00203{color:rgb(0,0,0);}
.fs0_c00203{font-size:72.000000px;}
.y0_c00203{bottom:0.000000px;}
.y2_c00203{bottom:46.830450px;}
.y1_c00203{bottom:67.530450px;}
.y24_c00203{bottom:139.080450px;}
.y23_c00203{bottom:170.130450px;}
.y22_c00203{bottom:201.180450px;}
.y21_c00203{bottom:230.880450px;}
.y20_c00203{bottom:251.580450px;}
.y1f_c00203{bottom:272.280450px;}
.y1e_c00203{bottom:292.980450px;}
.y1d_c00203{bottom:313.680450px;}
.y1c_c00203{bottom:334.380450px;}
.y1b_c00203{bottom:355.080450px;}
.y1a_c00203{bottom:375.690450px;}
.y19_c00203{bottom:396.390450px;}
.y18_c00203{bottom:445.440450px;}
.y17_c00203{bottom:476.490450px;}
.y16_c00203{bottom:507.540450px;}
.y15_c00203{bottom:538.590450px;}
.y14_c00203{bottom:569.640450px;}
.y13_c00203{bottom:600.690450px;}
.y12_c00203{bottom:631.740450px;}
.y11_c00203{bottom:662.790450px;}
.y10_c00203{bottom:693.840450px;}
.yf_c00203{bottom:724.890450px;}
.ye_c00203{bottom:755.940450px;}
.yd_c00203{bottom:786.990450px;}
.yc_c00203{bottom:818.040450px;}
.yb_c00203{bottom:849.090450px;}
.ya_c00203{bottom:880.140450px;}
.y9_c00203{bottom:911.190450px;}
.y8_c00203{bottom:942.240450px;}
.y7_c00203{bottom:973.290450px;}
.y6_c00203{bottom:1004.340450px;}
.y5_c00203{bottom:1035.390450px;}
.y4_c00203{bottom:1066.440450px;}
.y3_c00203{bottom:1097.490450px;}
.h1_c00203{height:63.175781px;}
.h2_c00203{height:64.546875px;}
.h3_c00203{height:75.093750px;}
.h0_c00203{height:1263.000000px;}
.w1_c00203{width:892.500000px;}
.w0_c00203{width:892.830000px;}
.x0_c00203{left:0.000000px;}
.x2_c00203{left:127.620000px;}
.x3_c00203{left:148.950000px;}
.x1_c00203{left:695.880000px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.lsa_c00203{letter-spacing:-0.096000pt;}
.ls4_c00203{letter-spacing:-0.089600pt;}
.ls5_c00203{letter-spacing:-0.076800pt;}
.lsc_c00203{letter-spacing:-0.070400pt;}
.ls3_c00203{letter-spacing:-0.064000pt;}
.lse_c00203{letter-spacing:-0.057600pt;}
.ls7_c00203{letter-spacing:-0.051200pt;}
.ls2_c00203{letter-spacing:-0.044800pt;}
.ls9_c00203{letter-spacing:-0.038400pt;}
.lsd_c00203{letter-spacing:-0.032000pt;}
.ls6_c00203{letter-spacing:-0.025600pt;}
.lsb_c00203{letter-spacing:-0.019200pt;}
.ls8_c00203{letter-spacing:-0.012800pt;}
.lsf_c00203{letter-spacing:-0.006400pt;}
.ls1_c00203{letter-spacing:0.000000pt;}
.ls0_c00203{letter-spacing:0.128000pt;}
.ws0_c00203{word-spacing:-17.772800pt;}
.ws1_c00203{word-spacing:-17.740800pt;}
.ws38_c00203{word-spacing:-3.430400pt;}
.ws39_c00203{word-spacing:-3.372800pt;}
.wsd_c00203{word-spacing:-3.366400pt;}
.ws37_c00203{word-spacing:-3.353600pt;}
.wse_c00203{word-spacing:-3.334400pt;}
.ws3e_c00203{word-spacing:-3.072000pt;}
.ws3d_c00203{word-spacing:-3.027200pt;}
.wsc_c00203{word-spacing:-1.734400pt;}
.wsa_c00203{word-spacing:-1.702400pt;}
.wsb_c00203{word-spacing:-1.683200pt;}
.ws28_c00203{word-spacing:-1.427200pt;}
.ws29_c00203{word-spacing:-1.414400pt;}
.ws20_c00203{word-spacing:-1.126400pt;}
.ws21_c00203{word-spacing:-1.107200pt;}
.ws15_c00203{word-spacing:-0.979200pt;}
.ws16_c00203{word-spacing:-0.870400pt;}
.ws1c_c00203{word-spacing:-0.780800pt;}
.ws14_c00203{word-spacing:-0.768000pt;}
.ws1f_c00203{word-spacing:-0.153600pt;}
.ws1e_c00203{word-spacing:-0.115200pt;}
.ws2_c00203{word-spacing:0.000000pt;}
.ws2a_c00203{word-spacing:0.140800pt;}
.ws1a_c00203{word-spacing:0.172800pt;}
.ws19_c00203{word-spacing:0.192000pt;}
.ws36_c00203{word-spacing:0.217600pt;}
.ws3_c00203{word-spacing:0.825600pt;}
.ws4_c00203{word-spacing:0.947200pt;}
.ws27_c00203{word-spacing:1.446400pt;}
.ws26_c00203{word-spacing:1.606400pt;}
.ws1d_c00203{word-spacing:1.734400pt;}
.ws12_c00203{word-spacing:2.048000pt;}
.ws13_c00203{word-spacing:2.131200pt;}
.ws6_c00203{word-spacing:2.137600pt;}
.ws5_c00203{word-spacing:2.150400pt;}
.ws25_c00203{word-spacing:3.993600pt;}
.ws24_c00203{word-spacing:4.012800pt;}
.ws3b_c00203{word-spacing:5.920000pt;}
.ws3a_c00203{word-spacing:5.932800pt;}
.ws3c_c00203{word-spacing:6.041600pt;}
.ws23_c00203{word-spacing:7.852800pt;}
.ws30_c00203{word-spacing:9.433600pt;}
.ws2f_c00203{word-spacing:9.446400pt;}
.ws9_c00203{word-spacing:9.747200pt;}
.ws7_c00203{word-spacing:9.766400pt;}
.ws8_c00203{word-spacing:9.804800pt;}
.ws34_c00203{word-spacing:10.406400pt;}
.ws35_c00203{word-spacing:10.451200pt;}
.ws32_c00203{word-spacing:11.193600pt;}
.ws33_c00203{word-spacing:11.366400pt;}
.ws31_c00203{word-spacing:11.372800pt;}
.ws11_c00203{word-spacing:14.560000pt;}
.ws1b_c00203{word-spacing:14.624000pt;}
.wsf_c00203{word-spacing:17.785600pt;}
.ws10_c00203{word-spacing:17.836800pt;}
.ws2d_c00203{word-spacing:18.105600pt;}
.ws2b_c00203{word-spacing:18.156800pt;}
.ws2c_c00203{word-spacing:18.227200pt;}
.ws18_c00203{word-spacing:18.419200pt;}
.ws17_c00203{word-spacing:18.451200pt;}
.ws22_c00203{word-spacing:21.881600pt;}
.ws2e_c00203{word-spacing:35.065600pt;}
._0_c00203{width:1.132800pt;}
.fs0_c00203{font-size:64.000000pt;}
.y0_c00203{bottom:0.000000pt;}
.y2_c00203{bottom:41.627067pt;}
.y1_c00203{bottom:60.027067pt;}
.y24_c00203{bottom:123.627067pt;}
.y23_c00203{bottom:151.227067pt;}
.y22_c00203{bottom:178.827067pt;}
.y21_c00203{bottom:205.227067pt;}
.y20_c00203{bottom:223.627067pt;}
.y1f_c00203{bottom:242.027067pt;}
.y1e_c00203{bottom:260.427067pt;}
.y1d_c00203{bottom:278.827067pt;}
.y1c_c00203{bottom:297.227067pt;}
.y1b_c00203{bottom:315.627067pt;}
.y1a_c00203{bottom:333.947067pt;}
.y19_c00203{bottom:352.347067pt;}
.y18_c00203{bottom:395.947067pt;}
.y17_c00203{bottom:423.547067pt;}
.y16_c00203{bottom:451.147067pt;}
.y15_c00203{bottom:478.747067pt;}
.y14_c00203{bottom:506.347067pt;}
.y13_c00203{bottom:533.947067pt;}
.y12_c00203{bottom:561.547067pt;}
.y11_c00203{bottom:589.147067pt;}
.y10_c00203{bottom:616.747067pt;}
.yf_c00203{bottom:644.347067pt;}
.ye_c00203{bottom:671.947067pt;}
.yd_c00203{bottom:699.547067pt;}
.yc_c00203{bottom:727.147067pt;}
.yb_c00203{bottom:754.747067pt;}
.ya_c00203{bottom:782.347067pt;}
.y9_c00203{bottom:809.947067pt;}
.y8_c00203{bottom:837.547067pt;}
.y7_c00203{bottom:865.147067pt;}
.y6_c00203{bottom:892.747067pt;}
.y5_c00203{bottom:920.347067pt;}
.y4_c00203{bottom:947.947067pt;}
.y3_c00203{bottom:975.547067pt;}
.h1_c00203{height:56.156250pt;}
.h2_c00203{height:57.375000pt;}
.h3_c00203{height:66.750000pt;}
.h0_c00203{height:1122.666667pt;}
.w1_c00203{width:793.333333pt;}
.w0_c00203{width:793.626667pt;}
.x0_c00203{left:0.000000pt;}
.x2_c00203{left:113.440000pt;}
.x3_c00203{left:132.400000pt;}
.x1_c00203{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_827c2cb4e2e22cfe87060444.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.093262;font-style:normal;font-weight:normal;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_fbba8157dd9e8ca4d93a3878.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:1.106934;font-style:normal;font-weight:normal;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_472e6ec25f9ce529451392b8.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsf_c00204{letter-spacing:-0.079200px;}
.lsd_c00204{letter-spacing:-0.072000px;}
.ls9_c00204{letter-spacing:-0.064800px;}
.lsc_c00204{letter-spacing:-0.057600px;}
.lsa_c00204{letter-spacing:-0.050400px;}
.ls7_c00204{letter-spacing:-0.043200px;}
.ls6_c00204{letter-spacing:-0.036000px;}
.ls8_c00204{letter-spacing:-0.028800px;}
.ls5_c00204{letter-spacing:-0.021600px;}
.lsb_c00204{letter-spacing:-0.014400px;}
.lse_c00204{letter-spacing:-0.007200px;}
.ls4_c00204{letter-spacing:0.000000px;}
.ls3_c00204{letter-spacing:0.014400px;}
.ls2_c00204{letter-spacing:0.028800px;}
.ls0_c00204{letter-spacing:0.136800px;}
.ls1_c00204{letter-spacing:0.144000px;}
.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:-20.016000px;}
.ws0_c00204{word-spacing:-19.951200px;}
.ws1c_c00204{word-spacing:-3.074400px;}
.ws1b_c00204{word-spacing:-3.045600px;}
.wsc_c00204{word-spacing:-0.158400px;}
.ws2_c00204{word-spacing:0.000000px;}
.ws36_c00204{word-spacing:0.158400px;}
.ws27_c00204{word-spacing:0.165600px;}
.ws1a_c00204{word-spacing:0.180000px;}
.ws33_c00204{word-spacing:0.194400px;}
.ws29_c00204{word-spacing:0.208800px;}
.ws19_c00204{word-spacing:0.266400px;}
.ws35_c00204{word-spacing:0.273600px;}
.ws34_c00204{word-spacing:0.288000px;}
.ws24_c00204{word-spacing:1.908000px;}
.ws23_c00204{word-spacing:1.987200px;}
.ws18_c00204{word-spacing:2.008800px;}
.ws3a_c00204{word-spacing:2.304000px;}
.ws3b_c00204{word-spacing:2.325600px;}
.ws39_c00204{word-spacing:2.354400px;}
.ws38_c00204{word-spacing:3.765600px;}
.ws37_c00204{word-spacing:3.823200px;}
.wsf_c00204{word-spacing:4.867200px;}
.ws10_c00204{word-spacing:4.888800px;}
.ws8_c00204{word-spacing:6.300000px;}
.ws7_c00204{word-spacing:6.321600px;}
.ws20_c00204{word-spacing:6.559200px;}
.ws1f_c00204{word-spacing:6.667200px;}
.ws14_c00204{word-spacing:7.732800px;}
.ws3_c00204{word-spacing:7.740000px;}
.ws4_c00204{word-spacing:7.754400px;}
.ws13_c00204{word-spacing:7.776000px;}
.ws2d_c00204{word-spacing:8.748000px;}
.ws2e_c00204{word-spacing:8.834400px;}
.ws2c_c00204{word-spacing:8.971200px;}
.ws32_c00204{word-spacing:9.129600px;}
.ws31_c00204{word-spacing:9.259200px;}
.ws12_c00204{word-spacing:10.238400px;}
.ws11_c00204{word-spacing:10.252800px;}
.ws25_c00204{word-spacing:11.700000px;}
.ws26_c00204{word-spacing:11.707200px;}
.ws2a_c00204{word-spacing:12.052800px;}
.ws2b_c00204{word-spacing:12.067200px;}
.ws6_c00204{word-spacing:13.514400px;}
.ws5_c00204{word-spacing:13.521600px;}
.ws1d_c00204{word-spacing:14.212800px;}
.ws1e_c00204{word-spacing:14.263200px;}
.ws21_c00204{word-spacing:17.424000px;}
.ws22_c00204{word-spacing:17.460000px;}
.wse_c00204{word-spacing:18.540000px;}
.wsd_c00204{word-spacing:18.619200px;}
.ws28_c00204{word-spacing:29.361600px;}
.ws30_c00204{word-spacing:35.085600px;}
.ws2f_c00204{word-spacing:35.114400px;}
.wsb_c00204{word-spacing:36.180000px;}
.wsa_c00204{word-spacing:36.187200px;}
.ws9_c00204{word-spacing:36.201600px;}
.ws15_c00204{word-spacing:41.601600px;}
.ws16_c00204{word-spacing:47.707200px;}
.ws17_c00204{word-spacing:47.750400px;}
._2_c00204{margin-left:-29.160000px;}
._0_c00204{width:1.022400px;}
._1_c00204{width:3.240000px;}
.fc0_c00204{color:rgb(0,0,0);}
.fs0_c00204{font-size:72.000000px;}
.y0_c00204{bottom:0.000000px;}
.y2_c00204{bottom:46.830450px;}
.y1_c00204{bottom:67.530450px;}
.y20_c00204{bottom:143.130450px;}
.y1f_c00204{bottom:174.180450px;}
.y1e_c00204{bottom:205.230450px;}
.y1d_c00204{bottom:254.280450px;}
.y1c_c00204{bottom:285.330450px;}
.y1b_c00204{bottom:316.380450px;}
.y1a_c00204{bottom:347.430450px;}
.y19_c00204{bottom:378.390450px;}
.y18_c00204{bottom:409.440450px;}
.y17_c00204{bottom:440.490450px;}
.y16_c00204{bottom:489.540450px;}
.y15_c00204{bottom:520.590450px;}
.y14_c00204{bottom:551.640450px;}
.y13_c00204{bottom:582.690450px;}
.y12_c00204{bottom:613.740450px;}
.y11_c00204{bottom:644.790450px;}
.y10_c00204{bottom:675.840450px;}
.yf_c00204{bottom:724.890450px;}
.ye_c00204{bottom:755.850450px;}
.yd_c00204{bottom:786.990450px;}
.yc_c00204{bottom:818.040450px;}
.yb_c00204{bottom:849.090450px;}
.ya_c00204{bottom:880.140450px;}
.y9_c00204{bottom:911.190450px;}
.y8_c00204{bottom:942.240450px;}
.y7_c00204{bottom:973.290450px;}
.y6_c00204{bottom:1004.340450px;}
.y5_c00204{bottom:1035.390450px;}
.y4_c00204{bottom:1066.440450px;}
.y3_c00204{bottom:1097.490450px;}
.h1_c00204{height:63.175781px;}
.h2_c00204{height:64.546875px;}
.h3_c00204{height:75.093750px;}
.h0_c00204{height:1263.000000px;}
.w1_c00204{width:892.500000px;}
.w0_c00204{width:892.830000px;}
.x0_c00204{left:0.000000px;}
.x2_c00204{left:170.100000px;}
.x1_c00204{left:738.360000px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.lsf_c00204{letter-spacing:-0.070400pt;}
.lsd_c00204{letter-spacing:-0.064000pt;}
.ls9_c00204{letter-spacing:-0.057600pt;}
.lsc_c00204{letter-spacing:-0.051200pt;}
.lsa_c00204{letter-spacing:-0.044800pt;}
.ls7_c00204{letter-spacing:-0.038400pt;}
.ls6_c00204{letter-spacing:-0.032000pt;}
.ls8_c00204{letter-spacing:-0.025600pt;}
.ls5_c00204{letter-spacing:-0.019200pt;}
.lsb_c00204{letter-spacing:-0.012800pt;}
.lse_c00204{letter-spacing:-0.006400pt;}
.ls4_c00204{letter-spacing:0.000000pt;}
.ls3_c00204{letter-spacing:0.012800pt;}
.ls2_c00204{letter-spacing:0.025600pt;}
.ls0_c00204{letter-spacing:0.121600pt;}
.ls1_c00204{letter-spacing:0.128000pt;}
.ws1_c00204{word-spacing:-17.792000pt;}
.ws0_c00204{word-spacing:-17.734400pt;}
.ws1c_c00204{word-spacing:-2.732800pt;}
.ws1b_c00204{word-spacing:-2.707200pt;}
.wsc_c00204{word-spacing:-0.140800pt;}
.ws2_c00204{word-spacing:0.000000pt;}
.ws36_c00204{word-spacing:0.140800pt;}
.ws27_c00204{word-spacing:0.147200pt;}
.ws1a_c00204{word-spacing:0.160000pt;}
.ws33_c00204{word-spacing:0.172800pt;}
.ws29_c00204{word-spacing:0.185600pt;}
.ws19_c00204{word-spacing:0.236800pt;}
.ws35_c00204{word-spacing:0.243200pt;}
.ws34_c00204{word-spacing:0.256000pt;}
.ws24_c00204{word-spacing:1.696000pt;}
.ws23_c00204{word-spacing:1.766400pt;}
.ws18_c00204{word-spacing:1.785600pt;}
.ws3a_c00204{word-spacing:2.048000pt;}
.ws3b_c00204{word-spacing:2.067200pt;}
.ws39_c00204{word-spacing:2.092800pt;}
.ws38_c00204{word-spacing:3.347200pt;}
.ws37_c00204{word-spacing:3.398400pt;}
.wsf_c00204{word-spacing:4.326400pt;}
.ws10_c00204{word-spacing:4.345600pt;}
.ws8_c00204{word-spacing:5.600000pt;}
.ws7_c00204{word-spacing:5.619200pt;}
.ws20_c00204{word-spacing:5.830400pt;}
.ws1f_c00204{word-spacing:5.926400pt;}
.ws14_c00204{word-spacing:6.873600pt;}
.ws3_c00204{word-spacing:6.880000pt;}
.ws4_c00204{word-spacing:6.892800pt;}
.ws13_c00204{word-spacing:6.912000pt;}
.ws2d_c00204{word-spacing:7.776000pt;}
.ws2e_c00204{word-spacing:7.852800pt;}
.ws2c_c00204{word-spacing:7.974400pt;}
.ws32_c00204{word-spacing:8.115200pt;}
.ws31_c00204{word-spacing:8.230400pt;}
.ws12_c00204{word-spacing:9.100800pt;}
.ws11_c00204{word-spacing:9.113600pt;}
.ws25_c00204{word-spacing:10.400000pt;}
.ws26_c00204{word-spacing:10.406400pt;}
.ws2a_c00204{word-spacing:10.713600pt;}
.ws2b_c00204{word-spacing:10.726400pt;}
.ws6_c00204{word-spacing:12.012800pt;}
.ws5_c00204{word-spacing:12.019200pt;}
.ws1d_c00204{word-spacing:12.633600pt;}
.ws1e_c00204{word-spacing:12.678400pt;}
.ws21_c00204{word-spacing:15.488000pt;}
.ws22_c00204{word-spacing:15.520000pt;}
.wse_c00204{word-spacing:16.480000pt;}
.wsd_c00204{word-spacing:16.550400pt;}
.ws28_c00204{word-spacing:26.099200pt;}
.ws30_c00204{word-spacing:31.187200pt;}
.ws2f_c00204{word-spacing:31.212800pt;}
.wsb_c00204{word-spacing:32.160000pt;}
.wsa_c00204{word-spacing:32.166400pt;}
.ws9_c00204{word-spacing:32.179200pt;}
.ws15_c00204{word-spacing:36.979200pt;}
.ws16_c00204{word-spacing:42.406400pt;}
.ws17_c00204{word-spacing:42.444800pt;}
._2_c00204{margin-left:-25.920000pt;}
._0_c00204{width:0.908800pt;}
._1_c00204{width:2.880000pt;}
.fs0_c00204{font-size:64.000000pt;}
.y0_c00204{bottom:0.000000pt;}
.y2_c00204{bottom:41.627067pt;}
.y1_c00204{bottom:60.027067pt;}
.y20_c00204{bottom:127.227067pt;}
.y1f_c00204{bottom:154.827067pt;}
.y1e_c00204{bottom:182.427067pt;}
.y1d_c00204{bottom:226.027067pt;}
.y1c_c00204{bottom:253.627067pt;}
.y1b_c00204{bottom:281.227067pt;}
.y1a_c00204{bottom:308.827067pt;}
.y19_c00204{bottom:336.347067pt;}
.y18_c00204{bottom:363.947067pt;}
.y17_c00204{bottom:391.547067pt;}
.y16_c00204{bottom:435.147067pt;}
.y15_c00204{bottom:462.747067pt;}
.y14_c00204{bottom:490.347067pt;}
.y13_c00204{bottom:517.947067pt;}
.y12_c00204{bottom:545.547067pt;}
.y11_c00204{bottom:573.147067pt;}
.y10_c00204{bottom:600.747067pt;}
.yf_c00204{bottom:644.347067pt;}
.ye_c00204{bottom:671.867067pt;}
.yd_c00204{bottom:699.547067pt;}
.yc_c00204{bottom:727.147067pt;}
.yb_c00204{bottom:754.747067pt;}
.ya_c00204{bottom:782.347067pt;}
.y9_c00204{bottom:809.947067pt;}
.y8_c00204{bottom:837.547067pt;}
.y7_c00204{bottom:865.147067pt;}
.y6_c00204{bottom:892.747067pt;}
.y5_c00204{bottom:920.347067pt;}
.y4_c00204{bottom:947.947067pt;}
.y3_c00204{bottom:975.547067pt;}
.h1_c00204{height:56.156250pt;}
.h2_c00204{height:57.375000pt;}
.h3_c00204{height:66.750000pt;}
.h0_c00204{height:1122.666667pt;}
.w1_c00204{width:793.333333pt;}
.w0_c00204{width:793.626667pt;}
.x0_c00204{left:0.000000pt;}
.x2_c00204{left:151.200000pt;}
.x1_c00204{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ca17d19423edd246c1f99915.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.093262;font-style:normal;font-weight:normal;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_8f5e9e6dfdfaed206edd40c5.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.106934;font-style:normal;font-weight:normal;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_3383070f9bffc2eaf0f7d492.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00205{letter-spacing:-0.079200px;}
.lsb_c00205{letter-spacing:-0.072000px;}
.ls8_c00205{letter-spacing:-0.064800px;}
.ls2_c00205{letter-spacing:-0.057600px;}
.ls5_c00205{letter-spacing:-0.050400px;}
.lsa_c00205{letter-spacing:-0.043200px;}
.ls7_c00205{letter-spacing:-0.036000px;}
.ls6_c00205{letter-spacing:-0.028800px;}
.ls9_c00205{letter-spacing:-0.021600px;}
.ls4_c00205{letter-spacing:-0.014400px;}
.ls3_c00205{letter-spacing:-0.007200px;}
.ls1_c00205{letter-spacing:0.000000px;}
.ls0_c00205{letter-spacing:0.021600px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00205{word-spacing:-20.008800px;}
.ws25_c00205{word-spacing:-3.175200px;}
.ws26_c00205{word-spacing:-3.060000px;}
.ws2c_c00205{word-spacing:-2.332800px;}
.ws2d_c00205{word-spacing:-2.311200px;}
.ws32_c00205{word-spacing:-2.296800px;}
.ws10_c00205{word-spacing:-1.677600px;}
.wsf_c00205{word-spacing:-1.576800px;}
.ws1_c00205{word-spacing:0.000000px;}
.ws8_c00205{word-spacing:0.050400px;}
.ws31_c00205{word-spacing:0.064800px;}
.ws9_c00205{word-spacing:0.187200px;}
.ws19_c00205{word-spacing:0.194400px;}
.ws30_c00205{word-spacing:0.302400px;}
.ws1d_c00205{word-spacing:2.354400px;}
.ws1c_c00205{word-spacing:2.383200px;}
.ws5_c00205{word-spacing:2.707200px;}
.ws6_c00205{word-spacing:2.714400px;}
.ws11_c00205{word-spacing:4.161600px;}
.ws12_c00205{word-spacing:4.190400px;}
.wsa_c00205{word-spacing:6.292800px;}
.wsb_c00205{word-spacing:6.343200px;}
.ws2f_c00205{word-spacing:7.372800px;}
.ws2e_c00205{word-spacing:7.394400px;}
.ws13_c00205{word-spacing:8.114400px;}
.ws2b_c00205{word-spacing:10.958400px;}
.ws2a_c00205{word-spacing:10.987200px;}
.ws24_c00205{word-spacing:14.205600px;}
.ws23_c00205{word-spacing:14.212800px;}
.ws1a_c00205{word-spacing:16.452000px;}
.ws1b_c00205{word-spacing:16.459200px;}
.ws22_c00205{word-spacing:17.791200px;}
.ws21_c00205{word-spacing:17.820000px;}
.wsc_c00205{word-spacing:18.540000px;}
.ws4_c00205{word-spacing:19.195200px;}
.ws3_c00205{word-spacing:19.252800px;}
.ws17_c00205{word-spacing:20.714400px;}
.ws7_c00205{word-spacing:20.743200px;}
.ws18_c00205{word-spacing:20.757600px;}
.ws29_c00205{word-spacing:21.103200px;}
.ws33_c00205{word-spacing:21.427200px;}
.ws34_c00205{word-spacing:21.549600px;}
.ws1f_c00205{word-spacing:21.859200px;}
.ws1e_c00205{word-spacing:21.945600px;}
.ws20_c00205{word-spacing:22.154400px;}
.ws16_c00205{word-spacing:23.234400px;}
.ws15_c00205{word-spacing:23.241600px;}
.ws14_c00205{word-spacing:23.335200px;}
.ws27_c00205{word-spacing:27.172800px;}
.ws28_c00205{word-spacing:27.194400px;}
.ws2_c00205{word-spacing:27.576000px;}
.wsd_c00205{word-spacing:42.652800px;}
.wse_c00205{word-spacing:42.768000px;}
._0_c00205{width:1.080000px;}
.fc0_c00205{color:rgb(0,0,0);}
.fs0_c00205{font-size:72.000000px;}
.y0_c00205{bottom:0.000000px;}
.y2_c00205{bottom:46.830450px;}
.y1_c00205{bottom:67.530450px;}
.y23_c00205{bottom:172.830450px;}
.y22_c00205{bottom:203.880450px;}
.y21_c00205{bottom:234.930450px;}
.y20_c00205{bottom:283.980450px;}
.y1f_c00205{bottom:314.940450px;}
.y1e_c00205{bottom:346.080450px;}
.y1d_c00205{bottom:377.040450px;}
.y1c_c00205{bottom:408.090450px;}
.y1b_c00205{bottom:439.140450px;}
.y1a_c00205{bottom:470.190450px;}
.y19_c00205{bottom:501.240450px;}
.y18_c00205{bottom:532.290450px;}
.y17_c00205{bottom:563.340450px;}
.y16_c00205{bottom:594.390450px;}
.y15_c00205{bottom:625.440450px;}
.y14_c00205{bottom:656.490450px;}
.y13_c00205{bottom:687.540450px;}
.y12_c00205{bottom:717.240450px;}
.y11_c00205{bottom:737.940450px;}
.y10_c00205{bottom:758.640450px;}
.yf_c00205{bottom:779.340450px;}
.ye_c00205{bottom:800.040450px;}
.yd_c00205{bottom:820.740450px;}
.yc_c00205{bottom:841.440450px;}
.yb_c00205{bottom:862.140450px;}
.ya_c00205{bottom:882.840450px;}
.y9_c00205{bottom:903.540450px;}
.y8_c00205{bottom:924.240450px;}
.y7_c00205{bottom:973.290450px;}
.y6_c00205{bottom:1004.340450px;}
.y5_c00205{bottom:1035.390450px;}
.y4_c00205{bottom:1066.440450px;}
.y3_c00205{bottom:1097.490450px;}
.h1_c00205{height:63.175781px;}
.h3_c00205{height:64.546875px;}
.h2_c00205{height:75.093750px;}
.h0_c00205{height:1263.000000px;}
.w1_c00205{width:892.500000px;}
.w0_c00205{width:892.830000px;}
.x0_c00205{left:0.000000px;}
.x2_c00205{left:127.620000px;}
.x3_c00205{left:148.950000px;}
.x1_c00205{left:695.880000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.lsc_c00205{letter-spacing:-0.070400pt;}
.lsb_c00205{letter-spacing:-0.064000pt;}
.ls8_c00205{letter-spacing:-0.057600pt;}
.ls2_c00205{letter-spacing:-0.051200pt;}
.ls5_c00205{letter-spacing:-0.044800pt;}
.lsa_c00205{letter-spacing:-0.038400pt;}
.ls7_c00205{letter-spacing:-0.032000pt;}
.ls6_c00205{letter-spacing:-0.025600pt;}
.ls9_c00205{letter-spacing:-0.019200pt;}
.ls4_c00205{letter-spacing:-0.012800pt;}
.ls3_c00205{letter-spacing:-0.006400pt;}
.ls1_c00205{letter-spacing:0.000000pt;}
.ls0_c00205{letter-spacing:0.019200pt;}
.ws0_c00205{word-spacing:-17.785600pt;}
.ws25_c00205{word-spacing:-2.822400pt;}
.ws26_c00205{word-spacing:-2.720000pt;}
.ws2c_c00205{word-spacing:-2.073600pt;}
.ws2d_c00205{word-spacing:-2.054400pt;}
.ws32_c00205{word-spacing:-2.041600pt;}
.ws10_c00205{word-spacing:-1.491200pt;}
.wsf_c00205{word-spacing:-1.401600pt;}
.ws1_c00205{word-spacing:0.000000pt;}
.ws8_c00205{word-spacing:0.044800pt;}
.ws31_c00205{word-spacing:0.057600pt;}
.ws9_c00205{word-spacing:0.166400pt;}
.ws19_c00205{word-spacing:0.172800pt;}
.ws30_c00205{word-spacing:0.268800pt;}
.ws1d_c00205{word-spacing:2.092800pt;}
.ws1c_c00205{word-spacing:2.118400pt;}
.ws5_c00205{word-spacing:2.406400pt;}
.ws6_c00205{word-spacing:2.412800pt;}
.ws11_c00205{word-spacing:3.699200pt;}
.ws12_c00205{word-spacing:3.724800pt;}
.wsa_c00205{word-spacing:5.593600pt;}
.wsb_c00205{word-spacing:5.638400pt;}
.ws2f_c00205{word-spacing:6.553600pt;}
.ws2e_c00205{word-spacing:6.572800pt;}
.ws13_c00205{word-spacing:7.212800pt;}
.ws2b_c00205{word-spacing:9.740800pt;}
.ws2a_c00205{word-spacing:9.766400pt;}
.ws24_c00205{word-spacing:12.627200pt;}
.ws23_c00205{word-spacing:12.633600pt;}
.ws1a_c00205{word-spacing:14.624000pt;}
.ws1b_c00205{word-spacing:14.630400pt;}
.ws22_c00205{word-spacing:15.814400pt;}
.ws21_c00205{word-spacing:15.840000pt;}
.wsc_c00205{word-spacing:16.480000pt;}
.ws4_c00205{word-spacing:17.062400pt;}
.ws3_c00205{word-spacing:17.113600pt;}
.ws17_c00205{word-spacing:18.412800pt;}
.ws7_c00205{word-spacing:18.438400pt;}
.ws18_c00205{word-spacing:18.451200pt;}
.ws29_c00205{word-spacing:18.758400pt;}
.ws33_c00205{word-spacing:19.046400pt;}
.ws34_c00205{word-spacing:19.155200pt;}
.ws1f_c00205{word-spacing:19.430400pt;}
.ws1e_c00205{word-spacing:19.507200pt;}
.ws20_c00205{word-spacing:19.692800pt;}
.ws16_c00205{word-spacing:20.652800pt;}
.ws15_c00205{word-spacing:20.659200pt;}
.ws14_c00205{word-spacing:20.742400pt;}
.ws27_c00205{word-spacing:24.153600pt;}
.ws28_c00205{word-spacing:24.172800pt;}
.ws2_c00205{word-spacing:24.512000pt;}
.wsd_c00205{word-spacing:37.913600pt;}
.wse_c00205{word-spacing:38.016000pt;}
._0_c00205{width:0.960000pt;}
.fs0_c00205{font-size:64.000000pt;}
.y0_c00205{bottom:0.000000pt;}
.y2_c00205{bottom:41.627067pt;}
.y1_c00205{bottom:60.027067pt;}
.y23_c00205{bottom:153.627067pt;}
.y22_c00205{bottom:181.227067pt;}
.y21_c00205{bottom:208.827067pt;}
.y20_c00205{bottom:252.427067pt;}
.y1f_c00205{bottom:279.947067pt;}
.y1e_c00205{bottom:307.627067pt;}
.y1d_c00205{bottom:335.147067pt;}
.y1c_c00205{bottom:362.747067pt;}
.y1b_c00205{bottom:390.347067pt;}
.y1a_c00205{bottom:417.947067pt;}
.y19_c00205{bottom:445.547067pt;}
.y18_c00205{bottom:473.147067pt;}
.y17_c00205{bottom:500.747067pt;}
.y16_c00205{bottom:528.347067pt;}
.y15_c00205{bottom:555.947067pt;}
.y14_c00205{bottom:583.547067pt;}
.y13_c00205{bottom:611.147067pt;}
.y12_c00205{bottom:637.547067pt;}
.y11_c00205{bottom:655.947067pt;}
.y10_c00205{bottom:674.347067pt;}
.yf_c00205{bottom:692.747067pt;}
.ye_c00205{bottom:711.147067pt;}
.yd_c00205{bottom:729.547067pt;}
.yc_c00205{bottom:747.947067pt;}
.yb_c00205{bottom:766.347067pt;}
.ya_c00205{bottom:784.747067pt;}
.y9_c00205{bottom:803.147067pt;}
.y8_c00205{bottom:821.547067pt;}
.y7_c00205{bottom:865.147067pt;}
.y6_c00205{bottom:892.747067pt;}
.y5_c00205{bottom:920.347067pt;}
.y4_c00205{bottom:947.947067pt;}
.y3_c00205{bottom:975.547067pt;}
.h1_c00205{height:56.156250pt;}
.h3_c00205{height:57.375000pt;}
.h2_c00205{height:66.750000pt;}
.h0_c00205{height:1122.666667pt;}
.w1_c00205{width:793.333333pt;}
.w0_c00205{width:793.626667pt;}
.x0_c00205{left:0.000000pt;}
.x2_c00205{left:113.440000pt;}
.x3_c00205{left:132.400000pt;}
.x1_c00205{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a23fc756f8b4fd77014081f7.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.093262;font-style:normal;font-weight:normal;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_4e0262dd62e8e7e9f1232421.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.ls7_c00206{letter-spacing:-0.072000px;}
.ls8_c00206{letter-spacing:-0.064800px;}
.ls2_c00206{letter-spacing:-0.050400px;}
.ls5_c00206{letter-spacing:-0.043200px;}
.ls1_c00206{letter-spacing:-0.036000px;}
.ls6_c00206{letter-spacing:-0.028800px;}
.ls4_c00206{letter-spacing:-0.014400px;}
.ls3_c00206{letter-spacing:-0.007200px;}
.ls0_c00206{letter-spacing:0.000000px;}
.ls9_c00206{letter-spacing:843.998400px;}
.sc__c00206{text-shadow:none;}
.sc0_c00206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00206{-webkit-text-stroke:0px transparent;}
.sc0_c00206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00206{word-spacing:0.000000px;}
.wsf_c00206{word-spacing:0.172800px;}
.ws8_c00206{word-spacing:4.082400px;}
.ws9_c00206{word-spacing:4.190400px;}
.ws6_c00206{word-spacing:4.492800px;}
.ws7_c00206{word-spacing:4.521600px;}
.wsa_c00206{word-spacing:6.595200px;}
.wsb_c00206{word-spacing:6.609600px;}
.wse_c00206{word-spacing:6.703200px;}
.wsc_c00206{word-spacing:17.733600px;}
.wsd_c00206{word-spacing:17.812800px;}
.ws1_c00206{word-spacing:23.954400px;}
.ws3_c00206{word-spacing:23.968800px;}
.ws2_c00206{word-spacing:24.328800px;}
.ws5_c00206{word-spacing:30.405600px;}
.ws4_c00206{word-spacing:30.628800px;}
._0_c00206{width:1.368000px;}
.fc0_c00206{color:rgb(0,0,0);}
.fs0_c00206{font-size:72.000000px;}
.y0_c00206{bottom:0.000000px;}
.y2_c00206{bottom:46.830450px;}
.y1_c00206{bottom:67.530450px;}
.yb_c00206{bottom:913.890450px;}
.ya_c00206{bottom:952.590450px;}
.y9_c00206{bottom:973.290450px;}
.y8_c00206{bottom:993.990450px;}
.y7_c00206{bottom:1014.690450px;}
.y6_c00206{bottom:1035.390450px;}
.y5_c00206{bottom:1056.090450px;}
.y4_c00206{bottom:1076.790450px;}
.y3_c00206{bottom:1097.490450px;}
.h1_c00206{height:63.175781px;}
.h2_c00206{height:64.546875px;}
.h0_c00206{height:1263.000000px;}
.w1_c00206{width:892.500000px;}
.w0_c00206{width:892.830000px;}
.x0_c00206{left:0.000000px;}
.x2_c00206{left:170.100000px;}
.x3_c00206{left:191.430000px;}
.x1_c00206{left:738.360000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls7_c00206{letter-spacing:-0.064000pt;}
.ls8_c00206{letter-spacing:-0.057600pt;}
.ls2_c00206{letter-spacing:-0.044800pt;}
.ls5_c00206{letter-spacing:-0.038400pt;}
.ls1_c00206{letter-spacing:-0.032000pt;}
.ls6_c00206{letter-spacing:-0.025600pt;}
.ls4_c00206{letter-spacing:-0.012800pt;}
.ls3_c00206{letter-spacing:-0.006400pt;}
.ls0_c00206{letter-spacing:0.000000pt;}
.ls9_c00206{letter-spacing:750.220800pt;}
.ws0_c00206{word-spacing:0.000000pt;}
.wsf_c00206{word-spacing:0.153600pt;}
.ws8_c00206{word-spacing:3.628800pt;}
.ws9_c00206{word-spacing:3.724800pt;}
.ws6_c00206{word-spacing:3.993600pt;}
.ws7_c00206{word-spacing:4.019200pt;}
.wsa_c00206{word-spacing:5.862400pt;}
.wsb_c00206{word-spacing:5.875200pt;}
.wse_c00206{word-spacing:5.958400pt;}
.wsc_c00206{word-spacing:15.763200pt;}
.wsd_c00206{word-spacing:15.833600pt;}
.ws1_c00206{word-spacing:21.292800pt;}
.ws3_c00206{word-spacing:21.305600pt;}
.ws2_c00206{word-spacing:21.625600pt;}
.ws5_c00206{word-spacing:27.027200pt;}
.ws4_c00206{word-spacing:27.225600pt;}
._0_c00206{width:1.216000pt;}
.fs0_c00206{font-size:64.000000pt;}
.y0_c00206{bottom:0.000000pt;}
.y2_c00206{bottom:41.627067pt;}
.y1_c00206{bottom:60.027067pt;}
.yb_c00206{bottom:812.347067pt;}
.ya_c00206{bottom:846.747067pt;}
.y9_c00206{bottom:865.147067pt;}
.y8_c00206{bottom:883.547067pt;}
.y7_c00206{bottom:901.947067pt;}
.y6_c00206{bottom:920.347067pt;}
.y5_c00206{bottom:938.747067pt;}
.y4_c00206{bottom:957.147067pt;}
.y3_c00206{bottom:975.547067pt;}
.h1_c00206{height:56.156250pt;}
.h2_c00206{height:57.375000pt;}
.h0_c00206{height:1122.666667pt;}
.w1_c00206{width:793.333333pt;}
.w0_c00206{width:793.626667pt;}
.x0_c00206{left:0.000000pt;}
.x2_c00206{left:151.200000pt;}
.x3_c00206{left:170.160000pt;}
.x1_c00206{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_15b6451ff236fb473e045eb1.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls0_c00207{letter-spacing:0.000000px;}
.ls1_c00207{letter-spacing:843.998400px;}
.sc__c00207{text-shadow:none;}
.sc0_c00207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00207{-webkit-text-stroke:0px transparent;}
.sc0_c00207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00207{word-spacing:0.000000px;}
.fc0_c00207{color:rgb(0,0,0);}
.fs0_c00207{font-size:72.000000px;}
.y0_c00207{bottom:0.000000px;}
.y2_c00207{bottom:46.830450px;}
.y1_c00207{bottom:67.530450px;}
.y3_c00207{bottom:1097.490450px;}
.h1_c00207{height:63.175781px;}
.h2_c00207{height:64.546875px;}
.h0_c00207{height:1263.000000px;}
.w1_c00207{width:892.500000px;}
.w0_c00207{width:892.830000px;}
.x0_c00207{left:0.000000px;}
.x2_c00207{left:127.620000px;}
.x1_c00207{left:695.880000px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls0_c00207{letter-spacing:0.000000pt;}
.ls1_c00207{letter-spacing:750.220800pt;}
.ws0_c00207{word-spacing:0.000000pt;}
.fs0_c00207{font-size:64.000000pt;}
.y0_c00207{bottom:0.000000pt;}
.y2_c00207{bottom:41.627067pt;}
.y1_c00207{bottom:60.027067pt;}
.y3_c00207{bottom:975.547067pt;}
.h1_c00207{height:56.156250pt;}
.h2_c00207{height:57.375000pt;}
.h0_c00207{height:1122.666667pt;}
.w1_c00207{width:793.333333pt;}
.w0_c00207{width:793.626667pt;}
.x0_c00207{left:0.000000pt;}
.x2_c00207{left:113.440000pt;}
.x1_c00207{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f57c253a7b015ecfbdd7dd03.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.093262;font-style:normal;font-weight:normal;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_5b09f40be9fc89a4c846db82.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00208;src:url('chunks/assets/font_ef7d1f69ae1cf5e15414a5a9.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:1.106934;font-style:normal;font-weight:normal;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_08cf0843a81e5480dbf51b5a.woff2')format("woff");}.ff4_c00208{font-family:ff4_c00208;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00208{letter-spacing:-0.100800px;}
.lsd_c00208{letter-spacing:-0.072000px;}
.ls7_c00208{letter-spacing:-0.064800px;}
.ls6_c00208{letter-spacing:-0.057600px;}
.ls3_c00208{letter-spacing:-0.050400px;}
.ls5_c00208{letter-spacing:-0.043200px;}
.ls9_c00208{letter-spacing:-0.036000px;}
.ls8_c00208{letter-spacing:-0.028800px;}
.ls4_c00208{letter-spacing:-0.021600px;}
.lsa_c00208{letter-spacing:-0.014400px;}
.lse_c00208{letter-spacing:-0.007200px;}
.ls2_c00208{letter-spacing:0.000000px;}
.ls0_c00208{letter-spacing:0.041940px;}
.lsc_c00208{letter-spacing:0.079200px;}
.ls1_c00208{letter-spacing:2.520000px;}
.sc__c00208{text-shadow:none;}
.sc0_c00208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00208{-webkit-text-stroke:0px transparent;}
.sc0_c00208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00208{word-spacing:-19.972800px;}
.ws5_c00208{word-spacing:-3.758400px;}
.ws1a_c00208{word-spacing:-2.700000px;}
.wsa_c00208{word-spacing:-2.685600px;}
.ws1b_c00208{word-spacing:-2.649600px;}
.ws29_c00208{word-spacing:-2.361600px;}
.ws2a_c00208{word-spacing:-2.347200px;}
.ws18_c00208{word-spacing:-2.311200px;}
.ws1_c00208{word-spacing:0.000000px;}
.ws2_c00208{word-spacing:0.109044px;}
.ws10_c00208{word-spacing:0.180000px;}
.ws11_c00208{word-spacing:0.187200px;}
.ws22_c00208{word-spacing:0.201600px;}
.ws9_c00208{word-spacing:0.547200px;}
.ws8_c00208{word-spacing:0.640800px;}
.ws16_c00208{word-spacing:1.648800px;}
.ws17_c00208{word-spacing:1.771200px;}
.wsb_c00208{word-spacing:3.060000px;}
.wsc_c00208{word-spacing:3.088800px;}
.wsf_c00208{word-spacing:4.521600px;}
.ws1c_c00208{word-spacing:5.587200px;}
.ws1d_c00208{word-spacing:5.601600px;}
.ws3_c00208{word-spacing:5.968800px;}
.ws1f_c00208{word-spacing:8.740800px;}
.ws1e_c00208{word-spacing:8.841600px;}
.ws13_c00208{word-spacing:10.972800px;}
.ws15_c00208{word-spacing:11.023200px;}
.ws14_c00208{word-spacing:11.059200px;}
.ws20_c00208{word-spacing:11.714400px;}
.ws23_c00208{word-spacing:14.580000px;}
.ws24_c00208{word-spacing:14.594400px;}
.ws7_c00208{word-spacing:14.623200px;}
.ws6_c00208{word-spacing:14.688000px;}
.ws21_c00208{word-spacing:15.307200px;}
.ws19_c00208{word-spacing:16.394400px;}
.ws25_c00208{word-spacing:21.045600px;}
.ws26_c00208{word-spacing:21.052800px;}
.ws4_c00208{word-spacing:21.420000px;}
.wse_c00208{word-spacing:22.492800px;}
.wsd_c00208{word-spacing:22.593600px;}
.ws27_c00208{word-spacing:23.220000px;}
.ws28_c00208{word-spacing:23.299200px;}
.ws12_c00208{word-spacing:24.235200px;}
._1_c00208{width:1.008000px;}
._0_c00208{width:187.471800px;}
.fc0_c00208{color:rgb(0,0,0);}
.fs0_c00208{font-size:72.000000px;}
.fs1_c00208{font-size:83.880000px;}
.y0_c00208{bottom:0.000000px;}
.y2_c00208{bottom:46.830450px;}
.y1_c00208{bottom:67.530450px;}
.y21_c00208{bottom:177.420450px;}
.y20_c00208{bottom:208.470450px;}
.y1f_c00208{bottom:239.520450px;}
.y1e_c00208{bottom:270.570450px;}
.y1d_c00208{bottom:301.620450px;}
.y1c_c00208{bottom:340.320450px;}
.y1b_c00208{bottom:370.020450px;}
.y1a_c00208{bottom:390.720450px;}
.y19_c00208{bottom:411.420450px;}
.y18_c00208{bottom:432.120450px;}
.y17_c00208{bottom:452.820450px;}
.y16_c00208{bottom:473.520450px;}
.y15_c00208{bottom:494.220450px;}
.y14_c00208{bottom:514.920450px;}
.y13_c00208{bottom:535.620450px;}
.y12_c00208{bottom:584.670450px;}
.y11_c00208{bottom:615.720450px;}
.y10_c00208{bottom:646.770450px;}
.yf_c00208{bottom:695.820450px;}
.ye_c00208{bottom:726.870450px;}
.yd_c00208{bottom:757.920450px;}
.yc_c00208{bottom:788.970450px;}
.yb_c00208{bottom:820.020450px;}
.ya_c00208{bottom:851.070450px;}
.y9_c00208{bottom:882.120450px;}
.y8_c00208{bottom:913.170450px;}
.y7_c00208{bottom:944.220450px;}
.y6_c00208{bottom:975.270450px;}
.y5_c00208{bottom:1006.320450px;}
.y4_c00208{bottom:1055.370450px;}
.y3_c00208{bottom:1094.520450px;}
.h1_c00208{height:63.175781px;}
.h3_c00208{height:64.546875px;}
.h4_c00208{height:75.093750px;}
.h2_c00208{height:87.484219px;}
.h0_c00208{height:1263.000000px;}
.w1_c00208{width:892.500000px;}
.w0_c00208{width:892.830000px;}
.x0_c00208{left:0.000000px;}
.x2_c00208{left:170.100000px;}
.x4_c00208{left:191.430000px;}
.x3_c00208{left:224.100000px;}
.x1_c00208{left:738.360000px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.lsb_c00208{letter-spacing:-0.089600pt;}
.lsd_c00208{letter-spacing:-0.064000pt;}
.ls7_c00208{letter-spacing:-0.057600pt;}
.ls6_c00208{letter-spacing:-0.051200pt;}
.ls3_c00208{letter-spacing:-0.044800pt;}
.ls5_c00208{letter-spacing:-0.038400pt;}
.ls9_c00208{letter-spacing:-0.032000pt;}
.ls8_c00208{letter-spacing:-0.025600pt;}
.ls4_c00208{letter-spacing:-0.019200pt;}
.lsa_c00208{letter-spacing:-0.012800pt;}
.lse_c00208{letter-spacing:-0.006400pt;}
.ls2_c00208{letter-spacing:0.000000pt;}
.ls0_c00208{letter-spacing:0.037280pt;}
.lsc_c00208{letter-spacing:0.070400pt;}
.ls1_c00208{letter-spacing:2.240000pt;}
.ws0_c00208{word-spacing:-17.753600pt;}
.ws5_c00208{word-spacing:-3.340800pt;}
.ws1a_c00208{word-spacing:-2.400000pt;}
.wsa_c00208{word-spacing:-2.387200pt;}
.ws1b_c00208{word-spacing:-2.355200pt;}
.ws29_c00208{word-spacing:-2.099200pt;}
.ws2a_c00208{word-spacing:-2.086400pt;}
.ws18_c00208{word-spacing:-2.054400pt;}
.ws1_c00208{word-spacing:0.000000pt;}
.ws2_c00208{word-spacing:0.096928pt;}
.ws10_c00208{word-spacing:0.160000pt;}
.ws11_c00208{word-spacing:0.166400pt;}
.ws22_c00208{word-spacing:0.179200pt;}
.ws9_c00208{word-spacing:0.486400pt;}
.ws8_c00208{word-spacing:0.569600pt;}
.ws16_c00208{word-spacing:1.465600pt;}
.ws17_c00208{word-spacing:1.574400pt;}
.wsb_c00208{word-spacing:2.720000pt;}
.wsc_c00208{word-spacing:2.745600pt;}
.wsf_c00208{word-spacing:4.019200pt;}
.ws1c_c00208{word-spacing:4.966400pt;}
.ws1d_c00208{word-spacing:4.979200pt;}
.ws3_c00208{word-spacing:5.305600pt;}
.ws1f_c00208{word-spacing:7.769600pt;}
.ws1e_c00208{word-spacing:7.859200pt;}
.ws13_c00208{word-spacing:9.753600pt;}
.ws15_c00208{word-spacing:9.798400pt;}
.ws14_c00208{word-spacing:9.830400pt;}
.ws20_c00208{word-spacing:10.412800pt;}
.ws23_c00208{word-spacing:12.960000pt;}
.ws24_c00208{word-spacing:12.972800pt;}
.ws7_c00208{word-spacing:12.998400pt;}
.ws6_c00208{word-spacing:13.056000pt;}
.ws21_c00208{word-spacing:13.606400pt;}
.ws19_c00208{word-spacing:14.572800pt;}
.ws25_c00208{word-spacing:18.707200pt;}
.ws26_c00208{word-spacing:18.713600pt;}
.ws4_c00208{word-spacing:19.040000pt;}
.wse_c00208{word-spacing:19.993600pt;}
.wsd_c00208{word-spacing:20.083200pt;}
.ws27_c00208{word-spacing:20.640000pt;}
.ws28_c00208{word-spacing:20.710400pt;}
.ws12_c00208{word-spacing:21.542400pt;}
._1_c00208{width:0.896000pt;}
._0_c00208{width:166.641600pt;}
.fs0_c00208{font-size:64.000000pt;}
.fs1_c00208{font-size:74.560000pt;}
.y0_c00208{bottom:0.000000pt;}
.y2_c00208{bottom:41.627067pt;}
.y1_c00208{bottom:60.027067pt;}
.y21_c00208{bottom:157.707067pt;}
.y20_c00208{bottom:185.307067pt;}
.y1f_c00208{bottom:212.907067pt;}
.y1e_c00208{bottom:240.507067pt;}
.y1d_c00208{bottom:268.107067pt;}
.y1c_c00208{bottom:302.507067pt;}
.y1b_c00208{bottom:328.907067pt;}
.y1a_c00208{bottom:347.307067pt;}
.y19_c00208{bottom:365.707067pt;}
.y18_c00208{bottom:384.107067pt;}
.y17_c00208{bottom:402.507067pt;}
.y16_c00208{bottom:420.907067pt;}
.y15_c00208{bottom:439.307067pt;}
.y14_c00208{bottom:457.707067pt;}
.y13_c00208{bottom:476.107067pt;}
.y12_c00208{bottom:519.707067pt;}
.y11_c00208{bottom:547.307067pt;}
.y10_c00208{bottom:574.907067pt;}
.yf_c00208{bottom:618.507067pt;}
.ye_c00208{bottom:646.107067pt;}
.yd_c00208{bottom:673.707067pt;}
.yc_c00208{bottom:701.307067pt;}
.yb_c00208{bottom:728.907067pt;}
.ya_c00208{bottom:756.507067pt;}
.y9_c00208{bottom:784.107067pt;}
.y8_c00208{bottom:811.707067pt;}
.y7_c00208{bottom:839.307067pt;}
.y6_c00208{bottom:866.907067pt;}
.y5_c00208{bottom:894.507067pt;}
.y4_c00208{bottom:938.107067pt;}
.y3_c00208{bottom:972.907067pt;}
.h1_c00208{height:56.156250pt;}
.h3_c00208{height:57.375000pt;}
.h4_c00208{height:66.750000pt;}
.h2_c00208{height:77.763750pt;}
.h0_c00208{height:1122.666667pt;}
.w1_c00208{width:793.333333pt;}
.w0_c00208{width:793.626667pt;}
.x0_c00208{left:0.000000pt;}
.x2_c00208{left:151.200000pt;}
.x4_c00208{left:170.160000pt;}
.x3_c00208{left:199.200000pt;}
.x1_c00208{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7f1e1cbb911a91dbb831282d.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.093262;font-style:normal;font-weight:normal;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_0ee342dc664dce4b253038c9.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.106934;font-style:normal;font-weight:normal;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_7b6a4f8ed5586687c2e51fe1.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00209{letter-spacing:-0.079200px;}
.lsf_c00209{letter-spacing:-0.072000px;}
.lsc_c00209{letter-spacing:-0.064800px;}
.ls9_c00209{letter-spacing:-0.057600px;}
.ls6_c00209{letter-spacing:-0.050400px;}
.ls8_c00209{letter-spacing:-0.043200px;}
.ls4_c00209{letter-spacing:-0.036000px;}
.lsa_c00209{letter-spacing:-0.028800px;}
.ls5_c00209{letter-spacing:-0.021600px;}
.ls3_c00209{letter-spacing:-0.014400px;}
.ls7_c00209{letter-spacing:-0.007200px;}
.ls2_c00209{letter-spacing:0.000000px;}
.ls1_c00209{letter-spacing:0.007200px;}
.lsd_c00209{letter-spacing:0.014400px;}
.lse_c00209{letter-spacing:0.021600px;}
.ls0_c00209{letter-spacing:0.028800px;}
.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;}
}
.ws1e_c00209{word-spacing:-3.448800px;}
.ws1f_c00209{word-spacing:-3.427200px;}
.ws20_c00209{word-spacing:-3.268800px;}
.ws11_c00209{word-spacing:-2.368800px;}
.ws12_c00209{word-spacing:-2.282400px;}
.ws7_c00209{word-spacing:-1.951200px;}
.ws18_c00209{word-spacing:-1.908000px;}
.ws3_c00209{word-spacing:-1.620000px;}
.ws4_c00209{word-spacing:-1.555200px;}
.ws0_c00209{word-spacing:0.000000px;}
.ws22_c00209{word-spacing:0.136800px;}
.ws1d_c00209{word-spacing:0.144000px;}
.ws8_c00209{word-spacing:0.165600px;}
.ws13_c00209{word-spacing:0.172800px;}
.ws27_c00209{word-spacing:0.187200px;}
.ws9_c00209{word-spacing:0.288000px;}
.ws25_c00209{word-spacing:0.396000px;}
.ws26_c00209{word-spacing:0.561600px;}
.wsc_c00209{word-spacing:0.568800px;}
.ws1c_c00209{word-spacing:0.964800px;}
.ws2e_c00209{word-spacing:2.016000px;}
.wsd_c00209{word-spacing:4.867200px;}
.wse_c00209{word-spacing:4.881600px;}
.ws1_c00209{word-spacing:5.932800px;}
.ws2_c00209{word-spacing:5.954400px;}
.ws1b_c00209{word-spacing:6.292800px;}
.ws21_c00209{word-spacing:8.460000px;}
.ws2b_c00209{word-spacing:9.482400px;}
.ws2a_c00209{word-spacing:9.554400px;}
.ws24_c00209{word-spacing:9.878400px;}
.ws23_c00209{word-spacing:9.964800px;}
.ws14_c00209{word-spacing:10.267200px;}
.ws15_c00209{word-spacing:10.332000px;}
.ws6_c00209{word-spacing:11.944800px;}
.ws5_c00209{word-spacing:12.060000px;}
.ws16_c00209{word-spacing:13.788000px;}
.ws17_c00209{word-spacing:13.903200px;}
.wsf_c00209{word-spacing:16.365600px;}
.ws10_c00209{word-spacing:16.372800px;}
.wsb_c00209{word-spacing:16.761600px;}
.ws2d_c00209{word-spacing:17.092800px;}
.ws2c_c00209{word-spacing:17.121600px;}
.ws29_c00209{word-spacing:19.274400px;}
.ws28_c00209{word-spacing:19.303200px;}
.wsa_c00209{word-spacing:20.340000px;}
.ws19_c00209{word-spacing:24.300000px;}
.ws1a_c00209{word-spacing:24.343200px;}
._1_c00209{margin-left:-16.164000px;}
._0_c00209{width:1.008000px;}
.fc0_c00209{color:rgb(0,0,0);}
.fs0_c00209{font-size:72.000000px;}
.y0_c00209{bottom:0.000000px;}
.y2_c00209{bottom:46.830450px;}
.y1_c00209{bottom:67.530450px;}
.y22_c00209{bottom:145.830450px;}
.y21_c00209{bottom:166.530450px;}
.y20_c00209{bottom:187.230450px;}
.y1f_c00209{bottom:207.930450px;}
.y1e_c00209{bottom:228.630450px;}
.y1d_c00209{bottom:249.330450px;}
.y1c_c00209{bottom:270.030450px;}
.y1b_c00209{bottom:290.730450px;}
.y1a_c00209{bottom:311.430450px;}
.y19_c00209{bottom:360.390450px;}
.y18_c00209{bottom:391.440450px;}
.y17_c00209{bottom:422.490450px;}
.y16_c00209{bottom:471.540450px;}
.y15_c00209{bottom:502.590450px;}
.y14_c00209{bottom:533.550450px;}
.y13_c00209{bottom:564.600450px;}
.y12_c00209{bottom:595.740450px;}
.y11_c00209{bottom:626.790450px;}
.y10_c00209{bottom:657.840450px;}
.yf_c00209{bottom:706.890450px;}
.ye_c00209{bottom:737.940450px;}
.yd_c00209{bottom:768.990450px;}
.yc_c00209{bottom:800.040450px;}
.yb_c00209{bottom:831.090450px;}
.ya_c00209{bottom:862.140450px;}
.y9_c00209{bottom:893.190450px;}
.y8_c00209{bottom:924.240450px;}
.y7_c00209{bottom:973.290450px;}
.y6_c00209{bottom:1004.250450px;}
.y5_c00209{bottom:1035.300450px;}
.y4_c00209{bottom:1066.350450px;}
.y3_c00209{bottom:1097.490450px;}
.h1_c00209{height:63.175781px;}
.h3_c00209{height:64.546875px;}
.h2_c00209{height:75.093750px;}
.h0_c00209{height:1263.000000px;}
.w1_c00209{width:892.500000px;}
.w0_c00209{width:892.830000px;}
.x0_c00209{left:0.000000px;}
.x2_c00209{left:127.620000px;}
.x3_c00209{left:148.950000px;}
.x1_c00209{left:695.880000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.lsb_c00209{letter-spacing:-0.070400pt;}
.lsf_c00209{letter-spacing:-0.064000pt;}
.lsc_c00209{letter-spacing:-0.057600pt;}
.ls9_c00209{letter-spacing:-0.051200pt;}
.ls6_c00209{letter-spacing:-0.044800pt;}
.ls8_c00209{letter-spacing:-0.038400pt;}
.ls4_c00209{letter-spacing:-0.032000pt;}
.lsa_c00209{letter-spacing:-0.025600pt;}
.ls5_c00209{letter-spacing:-0.019200pt;}
.ls3_c00209{letter-spacing:-0.012800pt;}
.ls7_c00209{letter-spacing:-0.006400pt;}
.ls2_c00209{letter-spacing:0.000000pt;}
.ls1_c00209{letter-spacing:0.006400pt;}
.lsd_c00209{letter-spacing:0.012800pt;}
.lse_c00209{letter-spacing:0.019200pt;}
.ls0_c00209{letter-spacing:0.025600pt;}
.ws1e_c00209{word-spacing:-3.065600pt;}
.ws1f_c00209{word-spacing:-3.046400pt;}
.ws20_c00209{word-spacing:-2.905600pt;}
.ws11_c00209{word-spacing:-2.105600pt;}
.ws12_c00209{word-spacing:-2.028800pt;}
.ws7_c00209{word-spacing:-1.734400pt;}
.ws18_c00209{word-spacing:-1.696000pt;}
.ws3_c00209{word-spacing:-1.440000pt;}
.ws4_c00209{word-spacing:-1.382400pt;}
.ws0_c00209{word-spacing:0.000000pt;}
.ws22_c00209{word-spacing:0.121600pt;}
.ws1d_c00209{word-spacing:0.128000pt;}
.ws8_c00209{word-spacing:0.147200pt;}
.ws13_c00209{word-spacing:0.153600pt;}
.ws27_c00209{word-spacing:0.166400pt;}
.ws9_c00209{word-spacing:0.256000pt;}
.ws25_c00209{word-spacing:0.352000pt;}
.ws26_c00209{word-spacing:0.499200pt;}
.wsc_c00209{word-spacing:0.505600pt;}
.ws1c_c00209{word-spacing:0.857600pt;}
.ws2e_c00209{word-spacing:1.792000pt;}
.wsd_c00209{word-spacing:4.326400pt;}
.wse_c00209{word-spacing:4.339200pt;}
.ws1_c00209{word-spacing:5.273600pt;}
.ws2_c00209{word-spacing:5.292800pt;}
.ws1b_c00209{word-spacing:5.593600pt;}
.ws21_c00209{word-spacing:7.520000pt;}
.ws2b_c00209{word-spacing:8.428800pt;}
.ws2a_c00209{word-spacing:8.492800pt;}
.ws24_c00209{word-spacing:8.780800pt;}
.ws23_c00209{word-spacing:8.857600pt;}
.ws14_c00209{word-spacing:9.126400pt;}
.ws15_c00209{word-spacing:9.184000pt;}
.ws6_c00209{word-spacing:10.617600pt;}
.ws5_c00209{word-spacing:10.720000pt;}
.ws16_c00209{word-spacing:12.256000pt;}
.ws17_c00209{word-spacing:12.358400pt;}
.wsf_c00209{word-spacing:14.547200pt;}
.ws10_c00209{word-spacing:14.553600pt;}
.wsb_c00209{word-spacing:14.899200pt;}
.ws2d_c00209{word-spacing:15.193600pt;}
.ws2c_c00209{word-spacing:15.219200pt;}
.ws29_c00209{word-spacing:17.132800pt;}
.ws28_c00209{word-spacing:17.158400pt;}
.wsa_c00209{word-spacing:18.080000pt;}
.ws19_c00209{word-spacing:21.600000pt;}
.ws1a_c00209{word-spacing:21.638400pt;}
._1_c00209{margin-left:-14.368000pt;}
._0_c00209{width:0.896000pt;}
.fs0_c00209{font-size:64.000000pt;}
.y0_c00209{bottom:0.000000pt;}
.y2_c00209{bottom:41.627067pt;}
.y1_c00209{bottom:60.027067pt;}
.y22_c00209{bottom:129.627067pt;}
.y21_c00209{bottom:148.027067pt;}
.y20_c00209{bottom:166.427067pt;}
.y1f_c00209{bottom:184.827067pt;}
.y1e_c00209{bottom:203.227067pt;}
.y1d_c00209{bottom:221.627067pt;}
.y1c_c00209{bottom:240.027067pt;}
.y1b_c00209{bottom:258.427067pt;}
.y1a_c00209{bottom:276.827067pt;}
.y19_c00209{bottom:320.347067pt;}
.y18_c00209{bottom:347.947067pt;}
.y17_c00209{bottom:375.547067pt;}
.y16_c00209{bottom:419.147067pt;}
.y15_c00209{bottom:446.747067pt;}
.y14_c00209{bottom:474.267067pt;}
.y13_c00209{bottom:501.867067pt;}
.y12_c00209{bottom:529.547067pt;}
.y11_c00209{bottom:557.147067pt;}
.y10_c00209{bottom:584.747067pt;}
.yf_c00209{bottom:628.347067pt;}
.ye_c00209{bottom:655.947067pt;}
.yd_c00209{bottom:683.547067pt;}
.yc_c00209{bottom:711.147067pt;}
.yb_c00209{bottom:738.747067pt;}
.ya_c00209{bottom:766.347067pt;}
.y9_c00209{bottom:793.947067pt;}
.y8_c00209{bottom:821.547067pt;}
.y7_c00209{bottom:865.147067pt;}
.y6_c00209{bottom:892.667067pt;}
.y5_c00209{bottom:920.267067pt;}
.y4_c00209{bottom:947.867067pt;}
.y3_c00209{bottom:975.547067pt;}
.h1_c00209{height:56.156250pt;}
.h3_c00209{height:57.375000pt;}
.h2_c00209{height:66.750000pt;}
.h0_c00209{height:1122.666667pt;}
.w1_c00209{width:793.333333pt;}
.w0_c00209{width:793.626667pt;}
.x0_c00209{left:0.000000pt;}
.x2_c00209{left:113.440000pt;}
.x3_c00209{left:132.400000pt;}
.x1_c00209{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4f549f30217a07fa2078b6ad.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.093262;font-style:normal;font-weight:normal;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_0e3f7031e98300979b1c4037.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.106934;font-style:normal;font-weight:normal;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_ad6dff9f40b6869fa24a993f.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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:-0.079200px;}
.lse_c00210{letter-spacing:-0.072000px;}
.ls7_c00210{letter-spacing:-0.064800px;}
.ls8_c00210{letter-spacing:-0.057600px;}
.ls9_c00210{letter-spacing:-0.050400px;}
.ls4_c00210{letter-spacing:-0.043200px;}
.lsc_c00210{letter-spacing:-0.036000px;}
.ls5_c00210{letter-spacing:-0.028800px;}
.lsa_c00210{letter-spacing:-0.021600px;}
.ls3_c00210{letter-spacing:-0.014400px;}
.lsd_c00210{letter-spacing:-0.007200px;}
.ls2_c00210{letter-spacing:0.000000px;}
.lsb_c00210{letter-spacing:0.007200px;}
.ls1_c00210{letter-spacing:0.036000px;}
.ls0_c00210{letter-spacing:0.144000px;}
.lsf_c00210{letter-spacing:843.998400px;}
.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:-19.972800px;}
.wsb_c00210{word-spacing:-3.420000px;}
.wsa_c00210{word-spacing:-3.391200px;}
.ws25_c00210{word-spacing:-1.317600px;}
.ws24_c00210{word-spacing:-1.224000px;}
.ws1f_c00210{word-spacing:-0.568800px;}
.ws1e_c00210{word-spacing:-0.532800px;}
.ws1_c00210{word-spacing:0.000000px;}
.wsd_c00210{word-spacing:0.122400px;}
.ws33_c00210{word-spacing:0.151200px;}
.ws15_c00210{word-spacing:0.165600px;}
.wsc_c00210{word-spacing:0.273600px;}
.ws2e_c00210{word-spacing:0.806400px;}
.ws2f_c00210{word-spacing:0.914400px;}
.ws21_c00210{word-spacing:1.202400px;}
.ws20_c00210{word-spacing:1.267200px;}
.ws2a_c00210{word-spacing:3.067200px;}
.ws29_c00210{word-spacing:3.196800px;}
.ws26_c00210{word-spacing:3.456000px;}
.ws4_c00210{word-spacing:4.147200px;}
.ws5_c00210{word-spacing:4.161600px;}
.ws27_c00210{word-spacing:5.500800px;}
.ws28_c00210{word-spacing:5.616000px;}
.ws2d_c00210{word-spacing:9.756000px;}
.ws2c_c00210{word-spacing:9.921600px;}
.ws2b_c00210{word-spacing:9.950400px;}
.ws7_c00210{word-spacing:10.238400px;}
.ws19_c00210{word-spacing:10.267200px;}
.ws6_c00210{word-spacing:10.317600px;}
.ws1a_c00210{word-spacing:10.368000px;}
.ws16_c00210{word-spacing:11.376000px;}
.ws9_c00210{word-spacing:13.168800px;}
.ws8_c00210{word-spacing:13.176000px;}
.ws11_c00210{word-spacing:14.918400px;}
.ws2_c00210{word-spacing:14.932800px;}
.ws14_c00210{word-spacing:14.997600px;}
.ws3_c00210{word-spacing:15.033600px;}
.ws10_c00210{word-spacing:15.127200px;}
.ws1d_c00210{word-spacing:16.005600px;}
.ws1b_c00210{word-spacing:16.012800px;}
.ws1c_c00210{word-spacing:16.027200px;}
.ws17_c00210{word-spacing:18.532800px;}
.ws18_c00210{word-spacing:18.676800px;}
.ws13_c00210{word-spacing:19.274400px;}
.ws12_c00210{word-spacing:19.598400px;}
.ws31_c00210{word-spacing:19.980000px;}
.ws30_c00210{word-spacing:20.131200px;}
.wse_c00210{word-spacing:23.227200px;}
.wsf_c00210{word-spacing:23.248800px;}
.ws32_c00210{word-spacing:26.107200px;}
.ws22_c00210{word-spacing:26.452800px;}
.ws23_c00210{word-spacing:26.481600px;}
._0_c00210{width:1.094400px;}
.fc0_c00210{color:rgb(0,0,0);}
.fs0_c00210{font-size:72.000000px;}
.y0_c00210{bottom:0.000000px;}
.y2_c00210{bottom:46.830450px;}
.y1_c00210{bottom:67.530450px;}
.y20_c00210{bottom:161.130450px;}
.y1f_c00210{bottom:210.180450px;}
.y1e_c00210{bottom:241.230450px;}
.y1d_c00210{bottom:272.280450px;}
.y1c_c00210{bottom:303.330450px;}
.y1b_c00210{bottom:334.380450px;}
.y1a_c00210{bottom:365.430450px;}
.y19_c00210{bottom:396.390450px;}
.y18_c00210{bottom:427.440450px;}
.y17_c00210{bottom:458.490450px;}
.y16_c00210{bottom:489.540450px;}
.y15_c00210{bottom:520.590450px;}
.y14_c00210{bottom:551.640450px;}
.y13_c00210{bottom:582.690450px;}
.y12_c00210{bottom:613.740450px;}
.y11_c00210{bottom:644.790450px;}
.y10_c00210{bottom:675.840450px;}
.yf_c00210{bottom:706.890450px;}
.ye_c00210{bottom:755.940450px;}
.yd_c00210{bottom:786.990450px;}
.yc_c00210{bottom:818.040450px;}
.yb_c00210{bottom:849.090450px;}
.ya_c00210{bottom:880.140450px;}
.y9_c00210{bottom:911.190450px;}
.y8_c00210{bottom:942.240450px;}
.y7_c00210{bottom:973.290450px;}
.y6_c00210{bottom:1004.340450px;}
.y5_c00210{bottom:1035.390450px;}
.y4_c00210{bottom:1066.440450px;}
.y3_c00210{bottom:1097.490450px;}
.h1_c00210{height:63.175781px;}
.h2_c00210{height:64.546875px;}
.h3_c00210{height:75.093750px;}
.h0_c00210{height:1263.000000px;}
.w1_c00210{width:892.500000px;}
.w0_c00210{width:892.830000px;}
.x0_c00210{left:0.000000px;}
.x2_c00210{left:170.100000px;}
.x1_c00210{left:738.360000px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls6_c00210{letter-spacing:-0.070400pt;}
.lse_c00210{letter-spacing:-0.064000pt;}
.ls7_c00210{letter-spacing:-0.057600pt;}
.ls8_c00210{letter-spacing:-0.051200pt;}
.ls9_c00210{letter-spacing:-0.044800pt;}
.ls4_c00210{letter-spacing:-0.038400pt;}
.lsc_c00210{letter-spacing:-0.032000pt;}
.ls5_c00210{letter-spacing:-0.025600pt;}
.lsa_c00210{letter-spacing:-0.019200pt;}
.ls3_c00210{letter-spacing:-0.012800pt;}
.lsd_c00210{letter-spacing:-0.006400pt;}
.ls2_c00210{letter-spacing:0.000000pt;}
.lsb_c00210{letter-spacing:0.006400pt;}
.ls1_c00210{letter-spacing:0.032000pt;}
.ls0_c00210{letter-spacing:0.128000pt;}
.lsf_c00210{letter-spacing:750.220800pt;}
.ws0_c00210{word-spacing:-17.753600pt;}
.wsb_c00210{word-spacing:-3.040000pt;}
.wsa_c00210{word-spacing:-3.014400pt;}
.ws25_c00210{word-spacing:-1.171200pt;}
.ws24_c00210{word-spacing:-1.088000pt;}
.ws1f_c00210{word-spacing:-0.505600pt;}
.ws1e_c00210{word-spacing:-0.473600pt;}
.ws1_c00210{word-spacing:0.000000pt;}
.wsd_c00210{word-spacing:0.108800pt;}
.ws33_c00210{word-spacing:0.134400pt;}
.ws15_c00210{word-spacing:0.147200pt;}
.wsc_c00210{word-spacing:0.243200pt;}
.ws2e_c00210{word-spacing:0.716800pt;}
.ws2f_c00210{word-spacing:0.812800pt;}
.ws21_c00210{word-spacing:1.068800pt;}
.ws20_c00210{word-spacing:1.126400pt;}
.ws2a_c00210{word-spacing:2.726400pt;}
.ws29_c00210{word-spacing:2.841600pt;}
.ws26_c00210{word-spacing:3.072000pt;}
.ws4_c00210{word-spacing:3.686400pt;}
.ws5_c00210{word-spacing:3.699200pt;}
.ws27_c00210{word-spacing:4.889600pt;}
.ws28_c00210{word-spacing:4.992000pt;}
.ws2d_c00210{word-spacing:8.672000pt;}
.ws2c_c00210{word-spacing:8.819200pt;}
.ws2b_c00210{word-spacing:8.844800pt;}
.ws7_c00210{word-spacing:9.100800pt;}
.ws19_c00210{word-spacing:9.126400pt;}
.ws6_c00210{word-spacing:9.171200pt;}
.ws1a_c00210{word-spacing:9.216000pt;}
.ws16_c00210{word-spacing:10.112000pt;}
.ws9_c00210{word-spacing:11.705600pt;}
.ws8_c00210{word-spacing:11.712000pt;}
.ws11_c00210{word-spacing:13.260800pt;}
.ws2_c00210{word-spacing:13.273600pt;}
.ws14_c00210{word-spacing:13.331200pt;}
.ws3_c00210{word-spacing:13.363200pt;}
.ws10_c00210{word-spacing:13.446400pt;}
.ws1d_c00210{word-spacing:14.227200pt;}
.ws1b_c00210{word-spacing:14.233600pt;}
.ws1c_c00210{word-spacing:14.246400pt;}
.ws17_c00210{word-spacing:16.473600pt;}
.ws18_c00210{word-spacing:16.601600pt;}
.ws13_c00210{word-spacing:17.132800pt;}
.ws12_c00210{word-spacing:17.420800pt;}
.ws31_c00210{word-spacing:17.760000pt;}
.ws30_c00210{word-spacing:17.894400pt;}
.wse_c00210{word-spacing:20.646400pt;}
.wsf_c00210{word-spacing:20.665600pt;}
.ws32_c00210{word-spacing:23.206400pt;}
.ws22_c00210{word-spacing:23.513600pt;}
.ws23_c00210{word-spacing:23.539200pt;}
._0_c00210{width:0.972800pt;}
.fs0_c00210{font-size:64.000000pt;}
.y0_c00210{bottom:0.000000pt;}
.y2_c00210{bottom:41.627067pt;}
.y1_c00210{bottom:60.027067pt;}
.y20_c00210{bottom:143.227067pt;}
.y1f_c00210{bottom:186.827067pt;}
.y1e_c00210{bottom:214.427067pt;}
.y1d_c00210{bottom:242.027067pt;}
.y1c_c00210{bottom:269.627067pt;}
.y1b_c00210{bottom:297.227067pt;}
.y1a_c00210{bottom:324.827067pt;}
.y19_c00210{bottom:352.347067pt;}
.y18_c00210{bottom:379.947067pt;}
.y17_c00210{bottom:407.547067pt;}
.y16_c00210{bottom:435.147067pt;}
.y15_c00210{bottom:462.747067pt;}
.y14_c00210{bottom:490.347067pt;}
.y13_c00210{bottom:517.947067pt;}
.y12_c00210{bottom:545.547067pt;}
.y11_c00210{bottom:573.147067pt;}
.y10_c00210{bottom:600.747067pt;}
.yf_c00210{bottom:628.347067pt;}
.ye_c00210{bottom:671.947067pt;}
.yd_c00210{bottom:699.547067pt;}
.yc_c00210{bottom:727.147067pt;}
.yb_c00210{bottom:754.747067pt;}
.ya_c00210{bottom:782.347067pt;}
.y9_c00210{bottom:809.947067pt;}
.y8_c00210{bottom:837.547067pt;}
.y7_c00210{bottom:865.147067pt;}
.y6_c00210{bottom:892.747067pt;}
.y5_c00210{bottom:920.347067pt;}
.y4_c00210{bottom:947.947067pt;}
.y3_c00210{bottom:975.547067pt;}
.h1_c00210{height:56.156250pt;}
.h2_c00210{height:57.375000pt;}
.h3_c00210{height:66.750000pt;}
.h0_c00210{height:1122.666667pt;}
.w1_c00210{width:793.333333pt;}
.w0_c00210{width:793.626667pt;}
.x0_c00210{left:0.000000pt;}
.x2_c00210{left:151.200000pt;}
.x1_c00210{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4f549f30217a07fa2078b6ad.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00211{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.ls0_c00211{letter-spacing:0.000000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00211{word-spacing:0.000000px;}
.fc0_c00211{color:rgb(0,0,0);}
.fs0_c00211{font-size:72.000000px;}
.y0_c00211{bottom:0.000000px;}
.y2_c00211{bottom:46.830450px;}
.y1_c00211{bottom:67.530450px;}
.y3_c00211{bottom:1097.490450px;}
.h1_c00211{height:63.175781px;}
.h2_c00211{height:64.546875px;}
.h0_c00211{height:1263.000000px;}
.w1_c00211{width:892.500000px;}
.w0_c00211{width:892.830000px;}
.x0_c00211{left:0.000000px;}
.x2_c00211{left:127.620000px;}
.x1_c00211{left:695.880000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls0_c00211{letter-spacing:0.000000pt;}
.ws0_c00211{word-spacing:0.000000pt;}
.fs0_c00211{font-size:64.000000pt;}
.y0_c00211{bottom:0.000000pt;}
.y2_c00211{bottom:41.627067pt;}
.y1_c00211{bottom:60.027067pt;}
.y3_c00211{bottom:975.547067pt;}
.h1_c00211{height:56.156250pt;}
.h2_c00211{height:57.375000pt;}
.h0_c00211{height:1122.666667pt;}
.w1_c00211{width:793.333333pt;}
.w0_c00211{width:793.626667pt;}
.x0_c00211{left:0.000000pt;}
.x2_c00211{left:113.440000pt;}
.x1_c00211{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_17ee88d1f45a5db004b4be30.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.093262;font-style:normal;font-weight:normal;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_6b2511e57ecb6da88b4bc093.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00212;src:url('chunks/assets/font_71c2f3dbd6ddf4e00cebae24.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00212{vertical-align:0.000000px;}
.ls7_c00212{letter-spacing:-0.093600px;}
.lse_c00212{letter-spacing:-0.079200px;}
.lsd_c00212{letter-spacing:-0.064800px;}
.ls6_c00212{letter-spacing:-0.057600px;}
.ls8_c00212{letter-spacing:-0.050400px;}
.lsb_c00212{letter-spacing:-0.043200px;}
.ls5_c00212{letter-spacing:-0.036000px;}
.ls9_c00212{letter-spacing:-0.028800px;}
.ls3_c00212{letter-spacing:-0.021600px;}
.ls4_c00212{letter-spacing:-0.014400px;}
.lsa_c00212{letter-spacing:-0.007200px;}
.ls1_c00212{letter-spacing:0.000000px;}
.lsc_c00212{letter-spacing:0.007200px;}
.ls0_c00212{letter-spacing:0.014400px;}
.ls2_c00212{letter-spacing:0.050328px;}
.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;}
}
.ws1f_c00212{word-spacing:-3.045600px;}
.ws1e_c00212{word-spacing:-3.031200px;}
.ws30_c00212{word-spacing:-3.016800px;}
.ws2f_c00212{word-spacing:-2.937600px;}
.ws13_c00212{word-spacing:-2.340000px;}
.ws14_c00212{word-spacing:-2.304000px;}
.ws2_c00212{word-spacing:-1.980000px;}
.ws1d_c00212{word-spacing:-0.158400px;}
.ws1b_c00212{word-spacing:-0.064800px;}
.ws0_c00212{word-spacing:0.000000px;}
.ws1c_c00212{word-spacing:0.144000px;}
.ws11_c00212{word-spacing:0.151200px;}
.wsb_c00212{word-spacing:0.165600px;}
.ws22_c00212{word-spacing:0.180000px;}
.wsc_c00212{word-spacing:0.194400px;}
.ws2d_c00212{word-spacing:0.568800px;}
.ws15_c00212{word-spacing:0.835200px;}
.ws16_c00212{word-spacing:0.921600px;}
.ws27_c00212{word-spacing:1.296000px;}
.ws18_c00212{word-spacing:4.528800px;}
.ws17_c00212{word-spacing:4.536000px;}
.wsa_c00212{word-spacing:5.220000px;}
.ws5_c00212{word-spacing:7.020000px;}
.ws3_c00212{word-spacing:7.034400px;}
.ws4_c00212{word-spacing:7.056000px;}
.ws28_c00212{word-spacing:7.380000px;}
.ws20_c00212{word-spacing:11.707200px;}
.ws21_c00212{word-spacing:11.714400px;}
.ws1a_c00212{word-spacing:15.271200px;}
.ws19_c00212{word-spacing:15.328800px;}
.ws2a_c00212{word-spacing:18.187200px;}
.wse_c00212{word-spacing:20.332800px;}
.ws2b_c00212{word-spacing:20.347200px;}
.ws24_c00212{word-spacing:20.368800px;}
.ws23_c00212{word-spacing:20.383200px;}
.ws2c_c00212{word-spacing:20.404800px;}
.ws10_c00212{word-spacing:20.988000px;}
.wsf_c00212{word-spacing:21.067200px;}
.ws29_c00212{word-spacing:22.132800px;}
.wsd_c00212{word-spacing:22.161600px;}
.ws2e_c00212{word-spacing:22.528800px;}
.ws9_c00212{word-spacing:29.289600px;}
.ws8_c00212{word-spacing:29.368800px;}
.ws7_c00212{word-spacing:30.427200px;}
.ws6_c00212{word-spacing:30.448800px;}
.ws12_c00212{word-spacing:46.620000px;}
.ws26_c00212{word-spacing:51.220800px;}
.ws25_c00212{word-spacing:51.328800px;}
.ws1_c00212{word-spacing:153.408132px;}
._1_c00212{margin-left:-4.320000px;}
._0_c00212{width:1.461600px;}
.fc0_c00212{color:rgb(0,0,0);}
.fs0_c00212{font-size:72.000000px;}
.fs1_c00212{font-size:83.880000px;}
.y0_c00212{bottom:0.000000px;}
.y2_c00212{bottom:46.830450px;}
.y1_c00212{bottom:67.530450px;}
.y25_c00212{bottom:132.420450px;}
.y24_c00212{bottom:153.120450px;}
.y23_c00212{bottom:173.820450px;}
.y22_c00212{bottom:194.520450px;}
.y21_c00212{bottom:215.220450px;}
.y20_c00212{bottom:235.920450px;}
.y1f_c00212{bottom:256.620450px;}
.y1e_c00212{bottom:277.320450px;}
.y1d_c00212{bottom:326.370450px;}
.y1c_c00212{bottom:357.420450px;}
.y1b_c00212{bottom:388.470450px;}
.y1a_c00212{bottom:427.170450px;}
.y19_c00212{bottom:456.870450px;}
.y18_c00212{bottom:477.570450px;}
.y17_c00212{bottom:498.270450px;}
.y16_c00212{bottom:518.970450px;}
.y15_c00212{bottom:539.670450px;}
.y14_c00212{bottom:560.370450px;}
.y13_c00212{bottom:581.070450px;}
.y12_c00212{bottom:601.770450px;}
.y11_c00212{bottom:622.470450px;}
.y10_c00212{bottom:671.520450px;}
.yf_c00212{bottom:710.220450px;}
.ye_c00212{bottom:739.920450px;}
.yd_c00212{bottom:760.620450px;}
.yc_c00212{bottom:781.320450px;}
.yb_c00212{bottom:802.020450px;}
.ya_c00212{bottom:851.070450px;}
.y9_c00212{bottom:882.120450px;}
.y8_c00212{bottom:913.170450px;}
.y7_c00212{bottom:944.220450px;}
.y6_c00212{bottom:975.270450px;}
.y5_c00212{bottom:1006.320450px;}
.y4_c00212{bottom:1055.370450px;}
.y3_c00212{bottom:1094.520450px;}
.h1_c00212{height:63.175781px;}
.h3_c00212{height:64.546875px;}
.h2_c00212{height:87.484219px;}
.h0_c00212{height:1263.000000px;}
.w1_c00212{width:892.500000px;}
.w0_c00212{width:892.830000px;}
.x0_c00212{left:0.000000px;}
.x2_c00212{left:170.100000px;}
.x4_c00212{left:191.430000px;}
.x3_c00212{left:197.100000px;}
.x1_c00212{left:738.360000px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls7_c00212{letter-spacing:-0.083200pt;}
.lse_c00212{letter-spacing:-0.070400pt;}
.lsd_c00212{letter-spacing:-0.057600pt;}
.ls6_c00212{letter-spacing:-0.051200pt;}
.ls8_c00212{letter-spacing:-0.044800pt;}
.lsb_c00212{letter-spacing:-0.038400pt;}
.ls5_c00212{letter-spacing:-0.032000pt;}
.ls9_c00212{letter-spacing:-0.025600pt;}
.ls3_c00212{letter-spacing:-0.019200pt;}
.ls4_c00212{letter-spacing:-0.012800pt;}
.lsa_c00212{letter-spacing:-0.006400pt;}
.ls1_c00212{letter-spacing:0.000000pt;}
.lsc_c00212{letter-spacing:0.006400pt;}
.ls0_c00212{letter-spacing:0.012800pt;}
.ls2_c00212{letter-spacing:0.044736pt;}
.ws1f_c00212{word-spacing:-2.707200pt;}
.ws1e_c00212{word-spacing:-2.694400pt;}
.ws30_c00212{word-spacing:-2.681600pt;}
.ws2f_c00212{word-spacing:-2.611200pt;}
.ws13_c00212{word-spacing:-2.080000pt;}
.ws14_c00212{word-spacing:-2.048000pt;}
.ws2_c00212{word-spacing:-1.760000pt;}
.ws1d_c00212{word-spacing:-0.140800pt;}
.ws1b_c00212{word-spacing:-0.057600pt;}
.ws0_c00212{word-spacing:0.000000pt;}
.ws1c_c00212{word-spacing:0.128000pt;}
.ws11_c00212{word-spacing:0.134400pt;}
.wsb_c00212{word-spacing:0.147200pt;}
.ws22_c00212{word-spacing:0.160000pt;}
.wsc_c00212{word-spacing:0.172800pt;}
.ws2d_c00212{word-spacing:0.505600pt;}
.ws15_c00212{word-spacing:0.742400pt;}
.ws16_c00212{word-spacing:0.819200pt;}
.ws27_c00212{word-spacing:1.152000pt;}
.ws18_c00212{word-spacing:4.025600pt;}
.ws17_c00212{word-spacing:4.032000pt;}
.wsa_c00212{word-spacing:4.640000pt;}
.ws5_c00212{word-spacing:6.240000pt;}
.ws3_c00212{word-spacing:6.252800pt;}
.ws4_c00212{word-spacing:6.272000pt;}
.ws28_c00212{word-spacing:6.560000pt;}
.ws20_c00212{word-spacing:10.406400pt;}
.ws21_c00212{word-spacing:10.412800pt;}
.ws1a_c00212{word-spacing:13.574400pt;}
.ws19_c00212{word-spacing:13.625600pt;}
.ws2a_c00212{word-spacing:16.166400pt;}
.wse_c00212{word-spacing:18.073600pt;}
.ws2b_c00212{word-spacing:18.086400pt;}
.ws24_c00212{word-spacing:18.105600pt;}
.ws23_c00212{word-spacing:18.118400pt;}
.ws2c_c00212{word-spacing:18.137600pt;}
.ws10_c00212{word-spacing:18.656000pt;}
.wsf_c00212{word-spacing:18.726400pt;}
.ws29_c00212{word-spacing:19.673600pt;}
.wsd_c00212{word-spacing:19.699200pt;}
.ws2e_c00212{word-spacing:20.025600pt;}
.ws9_c00212{word-spacing:26.035200pt;}
.ws8_c00212{word-spacing:26.105600pt;}
.ws7_c00212{word-spacing:27.046400pt;}
.ws6_c00212{word-spacing:27.065600pt;}
.ws12_c00212{word-spacing:41.440000pt;}
.ws26_c00212{word-spacing:45.529600pt;}
.ws25_c00212{word-spacing:45.625600pt;}
.ws1_c00212{word-spacing:136.362784pt;}
._1_c00212{margin-left:-3.840000pt;}
._0_c00212{width:1.299200pt;}
.fs0_c00212{font-size:64.000000pt;}
.fs1_c00212{font-size:74.560000pt;}
.y0_c00212{bottom:0.000000pt;}
.y2_c00212{bottom:41.627067pt;}
.y1_c00212{bottom:60.027067pt;}
.y25_c00212{bottom:117.707067pt;}
.y24_c00212{bottom:136.107067pt;}
.y23_c00212{bottom:154.507067pt;}
.y22_c00212{bottom:172.907067pt;}
.y21_c00212{bottom:191.307067pt;}
.y20_c00212{bottom:209.707067pt;}
.y1f_c00212{bottom:228.107067pt;}
.y1e_c00212{bottom:246.507067pt;}
.y1d_c00212{bottom:290.107067pt;}
.y1c_c00212{bottom:317.707067pt;}
.y1b_c00212{bottom:345.307067pt;}
.y1a_c00212{bottom:379.707067pt;}
.y19_c00212{bottom:406.107067pt;}
.y18_c00212{bottom:424.507067pt;}
.y17_c00212{bottom:442.907067pt;}
.y16_c00212{bottom:461.307067pt;}
.y15_c00212{bottom:479.707067pt;}
.y14_c00212{bottom:498.107067pt;}
.y13_c00212{bottom:516.507067pt;}
.y12_c00212{bottom:534.907067pt;}
.y11_c00212{bottom:553.307067pt;}
.y10_c00212{bottom:596.907067pt;}
.yf_c00212{bottom:631.307067pt;}
.ye_c00212{bottom:657.707067pt;}
.yd_c00212{bottom:676.107067pt;}
.yc_c00212{bottom:694.507067pt;}
.yb_c00212{bottom:712.907067pt;}
.ya_c00212{bottom:756.507067pt;}
.y9_c00212{bottom:784.107067pt;}
.y8_c00212{bottom:811.707067pt;}
.y7_c00212{bottom:839.307067pt;}
.y6_c00212{bottom:866.907067pt;}
.y5_c00212{bottom:894.507067pt;}
.y4_c00212{bottom:938.107067pt;}
.y3_c00212{bottom:972.907067pt;}
.h1_c00212{height:56.156250pt;}
.h3_c00212{height:57.375000pt;}
.h2_c00212{height:77.763750pt;}
.h0_c00212{height:1122.666667pt;}
.w1_c00212{width:793.333333pt;}
.w0_c00212{width:793.626667pt;}
.x0_c00212{left:0.000000pt;}
.x2_c00212{left:151.200000pt;}
.x4_c00212{left:170.160000pt;}
.x3_c00212{left:175.200000pt;}
.x1_c00212{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e48f61418c2ce975c7ab6000.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.093262;font-style:normal;font-weight:normal;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_02bdeed83714fdfdce07a9e1.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.106934;font-style:normal;font-weight:normal;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_fda040fe3fbdcfdbe561fe58.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls7_c00213{letter-spacing:-0.086400px;}
.ls2_c00213{letter-spacing:-0.079200px;}
.ls8_c00213{letter-spacing:-0.057600px;}
.lsb_c00213{letter-spacing:-0.050400px;}
.ls9_c00213{letter-spacing:-0.043200px;}
.ls6_c00213{letter-spacing:-0.036000px;}
.ls1_c00213{letter-spacing:-0.028800px;}
.ls4_c00213{letter-spacing:-0.021600px;}
.ls3_c00213{letter-spacing:-0.014400px;}
.lsa_c00213{letter-spacing:-0.007200px;}
.ls0_c00213{letter-spacing:0.000000px;}
.ls5_c00213{letter-spacing:0.007200px;}
.sc__c00213{text-shadow:none;}
.sc0_c00213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00213{-webkit-text-stroke:0px transparent;}
.sc0_c00213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00213{word-spacing:-19.987200px;}
.ws19_c00213{word-spacing:-2.700000px;}
.ws18_c00213{word-spacing:-2.685600px;}
.ws1e_c00213{word-spacing:-2.340000px;}
.ws1_c00213{word-spacing:0.000000px;}
.ws8_c00213{word-spacing:0.151200px;}
.ws2c_c00213{word-spacing:0.158400px;}
.ws6_c00213{word-spacing:0.172800px;}
.ws7_c00213{word-spacing:0.180000px;}
.ws11_c00213{word-spacing:0.187200px;}
.ws1a_c00213{word-spacing:0.194400px;}
.ws1d_c00213{word-spacing:0.244800px;}
.ws14_c00213{word-spacing:0.403200px;}
.ws13_c00213{word-spacing:0.525600px;}
.ws10_c00213{word-spacing:0.900000px;}
.wsc_c00213{word-spacing:2.001600px;}
.wsb_c00213{word-spacing:2.016000px;}
.ws26_c00213{word-spacing:3.398400px;}
.ws27_c00213{word-spacing:3.420000px;}
.wsd_c00213{word-spacing:3.657600px;}
.wse_c00213{word-spacing:3.816000px;}
.ws2a_c00213{word-spacing:4.838400px;}
.ws28_c00213{word-spacing:4.860000px;}
.ws29_c00213{word-spacing:5.061600px;}
.ws5_c00213{word-spacing:5.212800px;}
.ws4_c00213{word-spacing:5.227200px;}
.ws3_c00213{word-spacing:5.997600px;}
.ws2_c00213{word-spacing:6.004800px;}
.wsf_c00213{word-spacing:7.401600px;}
.ws16_c00213{word-spacing:8.092800px;}
.ws17_c00213{word-spacing:8.136000px;}
.ws9_c00213{word-spacing:10.872000px;}
.wsa_c00213{word-spacing:11.044800px;}
.ws24_c00213{word-spacing:13.500000px;}
.ws25_c00213{word-spacing:13.528800px;}
.ws23_c00213{word-spacing:14.544000px;}
.ws1c_c00213{word-spacing:16.084800px;}
.ws1b_c00213{word-spacing:16.113600px;}
.ws12_c00213{word-spacing:18.914400px;}
.ws2b_c00213{word-spacing:19.627200px;}
.ws22_c00213{word-spacing:26.100000px;}
.ws21_c00213{word-spacing:26.186400px;}
.ws20_c00213{word-spacing:40.874400px;}
.ws1f_c00213{word-spacing:40.932000px;}
.ws15_c00213{word-spacing:50.961600px;}
._0_c00213{width:1.108800px;}
.fc0_c00213{color:rgb(0,0,0);}
.fs0_c00213{font-size:72.000000px;}
.y0_c00213{bottom:0.000000px;}
.y2_c00213{bottom:46.830450px;}
.y1_c00213{bottom:67.530450px;}
.y24_c00213{bottom:133.680450px;}
.y23_c00213{bottom:164.730450px;}
.y22_c00213{bottom:213.690450px;}
.y21_c00213{bottom:252.390450px;}
.y20_c00213{bottom:282.090450px;}
.y1f_c00213{bottom:302.790450px;}
.y1e_c00213{bottom:323.490450px;}
.y1d_c00213{bottom:344.190450px;}
.y1c_c00213{bottom:364.890450px;}
.y1b_c00213{bottom:385.590450px;}
.y1a_c00213{bottom:406.290450px;}
.y19_c00213{bottom:426.990450px;}
.y18_c00213{bottom:476.040450px;}
.y17_c00213{bottom:507.090450px;}
.y16_c00213{bottom:556.140450px;}
.y15_c00213{bottom:594.840450px;}
.y14_c00213{bottom:615.540450px;}
.y13_c00213{bottom:636.240450px;}
.y12_c00213{bottom:656.940450px;}
.y11_c00213{bottom:677.640450px;}
.y10_c00213{bottom:698.340450px;}
.yf_c00213{bottom:747.390450px;}
.ye_c00213{bottom:786.090450px;}
.yd_c00213{bottom:815.790450px;}
.yc_c00213{bottom:836.490450px;}
.yb_c00213{bottom:857.190450px;}
.ya_c00213{bottom:877.890450px;}
.y9_c00213{bottom:898.590450px;}
.y8_c00213{bottom:919.290450px;}
.y7_c00213{bottom:968.340450px;}
.y6_c00213{bottom:1017.390450px;}
.y5_c00213{bottom:1056.090450px;}
.y4_c00213{bottom:1076.790450px;}
.y3_c00213{bottom:1097.490450px;}
.h1_c00213{height:63.175781px;}
.h2_c00213{height:64.546875px;}
.h3_c00213{height:75.093750px;}
.h0_c00213{height:1263.000000px;}
.w1_c00213{width:892.500000px;}
.w0_c00213{width:892.830000px;}
.x0_c00213{left:0.000000px;}
.x2_c00213{left:127.620000px;}
.x3_c00213{left:148.950000px;}
.x1_c00213{left:695.880000px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls7_c00213{letter-spacing:-0.076800pt;}
.ls2_c00213{letter-spacing:-0.070400pt;}
.ls8_c00213{letter-spacing:-0.051200pt;}
.lsb_c00213{letter-spacing:-0.044800pt;}
.ls9_c00213{letter-spacing:-0.038400pt;}
.ls6_c00213{letter-spacing:-0.032000pt;}
.ls1_c00213{letter-spacing:-0.025600pt;}
.ls4_c00213{letter-spacing:-0.019200pt;}
.ls3_c00213{letter-spacing:-0.012800pt;}
.lsa_c00213{letter-spacing:-0.006400pt;}
.ls0_c00213{letter-spacing:0.000000pt;}
.ls5_c00213{letter-spacing:0.006400pt;}
.ws0_c00213{word-spacing:-17.766400pt;}
.ws19_c00213{word-spacing:-2.400000pt;}
.ws18_c00213{word-spacing:-2.387200pt;}
.ws1e_c00213{word-spacing:-2.080000pt;}
.ws1_c00213{word-spacing:0.000000pt;}
.ws8_c00213{word-spacing:0.134400pt;}
.ws2c_c00213{word-spacing:0.140800pt;}
.ws6_c00213{word-spacing:0.153600pt;}
.ws7_c00213{word-spacing:0.160000pt;}
.ws11_c00213{word-spacing:0.166400pt;}
.ws1a_c00213{word-spacing:0.172800pt;}
.ws1d_c00213{word-spacing:0.217600pt;}
.ws14_c00213{word-spacing:0.358400pt;}
.ws13_c00213{word-spacing:0.467200pt;}
.ws10_c00213{word-spacing:0.800000pt;}
.wsc_c00213{word-spacing:1.779200pt;}
.wsb_c00213{word-spacing:1.792000pt;}
.ws26_c00213{word-spacing:3.020800pt;}
.ws27_c00213{word-spacing:3.040000pt;}
.wsd_c00213{word-spacing:3.251200pt;}
.wse_c00213{word-spacing:3.392000pt;}
.ws2a_c00213{word-spacing:4.300800pt;}
.ws28_c00213{word-spacing:4.320000pt;}
.ws29_c00213{word-spacing:4.499200pt;}
.ws5_c00213{word-spacing:4.633600pt;}
.ws4_c00213{word-spacing:4.646400pt;}
.ws3_c00213{word-spacing:5.331200pt;}
.ws2_c00213{word-spacing:5.337600pt;}
.wsf_c00213{word-spacing:6.579200pt;}
.ws16_c00213{word-spacing:7.193600pt;}
.ws17_c00213{word-spacing:7.232000pt;}
.ws9_c00213{word-spacing:9.664000pt;}
.wsa_c00213{word-spacing:9.817600pt;}
.ws24_c00213{word-spacing:12.000000pt;}
.ws25_c00213{word-spacing:12.025600pt;}
.ws23_c00213{word-spacing:12.928000pt;}
.ws1c_c00213{word-spacing:14.297600pt;}
.ws1b_c00213{word-spacing:14.323200pt;}
.ws12_c00213{word-spacing:16.812800pt;}
.ws2b_c00213{word-spacing:17.446400pt;}
.ws22_c00213{word-spacing:23.200000pt;}
.ws21_c00213{word-spacing:23.276800pt;}
.ws20_c00213{word-spacing:36.332800pt;}
.ws1f_c00213{word-spacing:36.384000pt;}
.ws15_c00213{word-spacing:45.299200pt;}
._0_c00213{width:0.985600pt;}
.fs0_c00213{font-size:64.000000pt;}
.y0_c00213{bottom:0.000000pt;}
.y2_c00213{bottom:41.627067pt;}
.y1_c00213{bottom:60.027067pt;}
.y24_c00213{bottom:118.827067pt;}
.y23_c00213{bottom:146.427067pt;}
.y22_c00213{bottom:189.947067pt;}
.y21_c00213{bottom:224.347067pt;}
.y20_c00213{bottom:250.747067pt;}
.y1f_c00213{bottom:269.147067pt;}
.y1e_c00213{bottom:287.547067pt;}
.y1d_c00213{bottom:305.947067pt;}
.y1c_c00213{bottom:324.347067pt;}
.y1b_c00213{bottom:342.747067pt;}
.y1a_c00213{bottom:361.147067pt;}
.y19_c00213{bottom:379.547067pt;}
.y18_c00213{bottom:423.147067pt;}
.y17_c00213{bottom:450.747067pt;}
.y16_c00213{bottom:494.347067pt;}
.y15_c00213{bottom:528.747067pt;}
.y14_c00213{bottom:547.147067pt;}
.y13_c00213{bottom:565.547067pt;}
.y12_c00213{bottom:583.947067pt;}
.y11_c00213{bottom:602.347067pt;}
.y10_c00213{bottom:620.747067pt;}
.yf_c00213{bottom:664.347067pt;}
.ye_c00213{bottom:698.747067pt;}
.yd_c00213{bottom:725.147067pt;}
.yc_c00213{bottom:743.547067pt;}
.yb_c00213{bottom:761.947067pt;}
.ya_c00213{bottom:780.347067pt;}
.y9_c00213{bottom:798.747067pt;}
.y8_c00213{bottom:817.147067pt;}
.y7_c00213{bottom:860.747067pt;}
.y6_c00213{bottom:904.347067pt;}
.y5_c00213{bottom:938.747067pt;}
.y4_c00213{bottom:957.147067pt;}
.y3_c00213{bottom:975.547067pt;}
.h1_c00213{height:56.156250pt;}
.h2_c00213{height:57.375000pt;}
.h3_c00213{height:66.750000pt;}
.h0_c00213{height:1122.666667pt;}
.w1_c00213{width:793.333333pt;}
.w0_c00213{width:793.626667pt;}
.x0_c00213{left:0.000000pt;}
.x2_c00213{left:113.440000pt;}
.x3_c00213{left:132.400000pt;}
.x1_c00213{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_82018bd6c7bc5c644a10a97b.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.093262;font-style:normal;font-weight:normal;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_90643ca64330925f4b774ecf.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls9_c00214{letter-spacing:-0.079200px;}
.ls8_c00214{letter-spacing:-0.064800px;}
.lsa_c00214{letter-spacing:-0.057600px;}
.ls5_c00214{letter-spacing:-0.050400px;}
.ls3_c00214{letter-spacing:-0.043200px;}
.ls2_c00214{letter-spacing:-0.036000px;}
.ls4_c00214{letter-spacing:-0.028800px;}
.ls6_c00214{letter-spacing:-0.021600px;}
.lsb_c00214{letter-spacing:-0.014400px;}
.ls7_c00214{letter-spacing:-0.007200px;}
.ls1_c00214{letter-spacing:0.000000px;}
.ls0_c00214{letter-spacing:0.007200px;}
.sc__c00214{text-shadow:none;}
.sc0_c00214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00214{-webkit-text-stroke:0px transparent;}
.sc0_c00214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00214{word-spacing:-4.845600px;}
.ws9_c00214{word-spacing:-4.773600px;}
.ws10_c00214{word-spacing:-1.677600px;}
.ws20_c00214{word-spacing:-1.620000px;}
.ws21_c00214{word-spacing:-1.612800px;}
.ws11_c00214{word-spacing:-1.562400px;}
.ws26_c00214{word-spacing:-1.245600px;}
.ws24_c00214{word-spacing:-0.165600px;}
.ws25_c00214{word-spacing:-0.144000px;}
.ws0_c00214{word-spacing:0.000000px;}
.wsb_c00214{word-spacing:0.100800px;}
.ws5_c00214{word-spacing:0.180000px;}
.ws8_c00214{word-spacing:0.187200px;}
.ws19_c00214{word-spacing:0.230400px;}
.wsf_c00214{word-spacing:0.266400px;}
.ws1d_c00214{word-spacing:0.914400px;}
.wse_c00214{word-spacing:2.347200px;}
.ws1e_c00214{word-spacing:7.408800px;}
.ws1b_c00214{word-spacing:8.812800px;}
.ws1a_c00214{word-spacing:8.834400px;}
.wsc_c00214{word-spacing:9.540000px;}
.ws12_c00214{word-spacing:9.554400px;}
.ws13_c00214{word-spacing:9.561600px;}
.wsd_c00214{word-spacing:9.583200px;}
.ws18_c00214{word-spacing:10.274400px;}
.ws23_c00214{word-spacing:16.365600px;}
.ws22_c00214{word-spacing:16.473600px;}
.ws4_c00214{word-spacing:16.768800px;}
.ws1_c00214{word-spacing:20.390400px;}
.ws1f_c00214{word-spacing:22.154400px;}
.ws16_c00214{word-spacing:23.551200px;}
.ws15_c00214{word-spacing:23.616000px;}
.ws7_c00214{word-spacing:24.897600px;}
.ws6_c00214{word-spacing:25.020000px;}
.ws3_c00214{word-spacing:27.187200px;}
.ws2_c00214{word-spacing:27.201600px;}
.ws17_c00214{word-spacing:27.216000px;}
.ws14_c00214{word-spacing:37.324800px;}
.ws1c_c00214{word-spacing:52.005600px;}
._1_c00214{margin-left:-23.400000px;}
._0_c00214{width:1.022400px;}
.fc0_c00214{color:rgb(0,0,0);}
.fs0_c00214{font-size:72.000000px;}
.y0_c00214{bottom:0.000000px;}
.y2_c00214{bottom:46.830450px;}
.y1_c00214{bottom:67.530450px;}
.y21_c00214{bottom:155.280450px;}
.y20_c00214{bottom:186.330450px;}
.y1f_c00214{bottom:217.380450px;}
.y1e_c00214{bottom:248.430450px;}
.y1d_c00214{bottom:279.390450px;}
.y1c_c00214{bottom:310.440450px;}
.y1b_c00214{bottom:341.490450px;}
.y1a_c00214{bottom:372.540450px;}
.y19_c00214{bottom:421.590450px;}
.y18_c00214{bottom:452.640450px;}
.y17_c00214{bottom:501.690450px;}
.y16_c00214{bottom:532.740450px;}
.y15_c00214{bottom:563.790450px;}
.y14_c00214{bottom:594.840450px;}
.y13_c00214{bottom:643.890450px;}
.y12_c00214{bottom:682.590450px;}
.y11_c00214{bottom:703.290450px;}
.y10_c00214{bottom:723.990450px;}
.yf_c00214{bottom:744.690450px;}
.ye_c00214{bottom:793.740450px;}
.yd_c00214{bottom:824.790450px;}
.yc_c00214{bottom:855.840450px;}
.yb_c00214{bottom:904.890450px;}
.ya_c00214{bottom:943.590450px;}
.y9_c00214{bottom:964.290450px;}
.y8_c00214{bottom:984.990450px;}
.y7_c00214{bottom:1005.690450px;}
.y6_c00214{bottom:1035.390450px;}
.y5_c00214{bottom:1056.090450px;}
.y4_c00214{bottom:1076.790450px;}
.y3_c00214{bottom:1097.490450px;}
.h1_c00214{height:63.175781px;}
.h2_c00214{height:64.546875px;}
.h0_c00214{height:1263.000000px;}
.w1_c00214{width:892.500000px;}
.w0_c00214{width:892.830000px;}
.x0_c00214{left:0.000000px;}
.x2_c00214{left:170.100000px;}
.x3_c00214{left:191.430000px;}
.x1_c00214{left:738.360000px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls9_c00214{letter-spacing:-0.070400pt;}
.ls8_c00214{letter-spacing:-0.057600pt;}
.lsa_c00214{letter-spacing:-0.051200pt;}
.ls5_c00214{letter-spacing:-0.044800pt;}
.ls3_c00214{letter-spacing:-0.038400pt;}
.ls2_c00214{letter-spacing:-0.032000pt;}
.ls4_c00214{letter-spacing:-0.025600pt;}
.ls6_c00214{letter-spacing:-0.019200pt;}
.lsb_c00214{letter-spacing:-0.012800pt;}
.ls7_c00214{letter-spacing:-0.006400pt;}
.ls1_c00214{letter-spacing:0.000000pt;}
.ls0_c00214{letter-spacing:0.006400pt;}
.wsa_c00214{word-spacing:-4.307200pt;}
.ws9_c00214{word-spacing:-4.243200pt;}
.ws10_c00214{word-spacing:-1.491200pt;}
.ws20_c00214{word-spacing:-1.440000pt;}
.ws21_c00214{word-spacing:-1.433600pt;}
.ws11_c00214{word-spacing:-1.388800pt;}
.ws26_c00214{word-spacing:-1.107200pt;}
.ws24_c00214{word-spacing:-0.147200pt;}
.ws25_c00214{word-spacing:-0.128000pt;}
.ws0_c00214{word-spacing:0.000000pt;}
.wsb_c00214{word-spacing:0.089600pt;}
.ws5_c00214{word-spacing:0.160000pt;}
.ws8_c00214{word-spacing:0.166400pt;}
.ws19_c00214{word-spacing:0.204800pt;}
.wsf_c00214{word-spacing:0.236800pt;}
.ws1d_c00214{word-spacing:0.812800pt;}
.wse_c00214{word-spacing:2.086400pt;}
.ws1e_c00214{word-spacing:6.585600pt;}
.ws1b_c00214{word-spacing:7.833600pt;}
.ws1a_c00214{word-spacing:7.852800pt;}
.wsc_c00214{word-spacing:8.480000pt;}
.ws12_c00214{word-spacing:8.492800pt;}
.ws13_c00214{word-spacing:8.499200pt;}
.wsd_c00214{word-spacing:8.518400pt;}
.ws18_c00214{word-spacing:9.132800pt;}
.ws23_c00214{word-spacing:14.547200pt;}
.ws22_c00214{word-spacing:14.643200pt;}
.ws4_c00214{word-spacing:14.905600pt;}
.ws1_c00214{word-spacing:18.124800pt;}
.ws1f_c00214{word-spacing:19.692800pt;}
.ws16_c00214{word-spacing:20.934400pt;}
.ws15_c00214{word-spacing:20.992000pt;}
.ws7_c00214{word-spacing:22.131200pt;}
.ws6_c00214{word-spacing:22.240000pt;}
.ws3_c00214{word-spacing:24.166400pt;}
.ws2_c00214{word-spacing:24.179200pt;}
.ws17_c00214{word-spacing:24.192000pt;}
.ws14_c00214{word-spacing:33.177600pt;}
.ws1c_c00214{word-spacing:46.227200pt;}
._1_c00214{margin-left:-20.800000pt;}
._0_c00214{width:0.908800pt;}
.fs0_c00214{font-size:64.000000pt;}
.y0_c00214{bottom:0.000000pt;}
.y2_c00214{bottom:41.627067pt;}
.y1_c00214{bottom:60.027067pt;}
.y21_c00214{bottom:138.027067pt;}
.y20_c00214{bottom:165.627067pt;}
.y1f_c00214{bottom:193.227067pt;}
.y1e_c00214{bottom:220.827067pt;}
.y1d_c00214{bottom:248.347067pt;}
.y1c_c00214{bottom:275.947067pt;}
.y1b_c00214{bottom:303.547067pt;}
.y1a_c00214{bottom:331.147067pt;}
.y19_c00214{bottom:374.747067pt;}
.y18_c00214{bottom:402.347067pt;}
.y17_c00214{bottom:445.947067pt;}
.y16_c00214{bottom:473.547067pt;}
.y15_c00214{bottom:501.147067pt;}
.y14_c00214{bottom:528.747067pt;}
.y13_c00214{bottom:572.347067pt;}
.y12_c00214{bottom:606.747067pt;}
.y11_c00214{bottom:625.147067pt;}
.y10_c00214{bottom:643.547067pt;}
.yf_c00214{bottom:661.947067pt;}
.ye_c00214{bottom:705.547067pt;}
.yd_c00214{bottom:733.147067pt;}
.yc_c00214{bottom:760.747067pt;}
.yb_c00214{bottom:804.347067pt;}
.ya_c00214{bottom:838.747067pt;}
.y9_c00214{bottom:857.147067pt;}
.y8_c00214{bottom:875.547067pt;}
.y7_c00214{bottom:893.947067pt;}
.y6_c00214{bottom:920.347067pt;}
.y5_c00214{bottom:938.747067pt;}
.y4_c00214{bottom:957.147067pt;}
.y3_c00214{bottom:975.547067pt;}
.h1_c00214{height:56.156250pt;}
.h2_c00214{height:57.375000pt;}
.h0_c00214{height:1122.666667pt;}
.w1_c00214{width:793.333333pt;}
.w0_c00214{width:793.626667pt;}
.x0_c00214{left:0.000000pt;}
.x2_c00214{left:151.200000pt;}
.x3_c00214{left:170.160000pt;}
.x1_c00214{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0aaacdb224baac00e362f9ff.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.093262;font-style:normal;font-weight:normal;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_1fe03f561d3c8e79a71440e0.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.ls3_c00215{letter-spacing:-0.072000px;}
.lsa_c00215{letter-spacing:-0.064800px;}
.ls9_c00215{letter-spacing:-0.057600px;}
.ls7_c00215{letter-spacing:-0.050400px;}
.ls4_c00215{letter-spacing:-0.043200px;}
.ls2_c00215{letter-spacing:-0.036000px;}
.ls5_c00215{letter-spacing:-0.028800px;}
.ls6_c00215{letter-spacing:-0.021600px;}
.ls8_c00215{letter-spacing:-0.014400px;}
.lsb_c00215{letter-spacing:-0.007200px;}
.ls1_c00215{letter-spacing:0.000000px;}
.ls0_c00215{letter-spacing:0.007200px;}
.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;}
}
.ws29_c00215{word-spacing:-3.578400px;}
.ws2a_c00215{word-spacing:-3.369600px;}
.ws2c_c00215{word-spacing:-3.096000px;}
.ws2b_c00215{word-spacing:-3.074400px;}
.ws2f_c00215{word-spacing:-2.750400px;}
.ws25_c00215{word-spacing:-2.692800px;}
.ws24_c00215{word-spacing:-2.671200px;}
.ws12_c00215{word-spacing:-2.664000px;}
.ws2e_c00215{word-spacing:-2.541600px;}
.ws1d_c00215{word-spacing:-0.626400px;}
.ws1c_c00215{word-spacing:-0.612000px;}
.ws1b_c00215{word-spacing:-0.583200px;}
.ws6_c00215{word-spacing:-0.288000px;}
.ws5_c00215{word-spacing:-0.158400px;}
.ws0_c00215{word-spacing:0.000000px;}
.ws1e_c00215{word-spacing:0.050400px;}
.ws10_c00215{word-spacing:0.172800px;}
.wsb_c00215{word-spacing:0.180000px;}
.ws1f_c00215{word-spacing:0.187200px;}
.ws11_c00215{word-spacing:0.532800px;}
.ws14_c00215{word-spacing:1.972800px;}
.ws13_c00215{word-spacing:2.008800px;}
.ws1a_c00215{word-spacing:2.332800px;}
.ws19_c00215{word-spacing:2.347200px;}
.ws21_c00215{word-spacing:2.707200px;}
.ws20_c00215{word-spacing:2.743200px;}
.ws23_c00215{word-spacing:3.412800px;}
.wsf_c00215{word-spacing:4.449600px;}
.wse_c00215{word-spacing:4.500000px;}
.ws4_c00215{word-spacing:7.718400px;}
.ws3_c00215{word-spacing:7.761600px;}
.ws15_c00215{word-spacing:9.921600px;}
.ws1_c00215{word-spacing:11.714400px;}
.ws2_c00215{word-spacing:11.750400px;}
.ws18_c00215{word-spacing:15.314400px;}
.wsd_c00215{word-spacing:16.459200px;}
.wsc_c00215{word-spacing:16.495200px;}
.ws26_c00215{word-spacing:17.402400px;}
.ws27_c00215{word-spacing:17.409600px;}
.wsa_c00215{word-spacing:17.798400px;}
.ws9_c00215{word-spacing:17.841600px;}
.ws2d_c00215{word-spacing:28.260000px;}
.ws7_c00215{word-spacing:29.354400px;}
.ws8_c00215{word-spacing:29.412000px;}
.ws16_c00215{word-spacing:34.531200px;}
.ws17_c00215{word-spacing:34.768800px;}
.ws28_c00215{word-spacing:43.041600px;}
.ws22_c00215{word-spacing:57.448800px;}
._2_c00215{margin-left:-28.080000px;}
._0_c00215{width:1.288800px;}
._1_c00215{width:3.592800px;}
.fc0_c00215{color:rgb(0,0,0);}
.fs0_c00215{font-size:72.000000px;}
.y0_c00215{bottom:0.000000px;}
.y2_c00215{bottom:46.830450px;}
.y1_c00215{bottom:67.530450px;}
.y21_c00215{bottom:151.230450px;}
.y20_c00215{bottom:182.280450px;}
.y1f_c00215{bottom:213.330450px;}
.y1e_c00215{bottom:252.030450px;}
.y1d_c00215{bottom:281.730450px;}
.y1c_c00215{bottom:311.430450px;}
.y1b_c00215{bottom:332.040450px;}
.y1a_c00215{bottom:352.740450px;}
.y19_c00215{bottom:373.440450px;}
.y18_c00215{bottom:394.140450px;}
.y17_c00215{bottom:414.840450px;}
.y16_c00215{bottom:435.540450px;}
.y15_c00215{bottom:484.590450px;}
.y14_c00215{bottom:533.640450px;}
.y13_c00215{bottom:564.690450px;}
.y12_c00215{bottom:595.740450px;}
.y11_c00215{bottom:626.790450px;}
.y10_c00215{bottom:657.840450px;}
.yf_c00215{bottom:688.890450px;}
.ye_c00215{bottom:719.940450px;}
.yd_c00215{bottom:750.990450px;}
.yc_c00215{bottom:782.040450px;}
.yb_c00215{bottom:831.090450px;}
.ya_c00215{bottom:862.140450px;}
.y9_c00215{bottom:893.190450px;}
.y8_c00215{bottom:942.240450px;}
.y7_c00215{bottom:973.290450px;}
.y6_c00215{bottom:1004.340450px;}
.y5_c00215{bottom:1035.390450px;}
.y4_c00215{bottom:1066.440450px;}
.y3_c00215{bottom:1097.490450px;}
.h1_c00215{height:63.175781px;}
.h2_c00215{height:64.546875px;}
.h0_c00215{height:1263.000000px;}
.w1_c00215{width:892.500000px;}
.w0_c00215{width:892.830000px;}
.x0_c00215{left:0.000000px;}
.x2_c00215{left:127.620000px;}
.x3_c00215{left:148.950000px;}
.x1_c00215{left:695.880000px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls3_c00215{letter-spacing:-0.064000pt;}
.lsa_c00215{letter-spacing:-0.057600pt;}
.ls9_c00215{letter-spacing:-0.051200pt;}
.ls7_c00215{letter-spacing:-0.044800pt;}
.ls4_c00215{letter-spacing:-0.038400pt;}
.ls2_c00215{letter-spacing:-0.032000pt;}
.ls5_c00215{letter-spacing:-0.025600pt;}
.ls6_c00215{letter-spacing:-0.019200pt;}
.ls8_c00215{letter-spacing:-0.012800pt;}
.lsb_c00215{letter-spacing:-0.006400pt;}
.ls1_c00215{letter-spacing:0.000000pt;}
.ls0_c00215{letter-spacing:0.006400pt;}
.ws29_c00215{word-spacing:-3.180800pt;}
.ws2a_c00215{word-spacing:-2.995200pt;}
.ws2c_c00215{word-spacing:-2.752000pt;}
.ws2b_c00215{word-spacing:-2.732800pt;}
.ws2f_c00215{word-spacing:-2.444800pt;}
.ws25_c00215{word-spacing:-2.393600pt;}
.ws24_c00215{word-spacing:-2.374400pt;}
.ws12_c00215{word-spacing:-2.368000pt;}
.ws2e_c00215{word-spacing:-2.259200pt;}
.ws1d_c00215{word-spacing:-0.556800pt;}
.ws1c_c00215{word-spacing:-0.544000pt;}
.ws1b_c00215{word-spacing:-0.518400pt;}
.ws6_c00215{word-spacing:-0.256000pt;}
.ws5_c00215{word-spacing:-0.140800pt;}
.ws0_c00215{word-spacing:0.000000pt;}
.ws1e_c00215{word-spacing:0.044800pt;}
.ws10_c00215{word-spacing:0.153600pt;}
.wsb_c00215{word-spacing:0.160000pt;}
.ws1f_c00215{word-spacing:0.166400pt;}
.ws11_c00215{word-spacing:0.473600pt;}
.ws14_c00215{word-spacing:1.753600pt;}
.ws13_c00215{word-spacing:1.785600pt;}
.ws1a_c00215{word-spacing:2.073600pt;}
.ws19_c00215{word-spacing:2.086400pt;}
.ws21_c00215{word-spacing:2.406400pt;}
.ws20_c00215{word-spacing:2.438400pt;}
.ws23_c00215{word-spacing:3.033600pt;}
.wsf_c00215{word-spacing:3.955200pt;}
.wse_c00215{word-spacing:4.000000pt;}
.ws4_c00215{word-spacing:6.860800pt;}
.ws3_c00215{word-spacing:6.899200pt;}
.ws15_c00215{word-spacing:8.819200pt;}
.ws1_c00215{word-spacing:10.412800pt;}
.ws2_c00215{word-spacing:10.444800pt;}
.ws18_c00215{word-spacing:13.612800pt;}
.wsd_c00215{word-spacing:14.630400pt;}
.wsc_c00215{word-spacing:14.662400pt;}
.ws26_c00215{word-spacing:15.468800pt;}
.ws27_c00215{word-spacing:15.475200pt;}
.wsa_c00215{word-spacing:15.820800pt;}
.ws9_c00215{word-spacing:15.859200pt;}
.ws2d_c00215{word-spacing:25.120000pt;}
.ws7_c00215{word-spacing:26.092800pt;}
.ws8_c00215{word-spacing:26.144000pt;}
.ws16_c00215{word-spacing:30.694400pt;}
.ws17_c00215{word-spacing:30.905600pt;}
.ws28_c00215{word-spacing:38.259200pt;}
.ws22_c00215{word-spacing:51.065600pt;}
._2_c00215{margin-left:-24.960000pt;}
._0_c00215{width:1.145600pt;}
._1_c00215{width:3.193600pt;}
.fs0_c00215{font-size:64.000000pt;}
.y0_c00215{bottom:0.000000pt;}
.y2_c00215{bottom:41.627067pt;}
.y1_c00215{bottom:60.027067pt;}
.y21_c00215{bottom:134.427067pt;}
.y20_c00215{bottom:162.027067pt;}
.y1f_c00215{bottom:189.627067pt;}
.y1e_c00215{bottom:224.027067pt;}
.y1d_c00215{bottom:250.427067pt;}
.y1c_c00215{bottom:276.827067pt;}
.y1b_c00215{bottom:295.147067pt;}
.y1a_c00215{bottom:313.547067pt;}
.y19_c00215{bottom:331.947067pt;}
.y18_c00215{bottom:350.347067pt;}
.y17_c00215{bottom:368.747067pt;}
.y16_c00215{bottom:387.147067pt;}
.y15_c00215{bottom:430.747067pt;}
.y14_c00215{bottom:474.347067pt;}
.y13_c00215{bottom:501.947067pt;}
.y12_c00215{bottom:529.547067pt;}
.y11_c00215{bottom:557.147067pt;}
.y10_c00215{bottom:584.747067pt;}
.yf_c00215{bottom:612.347067pt;}
.ye_c00215{bottom:639.947067pt;}
.yd_c00215{bottom:667.547067pt;}
.yc_c00215{bottom:695.147067pt;}
.yb_c00215{bottom:738.747067pt;}
.ya_c00215{bottom:766.347067pt;}
.y9_c00215{bottom:793.947067pt;}
.y8_c00215{bottom:837.547067pt;}
.y7_c00215{bottom:865.147067pt;}
.y6_c00215{bottom:892.747067pt;}
.y5_c00215{bottom:920.347067pt;}
.y4_c00215{bottom:947.947067pt;}
.y3_c00215{bottom:975.547067pt;}
.h1_c00215{height:56.156250pt;}
.h2_c00215{height:57.375000pt;}
.h0_c00215{height:1122.666667pt;}
.w1_c00215{width:793.333333pt;}
.w0_c00215{width:793.626667pt;}
.x0_c00215{left:0.000000pt;}
.x2_c00215{left:113.440000pt;}
.x3_c00215{left:132.400000pt;}
.x1_c00215{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_79c10387674845492a104a58.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.093262;font-style:normal;font-weight:normal;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_43befdcf8b9dc47ec41c7260.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00216{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00216{vertical-align:0.000000px;}
.ls8_c00216{letter-spacing:-0.079200px;}
.lsd_c00216{letter-spacing:-0.064800px;}
.lsb_c00216{letter-spacing:-0.057600px;}
.ls9_c00216{letter-spacing:-0.050400px;}
.ls6_c00216{letter-spacing:-0.043200px;}
.ls5_c00216{letter-spacing:-0.036000px;}
.ls7_c00216{letter-spacing:-0.028800px;}
.lsa_c00216{letter-spacing:-0.021600px;}
.ls3_c00216{letter-spacing:-0.014400px;}
.lsc_c00216{letter-spacing:-0.007200px;}
.ls2_c00216{letter-spacing:0.000000px;}
.ls1_c00216{letter-spacing:0.007200px;}
.ls4_c00216{letter-spacing:0.014400px;}
.ls0_c00216{letter-spacing:0.021600px;}
.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;}
}
.ws23_c00216{word-spacing:-2.692800px;}
.ws24_c00216{word-spacing:-2.613600px;}
.ws28_c00216{word-spacing:-1.965600px;}
.ws27_c00216{word-spacing:-1.872000px;}
.ws26_c00216{word-spacing:-1.620000px;}
.ws25_c00216{word-spacing:-1.605600px;}
.ws0_c00216{word-spacing:0.000000px;}
.ws22_c00216{word-spacing:0.151200px;}
.ws16_c00216{word-spacing:0.165600px;}
.ws2d_c00216{word-spacing:0.172800px;}
.ws21_c00216{word-spacing:0.180000px;}
.ws17_c00216{word-spacing:0.187200px;}
.ws4_c00216{word-spacing:0.194400px;}
.ws7_c00216{word-spacing:0.842400px;}
.ws8_c00216{word-spacing:0.957600px;}
.wsf_c00216{word-spacing:1.533600px;}
.ws12_c00216{word-spacing:1.612800px;}
.ws11_c00216{word-spacing:1.620000px;}
.ws10_c00216{word-spacing:1.648800px;}
.ws32_c00216{word-spacing:3.326400px;}
.ws2e_c00216{word-spacing:3.420000px;}
.ws33_c00216{word-spacing:3.434400px;}
.ws2f_c00216{word-spacing:3.499200px;}
.ws15_c00216{word-spacing:4.176000px;}
.ws18_c00216{word-spacing:4.924800px;}
.ws19_c00216{word-spacing:4.968000px;}
.ws34_c00216{word-spacing:5.220000px;}
.ws2b_c00216{word-spacing:5.968800px;}
.ws2c_c00216{word-spacing:5.983200px;}
.ws2_c00216{word-spacing:8.416800px;}
.ws3_c00216{word-spacing:8.424000px;}
.ws1_c00216{word-spacing:8.452800px;}
.ws5_c00216{word-spacing:9.496800px;}
.ws6_c00216{word-spacing:9.568800px;}
.wsd_c00216{word-spacing:10.490400px;}
.wse_c00216{word-spacing:10.648800px;}
.ws35_c00216{word-spacing:11.700000px;}
.ws36_c00216{word-spacing:11.728800px;}
.ws2a_c00216{word-spacing:12.434400px;}
.ws29_c00216{word-spacing:12.499200px;}
.ws13_c00216{word-spacing:16.372800px;}
.ws14_c00216{word-spacing:16.380000px;}
.ws37_c00216{word-spacing:17.100000px;}
.wsb_c00216{word-spacing:17.697600px;}
.wsc_c00216{word-spacing:17.841600px;}
.ws1f_c00216{word-spacing:23.234400px;}
.ws1e_c00216{word-spacing:23.241600px;}
.ws1b_c00216{word-spacing:26.445600px;}
.ws1a_c00216{word-spacing:26.524800px;}
.ws1d_c00216{word-spacing:30.045600px;}
.ws1c_c00216{word-spacing:30.088800px;}
.ws9_c00216{word-spacing:32.587200px;}
.wsa_c00216{word-spacing:32.601600px;}
.ws38_c00216{word-spacing:32.932800px;}
.ws30_c00216{word-spacing:35.481600px;}
.ws20_c00216{word-spacing:36.180000px;}
.ws31_c00216{word-spacing:67.852800px;}
._0_c00216{width:1.008000px;}
.fc0_c00216{color:rgb(0,0,0);}
.fs0_c00216{font-size:72.000000px;}
.y0_c00216{bottom:0.000000px;}
.y2_c00216{bottom:46.830450px;}
.y1_c00216{bottom:67.530450px;}
.y26_c00216{bottom:133.230450px;}
.y25_c00216{bottom:153.930450px;}
.y24_c00216{bottom:174.630450px;}
.y23_c00216{bottom:195.330450px;}
.y22_c00216{bottom:216.030450px;}
.y21_c00216{bottom:236.730450px;}
.y20_c00216{bottom:257.430450px;}
.y1f_c00216{bottom:278.040450px;}
.y1e_c00216{bottom:327.090450px;}
.y1d_c00216{bottom:358.140450px;}
.y1c_c00216{bottom:407.190450px;}
.y1b_c00216{bottom:445.890450px;}
.y1a_c00216{bottom:475.590450px;}
.y19_c00216{bottom:496.290450px;}
.y18_c00216{bottom:516.990450px;}
.y17_c00216{bottom:537.690450px;}
.y16_c00216{bottom:558.390450px;}
.y15_c00216{bottom:607.440450px;}
.y14_c00216{bottom:638.490450px;}
.y13_c00216{bottom:669.540450px;}
.y12_c00216{bottom:700.590450px;}
.y11_c00216{bottom:731.640450px;}
.y10_c00216{bottom:762.690450px;}
.yf_c00216{bottom:801.390450px;}
.ye_c00216{bottom:831.090450px;}
.yd_c00216{bottom:851.790450px;}
.yc_c00216{bottom:872.490450px;}
.yb_c00216{bottom:893.190450px;}
.ya_c00216{bottom:913.890450px;}
.y9_c00216{bottom:934.590450px;}
.y8_c00216{bottom:955.290450px;}
.y7_c00216{bottom:975.990450px;}
.y6_c00216{bottom:996.690450px;}
.y5_c00216{bottom:1017.390450px;}
.y4_c00216{bottom:1066.440450px;}
.y3_c00216{bottom:1097.490450px;}
.h1_c00216{height:63.175781px;}
.h2_c00216{height:64.546875px;}
.h0_c00216{height:1263.000000px;}
.w1_c00216{width:892.500000px;}
.w0_c00216{width:892.830000px;}
.x0_c00216{left:0.000000px;}
.x2_c00216{left:170.100000px;}
.x3_c00216{left:191.430000px;}
.x1_c00216{left:738.360000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls8_c00216{letter-spacing:-0.070400pt;}
.lsd_c00216{letter-spacing:-0.057600pt;}
.lsb_c00216{letter-spacing:-0.051200pt;}
.ls9_c00216{letter-spacing:-0.044800pt;}
.ls6_c00216{letter-spacing:-0.038400pt;}
.ls5_c00216{letter-spacing:-0.032000pt;}
.ls7_c00216{letter-spacing:-0.025600pt;}
.lsa_c00216{letter-spacing:-0.019200pt;}
.ls3_c00216{letter-spacing:-0.012800pt;}
.lsc_c00216{letter-spacing:-0.006400pt;}
.ls2_c00216{letter-spacing:0.000000pt;}
.ls1_c00216{letter-spacing:0.006400pt;}
.ls4_c00216{letter-spacing:0.012800pt;}
.ls0_c00216{letter-spacing:0.019200pt;}
.ws23_c00216{word-spacing:-2.393600pt;}
.ws24_c00216{word-spacing:-2.323200pt;}
.ws28_c00216{word-spacing:-1.747200pt;}
.ws27_c00216{word-spacing:-1.664000pt;}
.ws26_c00216{word-spacing:-1.440000pt;}
.ws25_c00216{word-spacing:-1.427200pt;}
.ws0_c00216{word-spacing:0.000000pt;}
.ws22_c00216{word-spacing:0.134400pt;}
.ws16_c00216{word-spacing:0.147200pt;}
.ws2d_c00216{word-spacing:0.153600pt;}
.ws21_c00216{word-spacing:0.160000pt;}
.ws17_c00216{word-spacing:0.166400pt;}
.ws4_c00216{word-spacing:0.172800pt;}
.ws7_c00216{word-spacing:0.748800pt;}
.ws8_c00216{word-spacing:0.851200pt;}
.wsf_c00216{word-spacing:1.363200pt;}
.ws12_c00216{word-spacing:1.433600pt;}
.ws11_c00216{word-spacing:1.440000pt;}
.ws10_c00216{word-spacing:1.465600pt;}
.ws32_c00216{word-spacing:2.956800pt;}
.ws2e_c00216{word-spacing:3.040000pt;}
.ws33_c00216{word-spacing:3.052800pt;}
.ws2f_c00216{word-spacing:3.110400pt;}
.ws15_c00216{word-spacing:3.712000pt;}
.ws18_c00216{word-spacing:4.377600pt;}
.ws19_c00216{word-spacing:4.416000pt;}
.ws34_c00216{word-spacing:4.640000pt;}
.ws2b_c00216{word-spacing:5.305600pt;}
.ws2c_c00216{word-spacing:5.318400pt;}
.ws2_c00216{word-spacing:7.481600pt;}
.ws3_c00216{word-spacing:7.488000pt;}
.ws1_c00216{word-spacing:7.513600pt;}
.ws5_c00216{word-spacing:8.441600pt;}
.ws6_c00216{word-spacing:8.505600pt;}
.wsd_c00216{word-spacing:9.324800pt;}
.wse_c00216{word-spacing:9.465600pt;}
.ws35_c00216{word-spacing:10.400000pt;}
.ws36_c00216{word-spacing:10.425600pt;}
.ws2a_c00216{word-spacing:11.052800pt;}
.ws29_c00216{word-spacing:11.110400pt;}
.ws13_c00216{word-spacing:14.553600pt;}
.ws14_c00216{word-spacing:14.560000pt;}
.ws37_c00216{word-spacing:15.200000pt;}
.wsb_c00216{word-spacing:15.731200pt;}
.wsc_c00216{word-spacing:15.859200pt;}
.ws1f_c00216{word-spacing:20.652800pt;}
.ws1e_c00216{word-spacing:20.659200pt;}
.ws1b_c00216{word-spacing:23.507200pt;}
.ws1a_c00216{word-spacing:23.577600pt;}
.ws1d_c00216{word-spacing:26.707200pt;}
.ws1c_c00216{word-spacing:26.745600pt;}
.ws9_c00216{word-spacing:28.966400pt;}
.wsa_c00216{word-spacing:28.979200pt;}
.ws38_c00216{word-spacing:29.273600pt;}
.ws30_c00216{word-spacing:31.539200pt;}
.ws20_c00216{word-spacing:32.160000pt;}
.ws31_c00216{word-spacing:60.313600pt;}
._0_c00216{width:0.896000pt;}
.fs0_c00216{font-size:64.000000pt;}
.y0_c00216{bottom:0.000000pt;}
.y2_c00216{bottom:41.627067pt;}
.y1_c00216{bottom:60.027067pt;}
.y26_c00216{bottom:118.427067pt;}
.y25_c00216{bottom:136.827067pt;}
.y24_c00216{bottom:155.227067pt;}
.y23_c00216{bottom:173.627067pt;}
.y22_c00216{bottom:192.027067pt;}
.y21_c00216{bottom:210.427067pt;}
.y20_c00216{bottom:228.827067pt;}
.y1f_c00216{bottom:247.147067pt;}
.y1e_c00216{bottom:290.747067pt;}
.y1d_c00216{bottom:318.347067pt;}
.y1c_c00216{bottom:361.947067pt;}
.y1b_c00216{bottom:396.347067pt;}
.y1a_c00216{bottom:422.747067pt;}
.y19_c00216{bottom:441.147067pt;}
.y18_c00216{bottom:459.547067pt;}
.y17_c00216{bottom:477.947067pt;}
.y16_c00216{bottom:496.347067pt;}
.y15_c00216{bottom:539.947067pt;}
.y14_c00216{bottom:567.547067pt;}
.y13_c00216{bottom:595.147067pt;}
.y12_c00216{bottom:622.747067pt;}
.y11_c00216{bottom:650.347067pt;}
.y10_c00216{bottom:677.947067pt;}
.yf_c00216{bottom:712.347067pt;}
.ye_c00216{bottom:738.747067pt;}
.yd_c00216{bottom:757.147067pt;}
.yc_c00216{bottom:775.547067pt;}
.yb_c00216{bottom:793.947067pt;}
.ya_c00216{bottom:812.347067pt;}
.y9_c00216{bottom:830.747067pt;}
.y8_c00216{bottom:849.147067pt;}
.y7_c00216{bottom:867.547067pt;}
.y6_c00216{bottom:885.947067pt;}
.y5_c00216{bottom:904.347067pt;}
.y4_c00216{bottom:947.947067pt;}
.y3_c00216{bottom:975.547067pt;}
.h1_c00216{height:56.156250pt;}
.h2_c00216{height:57.375000pt;}
.h0_c00216{height:1122.666667pt;}
.w1_c00216{width:793.333333pt;}
.w0_c00216{width:793.626667pt;}
.x0_c00216{left:0.000000pt;}
.x2_c00216{left:151.200000pt;}
.x3_c00216{left:170.160000pt;}
.x1_c00216{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c9287e626e2dc90ef724bd9c.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.093262;font-style:normal;font-weight:normal;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_4cecec10bcc93a37e7221177.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.106934;font-style: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.050400px;}
.ls4_c00217{letter-spacing:-0.036000px;}
.ls3_c00217{letter-spacing:-0.028800px;}
.ls5_c00217{letter-spacing:-0.021600px;}
.ls2_c00217{letter-spacing:-0.007200px;}
.ls0_c00217{letter-spacing:0.000000px;}
.ls6_c00217{letter-spacing:843.998400px;}
.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;}
}
.ws5_c00217{word-spacing:-0.158400px;}
.ws0_c00217{word-spacing:0.000000px;}
.ws1_c00217{word-spacing:0.144000px;}
.ws3_c00217{word-spacing:0.165600px;}
.ws2_c00217{word-spacing:0.208800px;}
.wsa_c00217{word-spacing:0.302400px;}
.ws4_c00217{word-spacing:2.008800px;}
.ws8_c00217{word-spacing:23.580000px;}
.ws6_c00217{word-spacing:23.587200px;}
.ws7_c00217{word-spacing:23.774400px;}
.ws9_c00217{word-spacing:27.547200px;}
._0_c00217{width:1.008000px;}
.fc0_c00217{color:rgb(0,0,0);}
.fs0_c00217{font-size:72.000000px;}
.y0_c00217{bottom:0.000000px;}
.y2_c00217{bottom:46.830450px;}
.y1_c00217{bottom:67.530450px;}
.yb_c00217{bottom:835.140450px;}
.ya_c00217{bottom:884.190450px;}
.y9_c00217{bottom:915.240450px;}
.y8_c00217{bottom:946.290450px;}
.y7_c00217{bottom:977.340450px;}
.y6_c00217{bottom:1008.390450px;}
.y5_c00217{bottom:1047.090450px;}
.y4_c00217{bottom:1076.790450px;}
.y3_c00217{bottom:1097.490450px;}
.h1_c00217{height:63.175781px;}
.h2_c00217{height:64.546875px;}
.h0_c00217{height:1263.000000px;}
.w1_c00217{width:892.500000px;}
.w0_c00217{width:892.830000px;}
.x0_c00217{left:0.000000px;}
.x2_c00217{left:127.620000px;}
.x3_c00217{left:148.950000px;}
.x1_c00217{left:695.880000px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls1_c00217{letter-spacing:-0.044800pt;}
.ls4_c00217{letter-spacing:-0.032000pt;}
.ls3_c00217{letter-spacing:-0.025600pt;}
.ls5_c00217{letter-spacing:-0.019200pt;}
.ls2_c00217{letter-spacing:-0.006400pt;}
.ls0_c00217{letter-spacing:0.000000pt;}
.ls6_c00217{letter-spacing:750.220800pt;}
.ws5_c00217{word-spacing:-0.140800pt;}
.ws0_c00217{word-spacing:0.000000pt;}
.ws1_c00217{word-spacing:0.128000pt;}
.ws3_c00217{word-spacing:0.147200pt;}
.ws2_c00217{word-spacing:0.185600pt;}
.wsa_c00217{word-spacing:0.268800pt;}
.ws4_c00217{word-spacing:1.785600pt;}
.ws8_c00217{word-spacing:20.960000pt;}
.ws6_c00217{word-spacing:20.966400pt;}
.ws7_c00217{word-spacing:21.132800pt;}
.ws9_c00217{word-spacing:24.486400pt;}
._0_c00217{width:0.896000pt;}
.fs0_c00217{font-size:64.000000pt;}
.y0_c00217{bottom:0.000000pt;}
.y2_c00217{bottom:41.627067pt;}
.y1_c00217{bottom:60.027067pt;}
.yb_c00217{bottom:742.347067pt;}
.ya_c00217{bottom:785.947067pt;}
.y9_c00217{bottom:813.547067pt;}
.y8_c00217{bottom:841.147067pt;}
.y7_c00217{bottom:868.747067pt;}
.y6_c00217{bottom:896.347067pt;}
.y5_c00217{bottom:930.747067pt;}
.y4_c00217{bottom:957.147067pt;}
.y3_c00217{bottom:975.547067pt;}
.h1_c00217{height:56.156250pt;}
.h2_c00217{height:57.375000pt;}
.h0_c00217{height:1122.666667pt;}
.w1_c00217{width:793.333333pt;}
.w0_c00217{width:793.626667pt;}
.x0_c00217{left:0.000000pt;}
.x2_c00217{left:113.440000pt;}
.x3_c00217{left:132.400000pt;}
.x1_c00217{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_645a640ca2074584866b8a2e.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.093262;font-style:normal;font-weight:normal;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_11fd0e0dcd7405d9d256efd1.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00218;src:url('chunks/assets/font_d2b250fa12dd82102dccd4ee.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:1.106934;font-style:normal;font-weight:normal;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_ef3c043f146001f3c3801319.woff2')format("woff");}.ff4_c00218{font-family:ff4_c00218;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsb_c00218{letter-spacing:-0.064800px;}
.ls6_c00218{letter-spacing:-0.057600px;}
.lsa_c00218{letter-spacing:-0.050400px;}
.ls8_c00218{letter-spacing:-0.043200px;}
.ls7_c00218{letter-spacing:-0.036000px;}
.ls4_c00218{letter-spacing:-0.028800px;}
.lsc_c00218{letter-spacing:-0.021600px;}
.ls5_c00218{letter-spacing:-0.014400px;}
.ls9_c00218{letter-spacing:-0.007200px;}
.ls2_c00218{letter-spacing:0.000000px;}
.ls3_c00218{letter-spacing:0.033552px;}
.ls0_c00218{letter-spacing:0.067104px;}
.ls1_c00218{letter-spacing:0.144000px;}
.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;}
}
.wsf_c00218{word-spacing:-1.605600px;}
.ws10_c00218{word-spacing:-1.591200px;}
.ws18_c00218{word-spacing:-0.986400px;}
.ws17_c00218{word-spacing:-0.813600px;}
.ws20_c00218{word-spacing:-0.151200px;}
.ws0_c00218{word-spacing:0.000000px;}
.ws1_c00218{word-spacing:0.025164px;}
.ws2_c00218{word-spacing:0.058716px;}
.ws7_c00218{word-spacing:0.172800px;}
.ws1e_c00218{word-spacing:0.180000px;}
.ws19_c00218{word-spacing:0.187200px;}
.ws1a_c00218{word-spacing:1.994400px;}
.ws28_c00218{word-spacing:2.001600px;}
.ws14_c00218{word-spacing:3.312000px;}
.ws13_c00218{word-spacing:3.463200px;}
.ws1b_c00218{word-spacing:4.485600px;}
.ws1c_c00218{word-spacing:4.507200px;}
.ws15_c00218{word-spacing:5.947200px;}
.ws16_c00218{word-spacing:5.954400px;}
.ws2c_c00218{word-spacing:6.321600px;}
.ws22_c00218{word-spacing:10.605600px;}
.ws21_c00218{word-spacing:10.634400px;}
.ws9_c00218{word-spacing:12.074400px;}
.ws8_c00218{word-spacing:12.096000px;}
.wsb_c00218{word-spacing:13.816800px;}
.wsa_c00218{word-spacing:13.968000px;}
.ws23_c00218{word-spacing:14.968800px;}
.ws24_c00218{word-spacing:14.976000px;}
.ws27_c00218{word-spacing:15.523200px;}
.ws26_c00218{word-spacing:15.667200px;}
.ws3_c00218{word-spacing:15.955200px;}
.ws4_c00218{word-spacing:16.012800px;}
.ws1f_c00218{word-spacing:18.914400px;}
.ws1d_c00218{word-spacing:18.921600px;}
.ws5_c00218{word-spacing:22.672800px;}
.ws6_c00218{word-spacing:22.896000px;}
.ws11_c00218{word-spacing:24.609600px;}
.ws12_c00218{word-spacing:24.696000px;}
.ws29_c00218{word-spacing:26.121600px;}
.ws25_c00218{word-spacing:27.532800px;}
.ws2b_c00218{word-spacing:39.427200px;}
.ws2a_c00218{word-spacing:39.456000px;}
.wsc_c00218{word-spacing:44.805600px;}
.wse_c00218{word-spacing:44.834400px;}
.wsd_c00218{word-spacing:45.007200px;}
._1_c00218{width:1.195200px;}
._0_c00218{width:187.555680px;}
.fc0_c00218{color:rgb(0,0,0);}
.fs0_c00218{font-size:72.000000px;}
.fs1_c00218{font-size:83.880000px;}
.y0_c00218{bottom:0.000000px;}
.y2_c00218{bottom:46.830450px;}
.y1_c00218{bottom:67.530450px;}
.y22_c00218{bottom:138.000450px;}
.y21_c00218{bottom:158.700450px;}
.y20_c00218{bottom:179.400450px;}
.y1f_c00218{bottom:228.450450px;}
.y1e_c00218{bottom:259.500450px;}
.y1d_c00218{bottom:290.550450px;}
.y1c_c00218{bottom:339.600450px;}
.y1b_c00218{bottom:370.650450px;}
.y1a_c00218{bottom:401.700450px;}
.y19_c00218{bottom:432.750450px;}
.y18_c00218{bottom:463.800450px;}
.y17_c00218{bottom:494.850450px;}
.y16_c00218{bottom:543.900450px;}
.y15_c00218{bottom:574.950450px;}
.y14_c00218{bottom:606.000450px;}
.y13_c00218{bottom:637.050450px;}
.y12_c00218{bottom:675.750450px;}
.y11_c00218{bottom:705.360450px;}
.y10_c00218{bottom:726.060450px;}
.yf_c00218{bottom:746.760450px;}
.ye_c00218{bottom:767.460450px;}
.yd_c00218{bottom:788.160450px;}
.yc_c00218{bottom:808.860450px;}
.yb_c00218{bottom:829.560450px;}
.ya_c00218{bottom:850.260450px;}
.y9_c00218{bottom:870.960450px;}
.y8_c00218{bottom:920.010450px;}
.y7_c00218{bottom:951.060450px;}
.y6_c00218{bottom:982.110450px;}
.y5_c00218{bottom:1031.160450px;}
.y4_c00218{bottom:1070.404950px;}
.y3_c00218{bottom:1094.520450px;}
.h1_c00218{height:63.175781px;}
.h3_c00218{height:64.546875px;}
.h4_c00218{height:75.093750px;}
.h2_c00218{height:87.484219px;}
.h0_c00218{height:1263.000000px;}
.w1_c00218{width:892.500000px;}
.w0_c00218{width:892.830000px;}
.x0_c00218{left:0.000000px;}
.x2_c00218{left:170.100000px;}
.x5_c00218{left:191.430000px;}
.x3_c00218{left:224.100000px;}
.x4_c00218{left:261.908910px;}
.x1_c00218{left:738.360000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.lsb_c00218{letter-spacing:-0.057600pt;}
.ls6_c00218{letter-spacing:-0.051200pt;}
.lsa_c00218{letter-spacing:-0.044800pt;}
.ls8_c00218{letter-spacing:-0.038400pt;}
.ls7_c00218{letter-spacing:-0.032000pt;}
.ls4_c00218{letter-spacing:-0.025600pt;}
.lsc_c00218{letter-spacing:-0.019200pt;}
.ls5_c00218{letter-spacing:-0.012800pt;}
.ls9_c00218{letter-spacing:-0.006400pt;}
.ls2_c00218{letter-spacing:0.000000pt;}
.ls3_c00218{letter-spacing:0.029824pt;}
.ls0_c00218{letter-spacing:0.059648pt;}
.ls1_c00218{letter-spacing:0.128000pt;}
.wsf_c00218{word-spacing:-1.427200pt;}
.ws10_c00218{word-spacing:-1.414400pt;}
.ws18_c00218{word-spacing:-0.876800pt;}
.ws17_c00218{word-spacing:-0.723200pt;}
.ws20_c00218{word-spacing:-0.134400pt;}
.ws0_c00218{word-spacing:0.000000pt;}
.ws1_c00218{word-spacing:0.022368pt;}
.ws2_c00218{word-spacing:0.052192pt;}
.ws7_c00218{word-spacing:0.153600pt;}
.ws1e_c00218{word-spacing:0.160000pt;}
.ws19_c00218{word-spacing:0.166400pt;}
.ws1a_c00218{word-spacing:1.772800pt;}
.ws28_c00218{word-spacing:1.779200pt;}
.ws14_c00218{word-spacing:2.944000pt;}
.ws13_c00218{word-spacing:3.078400pt;}
.ws1b_c00218{word-spacing:3.987200pt;}
.ws1c_c00218{word-spacing:4.006400pt;}
.ws15_c00218{word-spacing:5.286400pt;}
.ws16_c00218{word-spacing:5.292800pt;}
.ws2c_c00218{word-spacing:5.619200pt;}
.ws22_c00218{word-spacing:9.427200pt;}
.ws21_c00218{word-spacing:9.452800pt;}
.ws9_c00218{word-spacing:10.732800pt;}
.ws8_c00218{word-spacing:10.752000pt;}
.wsb_c00218{word-spacing:12.281600pt;}
.wsa_c00218{word-spacing:12.416000pt;}
.ws23_c00218{word-spacing:13.305600pt;}
.ws24_c00218{word-spacing:13.312000pt;}
.ws27_c00218{word-spacing:13.798400pt;}
.ws26_c00218{word-spacing:13.926400pt;}
.ws3_c00218{word-spacing:14.182400pt;}
.ws4_c00218{word-spacing:14.233600pt;}
.ws1f_c00218{word-spacing:16.812800pt;}
.ws1d_c00218{word-spacing:16.819200pt;}
.ws5_c00218{word-spacing:20.153600pt;}
.ws6_c00218{word-spacing:20.352000pt;}
.ws11_c00218{word-spacing:21.875200pt;}
.ws12_c00218{word-spacing:21.952000pt;}
.ws29_c00218{word-spacing:23.219200pt;}
.ws25_c00218{word-spacing:24.473600pt;}
.ws2b_c00218{word-spacing:35.046400pt;}
.ws2a_c00218{word-spacing:35.072000pt;}
.wsc_c00218{word-spacing:39.827200pt;}
.wse_c00218{word-spacing:39.852800pt;}
.wsd_c00218{word-spacing:40.006400pt;}
._1_c00218{width:1.062400pt;}
._0_c00218{width:166.716160pt;}
.fs0_c00218{font-size:64.000000pt;}
.fs1_c00218{font-size:74.560000pt;}
.y0_c00218{bottom:0.000000pt;}
.y2_c00218{bottom:41.627067pt;}
.y1_c00218{bottom:60.027067pt;}
.y22_c00218{bottom:122.667067pt;}
.y21_c00218{bottom:141.067067pt;}
.y20_c00218{bottom:159.467067pt;}
.y1f_c00218{bottom:203.067067pt;}
.y1e_c00218{bottom:230.667067pt;}
.y1d_c00218{bottom:258.267067pt;}
.y1c_c00218{bottom:301.867067pt;}
.y1b_c00218{bottom:329.467067pt;}
.y1a_c00218{bottom:357.067067pt;}
.y19_c00218{bottom:384.667067pt;}
.y18_c00218{bottom:412.267067pt;}
.y17_c00218{bottom:439.867067pt;}
.y16_c00218{bottom:483.467067pt;}
.y15_c00218{bottom:511.067067pt;}
.y14_c00218{bottom:538.667067pt;}
.y13_c00218{bottom:566.267067pt;}
.y12_c00218{bottom:600.667067pt;}
.y11_c00218{bottom:626.987067pt;}
.y10_c00218{bottom:645.387067pt;}
.yf_c00218{bottom:663.787067pt;}
.ye_c00218{bottom:682.187067pt;}
.yd_c00218{bottom:700.587067pt;}
.yc_c00218{bottom:718.987067pt;}
.yb_c00218{bottom:737.387067pt;}
.ya_c00218{bottom:755.787067pt;}
.y9_c00218{bottom:774.187067pt;}
.y8_c00218{bottom:817.787067pt;}
.y7_c00218{bottom:845.387067pt;}
.y6_c00218{bottom:872.987067pt;}
.y5_c00218{bottom:916.587067pt;}
.y4_c00218{bottom:951.471067pt;}
.y3_c00218{bottom:972.907067pt;}
.h1_c00218{height:56.156250pt;}
.h3_c00218{height:57.375000pt;}
.h4_c00218{height:66.750000pt;}
.h2_c00218{height:77.763750pt;}
.h0_c00218{height:1122.666667pt;}
.w1_c00218{width:793.333333pt;}
.w0_c00218{width:793.626667pt;}
.x0_c00218{left:0.000000pt;}
.x2_c00218{left:151.200000pt;}
.x5_c00218{left:170.160000pt;}
.x3_c00218{left:199.200000pt;}
.x4_c00218{left:232.807920pt;}
.x1_c00218{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_94172922a23c0c9e414de577.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.093262;font-style:normal;font-weight:normal;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_343c3295005bb61e432f3a30.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.106934;font-style:normal;font-weight:normal;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_03384a699ce1d237992bd2bc.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsb_c00219{letter-spacing:-0.072000px;}
.lsa_c00219{letter-spacing:-0.064800px;}
.ls3_c00219{letter-spacing:-0.057600px;}
.ls5_c00219{letter-spacing:-0.050400px;}
.ls9_c00219{letter-spacing:-0.043200px;}
.ls4_c00219{letter-spacing:-0.036000px;}
.ls8_c00219{letter-spacing:-0.028800px;}
.ls7_c00219{letter-spacing:-0.021600px;}
.ls2_c00219{letter-spacing:-0.014400px;}
.ls6_c00219{letter-spacing:-0.007200px;}
.ls1_c00219{letter-spacing:0.000000px;}
.lsc_c00219{letter-spacing:0.007200px;}
.ls0_c00219{letter-spacing:0.050400px;}
.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;}
}
.ws1e_c00219{word-spacing:-4.507200px;}
.ws15_c00219{word-spacing:-2.764800px;}
.ws14_c00219{word-spacing:-2.534400px;}
.ws3_c00219{word-spacing:-1.987200px;}
.ws4_c00219{word-spacing:-1.965600px;}
.ws2d_c00219{word-spacing:-1.929600px;}
.ws19_c00219{word-spacing:-1.281600px;}
.ws1a_c00219{word-spacing:-1.260000px;}
.ws20_c00219{word-spacing:-0.612000px;}
.ws21_c00219{word-spacing:-0.525600px;}
.ws2a_c00219{word-spacing:-0.511200px;}
.ws0_c00219{word-spacing:0.000000px;}
.ws2e_c00219{word-spacing:0.151200px;}
.ws9_c00219{word-spacing:0.165600px;}
.ws11_c00219{word-spacing:0.172800px;}
.wsa_c00219{word-spacing:0.180000px;}
.ws13_c00219{word-spacing:0.223200px;}
.wsf_c00219{word-spacing:4.485600px;}
.ws10_c00219{word-spacing:4.586400px;}
.wsc_c00219{word-spacing:5.565600px;}
.wsd_c00219{word-spacing:5.673600px;}
.ws8_c00219{word-spacing:6.688800px;}
.wse_c00219{word-spacing:7.754400px;}
.ws1f_c00219{word-spacing:9.223200px;}
.ws1d_c00219{word-spacing:10.267200px;}
.ws2b_c00219{word-spacing:11.685600px;}
.ws2c_c00219{word-spacing:11.786400px;}
.ws29_c00219{word-spacing:12.787200px;}
.ws28_c00219{word-spacing:12.794400px;}
.ws12_c00219{word-spacing:12.801600px;}
.ws26_c00219{word-spacing:13.788000px;}
.ws27_c00219{word-spacing:13.888800px;}
.ws18_c00219{word-spacing:19.188000px;}
.ws17_c00219{word-spacing:19.252800px;}
.ws16_c00219{word-spacing:19.310400px;}
.ws23_c00219{word-spacing:21.427200px;}
.ws22_c00219{word-spacing:21.448800px;}
.wsb_c00219{word-spacing:26.870400px;}
.ws5_c00219{word-spacing:28.958400px;}
.ws7_c00219{word-spacing:28.972800px;}
.ws6_c00219{word-spacing:29.354400px;}
.ws24_c00219{word-spacing:30.434400px;}
.ws25_c00219{word-spacing:30.448800px;}
.ws1b_c00219{word-spacing:38.692800px;}
.ws1c_c00219{word-spacing:38.700000px;}
.ws1_c00219{word-spacing:46.252800px;}
.ws2_c00219{word-spacing:46.296000px;}
._2_c00219{margin-left:-38.160000px;}
._1_c00219{margin-left:-3.549600px;}
._0_c00219{width:1.008000px;}
.fc0_c00219{color:rgb(0,0,0);}
.fs0_c00219{font-size:72.000000px;}
.y0_c00219{bottom:0.000000px;}
.y2_c00219{bottom:46.830450px;}
.y1_c00219{bottom:67.530450px;}
.y20_c00219{bottom:196.230450px;}
.y1f_c00219{bottom:227.280450px;}
.y1e_c00219{bottom:258.330450px;}
.y1d_c00219{bottom:289.380450px;}
.y1c_c00219{bottom:320.430450px;}
.y1b_c00219{bottom:351.390450px;}
.y1a_c00219{bottom:382.440450px;}
.y19_c00219{bottom:413.490450px;}
.y18_c00219{bottom:444.540450px;}
.y17_c00219{bottom:475.590450px;}
.y16_c00219{bottom:506.640450px;}
.y15_c00219{bottom:537.690450px;}
.y14_c00219{bottom:568.740450px;}
.y13_c00219{bottom:599.790450px;}
.y12_c00219{bottom:630.840450px;}
.y11_c00219{bottom:661.890450px;}
.y10_c00219{bottom:710.940450px;}
.yf_c00219{bottom:741.990450px;}
.ye_c00219{bottom:791.040450px;}
.yd_c00219{bottom:822.090450px;}
.yc_c00219{bottom:853.140450px;}
.yb_c00219{bottom:884.190450px;}
.ya_c00219{bottom:915.240450px;}
.y9_c00219{bottom:946.290450px;}
.y8_c00219{bottom:984.990450px;}
.y7_c00219{bottom:1014.690450px;}
.y6_c00219{bottom:1035.390450px;}
.y5_c00219{bottom:1056.090450px;}
.y4_c00219{bottom:1076.790450px;}
.y3_c00219{bottom:1097.490450px;}
.h1_c00219{height:63.175781px;}
.h2_c00219{height:64.546875px;}
.h3_c00219{height:75.093750px;}
.h0_c00219{height:1263.000000px;}
.w1_c00219{width:892.500000px;}
.w0_c00219{width:892.830000px;}
.x0_c00219{left:0.000000px;}
.x2_c00219{left:127.620000px;}
.x3_c00219{left:148.950000px;}
.x1_c00219{left:695.880000px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.lsb_c00219{letter-spacing:-0.064000pt;}
.lsa_c00219{letter-spacing:-0.057600pt;}
.ls3_c00219{letter-spacing:-0.051200pt;}
.ls5_c00219{letter-spacing:-0.044800pt;}
.ls9_c00219{letter-spacing:-0.038400pt;}
.ls4_c00219{letter-spacing:-0.032000pt;}
.ls8_c00219{letter-spacing:-0.025600pt;}
.ls7_c00219{letter-spacing:-0.019200pt;}
.ls2_c00219{letter-spacing:-0.012800pt;}
.ls6_c00219{letter-spacing:-0.006400pt;}
.ls1_c00219{letter-spacing:0.000000pt;}
.lsc_c00219{letter-spacing:0.006400pt;}
.ls0_c00219{letter-spacing:0.044800pt;}
.ws1e_c00219{word-spacing:-4.006400pt;}
.ws15_c00219{word-spacing:-2.457600pt;}
.ws14_c00219{word-spacing:-2.252800pt;}
.ws3_c00219{word-spacing:-1.766400pt;}
.ws4_c00219{word-spacing:-1.747200pt;}
.ws2d_c00219{word-spacing:-1.715200pt;}
.ws19_c00219{word-spacing:-1.139200pt;}
.ws1a_c00219{word-spacing:-1.120000pt;}
.ws20_c00219{word-spacing:-0.544000pt;}
.ws21_c00219{word-spacing:-0.467200pt;}
.ws2a_c00219{word-spacing:-0.454400pt;}
.ws0_c00219{word-spacing:0.000000pt;}
.ws2e_c00219{word-spacing:0.134400pt;}
.ws9_c00219{word-spacing:0.147200pt;}
.ws11_c00219{word-spacing:0.153600pt;}
.wsa_c00219{word-spacing:0.160000pt;}
.ws13_c00219{word-spacing:0.198400pt;}
.wsf_c00219{word-spacing:3.987200pt;}
.ws10_c00219{word-spacing:4.076800pt;}
.wsc_c00219{word-spacing:4.947200pt;}
.wsd_c00219{word-spacing:5.043200pt;}
.ws8_c00219{word-spacing:5.945600pt;}
.wse_c00219{word-spacing:6.892800pt;}
.ws1f_c00219{word-spacing:8.198400pt;}
.ws1d_c00219{word-spacing:9.126400pt;}
.ws2b_c00219{word-spacing:10.387200pt;}
.ws2c_c00219{word-spacing:10.476800pt;}
.ws29_c00219{word-spacing:11.366400pt;}
.ws28_c00219{word-spacing:11.372800pt;}
.ws12_c00219{word-spacing:11.379200pt;}
.ws26_c00219{word-spacing:12.256000pt;}
.ws27_c00219{word-spacing:12.345600pt;}
.ws18_c00219{word-spacing:17.056000pt;}
.ws17_c00219{word-spacing:17.113600pt;}
.ws16_c00219{word-spacing:17.164800pt;}
.ws23_c00219{word-spacing:19.046400pt;}
.ws22_c00219{word-spacing:19.065600pt;}
.wsb_c00219{word-spacing:23.884800pt;}
.ws5_c00219{word-spacing:25.740800pt;}
.ws7_c00219{word-spacing:25.753600pt;}
.ws6_c00219{word-spacing:26.092800pt;}
.ws24_c00219{word-spacing:27.052800pt;}
.ws25_c00219{word-spacing:27.065600pt;}
.ws1b_c00219{word-spacing:34.393600pt;}
.ws1c_c00219{word-spacing:34.400000pt;}
.ws1_c00219{word-spacing:41.113600pt;}
.ws2_c00219{word-spacing:41.152000pt;}
._2_c00219{margin-left:-33.920000pt;}
._1_c00219{margin-left:-3.155200pt;}
._0_c00219{width:0.896000pt;}
.fs0_c00219{font-size:64.000000pt;}
.y0_c00219{bottom:0.000000pt;}
.y2_c00219{bottom:41.627067pt;}
.y1_c00219{bottom:60.027067pt;}
.y20_c00219{bottom:174.427067pt;}
.y1f_c00219{bottom:202.027067pt;}
.y1e_c00219{bottom:229.627067pt;}
.y1d_c00219{bottom:257.227067pt;}
.y1c_c00219{bottom:284.827067pt;}
.y1b_c00219{bottom:312.347067pt;}
.y1a_c00219{bottom:339.947067pt;}
.y19_c00219{bottom:367.547067pt;}
.y18_c00219{bottom:395.147067pt;}
.y17_c00219{bottom:422.747067pt;}
.y16_c00219{bottom:450.347067pt;}
.y15_c00219{bottom:477.947067pt;}
.y14_c00219{bottom:505.547067pt;}
.y13_c00219{bottom:533.147067pt;}
.y12_c00219{bottom:560.747067pt;}
.y11_c00219{bottom:588.347067pt;}
.y10_c00219{bottom:631.947067pt;}
.yf_c00219{bottom:659.547067pt;}
.ye_c00219{bottom:703.147067pt;}
.yd_c00219{bottom:730.747067pt;}
.yc_c00219{bottom:758.347067pt;}
.yb_c00219{bottom:785.947067pt;}
.ya_c00219{bottom:813.547067pt;}
.y9_c00219{bottom:841.147067pt;}
.y8_c00219{bottom:875.547067pt;}
.y7_c00219{bottom:901.947067pt;}
.y6_c00219{bottom:920.347067pt;}
.y5_c00219{bottom:938.747067pt;}
.y4_c00219{bottom:957.147067pt;}
.y3_c00219{bottom:975.547067pt;}
.h1_c00219{height:56.156250pt;}
.h2_c00219{height:57.375000pt;}
.h3_c00219{height:66.750000pt;}
.h0_c00219{height:1122.666667pt;}
.w1_c00219{width:793.333333pt;}
.w0_c00219{width:793.626667pt;}
.x0_c00219{left:0.000000pt;}
.x2_c00219{left:113.440000pt;}
.x3_c00219{left:132.400000pt;}
.x1_c00219{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4f549f30217a07fa2078b6ad.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.093262;font-style:normal;font-weight:normal;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_0fa4b309c756ba13c2fbcf39.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.106934;font-style:normal;font-weight:normal;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_8656402004d71d16af01ff9e.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00220{letter-spacing:-0.064800px;}
.ls7_c00220{letter-spacing:-0.057600px;}
.ls6_c00220{letter-spacing:-0.050400px;}
.ls5_c00220{letter-spacing:-0.043200px;}
.ls1_c00220{letter-spacing:-0.036000px;}
.ls4_c00220{letter-spacing:-0.028800px;}
.ls2_c00220{letter-spacing:-0.014400px;}
.ls0_c00220{letter-spacing:0.000000px;}
.ls8_c00220{letter-spacing:843.998400px;}
.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;}
}
.wsf_c00220{word-spacing:-3.412800px;}
.wse_c00220{word-spacing:-3.405600px;}
.wsd_c00220{word-spacing:-3.384000px;}
.ws0_c00220{word-spacing:0.000000px;}
.ws10_c00220{word-spacing:0.180000px;}
.ws9_c00220{word-spacing:0.187200px;}
.wsb_c00220{word-spacing:7.380000px;}
.wsc_c00220{word-spacing:7.408800px;}
.ws12_c00220{word-spacing:11.714400px;}
.ws11_c00220{word-spacing:11.721600px;}
.ws13_c00220{word-spacing:11.844000px;}
.ws4_c00220{word-spacing:20.347200px;}
.ws18_c00220{word-spacing:26.107200px;}
.ws17_c00220{word-spacing:26.121600px;}
.ws14_c00220{word-spacing:30.801600px;}
.ws15_c00220{word-spacing:31.881600px;}
.ws16_c00220{word-spacing:31.896000px;}
.ws7_c00220{word-spacing:38.707200px;}
.ws8_c00220{word-spacing:38.721600px;}
.ws1_c00220{word-spacing:39.722400px;}
.ws3_c00220{word-spacing:39.772800px;}
.ws2_c00220{word-spacing:39.794400px;}
.wsa_c00220{word-spacing:60.660000px;}
.ws6_c00220{word-spacing:69.588000px;}
.ws5_c00220{word-spacing:69.667200px;}
._0_c00220{width:1.310400px;}
.fc0_c00220{color:rgb(0,0,0);}
.fs0_c00220{font-size:72.000000px;}
.y0_c00220{bottom:0.000000px;}
.y2_c00220{bottom:46.830450px;}
.y1_c00220{bottom:67.530450px;}
.y12_c00220{bottom:620.490450px;}
.y11_c00220{bottom:669.540450px;}
.y10_c00220{bottom:700.590450px;}
.yf_c00220{bottom:731.640450px;}
.ye_c00220{bottom:762.690450px;}
.yd_c00220{bottom:793.740450px;}
.yc_c00220{bottom:832.440450px;}
.yb_c00220{bottom:862.140450px;}
.ya_c00220{bottom:882.840450px;}
.y9_c00220{bottom:903.540450px;}
.y8_c00220{bottom:924.240450px;}
.y7_c00220{bottom:973.290450px;}
.y6_c00220{bottom:1004.340450px;}
.y5_c00220{bottom:1035.390450px;}
.y4_c00220{bottom:1066.440450px;}
.y3_c00220{bottom:1097.490450px;}
.h1_c00220{height:63.175781px;}
.h3_c00220{height:64.546875px;}
.h2_c00220{height:75.093750px;}
.h0_c00220{height:1263.000000px;}
.w1_c00220{width:892.500000px;}
.w0_c00220{width:892.830000px;}
.x0_c00220{left:0.000000px;}
.x2_c00220{left:170.100000px;}
.x3_c00220{left:191.430000px;}
.x1_c00220{left:738.360000px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls3_c00220{letter-spacing:-0.057600pt;}
.ls7_c00220{letter-spacing:-0.051200pt;}
.ls6_c00220{letter-spacing:-0.044800pt;}
.ls5_c00220{letter-spacing:-0.038400pt;}
.ls1_c00220{letter-spacing:-0.032000pt;}
.ls4_c00220{letter-spacing:-0.025600pt;}
.ls2_c00220{letter-spacing:-0.012800pt;}
.ls0_c00220{letter-spacing:0.000000pt;}
.ls8_c00220{letter-spacing:750.220800pt;}
.wsf_c00220{word-spacing:-3.033600pt;}
.wse_c00220{word-spacing:-3.027200pt;}
.wsd_c00220{word-spacing:-3.008000pt;}
.ws0_c00220{word-spacing:0.000000pt;}
.ws10_c00220{word-spacing:0.160000pt;}
.ws9_c00220{word-spacing:0.166400pt;}
.wsb_c00220{word-spacing:6.560000pt;}
.wsc_c00220{word-spacing:6.585600pt;}
.ws12_c00220{word-spacing:10.412800pt;}
.ws11_c00220{word-spacing:10.419200pt;}
.ws13_c00220{word-spacing:10.528000pt;}
.ws4_c00220{word-spacing:18.086400pt;}
.ws18_c00220{word-spacing:23.206400pt;}
.ws17_c00220{word-spacing:23.219200pt;}
.ws14_c00220{word-spacing:27.379200pt;}
.ws15_c00220{word-spacing:28.339200pt;}
.ws16_c00220{word-spacing:28.352000pt;}
.ws7_c00220{word-spacing:34.406400pt;}
.ws8_c00220{word-spacing:34.419200pt;}
.ws1_c00220{word-spacing:35.308800pt;}
.ws3_c00220{word-spacing:35.353600pt;}
.ws2_c00220{word-spacing:35.372800pt;}
.wsa_c00220{word-spacing:53.920000pt;}
.ws6_c00220{word-spacing:61.856000pt;}
.ws5_c00220{word-spacing:61.926400pt;}
._0_c00220{width:1.164800pt;}
.fs0_c00220{font-size:64.000000pt;}
.y0_c00220{bottom:0.000000pt;}
.y2_c00220{bottom:41.627067pt;}
.y1_c00220{bottom:60.027067pt;}
.y12_c00220{bottom:551.547067pt;}
.y11_c00220{bottom:595.147067pt;}
.y10_c00220{bottom:622.747067pt;}
.yf_c00220{bottom:650.347067pt;}
.ye_c00220{bottom:677.947067pt;}
.yd_c00220{bottom:705.547067pt;}
.yc_c00220{bottom:739.947067pt;}
.yb_c00220{bottom:766.347067pt;}
.ya_c00220{bottom:784.747067pt;}
.y9_c00220{bottom:803.147067pt;}
.y8_c00220{bottom:821.547067pt;}
.y7_c00220{bottom:865.147067pt;}
.y6_c00220{bottom:892.747067pt;}
.y5_c00220{bottom:920.347067pt;}
.y4_c00220{bottom:947.947067pt;}
.y3_c00220{bottom:975.547067pt;}
.h1_c00220{height:56.156250pt;}
.h3_c00220{height:57.375000pt;}
.h2_c00220{height:66.750000pt;}
.h0_c00220{height:1122.666667pt;}
.w1_c00220{width:793.333333pt;}
.w0_c00220{width:793.626667pt;}
.x0_c00220{left:0.000000pt;}
.x2_c00220{left:151.200000pt;}
.x3_c00220{left:170.160000pt;}
.x1_c00220{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_87903035bc1cebabbc88be72.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.106934;font-style: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;}
.ls0_c00221{letter-spacing:0.000000px;}
.ls1_c00221{letter-spacing:843.998400px;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00221{word-spacing:0.000000px;}
.fc0_c00221{color:rgb(0,0,0);}
.fs0_c00221{font-size:72.000000px;}
.y0_c00221{bottom:0.000000px;}
.y2_c00221{bottom:46.830450px;}
.y1_c00221{bottom:67.530450px;}
.y4_c00221{bottom:1048.440450px;}
.y3_c00221{bottom:1097.490450px;}
.h1_c00221{height:63.175781px;}
.h2_c00221{height:64.546875px;}
.h0_c00221{height:1263.000000px;}
.w1_c00221{width:892.500000px;}
.w0_c00221{width:892.830000px;}
.x0_c00221{left:0.000000px;}
.x2_c00221{left:127.620000px;}
.x1_c00221{left:695.880000px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls0_c00221{letter-spacing:0.000000pt;}
.ls1_c00221{letter-spacing:750.220800pt;}
.ws0_c00221{word-spacing:0.000000pt;}
.fs0_c00221{font-size:64.000000pt;}
.y0_c00221{bottom:0.000000pt;}
.y2_c00221{bottom:41.627067pt;}
.y1_c00221{bottom:60.027067pt;}
.y4_c00221{bottom:931.947067pt;}
.y3_c00221{bottom:975.547067pt;}
.h1_c00221{height:56.156250pt;}
.h2_c00221{height:57.375000pt;}
.h0_c00221{height:1122.666667pt;}
.w1_c00221{width:793.333333pt;}
.w0_c00221{width:793.626667pt;}
.x0_c00221{left:0.000000pt;}
.x2_c00221{left:113.440000pt;}
.x1_c00221{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_188ccaace393374d76db8f96.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.093262;font-style:normal;font-weight:normal;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_291890e841fce7996d416da9.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00222;src:url('chunks/assets/font_4c7d95fab20e55e09dc83cea.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00222{vertical-align:0.000000px;}
.lsc_c00222{letter-spacing:-0.064800px;}
.lsb_c00222{letter-spacing:-0.057600px;}
.lsa_c00222{letter-spacing:-0.050400px;}
.ls8_c00222{letter-spacing:-0.043200px;}
.ls4_c00222{letter-spacing:-0.036000px;}
.ls3_c00222{letter-spacing:-0.028800px;}
.ls7_c00222{letter-spacing:-0.021600px;}
.ls5_c00222{letter-spacing:-0.014400px;}
.ls6_c00222{letter-spacing:-0.007200px;}
.ls1_c00222{letter-spacing:0.000000px;}
.ls2_c00222{letter-spacing:0.016776px;}
.ls9_c00222{letter-spacing:0.028800px;}
.lse_c00222{letter-spacing:0.036000px;}
.lsd_c00222{letter-spacing:0.057600px;}
.ls0_c00222{letter-spacing:0.058716px;}
.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;}
}
.ws1a_c00222{word-spacing:-3.801600px;}
.ws19_c00222{word-spacing:-3.765600px;}
.ws2d_c00222{word-spacing:-3.391200px;}
.ws1f_c00222{word-spacing:-2.707200px;}
.ws20_c00222{word-spacing:-2.678400px;}
.ws2c_c00222{word-spacing:-1.245600px;}
.ws14_c00222{word-spacing:-0.547200px;}
.ws13_c00222{word-spacing:-0.540000px;}
.ws1e_c00222{word-spacing:-0.518400px;}
.ws1d_c00222{word-spacing:-0.496800px;}
.ws24_c00222{word-spacing:-0.144000px;}
.ws25_c00222{word-spacing:-0.136800px;}
.ws2_c00222{word-spacing:-0.100656px;}
.ws0_c00222{word-spacing:0.000000px;}
.ws2b_c00222{word-spacing:0.028800px;}
.ws29_c00222{word-spacing:0.122400px;}
.ws7_c00222{word-spacing:0.165600px;}
.ws15_c00222{word-spacing:0.172800px;}
.ws2a_c00222{word-spacing:0.194400px;}
.ws28_c00222{word-spacing:0.331200px;}
.wsd_c00222{word-spacing:1.576800px;}
.wse_c00222{word-spacing:1.627200px;}
.ws22_c00222{word-spacing:2.700000px;}
.ws8_c00222{word-spacing:5.220000px;}
.ws1b_c00222{word-spacing:5.234400px;}
.ws9_c00222{word-spacing:5.313600px;}
.ws1c_c00222{word-spacing:5.320800px;}
.ws2e_c00222{word-spacing:7.041600px;}
.ws2f_c00222{word-spacing:7.063200px;}
.wsc_c00222{word-spacing:7.380000px;}
.ws23_c00222{word-spacing:7.401600px;}
.wsb_c00222{word-spacing:7.459200px;}
.ws12_c00222{word-spacing:16.020000px;}
.ws11_c00222{word-spacing:16.048800px;}
.ws16_c00222{word-spacing:17.467200px;}
.ws10_c00222{word-spacing:18.194400px;}
.wsf_c00222{word-spacing:18.252000px;}
.wsa_c00222{word-spacing:18.554400px;}
.ws18_c00222{word-spacing:22.413600px;}
.ws17_c00222{word-spacing:22.521600px;}
.ws4_c00222{word-spacing:32.580000px;}
.ws5_c00222{word-spacing:32.594400px;}
.ws21_c00222{word-spacing:33.998400px;}
.ws3_c00222{word-spacing:35.827200px;}
.ws27_c00222{word-spacing:39.067200px;}
.ws26_c00222{word-spacing:39.132000px;}
.ws6_c00222{word-spacing:60.652800px;}
.ws1_c00222{word-spacing:187.597620px;}
._0_c00222{margin-left:-187.555680px;}
._2_c00222{margin-left:-17.280000px;}
._1_c00222{width:1.440000px;}
.fc0_c00222{color:rgb(0,0,0);}
.fs0_c00222{font-size:72.000000px;}
.fs1_c00222{font-size:83.880000px;}
.y0_c00222{bottom:0.000000px;}
.y2_c00222{bottom:46.830450px;}
.y1_c00222{bottom:67.530450px;}
.y22_c00222{bottom:150.420450px;}
.y21_c00222{bottom:171.120450px;}
.y20_c00222{bottom:191.820450px;}
.y1f_c00222{bottom:212.520450px;}
.y1e_c00222{bottom:261.570450px;}
.y1d_c00222{bottom:292.620450px;}
.y1c_c00222{bottom:323.670450px;}
.y1b_c00222{bottom:362.370450px;}
.y1a_c00222{bottom:383.070450px;}
.y19_c00222{bottom:403.770450px;}
.y18_c00222{bottom:424.470450px;}
.y17_c00222{bottom:445.170450px;}
.y16_c00222{bottom:465.870450px;}
.y15_c00222{bottom:486.570450px;}
.y14_c00222{bottom:507.270450px;}
.y13_c00222{bottom:527.970450px;}
.y12_c00222{bottom:548.670450px;}
.y11_c00222{bottom:597.720450px;}
.y10_c00222{bottom:628.770450px;}
.yf_c00222{bottom:659.820450px;}
.ye_c00222{bottom:690.870450px;}
.yd_c00222{bottom:721.920450px;}
.yc_c00222{bottom:770.970450px;}
.yb_c00222{bottom:802.020450px;}
.ya_c00222{bottom:833.070450px;}
.y9_c00222{bottom:864.120450px;}
.y8_c00222{bottom:913.170450px;}
.y7_c00222{bottom:944.220450px;}
.y6_c00222{bottom:975.270450px;}
.y5_c00222{bottom:1006.320450px;}
.y4_c00222{bottom:1055.370450px;}
.y3_c00222{bottom:1094.520450px;}
.h1_c00222{height:63.175781px;}
.h3_c00222{height:64.546875px;}
.h2_c00222{height:87.484219px;}
.h0_c00222{height:1263.000000px;}
.w1_c00222{width:892.500000px;}
.w0_c00222{width:892.830000px;}
.x0_c00222{left:0.000000px;}
.x2_c00222{left:170.100000px;}
.x4_c00222{left:191.430000px;}
.x3_c00222{left:224.100000px;}
.x1_c00222{left:738.360000px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.lsc_c00222{letter-spacing:-0.057600pt;}
.lsb_c00222{letter-spacing:-0.051200pt;}
.lsa_c00222{letter-spacing:-0.044800pt;}
.ls8_c00222{letter-spacing:-0.038400pt;}
.ls4_c00222{letter-spacing:-0.032000pt;}
.ls3_c00222{letter-spacing:-0.025600pt;}
.ls7_c00222{letter-spacing:-0.019200pt;}
.ls5_c00222{letter-spacing:-0.012800pt;}
.ls6_c00222{letter-spacing:-0.006400pt;}
.ls1_c00222{letter-spacing:0.000000pt;}
.ls2_c00222{letter-spacing:0.014912pt;}
.ls9_c00222{letter-spacing:0.025600pt;}
.lse_c00222{letter-spacing:0.032000pt;}
.lsd_c00222{letter-spacing:0.051200pt;}
.ls0_c00222{letter-spacing:0.052192pt;}
.ws1a_c00222{word-spacing:-3.379200pt;}
.ws19_c00222{word-spacing:-3.347200pt;}
.ws2d_c00222{word-spacing:-3.014400pt;}
.ws1f_c00222{word-spacing:-2.406400pt;}
.ws20_c00222{word-spacing:-2.380800pt;}
.ws2c_c00222{word-spacing:-1.107200pt;}
.ws14_c00222{word-spacing:-0.486400pt;}
.ws13_c00222{word-spacing:-0.480000pt;}
.ws1e_c00222{word-spacing:-0.460800pt;}
.ws1d_c00222{word-spacing:-0.441600pt;}
.ws24_c00222{word-spacing:-0.128000pt;}
.ws25_c00222{word-spacing:-0.121600pt;}
.ws2_c00222{word-spacing:-0.089472pt;}
.ws0_c00222{word-spacing:0.000000pt;}
.ws2b_c00222{word-spacing:0.025600pt;}
.ws29_c00222{word-spacing:0.108800pt;}
.ws7_c00222{word-spacing:0.147200pt;}
.ws15_c00222{word-spacing:0.153600pt;}
.ws2a_c00222{word-spacing:0.172800pt;}
.ws28_c00222{word-spacing:0.294400pt;}
.wsd_c00222{word-spacing:1.401600pt;}
.wse_c00222{word-spacing:1.446400pt;}
.ws22_c00222{word-spacing:2.400000pt;}
.ws8_c00222{word-spacing:4.640000pt;}
.ws1b_c00222{word-spacing:4.652800pt;}
.ws9_c00222{word-spacing:4.723200pt;}
.ws1c_c00222{word-spacing:4.729600pt;}
.ws2e_c00222{word-spacing:6.259200pt;}
.ws2f_c00222{word-spacing:6.278400pt;}
.wsc_c00222{word-spacing:6.560000pt;}
.ws23_c00222{word-spacing:6.579200pt;}
.wsb_c00222{word-spacing:6.630400pt;}
.ws12_c00222{word-spacing:14.240000pt;}
.ws11_c00222{word-spacing:14.265600pt;}
.ws16_c00222{word-spacing:15.526400pt;}
.ws10_c00222{word-spacing:16.172800pt;}
.wsf_c00222{word-spacing:16.224000pt;}
.wsa_c00222{word-spacing:16.492800pt;}
.ws18_c00222{word-spacing:19.923200pt;}
.ws17_c00222{word-spacing:20.019200pt;}
.ws4_c00222{word-spacing:28.960000pt;}
.ws5_c00222{word-spacing:28.972800pt;}
.ws21_c00222{word-spacing:30.220800pt;}
.ws3_c00222{word-spacing:31.846400pt;}
.ws27_c00222{word-spacing:34.726400pt;}
.ws26_c00222{word-spacing:34.784000pt;}
.ws6_c00222{word-spacing:53.913600pt;}
.ws1_c00222{word-spacing:166.753440pt;}
._0_c00222{margin-left:-166.716160pt;}
._2_c00222{margin-left:-15.360000pt;}
._1_c00222{width:1.280000pt;}
.fs0_c00222{font-size:64.000000pt;}
.fs1_c00222{font-size:74.560000pt;}
.y0_c00222{bottom:0.000000pt;}
.y2_c00222{bottom:41.627067pt;}
.y1_c00222{bottom:60.027067pt;}
.y22_c00222{bottom:133.707067pt;}
.y21_c00222{bottom:152.107067pt;}
.y20_c00222{bottom:170.507067pt;}
.y1f_c00222{bottom:188.907067pt;}
.y1e_c00222{bottom:232.507067pt;}
.y1d_c00222{bottom:260.107067pt;}
.y1c_c00222{bottom:287.707067pt;}
.y1b_c00222{bottom:322.107067pt;}
.y1a_c00222{bottom:340.507067pt;}
.y19_c00222{bottom:358.907067pt;}
.y18_c00222{bottom:377.307067pt;}
.y17_c00222{bottom:395.707067pt;}
.y16_c00222{bottom:414.107067pt;}
.y15_c00222{bottom:432.507067pt;}
.y14_c00222{bottom:450.907067pt;}
.y13_c00222{bottom:469.307067pt;}
.y12_c00222{bottom:487.707067pt;}
.y11_c00222{bottom:531.307067pt;}
.y10_c00222{bottom:558.907067pt;}
.yf_c00222{bottom:586.507067pt;}
.ye_c00222{bottom:614.107067pt;}
.yd_c00222{bottom:641.707067pt;}
.yc_c00222{bottom:685.307067pt;}
.yb_c00222{bottom:712.907067pt;}
.ya_c00222{bottom:740.507067pt;}
.y9_c00222{bottom:768.107067pt;}
.y8_c00222{bottom:811.707067pt;}
.y7_c00222{bottom:839.307067pt;}
.y6_c00222{bottom:866.907067pt;}
.y5_c00222{bottom:894.507067pt;}
.y4_c00222{bottom:938.107067pt;}
.y3_c00222{bottom:972.907067pt;}
.h1_c00222{height:56.156250pt;}
.h3_c00222{height:57.375000pt;}
.h2_c00222{height:77.763750pt;}
.h0_c00222{height:1122.666667pt;}
.w1_c00222{width:793.333333pt;}
.w0_c00222{width:793.626667pt;}
.x0_c00222{left:0.000000pt;}
.x2_c00222{left:151.200000pt;}
.x4_c00222{left:170.160000pt;}
.x3_c00222{left:199.200000pt;}
.x1_c00222{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a01e766aac10d2b2ee8daadd.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.093262;font-style:normal;font-weight:normal;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_1502bf529f0f393c468728c4.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.106934;font-style:normal;font-weight:normal;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_1e18927d49b1191063d3aa63.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsd_c00223{letter-spacing:-0.115200px;}
.lsb_c00223{letter-spacing:-0.100800px;}
.lsc_c00223{letter-spacing:-0.093600px;}
.ls10_c00223{letter-spacing:-0.086400px;}
.lsf_c00223{letter-spacing:-0.072000px;}
.ls9_c00223{letter-spacing:-0.064800px;}
.ls4_c00223{letter-spacing:-0.057600px;}
.ls3_c00223{letter-spacing:-0.050400px;}
.ls6_c00223{letter-spacing:-0.043200px;}
.lse_c00223{letter-spacing:-0.036000px;}
.ls8_c00223{letter-spacing:-0.028800px;}
.ls5_c00223{letter-spacing:-0.021600px;}
.lsa_c00223{letter-spacing:-0.014400px;}
.ls7_c00223{letter-spacing:-0.007200px;}
.ls2_c00223{letter-spacing:0.000000px;}
.ls0_c00223{letter-spacing:0.007200px;}
.ls1_c00223{letter-spacing:0.057600px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00223{word-spacing:-20.001600px;}
.ws2_c00223{word-spacing:-19.929600px;}
.ws1_c00223{word-spacing:-19.900800px;}
.ws4_c00223{word-spacing:-4.168800px;}
.ws5_c00223{word-spacing:-4.104000px;}
.ws2e_c00223{word-spacing:-3.052800px;}
.wsf_c00223{word-spacing:-0.921600px;}
.wse_c00223{word-spacing:-0.604800px;}
.ws3_c00223{word-spacing:0.000000px;}
.ws14_c00223{word-spacing:0.064800px;}
.ws1b_c00223{word-spacing:0.144000px;}
.ws15_c00223{word-spacing:0.158400px;}
.wsb_c00223{word-spacing:0.172800px;}
.ws13_c00223{word-spacing:0.180000px;}
.ws20_c00223{word-spacing:1.864800px;}
.ws21_c00223{word-spacing:2.023200px;}
.ws2c_c00223{word-spacing:2.671200px;}
.ws2d_c00223{word-spacing:2.721600px;}
.ws2b_c00223{word-spacing:2.764800px;}
.ws34_c00223{word-spacing:3.038400px;}
.ws27_c00223{word-spacing:3.348000px;}
.ws2a_c00223{word-spacing:3.405600px;}
.ws2f_c00223{word-spacing:3.427200px;}
.ws35_c00223{word-spacing:3.441600px;}
.ws26_c00223{word-spacing:3.484800px;}
.ws30_c00223{word-spacing:3.549600px;}
.ws17_c00223{word-spacing:3.751200px;}
.ws29_c00223{word-spacing:3.765600px;}
.ws16_c00223{word-spacing:3.772800px;}
.ws10_c00223{word-spacing:3.801600px;}
.ws18_c00223{word-spacing:5.572800px;}
.ws9_c00223{word-spacing:6.667200px;}
.wsa_c00223{word-spacing:6.703200px;}
.ws19_c00223{word-spacing:11.707200px;}
.wsc_c00223{word-spacing:13.831200px;}
.wsd_c00223{word-spacing:13.881600px;}
.ws6_c00223{word-spacing:17.460000px;}
.ws1a_c00223{word-spacing:18.187200px;}
.ws8_c00223{word-spacing:19.245600px;}
.ws7_c00223{word-spacing:19.281600px;}
.ws28_c00223{word-spacing:19.958400px;}
.ws1c_c00223{word-spacing:21.441600px;}
.ws1d_c00223{word-spacing:21.456000px;}
.ws1e_c00223{word-spacing:23.565600px;}
.ws1f_c00223{word-spacing:23.680800px;}
.ws11_c00223{word-spacing:25.041600px;}
.ws12_c00223{word-spacing:25.099200px;}
.ws32_c00223{word-spacing:30.729600px;}
.ws33_c00223{word-spacing:30.794400px;}
.ws31_c00223{word-spacing:35.193600px;}
.ws25_c00223{word-spacing:44.719200px;}
.ws24_c00223{word-spacing:44.870400px;}
.ws22_c00223{word-spacing:52.027200px;}
.ws23_c00223{word-spacing:52.084800px;}
._0_c00223{margin-left:-13.680000px;}
._1_c00223{width:1.080000px;}
._2_c00223{width:3.600000px;}
.fc0_c00223{color:rgb(0,0,0);}
.fs0_c00223{font-size:72.000000px;}
.y0_c00223{bottom:0.000000px;}
.y2_c00223{bottom:46.830450px;}
.y1_c00223{bottom:67.530450px;}
.y22_c00223{bottom:136.830450px;}
.y21_c00223{bottom:157.530450px;}
.y20_c00223{bottom:178.230450px;}
.y1f_c00223{bottom:227.280450px;}
.y1e_c00223{bottom:258.330450px;}
.y1d_c00223{bottom:289.380450px;}
.y1c_c00223{bottom:320.430450px;}
.y1b_c00223{bottom:351.390450px;}
.y1a_c00223{bottom:382.440450px;}
.y19_c00223{bottom:413.490450px;}
.y18_c00223{bottom:462.540450px;}
.y17_c00223{bottom:493.590450px;}
.y16_c00223{bottom:524.640450px;}
.y15_c00223{bottom:555.690450px;}
.y14_c00223{bottom:586.740450px;}
.y13_c00223{bottom:617.790450px;}
.y12_c00223{bottom:648.840450px;}
.y11_c00223{bottom:679.890450px;}
.y10_c00223{bottom:710.940450px;}
.yf_c00223{bottom:741.990450px;}
.ye_c00223{bottom:773.040450px;}
.yd_c00223{bottom:822.090450px;}
.yc_c00223{bottom:853.140450px;}
.yb_c00223{bottom:884.190450px;}
.ya_c00223{bottom:915.240450px;}
.y9_c00223{bottom:946.290450px;}
.y8_c00223{bottom:984.990450px;}
.y7_c00223{bottom:1014.690450px;}
.y6_c00223{bottom:1035.390450px;}
.y5_c00223{bottom:1056.090450px;}
.y4_c00223{bottom:1076.790450px;}
.y3_c00223{bottom:1097.490450px;}
.h1_c00223{height:63.175781px;}
.h2_c00223{height:64.546875px;}
.h3_c00223{height:75.093750px;}
.h0_c00223{height:1263.000000px;}
.w1_c00223{width:892.500000px;}
.w0_c00223{width:892.830000px;}
.x0_c00223{left:0.000000px;}
.x2_c00223{left:127.620000px;}
.x3_c00223{left:148.950000px;}
.x1_c00223{left:695.880000px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.lsd_c00223{letter-spacing:-0.102400pt;}
.lsb_c00223{letter-spacing:-0.089600pt;}
.lsc_c00223{letter-spacing:-0.083200pt;}
.ls10_c00223{letter-spacing:-0.076800pt;}
.lsf_c00223{letter-spacing:-0.064000pt;}
.ls9_c00223{letter-spacing:-0.057600pt;}
.ls4_c00223{letter-spacing:-0.051200pt;}
.ls3_c00223{letter-spacing:-0.044800pt;}
.ls6_c00223{letter-spacing:-0.038400pt;}
.lse_c00223{letter-spacing:-0.032000pt;}
.ls8_c00223{letter-spacing:-0.025600pt;}
.ls5_c00223{letter-spacing:-0.019200pt;}
.lsa_c00223{letter-spacing:-0.012800pt;}
.ls7_c00223{letter-spacing:-0.006400pt;}
.ls2_c00223{letter-spacing:0.000000pt;}
.ls0_c00223{letter-spacing:0.006400pt;}
.ls1_c00223{letter-spacing:0.051200pt;}
.ws0_c00223{word-spacing:-17.779200pt;}
.ws2_c00223{word-spacing:-17.715200pt;}
.ws1_c00223{word-spacing:-17.689600pt;}
.ws4_c00223{word-spacing:-3.705600pt;}
.ws5_c00223{word-spacing:-3.648000pt;}
.ws2e_c00223{word-spacing:-2.713600pt;}
.wsf_c00223{word-spacing:-0.819200pt;}
.wse_c00223{word-spacing:-0.537600pt;}
.ws3_c00223{word-spacing:0.000000pt;}
.ws14_c00223{word-spacing:0.057600pt;}
.ws1b_c00223{word-spacing:0.128000pt;}
.ws15_c00223{word-spacing:0.140800pt;}
.wsb_c00223{word-spacing:0.153600pt;}
.ws13_c00223{word-spacing:0.160000pt;}
.ws20_c00223{word-spacing:1.657600pt;}
.ws21_c00223{word-spacing:1.798400pt;}
.ws2c_c00223{word-spacing:2.374400pt;}
.ws2d_c00223{word-spacing:2.419200pt;}
.ws2b_c00223{word-spacing:2.457600pt;}
.ws34_c00223{word-spacing:2.700800pt;}
.ws27_c00223{word-spacing:2.976000pt;}
.ws2a_c00223{word-spacing:3.027200pt;}
.ws2f_c00223{word-spacing:3.046400pt;}
.ws35_c00223{word-spacing:3.059200pt;}
.ws26_c00223{word-spacing:3.097600pt;}
.ws30_c00223{word-spacing:3.155200pt;}
.ws17_c00223{word-spacing:3.334400pt;}
.ws29_c00223{word-spacing:3.347200pt;}
.ws16_c00223{word-spacing:3.353600pt;}
.ws10_c00223{word-spacing:3.379200pt;}
.ws18_c00223{word-spacing:4.953600pt;}
.ws9_c00223{word-spacing:5.926400pt;}
.wsa_c00223{word-spacing:5.958400pt;}
.ws19_c00223{word-spacing:10.406400pt;}
.wsc_c00223{word-spacing:12.294400pt;}
.wsd_c00223{word-spacing:12.339200pt;}
.ws6_c00223{word-spacing:15.520000pt;}
.ws1a_c00223{word-spacing:16.166400pt;}
.ws8_c00223{word-spacing:17.107200pt;}
.ws7_c00223{word-spacing:17.139200pt;}
.ws28_c00223{word-spacing:17.740800pt;}
.ws1c_c00223{word-spacing:19.059200pt;}
.ws1d_c00223{word-spacing:19.072000pt;}
.ws1e_c00223{word-spacing:20.947200pt;}
.ws1f_c00223{word-spacing:21.049600pt;}
.ws11_c00223{word-spacing:22.259200pt;}
.ws12_c00223{word-spacing:22.310400pt;}
.ws32_c00223{word-spacing:27.315200pt;}
.ws33_c00223{word-spacing:27.372800pt;}
.ws31_c00223{word-spacing:31.283200pt;}
.ws25_c00223{word-spacing:39.750400pt;}
.ws24_c00223{word-spacing:39.884800pt;}
.ws22_c00223{word-spacing:46.246400pt;}
.ws23_c00223{word-spacing:46.297600pt;}
._0_c00223{margin-left:-12.160000pt;}
._1_c00223{width:0.960000pt;}
._2_c00223{width:3.200000pt;}
.fs0_c00223{font-size:64.000000pt;}
.y0_c00223{bottom:0.000000pt;}
.y2_c00223{bottom:41.627067pt;}
.y1_c00223{bottom:60.027067pt;}
.y22_c00223{bottom:121.627067pt;}
.y21_c00223{bottom:140.027067pt;}
.y20_c00223{bottom:158.427067pt;}
.y1f_c00223{bottom:202.027067pt;}
.y1e_c00223{bottom:229.627067pt;}
.y1d_c00223{bottom:257.227067pt;}
.y1c_c00223{bottom:284.827067pt;}
.y1b_c00223{bottom:312.347067pt;}
.y1a_c00223{bottom:339.947067pt;}
.y19_c00223{bottom:367.547067pt;}
.y18_c00223{bottom:411.147067pt;}
.y17_c00223{bottom:438.747067pt;}
.y16_c00223{bottom:466.347067pt;}
.y15_c00223{bottom:493.947067pt;}
.y14_c00223{bottom:521.547067pt;}
.y13_c00223{bottom:549.147067pt;}
.y12_c00223{bottom:576.747067pt;}
.y11_c00223{bottom:604.347067pt;}
.y10_c00223{bottom:631.947067pt;}
.yf_c00223{bottom:659.547067pt;}
.ye_c00223{bottom:687.147067pt;}
.yd_c00223{bottom:730.747067pt;}
.yc_c00223{bottom:758.347067pt;}
.yb_c00223{bottom:785.947067pt;}
.ya_c00223{bottom:813.547067pt;}
.y9_c00223{bottom:841.147067pt;}
.y8_c00223{bottom:875.547067pt;}
.y7_c00223{bottom:901.947067pt;}
.y6_c00223{bottom:920.347067pt;}
.y5_c00223{bottom:938.747067pt;}
.y4_c00223{bottom:957.147067pt;}
.y3_c00223{bottom:975.547067pt;}
.h1_c00223{height:56.156250pt;}
.h2_c00223{height:57.375000pt;}
.h3_c00223{height:66.750000pt;}
.h0_c00223{height:1122.666667pt;}
.w1_c00223{width:793.333333pt;}
.w0_c00223{width:793.626667pt;}
.x0_c00223{left:0.000000pt;}
.x2_c00223{left:113.440000pt;}
.x3_c00223{left:132.400000pt;}
.x1_c00223{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8e45ef0e19c2e9bddcd10569.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.093262;font-style:normal;font-weight:normal;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_d4b1e27366c10a8993d55ac0.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.106934;font-style:normal;font-weight:normal;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_3386e6072e625e79b420d3bc.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls9_c00224{letter-spacing:-0.064800px;}
.ls3_c00224{letter-spacing:-0.057600px;}
.ls8_c00224{letter-spacing:-0.050400px;}
.ls2_c00224{letter-spacing:-0.043200px;}
.ls7_c00224{letter-spacing:-0.036000px;}
.ls4_c00224{letter-spacing:-0.028800px;}
.ls6_c00224{letter-spacing:-0.021600px;}
.lsa_c00224{letter-spacing:-0.014400px;}
.ls5_c00224{letter-spacing:-0.007200px;}
.ls1_c00224{letter-spacing:0.000000px;}
.ls0_c00224{letter-spacing:0.014400px;}
.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;}
}
.wsa_c00224{word-spacing:-2.412000px;}
.ws9_c00224{word-spacing:-2.304000px;}
.ws1f_c00224{word-spacing:-1.958400px;}
.ws2f_c00224{word-spacing:-1.692000px;}
.ws11_c00224{word-spacing:-1.598400px;}
.ws2c_c00224{word-spacing:-1.216800px;}
.ws0_c00224{word-spacing:0.000000px;}
.ws21_c00224{word-spacing:0.172800px;}
.wsd_c00224{word-spacing:0.180000px;}
.ws12_c00224{word-spacing:0.187200px;}
.wse_c00224{word-spacing:0.201600px;}
.ws1a_c00224{word-spacing:0.273600px;}
.ws1d_c00224{word-spacing:0.900000px;}
.ws1e_c00224{word-spacing:0.914400px;}
.ws1_c00224{word-spacing:0.921600px;}
.ws2_c00224{word-spacing:0.936000px;}
.ws27_c00224{word-spacing:0.943200px;}
.ws26_c00224{word-spacing:1.022400px;}
.ws17_c00224{word-spacing:1.274400px;}
.ws10_c00224{word-spacing:1.584000px;}
.wsf_c00224{word-spacing:1.663200px;}
.ws28_c00224{word-spacing:1.965600px;}
.ws13_c00224{word-spacing:2.008800px;}
.ws14_c00224{word-spacing:2.016000px;}
.ws29_c00224{word-spacing:2.232000px;}
.ws20_c00224{word-spacing:2.736000px;}
.ws6_c00224{word-spacing:3.405600px;}
.ws7_c00224{word-spacing:3.420000px;}
.ws2b_c00224{word-spacing:3.780000px;}
.ws2a_c00224{word-spacing:3.801600px;}
.ws24_c00224{word-spacing:4.507200px;}
.ws25_c00224{word-spacing:4.514400px;}
.ws1c_c00224{word-spacing:5.220000px;}
.ws1b_c00224{word-spacing:5.349600px;}
.ws22_c00224{word-spacing:5.572800px;}
.ws23_c00224{word-spacing:5.601600px;}
.ws16_c00224{word-spacing:6.645600px;}
.ws15_c00224{word-spacing:6.660000px;}
.wsb_c00224{word-spacing:8.488800px;}
.wsc_c00224{word-spacing:8.611200px;}
.ws2e_c00224{word-spacing:12.801600px;}
.ws2d_c00224{word-spacing:12.866400px;}
.ws30_c00224{word-spacing:21.074400px;}
.ws31_c00224{word-spacing:21.096000px;}
.ws8_c00224{word-spacing:24.998400px;}
.ws3_c00224{word-spacing:26.827200px;}
.ws19_c00224{word-spacing:30.794400px;}
.ws18_c00224{word-spacing:30.859200px;}
.ws4_c00224{word-spacing:40.824000px;}
.ws5_c00224{word-spacing:40.881600px;}
._0_c00224{width:1.418400px;}
.fc0_c00224{color:rgb(0,0,0);}
.fs0_c00224{font-size:72.000000px;}
.y0_c00224{bottom:0.000000px;}
.y2_c00224{bottom:46.830450px;}
.y1_c00224{bottom:67.530450px;}
.y24_c00224{bottom:133.230450px;}
.y23_c00224{bottom:153.930450px;}
.y22_c00224{bottom:174.630450px;}
.y21_c00224{bottom:195.330450px;}
.y20_c00224{bottom:244.380450px;}
.y1f_c00224{bottom:275.430450px;}
.y1e_c00224{bottom:306.390450px;}
.y1d_c00224{bottom:337.440450px;}
.y1c_c00224{bottom:386.490450px;}
.y1b_c00224{bottom:417.540450px;}
.y1a_c00224{bottom:448.590450px;}
.y19_c00224{bottom:487.290450px;}
.y18_c00224{bottom:516.990450px;}
.y17_c00224{bottom:537.690450px;}
.y16_c00224{bottom:558.390450px;}
.y15_c00224{bottom:579.090450px;}
.y14_c00224{bottom:599.790450px;}
.y13_c00224{bottom:648.840450px;}
.y12_c00224{bottom:679.890450px;}
.y11_c00224{bottom:710.940450px;}
.y10_c00224{bottom:741.990450px;}
.yf_c00224{bottom:773.040450px;}
.ye_c00224{bottom:822.090450px;}
.yd_c00224{bottom:853.140450px;}
.yc_c00224{bottom:884.190450px;}
.yb_c00224{bottom:922.890450px;}
.ya_c00224{bottom:952.590450px;}
.y9_c00224{bottom:973.290450px;}
.y8_c00224{bottom:993.990450px;}
.y7_c00224{bottom:1014.690450px;}
.y6_c00224{bottom:1035.390450px;}
.y5_c00224{bottom:1056.090450px;}
.y4_c00224{bottom:1076.790450px;}
.y3_c00224{bottom:1097.490450px;}
.h1_c00224{height:63.175781px;}
.h2_c00224{height:64.546875px;}
.h3_c00224{height:75.093750px;}
.h0_c00224{height:1263.000000px;}
.w1_c00224{width:892.500000px;}
.w0_c00224{width:892.830000px;}
.x0_c00224{left:0.000000px;}
.x2_c00224{left:170.100000px;}
.x3_c00224{left:191.430000px;}
.x1_c00224{left:738.360000px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls9_c00224{letter-spacing:-0.057600pt;}
.ls3_c00224{letter-spacing:-0.051200pt;}
.ls8_c00224{letter-spacing:-0.044800pt;}
.ls2_c00224{letter-spacing:-0.038400pt;}
.ls7_c00224{letter-spacing:-0.032000pt;}
.ls4_c00224{letter-spacing:-0.025600pt;}
.ls6_c00224{letter-spacing:-0.019200pt;}
.lsa_c00224{letter-spacing:-0.012800pt;}
.ls5_c00224{letter-spacing:-0.006400pt;}
.ls1_c00224{letter-spacing:0.000000pt;}
.ls0_c00224{letter-spacing:0.012800pt;}
.wsa_c00224{word-spacing:-2.144000pt;}
.ws9_c00224{word-spacing:-2.048000pt;}
.ws1f_c00224{word-spacing:-1.740800pt;}
.ws2f_c00224{word-spacing:-1.504000pt;}
.ws11_c00224{word-spacing:-1.420800pt;}
.ws2c_c00224{word-spacing:-1.081600pt;}
.ws0_c00224{word-spacing:0.000000pt;}
.ws21_c00224{word-spacing:0.153600pt;}
.wsd_c00224{word-spacing:0.160000pt;}
.ws12_c00224{word-spacing:0.166400pt;}
.wse_c00224{word-spacing:0.179200pt;}
.ws1a_c00224{word-spacing:0.243200pt;}
.ws1d_c00224{word-spacing:0.800000pt;}
.ws1e_c00224{word-spacing:0.812800pt;}
.ws1_c00224{word-spacing:0.819200pt;}
.ws2_c00224{word-spacing:0.832000pt;}
.ws27_c00224{word-spacing:0.838400pt;}
.ws26_c00224{word-spacing:0.908800pt;}
.ws17_c00224{word-spacing:1.132800pt;}
.ws10_c00224{word-spacing:1.408000pt;}
.wsf_c00224{word-spacing:1.478400pt;}
.ws28_c00224{word-spacing:1.747200pt;}
.ws13_c00224{word-spacing:1.785600pt;}
.ws14_c00224{word-spacing:1.792000pt;}
.ws29_c00224{word-spacing:1.984000pt;}
.ws20_c00224{word-spacing:2.432000pt;}
.ws6_c00224{word-spacing:3.027200pt;}
.ws7_c00224{word-spacing:3.040000pt;}
.ws2b_c00224{word-spacing:3.360000pt;}
.ws2a_c00224{word-spacing:3.379200pt;}
.ws24_c00224{word-spacing:4.006400pt;}
.ws25_c00224{word-spacing:4.012800pt;}
.ws1c_c00224{word-spacing:4.640000pt;}
.ws1b_c00224{word-spacing:4.755200pt;}
.ws22_c00224{word-spacing:4.953600pt;}
.ws23_c00224{word-spacing:4.979200pt;}
.ws16_c00224{word-spacing:5.907200pt;}
.ws15_c00224{word-spacing:5.920000pt;}
.wsb_c00224{word-spacing:7.545600pt;}
.wsc_c00224{word-spacing:7.654400pt;}
.ws2e_c00224{word-spacing:11.379200pt;}
.ws2d_c00224{word-spacing:11.436800pt;}
.ws30_c00224{word-spacing:18.732800pt;}
.ws31_c00224{word-spacing:18.752000pt;}
.ws8_c00224{word-spacing:22.220800pt;}
.ws3_c00224{word-spacing:23.846400pt;}
.ws19_c00224{word-spacing:27.372800pt;}
.ws18_c00224{word-spacing:27.430400pt;}
.ws4_c00224{word-spacing:36.288000pt;}
.ws5_c00224{word-spacing:36.339200pt;}
._0_c00224{width:1.260800pt;}
.fs0_c00224{font-size:64.000000pt;}
.y0_c00224{bottom:0.000000pt;}
.y2_c00224{bottom:41.627067pt;}
.y1_c00224{bottom:60.027067pt;}
.y24_c00224{bottom:118.427067pt;}
.y23_c00224{bottom:136.827067pt;}
.y22_c00224{bottom:155.227067pt;}
.y21_c00224{bottom:173.627067pt;}
.y20_c00224{bottom:217.227067pt;}
.y1f_c00224{bottom:244.827067pt;}
.y1e_c00224{bottom:272.347067pt;}
.y1d_c00224{bottom:299.947067pt;}
.y1c_c00224{bottom:343.547067pt;}
.y1b_c00224{bottom:371.147067pt;}
.y1a_c00224{bottom:398.747067pt;}
.y19_c00224{bottom:433.147067pt;}
.y18_c00224{bottom:459.547067pt;}
.y17_c00224{bottom:477.947067pt;}
.y16_c00224{bottom:496.347067pt;}
.y15_c00224{bottom:514.747067pt;}
.y14_c00224{bottom:533.147067pt;}
.y13_c00224{bottom:576.747067pt;}
.y12_c00224{bottom:604.347067pt;}
.y11_c00224{bottom:631.947067pt;}
.y10_c00224{bottom:659.547067pt;}
.yf_c00224{bottom:687.147067pt;}
.ye_c00224{bottom:730.747067pt;}
.yd_c00224{bottom:758.347067pt;}
.yc_c00224{bottom:785.947067pt;}
.yb_c00224{bottom:820.347067pt;}
.ya_c00224{bottom:846.747067pt;}
.y9_c00224{bottom:865.147067pt;}
.y8_c00224{bottom:883.547067pt;}
.y7_c00224{bottom:901.947067pt;}
.y6_c00224{bottom:920.347067pt;}
.y5_c00224{bottom:938.747067pt;}
.y4_c00224{bottom:957.147067pt;}
.y3_c00224{bottom:975.547067pt;}
.h1_c00224{height:56.156250pt;}
.h2_c00224{height:57.375000pt;}
.h3_c00224{height:66.750000pt;}
.h0_c00224{height:1122.666667pt;}
.w1_c00224{width:793.333333pt;}
.w0_c00224{width:793.626667pt;}
.x0_c00224{left:0.000000pt;}
.x2_c00224{left:151.200000pt;}
.x3_c00224{left:170.160000pt;}
.x1_c00224{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_042e6384f52f3042db6b7fff.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.093262;font-style:normal;font-weight:normal;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_0413b978df799268366509b9.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.106934;font-style:normal;font-weight:normal;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_9df306f140f2054ba4e055cb.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lse_c00225{letter-spacing:-0.108000px;}
.lsc_c00225{letter-spacing:-0.086400px;}
.ls5_c00225{letter-spacing:-0.079200px;}
.ls9_c00225{letter-spacing:-0.072000px;}
.ls7_c00225{letter-spacing:-0.064800px;}
.ls3_c00225{letter-spacing:-0.057600px;}
.lsd_c00225{letter-spacing:-0.050400px;}
.ls6_c00225{letter-spacing:-0.043200px;}
.ls4_c00225{letter-spacing:-0.036000px;}
.ls1_c00225{letter-spacing:-0.028800px;}
.lsb_c00225{letter-spacing:-0.021600px;}
.ls8_c00225{letter-spacing:-0.014400px;}
.ls2_c00225{letter-spacing:-0.007200px;}
.ls0_c00225{letter-spacing:0.000000px;}
.lsa_c00225{letter-spacing:0.007200px;}
.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;}
}
.ws15_c00225{word-spacing:-3.780000px;}
.ws16_c00225{word-spacing:-3.765600px;}
.wsa_c00225{word-spacing:-3.398400px;}
.ws26_c00225{word-spacing:-2.700000px;}
.ws27_c00225{word-spacing:-2.678400px;}
.ws34_c00225{word-spacing:-2.332800px;}
.ws33_c00225{word-spacing:-2.311200px;}
.ws32_c00225{word-spacing:-2.296800px;}
.ws36_c00225{word-spacing:-2.102400px;}
.ws35_c00225{word-spacing:-2.088000px;}
.ws37_c00225{word-spacing:-1.893600px;}
.ws2b_c00225{word-spacing:-1.231200px;}
.ws2a_c00225{word-spacing:-1.180800px;}
.wsf_c00225{word-spacing:-0.511200px;}
.ws10_c00225{word-spacing:-0.489600px;}
.ws11_c00225{word-spacing:-0.028800px;}
.ws0_c00225{word-spacing:0.000000px;}
.ws4_c00225{word-spacing:0.093600px;}
.ws24_c00225{word-spacing:0.180000px;}
.ws3_c00225{word-spacing:0.187200px;}
.ws1a_c00225{word-spacing:0.194400px;}
.ws5_c00225{word-spacing:0.288000px;}
.ws2f_c00225{word-spacing:0.547200px;}
.ws2e_c00225{word-spacing:0.648000px;}
.ws18_c00225{word-spacing:1.411200px;}
.ws17_c00225{word-spacing:1.663200px;}
.ws19_c00225{word-spacing:1.684800px;}
.ws39_c00225{word-spacing:1.972800px;}
.ws38_c00225{word-spacing:1.994400px;}
.ws25_c00225{word-spacing:3.024000px;}
.ws7_c00225{word-spacing:3.052800px;}
.ws6_c00225{word-spacing:3.074400px;}
.ws13_c00225{word-spacing:3.794400px;}
.ws14_c00225{word-spacing:3.830400px;}
.ws12_c00225{word-spacing:3.852000px;}
.ws30_c00225{word-spacing:5.947200px;}
.ws31_c00225{word-spacing:7.041600px;}
.ws2d_c00225{word-spacing:9.129600px;}
.ws2c_c00225{word-spacing:9.208800px;}
.ws23_c00225{word-spacing:9.554400px;}
.ws22_c00225{word-spacing:9.561600px;}
.ws29_c00225{word-spacing:9.892800px;}
.ws28_c00225{word-spacing:9.907200px;}
.wsd_c00225{word-spacing:11.001600px;}
.wse_c00225{word-spacing:11.008800px;}
.ws1_c00225{word-spacing:12.333600px;}
.ws2_c00225{word-spacing:12.362400px;}
.ws9_c00225{word-spacing:14.889600px;}
.ws8_c00225{word-spacing:14.961600px;}
.ws1e_c00225{word-spacing:17.474400px;}
.ws1f_c00225{word-spacing:17.503200px;}
.ws1b_c00225{word-spacing:22.456800px;}
.ws1c_c00225{word-spacing:22.507200px;}
.ws1d_c00225{word-spacing:25.401600px;}
.wsc_c00225{word-spacing:27.892800px;}
.wsb_c00225{word-spacing:27.979200px;}
.ws21_c00225{word-spacing:32.220000px;}
.ws20_c00225{word-spacing:32.234400px;}
._0_c00225{margin-left:-1.324800px;}
._1_c00225{width:1.094400px;}
.fc0_c00225{color:rgb(0,0,0);}
.fs0_c00225{font-size:72.000000px;}
.y0_c00225{bottom:0.000000px;}
.y2_c00225{bottom:46.830450px;}
.y1_c00225{bottom:67.530450px;}
.y25_c00225{bottom:153.480450px;}
.y24_c00225{bottom:184.530450px;}
.y23_c00225{bottom:215.580450px;}
.y22_c00225{bottom:246.630450px;}
.y21_c00225{bottom:277.680450px;}
.y20_c00225{bottom:308.730450px;}
.y1f_c00225{bottom:339.690450px;}
.y1e_c00225{bottom:370.740450px;}
.y1d_c00225{bottom:401.790450px;}
.y1c_c00225{bottom:431.490450px;}
.y1b_c00225{bottom:452.190450px;}
.y1a_c00225{bottom:472.890450px;}
.y19_c00225{bottom:493.590450px;}
.y18_c00225{bottom:542.640450px;}
.y17_c00225{bottom:573.690450px;}
.y16_c00225{bottom:604.740450px;}
.y15_c00225{bottom:635.790450px;}
.y14_c00225{bottom:666.840450px;}
.y13_c00225{bottom:697.890450px;}
.y12_c00225{bottom:746.940450px;}
.y11_c00225{bottom:777.990450px;}
.y10_c00225{bottom:809.040450px;}
.yf_c00225{bottom:840.090450px;}
.ye_c00225{bottom:869.790450px;}
.yd_c00225{bottom:890.490450px;}
.yc_c00225{bottom:911.190450px;}
.yb_c00225{bottom:931.890450px;}
.ya_c00225{bottom:952.590450px;}
.y9_c00225{bottom:973.290450px;}
.y8_c00225{bottom:993.990450px;}
.y7_c00225{bottom:1014.690450px;}
.y6_c00225{bottom:1035.390450px;}
.y5_c00225{bottom:1056.090450px;}
.y4_c00225{bottom:1076.790450px;}
.y3_c00225{bottom:1097.490450px;}
.h1_c00225{height:63.175781px;}
.h2_c00225{height:64.546875px;}
.h3_c00225{height:75.093750px;}
.h0_c00225{height:1263.000000px;}
.w1_c00225{width:892.500000px;}
.w0_c00225{width:892.830000px;}
.x0_c00225{left:0.000000px;}
.x2_c00225{left:127.620000px;}
.x3_c00225{left:148.950000px;}
.x1_c00225{left:695.880000px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.lse_c00225{letter-spacing:-0.096000pt;}
.lsc_c00225{letter-spacing:-0.076800pt;}
.ls5_c00225{letter-spacing:-0.070400pt;}
.ls9_c00225{letter-spacing:-0.064000pt;}
.ls7_c00225{letter-spacing:-0.057600pt;}
.ls3_c00225{letter-spacing:-0.051200pt;}
.lsd_c00225{letter-spacing:-0.044800pt;}
.ls6_c00225{letter-spacing:-0.038400pt;}
.ls4_c00225{letter-spacing:-0.032000pt;}
.ls1_c00225{letter-spacing:-0.025600pt;}
.lsb_c00225{letter-spacing:-0.019200pt;}
.ls8_c00225{letter-spacing:-0.012800pt;}
.ls2_c00225{letter-spacing:-0.006400pt;}
.ls0_c00225{letter-spacing:0.000000pt;}
.lsa_c00225{letter-spacing:0.006400pt;}
.ws15_c00225{word-spacing:-3.360000pt;}
.ws16_c00225{word-spacing:-3.347200pt;}
.wsa_c00225{word-spacing:-3.020800pt;}
.ws26_c00225{word-spacing:-2.400000pt;}
.ws27_c00225{word-spacing:-2.380800pt;}
.ws34_c00225{word-spacing:-2.073600pt;}
.ws33_c00225{word-spacing:-2.054400pt;}
.ws32_c00225{word-spacing:-2.041600pt;}
.ws36_c00225{word-spacing:-1.868800pt;}
.ws35_c00225{word-spacing:-1.856000pt;}
.ws37_c00225{word-spacing:-1.683200pt;}
.ws2b_c00225{word-spacing:-1.094400pt;}
.ws2a_c00225{word-spacing:-1.049600pt;}
.wsf_c00225{word-spacing:-0.454400pt;}
.ws10_c00225{word-spacing:-0.435200pt;}
.ws11_c00225{word-spacing:-0.025600pt;}
.ws0_c00225{word-spacing:0.000000pt;}
.ws4_c00225{word-spacing:0.083200pt;}
.ws24_c00225{word-spacing:0.160000pt;}
.ws3_c00225{word-spacing:0.166400pt;}
.ws1a_c00225{word-spacing:0.172800pt;}
.ws5_c00225{word-spacing:0.256000pt;}
.ws2f_c00225{word-spacing:0.486400pt;}
.ws2e_c00225{word-spacing:0.576000pt;}
.ws18_c00225{word-spacing:1.254400pt;}
.ws17_c00225{word-spacing:1.478400pt;}
.ws19_c00225{word-spacing:1.497600pt;}
.ws39_c00225{word-spacing:1.753600pt;}
.ws38_c00225{word-spacing:1.772800pt;}
.ws25_c00225{word-spacing:2.688000pt;}
.ws7_c00225{word-spacing:2.713600pt;}
.ws6_c00225{word-spacing:2.732800pt;}
.ws13_c00225{word-spacing:3.372800pt;}
.ws14_c00225{word-spacing:3.404800pt;}
.ws12_c00225{word-spacing:3.424000pt;}
.ws30_c00225{word-spacing:5.286400pt;}
.ws31_c00225{word-spacing:6.259200pt;}
.ws2d_c00225{word-spacing:8.115200pt;}
.ws2c_c00225{word-spacing:8.185600pt;}
.ws23_c00225{word-spacing:8.492800pt;}
.ws22_c00225{word-spacing:8.499200pt;}
.ws29_c00225{word-spacing:8.793600pt;}
.ws28_c00225{word-spacing:8.806400pt;}
.wsd_c00225{word-spacing:9.779200pt;}
.wse_c00225{word-spacing:9.785600pt;}
.ws1_c00225{word-spacing:10.963200pt;}
.ws2_c00225{word-spacing:10.988800pt;}
.ws9_c00225{word-spacing:13.235200pt;}
.ws8_c00225{word-spacing:13.299200pt;}
.ws1e_c00225{word-spacing:15.532800pt;}
.ws1f_c00225{word-spacing:15.558400pt;}
.ws1b_c00225{word-spacing:19.961600pt;}
.ws1c_c00225{word-spacing:20.006400pt;}
.ws1d_c00225{word-spacing:22.579200pt;}
.wsc_c00225{word-spacing:24.793600pt;}
.wsb_c00225{word-spacing:24.870400pt;}
.ws21_c00225{word-spacing:28.640000pt;}
.ws20_c00225{word-spacing:28.652800pt;}
._0_c00225{margin-left:-1.177600pt;}
._1_c00225{width:0.972800pt;}
.fs0_c00225{font-size:64.000000pt;}
.y0_c00225{bottom:0.000000pt;}
.y2_c00225{bottom:41.627067pt;}
.y1_c00225{bottom:60.027067pt;}
.y25_c00225{bottom:136.427067pt;}
.y24_c00225{bottom:164.027067pt;}
.y23_c00225{bottom:191.627067pt;}
.y22_c00225{bottom:219.227067pt;}
.y21_c00225{bottom:246.827067pt;}
.y20_c00225{bottom:274.427067pt;}
.y1f_c00225{bottom:301.947067pt;}
.y1e_c00225{bottom:329.547067pt;}
.y1d_c00225{bottom:357.147067pt;}
.y1c_c00225{bottom:383.547067pt;}
.y1b_c00225{bottom:401.947067pt;}
.y1a_c00225{bottom:420.347067pt;}
.y19_c00225{bottom:438.747067pt;}
.y18_c00225{bottom:482.347067pt;}
.y17_c00225{bottom:509.947067pt;}
.y16_c00225{bottom:537.547067pt;}
.y15_c00225{bottom:565.147067pt;}
.y14_c00225{bottom:592.747067pt;}
.y13_c00225{bottom:620.347067pt;}
.y12_c00225{bottom:663.947067pt;}
.y11_c00225{bottom:691.547067pt;}
.y10_c00225{bottom:719.147067pt;}
.yf_c00225{bottom:746.747067pt;}
.ye_c00225{bottom:773.147067pt;}
.yd_c00225{bottom:791.547067pt;}
.yc_c00225{bottom:809.947067pt;}
.yb_c00225{bottom:828.347067pt;}
.ya_c00225{bottom:846.747067pt;}
.y9_c00225{bottom:865.147067pt;}
.y8_c00225{bottom:883.547067pt;}
.y7_c00225{bottom:901.947067pt;}
.y6_c00225{bottom:920.347067pt;}
.y5_c00225{bottom:938.747067pt;}
.y4_c00225{bottom:957.147067pt;}
.y3_c00225{bottom:975.547067pt;}
.h1_c00225{height:56.156250pt;}
.h2_c00225{height:57.375000pt;}
.h3_c00225{height:66.750000pt;}
.h0_c00225{height:1122.666667pt;}
.w1_c00225{width:793.333333pt;}
.w0_c00225{width:793.626667pt;}
.x0_c00225{left:0.000000pt;}
.x2_c00225{left:113.440000pt;}
.x3_c00225{left:132.400000pt;}
.x1_c00225{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b9e47771cf9126c303523440.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.093262;font-style:normal;font-weight:normal;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_0c5a78b0ed5adaf37268fa7c.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00226{vertical-align:0.000000px;}
.ls7_c00226{letter-spacing:-0.093600px;}
.lsb_c00226{letter-spacing:-0.086400px;}
.ls6_c00226{letter-spacing:-0.072000px;}
.lsc_c00226{letter-spacing:-0.064800px;}
.lsd_c00226{letter-spacing:-0.057600px;}
.ls9_c00226{letter-spacing:-0.050400px;}
.ls4_c00226{letter-spacing:-0.043200px;}
.ls3_c00226{letter-spacing:-0.036000px;}
.ls5_c00226{letter-spacing:-0.028800px;}
.lsa_c00226{letter-spacing:-0.021600px;}
.ls8_c00226{letter-spacing:-0.014400px;}
.ls2_c00226{letter-spacing:-0.007200px;}
.ls1_c00226{letter-spacing:0.000000px;}
.ls0_c00226{letter-spacing:0.057600px;}
.lse_c00226{letter-spacing:843.998400px;}
.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;}
}
.ws17_c00226{word-spacing:-4.881600px;}
.ws18_c00226{word-spacing:-4.708800px;}
.ws4_c00226{word-spacing:-3.052800px;}
.ws3_c00226{word-spacing:-2.966400px;}
.ws6_c00226{word-spacing:-2.332800px;}
.ws28_c00226{word-spacing:-0.957600px;}
.ws1c_c00226{word-spacing:-0.921600px;}
.ws1d_c00226{word-spacing:-0.864000px;}
.ws27_c00226{word-spacing:-0.856800px;}
.ws0_c00226{word-spacing:0.000000px;}
.ws5_c00226{word-spacing:0.014400px;}
.wsa_c00226{word-spacing:0.100800px;}
.ws25_c00226{word-spacing:0.165600px;}
.wsb_c00226{word-spacing:0.172800px;}
.ws9_c00226{word-spacing:0.187200px;}
.ws2a_c00226{word-spacing:0.259200px;}
.ws1b_c00226{word-spacing:0.943200px;}
.ws1a_c00226{word-spacing:1.000800px;}
.ws11_c00226{word-spacing:1.569600px;}
.ws12_c00226{word-spacing:1.648800px;}
.ws29_c00226{word-spacing:2.325600px;}
.ws1f_c00226{word-spacing:3.384000px;}
.ws1e_c00226{word-spacing:3.441600px;}
.ws24_c00226{word-spacing:5.565600px;}
.ws23_c00226{word-spacing:5.580000px;}
.wsc_c00226{word-spacing:5.608800px;}
.ws1_c00226{word-spacing:6.285600px;}
.ws2_c00226{word-spacing:6.386400px;}
.ws13_c00226{word-spacing:8.388000px;}
.ws16_c00226{word-spacing:9.014400px;}
.ws15_c00226{word-spacing:9.064800px;}
.ws14_c00226{word-spacing:9.201600px;}
.wsf_c00226{word-spacing:9.561600px;}
.ws19_c00226{word-spacing:9.568800px;}
.ws10_c00226{word-spacing:9.612000px;}
.ws7_c00226{word-spacing:10.670400px;}
.ws8_c00226{word-spacing:10.692000px;}
.wsd_c00226{word-spacing:14.673600px;}
.wse_c00226{word-spacing:14.680800px;}
.ws22_c00226{word-spacing:18.108000px;}
.ws21_c00226{word-spacing:18.194400px;}
.ws20_c00226{word-spacing:27.187200px;}
.ws26_c00226{word-spacing:35.848800px;}
._1_c00226{margin-left:-1.166400px;}
._0_c00226{width:1.152000px;}
.fc0_c00226{color:rgb(0,0,0);}
.fs0_c00226{font-size:72.000000px;}
.y0_c00226{bottom:0.000000px;}
.y2_c00226{bottom:46.830450px;}
.y1_c00226{bottom:67.530450px;}
.y1d_c00226{bottom:364.440450px;}
.y1c_c00226{bottom:413.490450px;}
.y1b_c00226{bottom:444.540450px;}
.y1a_c00226{bottom:475.590450px;}
.y19_c00226{bottom:506.640450px;}
.y18_c00226{bottom:555.690450px;}
.y17_c00226{bottom:585.390450px;}
.y16_c00226{bottom:606.090450px;}
.y15_c00226{bottom:626.790450px;}
.y14_c00226{bottom:647.490450px;}
.y13_c00226{bottom:668.190450px;}
.y12_c00226{bottom:688.890450px;}
.y11_c00226{bottom:709.590450px;}
.y10_c00226{bottom:730.290450px;}
.yf_c00226{bottom:750.990450px;}
.ye_c00226{bottom:771.690450px;}
.yd_c00226{bottom:792.390450px;}
.yc_c00226{bottom:813.090450px;}
.yb_c00226{bottom:833.790450px;}
.ya_c00226{bottom:854.490450px;}
.y9_c00226{bottom:875.190450px;}
.y8_c00226{bottom:924.240450px;}
.y7_c00226{bottom:955.290450px;}
.y6_c00226{bottom:986.340450px;}
.y5_c00226{bottom:1035.390450px;}
.y4_c00226{bottom:1066.440450px;}
.y3_c00226{bottom:1097.490450px;}
.h1_c00226{height:63.175781px;}
.h2_c00226{height:64.546875px;}
.h0_c00226{height:1263.000000px;}
.w1_c00226{width:892.500000px;}
.w0_c00226{width:892.830000px;}
.x0_c00226{left:0.000000px;}
.x2_c00226{left:170.100000px;}
.x3_c00226{left:191.430000px;}
.x1_c00226{left:738.360000px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls7_c00226{letter-spacing:-0.083200pt;}
.lsb_c00226{letter-spacing:-0.076800pt;}
.ls6_c00226{letter-spacing:-0.064000pt;}
.lsc_c00226{letter-spacing:-0.057600pt;}
.lsd_c00226{letter-spacing:-0.051200pt;}
.ls9_c00226{letter-spacing:-0.044800pt;}
.ls4_c00226{letter-spacing:-0.038400pt;}
.ls3_c00226{letter-spacing:-0.032000pt;}
.ls5_c00226{letter-spacing:-0.025600pt;}
.lsa_c00226{letter-spacing:-0.019200pt;}
.ls8_c00226{letter-spacing:-0.012800pt;}
.ls2_c00226{letter-spacing:-0.006400pt;}
.ls1_c00226{letter-spacing:0.000000pt;}
.ls0_c00226{letter-spacing:0.051200pt;}
.lse_c00226{letter-spacing:750.220800pt;}
.ws17_c00226{word-spacing:-4.339200pt;}
.ws18_c00226{word-spacing:-4.185600pt;}
.ws4_c00226{word-spacing:-2.713600pt;}
.ws3_c00226{word-spacing:-2.636800pt;}
.ws6_c00226{word-spacing:-2.073600pt;}
.ws28_c00226{word-spacing:-0.851200pt;}
.ws1c_c00226{word-spacing:-0.819200pt;}
.ws1d_c00226{word-spacing:-0.768000pt;}
.ws27_c00226{word-spacing:-0.761600pt;}
.ws0_c00226{word-spacing:0.000000pt;}
.ws5_c00226{word-spacing:0.012800pt;}
.wsa_c00226{word-spacing:0.089600pt;}
.ws25_c00226{word-spacing:0.147200pt;}
.wsb_c00226{word-spacing:0.153600pt;}
.ws9_c00226{word-spacing:0.166400pt;}
.ws2a_c00226{word-spacing:0.230400pt;}
.ws1b_c00226{word-spacing:0.838400pt;}
.ws1a_c00226{word-spacing:0.889600pt;}
.ws11_c00226{word-spacing:1.395200pt;}
.ws12_c00226{word-spacing:1.465600pt;}
.ws29_c00226{word-spacing:2.067200pt;}
.ws1f_c00226{word-spacing:3.008000pt;}
.ws1e_c00226{word-spacing:3.059200pt;}
.ws24_c00226{word-spacing:4.947200pt;}
.ws23_c00226{word-spacing:4.960000pt;}
.wsc_c00226{word-spacing:4.985600pt;}
.ws1_c00226{word-spacing:5.587200pt;}
.ws2_c00226{word-spacing:5.676800pt;}
.ws13_c00226{word-spacing:7.456000pt;}
.ws16_c00226{word-spacing:8.012800pt;}
.ws15_c00226{word-spacing:8.057600pt;}
.ws14_c00226{word-spacing:8.179200pt;}
.wsf_c00226{word-spacing:8.499200pt;}
.ws19_c00226{word-spacing:8.505600pt;}
.ws10_c00226{word-spacing:8.544000pt;}
.ws7_c00226{word-spacing:9.484800pt;}
.ws8_c00226{word-spacing:9.504000pt;}
.wsd_c00226{word-spacing:13.043200pt;}
.wse_c00226{word-spacing:13.049600pt;}
.ws22_c00226{word-spacing:16.096000pt;}
.ws21_c00226{word-spacing:16.172800pt;}
.ws20_c00226{word-spacing:24.166400pt;}
.ws26_c00226{word-spacing:31.865600pt;}
._1_c00226{margin-left:-1.036800pt;}
._0_c00226{width:1.024000pt;}
.fs0_c00226{font-size:64.000000pt;}
.y0_c00226{bottom:0.000000pt;}
.y2_c00226{bottom:41.627067pt;}
.y1_c00226{bottom:60.027067pt;}
.y1d_c00226{bottom:323.947067pt;}
.y1c_c00226{bottom:367.547067pt;}
.y1b_c00226{bottom:395.147067pt;}
.y1a_c00226{bottom:422.747067pt;}
.y19_c00226{bottom:450.347067pt;}
.y18_c00226{bottom:493.947067pt;}
.y17_c00226{bottom:520.347067pt;}
.y16_c00226{bottom:538.747067pt;}
.y15_c00226{bottom:557.147067pt;}
.y14_c00226{bottom:575.547067pt;}
.y13_c00226{bottom:593.947067pt;}
.y12_c00226{bottom:612.347067pt;}
.y11_c00226{bottom:630.747067pt;}
.y10_c00226{bottom:649.147067pt;}
.yf_c00226{bottom:667.547067pt;}
.ye_c00226{bottom:685.947067pt;}
.yd_c00226{bottom:704.347067pt;}
.yc_c00226{bottom:722.747067pt;}
.yb_c00226{bottom:741.147067pt;}
.ya_c00226{bottom:759.547067pt;}
.y9_c00226{bottom:777.947067pt;}
.y8_c00226{bottom:821.547067pt;}
.y7_c00226{bottom:849.147067pt;}
.y6_c00226{bottom:876.747067pt;}
.y5_c00226{bottom:920.347067pt;}
.y4_c00226{bottom:947.947067pt;}
.y3_c00226{bottom:975.547067pt;}
.h1_c00226{height:56.156250pt;}
.h2_c00226{height:57.375000pt;}
.h0_c00226{height:1122.666667pt;}
.w1_c00226{width:793.333333pt;}
.w0_c00226{width:793.626667pt;}
.x0_c00226{left:0.000000pt;}
.x2_c00226{left:151.200000pt;}
.x3_c00226{left:170.160000pt;}
.x1_c00226{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a04d97c1253ff93f5c0f65e2.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.106934;font-style: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;}
.ls0_c00227{letter-spacing:0.000000px;}
.ls1_c00227{letter-spacing:843.998400px;}
.sc__c00227{text-shadow:none;}
.sc0_c00227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00227{-webkit-text-stroke:0px transparent;}
.sc0_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00227{word-spacing:0.000000px;}
.fc0_c00227{color:rgb(0,0,0);}
.fs0_c00227{font-size:72.000000px;}
.y0_c00227{bottom:0.000000px;}
.y2_c00227{bottom:46.830450px;}
.y1_c00227{bottom:67.530450px;}
.y4_c00227{bottom:1048.440450px;}
.y3_c00227{bottom:1097.490450px;}
.h1_c00227{height:63.175781px;}
.h2_c00227{height:64.546875px;}
.h0_c00227{height:1263.000000px;}
.w1_c00227{width:892.500000px;}
.w0_c00227{width:892.830000px;}
.x0_c00227{left:0.000000px;}
.x2_c00227{left:127.620000px;}
.x1_c00227{left:695.880000px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls0_c00227{letter-spacing:0.000000pt;}
.ls1_c00227{letter-spacing:750.220800pt;}
.ws0_c00227{word-spacing:0.000000pt;}
.fs0_c00227{font-size:64.000000pt;}
.y0_c00227{bottom:0.000000pt;}
.y2_c00227{bottom:41.627067pt;}
.y1_c00227{bottom:60.027067pt;}
.y4_c00227{bottom:931.947067pt;}
.y3_c00227{bottom:975.547067pt;}
.h1_c00227{height:56.156250pt;}
.h2_c00227{height:57.375000pt;}
.h0_c00227{height:1122.666667pt;}
.w1_c00227{width:793.333333pt;}
.w0_c00227{width:793.626667pt;}
.x0_c00227{left:0.000000pt;}
.x2_c00227{left:113.440000pt;}
.x1_c00227{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2fa2b86a0003f6ddf2c8cd37.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.093262;font-style:normal;font-weight:normal;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_4ae4070dbb4a6f71d37dd1b8.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00228;src:url('chunks/assets/font_161baafa5cbda5f9fcfae6f1.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;line-height:1.106934;font-style:normal;font-weight:normal;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_eb91b4f49acf43d0fef4505a.woff2')format("woff");}.ff4_c00228{font-family:ff4_c00228;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsa_c00228{letter-spacing:-0.201600px;}
.ls8_c00228{letter-spacing:-0.079200px;}
.ls9_c00228{letter-spacing:-0.072000px;}
.ls3_c00228{letter-spacing:-0.064800px;}
.ls7_c00228{letter-spacing:-0.050400px;}
.ls2_c00228{letter-spacing:-0.043200px;}
.ls4_c00228{letter-spacing:-0.036000px;}
.lsd_c00228{letter-spacing:-0.028800px;}
.ls6_c00228{letter-spacing:-0.021600px;}
.lsc_c00228{letter-spacing:-0.014400px;}
.ls5_c00228{letter-spacing:-0.007200px;}
.ls1_c00228{letter-spacing:0.000000px;}
.lsb_c00228{letter-spacing:0.021600px;}
.ls0_c00228{letter-spacing:0.033552px;}
.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;}
}
.ws7_c00228{word-spacing:-1.994400px;}
.ws8_c00228{word-spacing:-1.980000px;}
.ws6_c00228{word-spacing:-1.893600px;}
.ws2_c00228{word-spacing:-0.878400px;}
.ws3_c00228{word-spacing:-0.806400px;}
.ws22_c00228{word-spacing:-0.532800px;}
.ws24_c00228{word-spacing:-0.194400px;}
.ws27_c00228{word-spacing:-0.158400px;}
.ws25_c00228{word-spacing:-0.151200px;}
.ws0_c00228{word-spacing:0.000000px;}
.ws2a_c00228{word-spacing:0.151200px;}
.ws1d_c00228{word-spacing:0.158400px;}
.ws19_c00228{word-spacing:0.165600px;}
.ws18_c00228{word-spacing:0.172800px;}
.ws21_c00228{word-spacing:0.187200px;}
.ws2c_c00228{word-spacing:0.194400px;}
.ws1e_c00228{word-spacing:0.208800px;}
.ws1f_c00228{word-spacing:2.311200px;}
.ws20_c00228{word-spacing:2.383200px;}
.ws9_c00228{word-spacing:3.088800px;}
.ws23_c00228{word-spacing:4.492800px;}
.ws1b_c00228{word-spacing:4.500000px;}
.ws1c_c00228{word-spacing:4.507200px;}
.ws1a_c00228{word-spacing:4.622400px;}
.ws28_c00228{word-spacing:5.925600px;}
.ws29_c00228{word-spacing:5.932800px;}
.wsd_c00228{word-spacing:10.260000px;}
.wsc_c00228{word-spacing:10.281600px;}
.wse_c00228{word-spacing:10.310400px;}
.ws10_c00228{word-spacing:10.936800px;}
.wsf_c00228{word-spacing:10.994400px;}
.ws11_c00228{word-spacing:11.700000px;}
.ws12_c00228{word-spacing:11.707200px;}
.ws2b_c00228{word-spacing:14.961600px;}
.ws13_c00228{word-spacing:18.432000px;}
.ws14_c00228{word-spacing:18.590400px;}
.wsb_c00228{word-spacing:20.750400px;}
.wsa_c00228{word-spacing:20.757600px;}
.ws5_c00228{word-spacing:21.463200px;}
.ws4_c00228{word-spacing:21.520800px;}
.ws17_c00228{word-spacing:29.325600px;}
.ws15_c00228{word-spacing:29.332800px;}
.ws16_c00228{word-spacing:29.354400px;}
.ws26_c00228{word-spacing:40.514400px;}
.ws1_c00228{word-spacing:187.622784px;}
._0_c00228{margin-left:-187.471800px;}
._1_c00228{width:1.152000px;}
.fc0_c00228{color:rgb(0,0,0);}
.fs0_c00228{font-size:72.000000px;}
.fs1_c00228{font-size:83.880000px;}
.y0_c00228{bottom:0.000000px;}
.y2_c00228{bottom:46.830450px;}
.y1_c00228{bottom:67.530450px;}
.y21_c00228{bottom:159.420450px;}
.y20_c00228{bottom:180.120450px;}
.y1f_c00228{bottom:200.820450px;}
.y1e_c00228{bottom:221.520450px;}
.y1d_c00228{bottom:242.220450px;}
.y1c_c00228{bottom:291.270450px;}
.y1b_c00228{bottom:322.320450px;}
.y1a_c00228{bottom:352.020450px;}
.y19_c00228{bottom:372.720450px;}
.y18_c00228{bottom:393.420450px;}
.y17_c00228{bottom:414.120450px;}
.y16_c00228{bottom:434.820450px;}
.y15_c00228{bottom:455.520450px;}
.y14_c00228{bottom:504.570450px;}
.y13_c00228{bottom:535.620450px;}
.y12_c00228{bottom:584.670450px;}
.y11_c00228{bottom:615.720450px;}
.y10_c00228{bottom:646.770450px;}
.yf_c00228{bottom:695.820450px;}
.ye_c00228{bottom:726.870450px;}
.yd_c00228{bottom:757.920450px;}
.yc_c00228{bottom:788.970450px;}
.yb_c00228{bottom:820.020450px;}
.ya_c00228{bottom:851.070450px;}
.y9_c00228{bottom:882.120450px;}
.y8_c00228{bottom:913.170450px;}
.y7_c00228{bottom:944.220450px;}
.y6_c00228{bottom:975.270450px;}
.y5_c00228{bottom:1006.320450px;}
.y4_c00228{bottom:1055.370450px;}
.y3_c00228{bottom:1094.520450px;}
.h1_c00228{height:63.175781px;}
.h3_c00228{height:64.546875px;}
.h4_c00228{height:75.093750px;}
.h2_c00228{height:87.484219px;}
.h0_c00228{height:1263.000000px;}
.w1_c00228{width:892.500000px;}
.w0_c00228{width:892.830000px;}
.x0_c00228{left:0.000000px;}
.x2_c00228{left:170.100000px;}
.x4_c00228{left:191.430000px;}
.x3_c00228{left:224.100000px;}
.x1_c00228{left:738.360000px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.lsa_c00228{letter-spacing:-0.179200pt;}
.ls8_c00228{letter-spacing:-0.070400pt;}
.ls9_c00228{letter-spacing:-0.064000pt;}
.ls3_c00228{letter-spacing:-0.057600pt;}
.ls7_c00228{letter-spacing:-0.044800pt;}
.ls2_c00228{letter-spacing:-0.038400pt;}
.ls4_c00228{letter-spacing:-0.032000pt;}
.lsd_c00228{letter-spacing:-0.025600pt;}
.ls6_c00228{letter-spacing:-0.019200pt;}
.lsc_c00228{letter-spacing:-0.012800pt;}
.ls5_c00228{letter-spacing:-0.006400pt;}
.ls1_c00228{letter-spacing:0.000000pt;}
.lsb_c00228{letter-spacing:0.019200pt;}
.ls0_c00228{letter-spacing:0.029824pt;}
.ws7_c00228{word-spacing:-1.772800pt;}
.ws8_c00228{word-spacing:-1.760000pt;}
.ws6_c00228{word-spacing:-1.683200pt;}
.ws2_c00228{word-spacing:-0.780800pt;}
.ws3_c00228{word-spacing:-0.716800pt;}
.ws22_c00228{word-spacing:-0.473600pt;}
.ws24_c00228{word-spacing:-0.172800pt;}
.ws27_c00228{word-spacing:-0.140800pt;}
.ws25_c00228{word-spacing:-0.134400pt;}
.ws0_c00228{word-spacing:0.000000pt;}
.ws2a_c00228{word-spacing:0.134400pt;}
.ws1d_c00228{word-spacing:0.140800pt;}
.ws19_c00228{word-spacing:0.147200pt;}
.ws18_c00228{word-spacing:0.153600pt;}
.ws21_c00228{word-spacing:0.166400pt;}
.ws2c_c00228{word-spacing:0.172800pt;}
.ws1e_c00228{word-spacing:0.185600pt;}
.ws1f_c00228{word-spacing:2.054400pt;}
.ws20_c00228{word-spacing:2.118400pt;}
.ws9_c00228{word-spacing:2.745600pt;}
.ws23_c00228{word-spacing:3.993600pt;}
.ws1b_c00228{word-spacing:4.000000pt;}
.ws1c_c00228{word-spacing:4.006400pt;}
.ws1a_c00228{word-spacing:4.108800pt;}
.ws28_c00228{word-spacing:5.267200pt;}
.ws29_c00228{word-spacing:5.273600pt;}
.wsd_c00228{word-spacing:9.120000pt;}
.wsc_c00228{word-spacing:9.139200pt;}
.wse_c00228{word-spacing:9.164800pt;}
.ws10_c00228{word-spacing:9.721600pt;}
.wsf_c00228{word-spacing:9.772800pt;}
.ws11_c00228{word-spacing:10.400000pt;}
.ws12_c00228{word-spacing:10.406400pt;}
.ws2b_c00228{word-spacing:13.299200pt;}
.ws13_c00228{word-spacing:16.384000pt;}
.ws14_c00228{word-spacing:16.524800pt;}
.wsb_c00228{word-spacing:18.444800pt;}
.wsa_c00228{word-spacing:18.451200pt;}
.ws5_c00228{word-spacing:19.078400pt;}
.ws4_c00228{word-spacing:19.129600pt;}
.ws17_c00228{word-spacing:26.067200pt;}
.ws15_c00228{word-spacing:26.073600pt;}
.ws16_c00228{word-spacing:26.092800pt;}
.ws26_c00228{word-spacing:36.012800pt;}
.ws1_c00228{word-spacing:166.775808pt;}
._0_c00228{margin-left:-166.641600pt;}
._1_c00228{width:1.024000pt;}
.fs0_c00228{font-size:64.000000pt;}
.fs1_c00228{font-size:74.560000pt;}
.y0_c00228{bottom:0.000000pt;}
.y2_c00228{bottom:41.627067pt;}
.y1_c00228{bottom:60.027067pt;}
.y21_c00228{bottom:141.707067pt;}
.y20_c00228{bottom:160.107067pt;}
.y1f_c00228{bottom:178.507067pt;}
.y1e_c00228{bottom:196.907067pt;}
.y1d_c00228{bottom:215.307067pt;}
.y1c_c00228{bottom:258.907067pt;}
.y1b_c00228{bottom:286.507067pt;}
.y1a_c00228{bottom:312.907067pt;}
.y19_c00228{bottom:331.307067pt;}
.y18_c00228{bottom:349.707067pt;}
.y17_c00228{bottom:368.107067pt;}
.y16_c00228{bottom:386.507067pt;}
.y15_c00228{bottom:404.907067pt;}
.y14_c00228{bottom:448.507067pt;}
.y13_c00228{bottom:476.107067pt;}
.y12_c00228{bottom:519.707067pt;}
.y11_c00228{bottom:547.307067pt;}
.y10_c00228{bottom:574.907067pt;}
.yf_c00228{bottom:618.507067pt;}
.ye_c00228{bottom:646.107067pt;}
.yd_c00228{bottom:673.707067pt;}
.yc_c00228{bottom:701.307067pt;}
.yb_c00228{bottom:728.907067pt;}
.ya_c00228{bottom:756.507067pt;}
.y9_c00228{bottom:784.107067pt;}
.y8_c00228{bottom:811.707067pt;}
.y7_c00228{bottom:839.307067pt;}
.y6_c00228{bottom:866.907067pt;}
.y5_c00228{bottom:894.507067pt;}
.y4_c00228{bottom:938.107067pt;}
.y3_c00228{bottom:972.907067pt;}
.h1_c00228{height:56.156250pt;}
.h3_c00228{height:57.375000pt;}
.h4_c00228{height:66.750000pt;}
.h2_c00228{height:77.763750pt;}
.h0_c00228{height:1122.666667pt;}
.w1_c00228{width:793.333333pt;}
.w0_c00228{width:793.626667pt;}
.x0_c00228{left:0.000000pt;}
.x2_c00228{left:151.200000pt;}
.x4_c00228{left:170.160000pt;}
.x3_c00228{left:199.200000pt;}
.x1_c00228{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_836f8bd9cfd783dd604ac6af.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.093262;font-style:normal;font-weight:normal;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_dede424a6b72354559ce5c40.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.106934;font-style:normal;font-weight:normal;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_22ba7597536bdc5ab7ce6cab.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls9_c00229{letter-spacing:-0.064800px;}
.ls3_c00229{letter-spacing:-0.057600px;}
.ls6_c00229{letter-spacing:-0.050400px;}
.lsb_c00229{letter-spacing:-0.043200px;}
.ls5_c00229{letter-spacing:-0.036000px;}
.ls4_c00229{letter-spacing:-0.028800px;}
.ls7_c00229{letter-spacing:-0.021600px;}
.ls8_c00229{letter-spacing:-0.014400px;}
.lsa_c00229{letter-spacing:-0.007200px;}
.ls2_c00229{letter-spacing:0.000000px;}
.ls1_c00229{letter-spacing:0.021600px;}
.ls0_c00229{letter-spacing:0.072000px;}
.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;}
}
.ws17_c00229{word-spacing:-4.860000px;}
.ws31_c00229{word-spacing:-3.384000px;}
.ws2f_c00229{word-spacing:-2.664000px;}
.ws30_c00229{word-spacing:-2.613600px;}
.ws2_c00229{word-spacing:-0.288000px;}
.ws1_c00229{word-spacing:-0.079200px;}
.ws0_c00229{word-spacing:0.000000px;}
.ws9_c00229{word-spacing:0.129600px;}
.ws29_c00229{word-spacing:0.158400px;}
.wsb_c00229{word-spacing:0.172800px;}
.ws1b_c00229{word-spacing:0.180000px;}
.wsa_c00229{word-spacing:0.187200px;}
.ws1a_c00229{word-spacing:0.208800px;}
.wsd_c00229{word-spacing:0.806400px;}
.ws2b_c00229{word-spacing:0.900000px;}
.wsc_c00229{word-spacing:0.907200px;}
.ws2a_c00229{word-spacing:0.928800px;}
.ws23_c00229{word-spacing:1.605600px;}
.ws11_c00229{word-spacing:2.692800px;}
.ws2d_c00229{word-spacing:2.707200px;}
.ws2e_c00229{word-spacing:2.728800px;}
.ws10_c00229{word-spacing:2.800800px;}
.ws27_c00229{word-spacing:3.060000px;}
.ws28_c00229{word-spacing:3.103200px;}
.ws6_c00229{word-spacing:3.780000px;}
.ws5_c00229{word-spacing:3.866400px;}
.ws4_c00229{word-spacing:4.514400px;}
.ws3_c00229{word-spacing:4.593600px;}
.ws22_c00229{word-spacing:4.867200px;}
.ws21_c00229{word-spacing:4.874400px;}
.ws18_c00229{word-spacing:5.968800px;}
.ws19_c00229{word-spacing:5.983200px;}
.ws1e_c00229{word-spacing:9.583200px;}
.wse_c00229{word-spacing:10.576800px;}
.wsf_c00229{word-spacing:10.634400px;}
.ws1f_c00229{word-spacing:16.027200px;}
.ws20_c00229{word-spacing:16.063200px;}
.ws1c_c00229{word-spacing:18.576000px;}
.ws1d_c00229{word-spacing:18.640800px;}
.ws32_c00229{word-spacing:20.707200px;}
.ws8_c00229{word-spacing:23.198400px;}
.ws7_c00229{word-spacing:23.220000px;}
.ws16_c00229{word-spacing:23.565600px;}
.ws15_c00229{word-spacing:23.580000px;}
.ws2c_c00229{word-spacing:24.660000px;}
.ws26_c00229{word-spacing:34.574400px;}
.ws24_c00229{word-spacing:34.725600px;}
.ws25_c00229{word-spacing:34.747200px;}
.ws12_c00229{word-spacing:35.740800px;}
.ws13_c00229{word-spacing:35.820000px;}
.ws14_c00229{word-spacing:35.863200px;}
.ws33_c00229{word-spacing:36.554400px;}
._1_c00229{margin-left:-1.094400px;}
._0_c00229{width:1.123200px;}
._2_c00229{width:3.715200px;}
.fc0_c00229{color:rgb(0,0,0);}
.fs0_c00229{font-size:72.000000px;}
.y0_c00229{bottom:0.000000px;}
.y2_c00229{bottom:46.830450px;}
.y1_c00229{bottom:67.530450px;}
.y1f_c00229{bottom:174.180450px;}
.y1e_c00229{bottom:205.230450px;}
.y1d_c00229{bottom:236.280450px;}
.y1c_c00229{bottom:267.330450px;}
.y1b_c00229{bottom:298.380450px;}
.y1a_c00229{bottom:329.430450px;}
.y19_c00229{bottom:360.390450px;}
.y18_c00229{bottom:409.440450px;}
.y17_c00229{bottom:440.400450px;}
.y16_c00229{bottom:471.540450px;}
.y15_c00229{bottom:502.590450px;}
.y14_c00229{bottom:533.640450px;}
.y13_c00229{bottom:564.690450px;}
.y12_c00229{bottom:595.740450px;}
.y11_c00229{bottom:626.790450px;}
.y10_c00229{bottom:675.840450px;}
.yf_c00229{bottom:706.890450px;}
.ye_c00229{bottom:737.940450px;}
.yd_c00229{bottom:768.990450px;}
.yc_c00229{bottom:800.040450px;}
.yb_c00229{bottom:831.090450px;}
.ya_c00229{bottom:862.140450px;}
.y9_c00229{bottom:893.190450px;}
.y8_c00229{bottom:942.240450px;}
.y7_c00229{bottom:973.290450px;}
.y6_c00229{bottom:1004.340450px;}
.y5_c00229{bottom:1035.390450px;}
.y4_c00229{bottom:1066.440450px;}
.y3_c00229{bottom:1097.490450px;}
.h1_c00229{height:63.175781px;}
.h2_c00229{height:64.546875px;}
.h3_c00229{height:75.093750px;}
.h0_c00229{height:1263.000000px;}
.w1_c00229{width:892.500000px;}
.w0_c00229{width:892.830000px;}
.x0_c00229{left:0.000000px;}
.x2_c00229{left:127.620000px;}
.x1_c00229{left:695.880000px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls9_c00229{letter-spacing:-0.057600pt;}
.ls3_c00229{letter-spacing:-0.051200pt;}
.ls6_c00229{letter-spacing:-0.044800pt;}
.lsb_c00229{letter-spacing:-0.038400pt;}
.ls5_c00229{letter-spacing:-0.032000pt;}
.ls4_c00229{letter-spacing:-0.025600pt;}
.ls7_c00229{letter-spacing:-0.019200pt;}
.ls8_c00229{letter-spacing:-0.012800pt;}
.lsa_c00229{letter-spacing:-0.006400pt;}
.ls2_c00229{letter-spacing:0.000000pt;}
.ls1_c00229{letter-spacing:0.019200pt;}
.ls0_c00229{letter-spacing:0.064000pt;}
.ws17_c00229{word-spacing:-4.320000pt;}
.ws31_c00229{word-spacing:-3.008000pt;}
.ws2f_c00229{word-spacing:-2.368000pt;}
.ws30_c00229{word-spacing:-2.323200pt;}
.ws2_c00229{word-spacing:-0.256000pt;}
.ws1_c00229{word-spacing:-0.070400pt;}
.ws0_c00229{word-spacing:0.000000pt;}
.ws9_c00229{word-spacing:0.115200pt;}
.ws29_c00229{word-spacing:0.140800pt;}
.wsb_c00229{word-spacing:0.153600pt;}
.ws1b_c00229{word-spacing:0.160000pt;}
.wsa_c00229{word-spacing:0.166400pt;}
.ws1a_c00229{word-spacing:0.185600pt;}
.wsd_c00229{word-spacing:0.716800pt;}
.ws2b_c00229{word-spacing:0.800000pt;}
.wsc_c00229{word-spacing:0.806400pt;}
.ws2a_c00229{word-spacing:0.825600pt;}
.ws23_c00229{word-spacing:1.427200pt;}
.ws11_c00229{word-spacing:2.393600pt;}
.ws2d_c00229{word-spacing:2.406400pt;}
.ws2e_c00229{word-spacing:2.425600pt;}
.ws10_c00229{word-spacing:2.489600pt;}
.ws27_c00229{word-spacing:2.720000pt;}
.ws28_c00229{word-spacing:2.758400pt;}
.ws6_c00229{word-spacing:3.360000pt;}
.ws5_c00229{word-spacing:3.436800pt;}
.ws4_c00229{word-spacing:4.012800pt;}
.ws3_c00229{word-spacing:4.083200pt;}
.ws22_c00229{word-spacing:4.326400pt;}
.ws21_c00229{word-spacing:4.332800pt;}
.ws18_c00229{word-spacing:5.305600pt;}
.ws19_c00229{word-spacing:5.318400pt;}
.ws1e_c00229{word-spacing:8.518400pt;}
.wse_c00229{word-spacing:9.401600pt;}
.wsf_c00229{word-spacing:9.452800pt;}
.ws1f_c00229{word-spacing:14.246400pt;}
.ws20_c00229{word-spacing:14.278400pt;}
.ws1c_c00229{word-spacing:16.512000pt;}
.ws1d_c00229{word-spacing:16.569600pt;}
.ws32_c00229{word-spacing:18.406400pt;}
.ws8_c00229{word-spacing:20.620800pt;}
.ws7_c00229{word-spacing:20.640000pt;}
.ws16_c00229{word-spacing:20.947200pt;}
.ws15_c00229{word-spacing:20.960000pt;}
.ws2c_c00229{word-spacing:21.920000pt;}
.ws26_c00229{word-spacing:30.732800pt;}
.ws24_c00229{word-spacing:30.867200pt;}
.ws25_c00229{word-spacing:30.886400pt;}
.ws12_c00229{word-spacing:31.769600pt;}
.ws13_c00229{word-spacing:31.840000pt;}
.ws14_c00229{word-spacing:31.878400pt;}
.ws33_c00229{word-spacing:32.492800pt;}
._1_c00229{margin-left:-0.972800pt;}
._0_c00229{width:0.998400pt;}
._2_c00229{width:3.302400pt;}
.fs0_c00229{font-size:64.000000pt;}
.y0_c00229{bottom:0.000000pt;}
.y2_c00229{bottom:41.627067pt;}
.y1_c00229{bottom:60.027067pt;}
.y1f_c00229{bottom:154.827067pt;}
.y1e_c00229{bottom:182.427067pt;}
.y1d_c00229{bottom:210.027067pt;}
.y1c_c00229{bottom:237.627067pt;}
.y1b_c00229{bottom:265.227067pt;}
.y1a_c00229{bottom:292.827067pt;}
.y19_c00229{bottom:320.347067pt;}
.y18_c00229{bottom:363.947067pt;}
.y17_c00229{bottom:391.467067pt;}
.y16_c00229{bottom:419.147067pt;}
.y15_c00229{bottom:446.747067pt;}
.y14_c00229{bottom:474.347067pt;}
.y13_c00229{bottom:501.947067pt;}
.y12_c00229{bottom:529.547067pt;}
.y11_c00229{bottom:557.147067pt;}
.y10_c00229{bottom:600.747067pt;}
.yf_c00229{bottom:628.347067pt;}
.ye_c00229{bottom:655.947067pt;}
.yd_c00229{bottom:683.547067pt;}
.yc_c00229{bottom:711.147067pt;}
.yb_c00229{bottom:738.747067pt;}
.ya_c00229{bottom:766.347067pt;}
.y9_c00229{bottom:793.947067pt;}
.y8_c00229{bottom:837.547067pt;}
.y7_c00229{bottom:865.147067pt;}
.y6_c00229{bottom:892.747067pt;}
.y5_c00229{bottom:920.347067pt;}
.y4_c00229{bottom:947.947067pt;}
.y3_c00229{bottom:975.547067pt;}
.h1_c00229{height:56.156250pt;}
.h2_c00229{height:57.375000pt;}
.h3_c00229{height:66.750000pt;}
.h0_c00229{height:1122.666667pt;}
.w1_c00229{width:793.333333pt;}
.w0_c00229{width:793.626667pt;}
.x0_c00229{left:0.000000pt;}
.x2_c00229{left:113.440000pt;}
.x1_c00229{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_17ee88d1f45a5db004b4be30.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.093262;font-style:normal;font-weight:normal;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_a4bfed39712783c105f2bc97.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00230{vertical-align:0.000000px;}
.ls9_c00230{letter-spacing:-0.079200px;}
.ls6_c00230{letter-spacing:-0.064800px;}
.ls1_c00230{letter-spacing:-0.057600px;}
.ls8_c00230{letter-spacing:-0.050400px;}
.ls3_c00230{letter-spacing:-0.043200px;}
.ls4_c00230{letter-spacing:-0.036000px;}
.ls5_c00230{letter-spacing:-0.028800px;}
.ls7_c00230{letter-spacing:-0.021600px;}
.ls2_c00230{letter-spacing:-0.014400px;}
.lsa_c00230{letter-spacing:-0.007200px;}
.ls0_c00230{letter-spacing:0.000000px;}
.lsb_c00230{letter-spacing:843.998400px;}
.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;}
}
.ws10_c00230{word-spacing:-3.592800px;}
.ws11_c00230{word-spacing:-3.362400px;}
.ws13_c00230{word-spacing:-1.994400px;}
.ws14_c00230{word-spacing:-1.980000px;}
.ws12_c00230{word-spacing:-1.965600px;}
.ws7_c00230{word-spacing:-1.684800px;}
.ws18_c00230{word-spacing:-1.612800px;}
.ws6_c00230{word-spacing:-1.576800px;}
.ws19_c00230{word-spacing:-1.555200px;}
.ws4_c00230{word-spacing:-1.252800px;}
.ws5_c00230{word-spacing:-1.216800px;}
.wsd_c00230{word-spacing:-0.900000px;}
.wse_c00230{word-spacing:-0.871200px;}
.ws0_c00230{word-spacing:0.000000px;}
.ws15_c00230{word-spacing:0.194400px;}
.wsb_c00230{word-spacing:0.813600px;}
.wsa_c00230{word-spacing:0.828000px;}
.wsc_c00230{word-spacing:0.864000px;}
.ws3_c00230{word-spacing:4.521600px;}
.ws16_c00230{word-spacing:5.220000px;}
.ws17_c00230{word-spacing:5.248800px;}
.ws1d_c00230{word-spacing:5.565600px;}
.ws8_c00230{word-spacing:12.074400px;}
.ws9_c00230{word-spacing:12.081600px;}
.wsf_c00230{word-spacing:13.500000px;}
.ws1b_c00230{word-spacing:13.507200px;}
.ws1c_c00230{word-spacing:13.658400px;}
.ws1a_c00230{word-spacing:13.888800px;}
.ws2_c00230{word-spacing:18.878400px;}
.ws1_c00230{word-spacing:19.008000px;}
._1_c00230{margin-left:-1.008000px;}
._0_c00230{width:1.008000px;}
.fc0_c00230{color:rgb(0,0,0);}
.fs0_c00230{font-size:72.000000px;}
.y0_c00230{bottom:0.000000px;}
.y2_c00230{bottom:46.830450px;}
.y1_c00230{bottom:67.530450px;}
.y17_c00230{bottom:527.340450px;}
.y16_c00230{bottom:576.390450px;}
.y15_c00230{bottom:607.440450px;}
.y14_c00230{bottom:638.490450px;}
.y13_c00230{bottom:669.540450px;}
.y12_c00230{bottom:700.590450px;}
.y11_c00230{bottom:731.640450px;}
.y10_c00230{bottom:780.690450px;}
.yf_c00230{bottom:810.390450px;}
.ye_c00230{bottom:831.090450px;}
.yd_c00230{bottom:851.790450px;}
.yc_c00230{bottom:872.490450px;}
.yb_c00230{bottom:893.190450px;}
.ya_c00230{bottom:913.890450px;}
.y9_c00230{bottom:934.590450px;}
.y8_c00230{bottom:955.290450px;}
.y7_c00230{bottom:975.990450px;}
.y6_c00230{bottom:996.690450px;}
.y5_c00230{bottom:1017.390450px;}
.y4_c00230{bottom:1066.440450px;}
.y3_c00230{bottom:1097.490450px;}
.h1_c00230{height:63.175781px;}
.h2_c00230{height:64.546875px;}
.h0_c00230{height:1263.000000px;}
.w1_c00230{width:892.500000px;}
.w0_c00230{width:892.830000px;}
.x0_c00230{left:0.000000px;}
.x2_c00230{left:170.100000px;}
.x3_c00230{left:191.430000px;}
.x1_c00230{left:738.360000px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls9_c00230{letter-spacing:-0.070400pt;}
.ls6_c00230{letter-spacing:-0.057600pt;}
.ls1_c00230{letter-spacing:-0.051200pt;}
.ls8_c00230{letter-spacing:-0.044800pt;}
.ls3_c00230{letter-spacing:-0.038400pt;}
.ls4_c00230{letter-spacing:-0.032000pt;}
.ls5_c00230{letter-spacing:-0.025600pt;}
.ls7_c00230{letter-spacing:-0.019200pt;}
.ls2_c00230{letter-spacing:-0.012800pt;}
.lsa_c00230{letter-spacing:-0.006400pt;}
.ls0_c00230{letter-spacing:0.000000pt;}
.lsb_c00230{letter-spacing:750.220800pt;}
.ws10_c00230{word-spacing:-3.193600pt;}
.ws11_c00230{word-spacing:-2.988800pt;}
.ws13_c00230{word-spacing:-1.772800pt;}
.ws14_c00230{word-spacing:-1.760000pt;}
.ws12_c00230{word-spacing:-1.747200pt;}
.ws7_c00230{word-spacing:-1.497600pt;}
.ws18_c00230{word-spacing:-1.433600pt;}
.ws6_c00230{word-spacing:-1.401600pt;}
.ws19_c00230{word-spacing:-1.382400pt;}
.ws4_c00230{word-spacing:-1.113600pt;}
.ws5_c00230{word-spacing:-1.081600pt;}
.wsd_c00230{word-spacing:-0.800000pt;}
.wse_c00230{word-spacing:-0.774400pt;}
.ws0_c00230{word-spacing:0.000000pt;}
.ws15_c00230{word-spacing:0.172800pt;}
.wsb_c00230{word-spacing:0.723200pt;}
.wsa_c00230{word-spacing:0.736000pt;}
.wsc_c00230{word-spacing:0.768000pt;}
.ws3_c00230{word-spacing:4.019200pt;}
.ws16_c00230{word-spacing:4.640000pt;}
.ws17_c00230{word-spacing:4.665600pt;}
.ws1d_c00230{word-spacing:4.947200pt;}
.ws8_c00230{word-spacing:10.732800pt;}
.ws9_c00230{word-spacing:10.739200pt;}
.wsf_c00230{word-spacing:12.000000pt;}
.ws1b_c00230{word-spacing:12.006400pt;}
.ws1c_c00230{word-spacing:12.140800pt;}
.ws1a_c00230{word-spacing:12.345600pt;}
.ws2_c00230{word-spacing:16.780800pt;}
.ws1_c00230{word-spacing:16.896000pt;}
._1_c00230{margin-left:-0.896000pt;}
._0_c00230{width:0.896000pt;}
.fs0_c00230{font-size:64.000000pt;}
.y0_c00230{bottom:0.000000pt;}
.y2_c00230{bottom:41.627067pt;}
.y1_c00230{bottom:60.027067pt;}
.y17_c00230{bottom:468.747067pt;}
.y16_c00230{bottom:512.347067pt;}
.y15_c00230{bottom:539.947067pt;}
.y14_c00230{bottom:567.547067pt;}
.y13_c00230{bottom:595.147067pt;}
.y12_c00230{bottom:622.747067pt;}
.y11_c00230{bottom:650.347067pt;}
.y10_c00230{bottom:693.947067pt;}
.yf_c00230{bottom:720.347067pt;}
.ye_c00230{bottom:738.747067pt;}
.yd_c00230{bottom:757.147067pt;}
.yc_c00230{bottom:775.547067pt;}
.yb_c00230{bottom:793.947067pt;}
.ya_c00230{bottom:812.347067pt;}
.y9_c00230{bottom:830.747067pt;}
.y8_c00230{bottom:849.147067pt;}
.y7_c00230{bottom:867.547067pt;}
.y6_c00230{bottom:885.947067pt;}
.y5_c00230{bottom:904.347067pt;}
.y4_c00230{bottom:947.947067pt;}
.y3_c00230{bottom:975.547067pt;}
.h1_c00230{height:56.156250pt;}
.h2_c00230{height:57.375000pt;}
.h0_c00230{height:1122.666667pt;}
.w1_c00230{width:793.333333pt;}
.w0_c00230{width:793.626667pt;}
.x0_c00230{left:0.000000pt;}
.x2_c00230{left:151.200000pt;}
.x3_c00230{left:170.160000pt;}
.x1_c00230{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_188ccaace393374d76db8f96.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00231{vertical-align:0.000000px;}
.ls0_c00231{letter-spacing:0.000000px;}
.ls1_c00231{letter-spacing:843.998400px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00231{word-spacing:0.000000px;}
.fc0_c00231{color:rgb(0,0,0);}
.fs0_c00231{font-size:72.000000px;}
.y0_c00231{bottom:0.000000px;}
.y2_c00231{bottom:46.830450px;}
.y1_c00231{bottom:67.530450px;}
.y5_c00231{bottom:999.390450px;}
.y4_c00231{bottom:1048.440450px;}
.y3_c00231{bottom:1097.490450px;}
.h1_c00231{height:63.175781px;}
.h2_c00231{height:64.546875px;}
.h0_c00231{height:1263.000000px;}
.w1_c00231{width:892.500000px;}
.w0_c00231{width:892.830000px;}
.x0_c00231{left:0.000000px;}
.x2_c00231{left:127.620000px;}
.x1_c00231{left:695.880000px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls0_c00231{letter-spacing:0.000000pt;}
.ls1_c00231{letter-spacing:750.220800pt;}
.ws0_c00231{word-spacing:0.000000pt;}
.fs0_c00231{font-size:64.000000pt;}
.y0_c00231{bottom:0.000000pt;}
.y2_c00231{bottom:41.627067pt;}
.y1_c00231{bottom:60.027067pt;}
.y5_c00231{bottom:888.347067pt;}
.y4_c00231{bottom:931.947067pt;}
.y3_c00231{bottom:975.547067pt;}
.h1_c00231{height:56.156250pt;}
.h2_c00231{height:57.375000pt;}
.h0_c00231{height:1122.666667pt;}
.w1_c00231{width:793.333333pt;}
.w0_c00231{width:793.626667pt;}
.x0_c00231{left:0.000000pt;}
.x2_c00231{left:113.440000pt;}
.x1_c00231{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_188ccaace393374d76db8f96.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.093262;font-style:normal;font-weight:normal;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_0b5e9185f10f63d2794215d2.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00232;src:url('chunks/assets/font_026a7b507ed816abc257b04f.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.ls5_c00232{letter-spacing:-0.072000px;}
.lsb_c00232{letter-spacing:-0.057600px;}
.ls4_c00232{letter-spacing:-0.050400px;}
.ls8_c00232{letter-spacing:-0.043200px;}
.ls7_c00232{letter-spacing:-0.036000px;}
.ls6_c00232{letter-spacing:-0.028800px;}
.ls9_c00232{letter-spacing:-0.021600px;}
.lsc_c00232{letter-spacing:-0.014400px;}
.lsd_c00232{letter-spacing:-0.007200px;}
.ls2_c00232{letter-spacing:0.000000px;}
.lse_c00232{letter-spacing:0.007200px;}
.lsa_c00232{letter-spacing:0.014400px;}
.ls3_c00232{letter-spacing:0.041940px;}
.ls0_c00232{letter-spacing:0.058716px;}
.ls1_c00232{letter-spacing:0.092268px;}
.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;}
}
.ws1e_c00232{word-spacing:-0.532800px;}
.ws1d_c00232{word-spacing:-0.511200px;}
.ws16_c00232{word-spacing:-0.158400px;}
.ws24_c00232{word-spacing:-0.151200px;}
.ws17_c00232{word-spacing:-0.144000px;}
.ws0_c00232{word-spacing:0.000000px;}
.ws1_c00232{word-spacing:0.033552px;}
.ws2_c00232{word-spacing:0.050328px;}
.ws11_c00232{word-spacing:0.165600px;}
.ws12_c00232{word-spacing:0.187200px;}
.ws13_c00232{word-spacing:0.194400px;}
.ws23_c00232{word-spacing:0.540000px;}
.ws22_c00232{word-spacing:0.568800px;}
.ws21_c00232{word-spacing:0.871200px;}
.ws20_c00232{word-spacing:0.907200px;}
.ws6_c00232{word-spacing:0.914400px;}
.ws1c_c00232{word-spacing:1.180800px;}
.ws1b_c00232{word-spacing:1.202400px;}
.wsd_c00232{word-spacing:1.648800px;}
.ws7_c00232{word-spacing:3.067200px;}
.ws9_c00232{word-spacing:5.508000px;}
.wsa_c00232{word-spacing:5.580000px;}
.ws8_c00232{word-spacing:5.601600px;}
.ws14_c00232{word-spacing:5.954400px;}
.ws15_c00232{word-spacing:5.961600px;}
.wsf_c00232{word-spacing:7.747200px;}
.ws10_c00232{word-spacing:7.776000px;}
.wse_c00232{word-spacing:7.812000px;}
.wsc_c00232{word-spacing:9.892800px;}
.ws5_c00232{word-spacing:10.504800px;}
.ws3_c00232{word-spacing:10.648800px;}
.wsb_c00232{word-spacing:10.656000px;}
.ws4_c00232{word-spacing:10.670400px;}
.ws1f_c00232{word-spacing:15.660000px;}
.ws1a_c00232{word-spacing:31.168800px;}
.ws18_c00232{word-spacing:34.005600px;}
.ws19_c00232{word-spacing:34.142400px;}
._1_c00232{width:1.008000px;}
._0_c00232{width:187.555680px;}
.fc0_c00232{color:rgb(0,0,0);}
.fs0_c00232{font-size:72.000000px;}
.fs1_c00232{font-size:83.880000px;}
.y0_c00232{bottom:0.000000px;}
.y2_c00232{bottom:46.830450px;}
.y1_c00232{bottom:67.530450px;}
.y1f_c00232{bottom:164.730450px;}
.y1e_c00232{bottom:195.780450px;}
.y1d_c00232{bottom:226.830450px;}
.y1c_c00232{bottom:257.880450px;}
.y1b_c00232{bottom:288.930450px;}
.y1a_c00232{bottom:319.890450px;}
.y19_c00232{bottom:368.940450px;}
.y18_c00232{bottom:399.990450px;}
.y17_c00232{bottom:431.040450px;}
.y16_c00232{bottom:462.090450px;}
.y15_c00232{bottom:511.140450px;}
.y14_c00232{bottom:542.190450px;}
.y13_c00232{bottom:573.240450px;}
.y12_c00232{bottom:622.290450px;}
.y11_c00232{bottom:653.340450px;}
.y10_c00232{bottom:684.390450px;}
.yf_c00232{bottom:715.440450px;}
.ye_c00232{bottom:746.490450px;}
.yd_c00232{bottom:777.540450px;}
.yc_c00232{bottom:826.590450px;}
.yb_c00232{bottom:857.640450px;}
.ya_c00232{bottom:888.690450px;}
.y9_c00232{bottom:919.740450px;}
.y8_c00232{bottom:950.790450px;}
.y7_c00232{bottom:981.840450px;}
.y6_c00232{bottom:1020.630450px;}
.y5_c00232{bottom:1046.184600px;}
.y4_c00232{bottom:1070.404950px;}
.y3_c00232{bottom:1094.520450px;}
.h1_c00232{height:63.175781px;}
.h3_c00232{height:64.546875px;}
.h2_c00232{height:87.484219px;}
.h0_c00232{height:1263.000000px;}
.w1_c00232{width:892.500000px;}
.w0_c00232{width:892.830000px;}
.x0_c00232{left:0.000000px;}
.x2_c00232{left:170.100000px;}
.x3_c00232{left:224.100000px;}
.x4_c00232{left:261.908910px;}
.x1_c00232{left:738.360000px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls5_c00232{letter-spacing:-0.064000pt;}
.lsb_c00232{letter-spacing:-0.051200pt;}
.ls4_c00232{letter-spacing:-0.044800pt;}
.ls8_c00232{letter-spacing:-0.038400pt;}
.ls7_c00232{letter-spacing:-0.032000pt;}
.ls6_c00232{letter-spacing:-0.025600pt;}
.ls9_c00232{letter-spacing:-0.019200pt;}
.lsc_c00232{letter-spacing:-0.012800pt;}
.lsd_c00232{letter-spacing:-0.006400pt;}
.ls2_c00232{letter-spacing:0.000000pt;}
.lse_c00232{letter-spacing:0.006400pt;}
.lsa_c00232{letter-spacing:0.012800pt;}
.ls3_c00232{letter-spacing:0.037280pt;}
.ls0_c00232{letter-spacing:0.052192pt;}
.ls1_c00232{letter-spacing:0.082016pt;}
.ws1e_c00232{word-spacing:-0.473600pt;}
.ws1d_c00232{word-spacing:-0.454400pt;}
.ws16_c00232{word-spacing:-0.140800pt;}
.ws24_c00232{word-spacing:-0.134400pt;}
.ws17_c00232{word-spacing:-0.128000pt;}
.ws0_c00232{word-spacing:0.000000pt;}
.ws1_c00232{word-spacing:0.029824pt;}
.ws2_c00232{word-spacing:0.044736pt;}
.ws11_c00232{word-spacing:0.147200pt;}
.ws12_c00232{word-spacing:0.166400pt;}
.ws13_c00232{word-spacing:0.172800pt;}
.ws23_c00232{word-spacing:0.480000pt;}
.ws22_c00232{word-spacing:0.505600pt;}
.ws21_c00232{word-spacing:0.774400pt;}
.ws20_c00232{word-spacing:0.806400pt;}
.ws6_c00232{word-spacing:0.812800pt;}
.ws1c_c00232{word-spacing:1.049600pt;}
.ws1b_c00232{word-spacing:1.068800pt;}
.wsd_c00232{word-spacing:1.465600pt;}
.ws7_c00232{word-spacing:2.726400pt;}
.ws9_c00232{word-spacing:4.896000pt;}
.wsa_c00232{word-spacing:4.960000pt;}
.ws8_c00232{word-spacing:4.979200pt;}
.ws14_c00232{word-spacing:5.292800pt;}
.ws15_c00232{word-spacing:5.299200pt;}
.wsf_c00232{word-spacing:6.886400pt;}
.ws10_c00232{word-spacing:6.912000pt;}
.wse_c00232{word-spacing:6.944000pt;}
.wsc_c00232{word-spacing:8.793600pt;}
.ws5_c00232{word-spacing:9.337600pt;}
.ws3_c00232{word-spacing:9.465600pt;}
.wsb_c00232{word-spacing:9.472000pt;}
.ws4_c00232{word-spacing:9.484800pt;}
.ws1f_c00232{word-spacing:13.920000pt;}
.ws1a_c00232{word-spacing:27.705600pt;}
.ws18_c00232{word-spacing:30.227200pt;}
.ws19_c00232{word-spacing:30.348800pt;}
._1_c00232{width:0.896000pt;}
._0_c00232{width:166.716160pt;}
.fs0_c00232{font-size:64.000000pt;}
.fs1_c00232{font-size:74.560000pt;}
.y0_c00232{bottom:0.000000pt;}
.y2_c00232{bottom:41.627067pt;}
.y1_c00232{bottom:60.027067pt;}
.y1f_c00232{bottom:146.427067pt;}
.y1e_c00232{bottom:174.027067pt;}
.y1d_c00232{bottom:201.627067pt;}
.y1c_c00232{bottom:229.227067pt;}
.y1b_c00232{bottom:256.827067pt;}
.y1a_c00232{bottom:284.347067pt;}
.y19_c00232{bottom:327.947067pt;}
.y18_c00232{bottom:355.547067pt;}
.y17_c00232{bottom:383.147067pt;}
.y16_c00232{bottom:410.747067pt;}
.y15_c00232{bottom:454.347067pt;}
.y14_c00232{bottom:481.947067pt;}
.y13_c00232{bottom:509.547067pt;}
.y12_c00232{bottom:553.147067pt;}
.y11_c00232{bottom:580.747067pt;}
.y10_c00232{bottom:608.347067pt;}
.yf_c00232{bottom:635.947067pt;}
.ye_c00232{bottom:663.547067pt;}
.yd_c00232{bottom:691.147067pt;}
.yc_c00232{bottom:734.747067pt;}
.yb_c00232{bottom:762.347067pt;}
.ya_c00232{bottom:789.947067pt;}
.y9_c00232{bottom:817.547067pt;}
.y8_c00232{bottom:845.147067pt;}
.y7_c00232{bottom:872.747067pt;}
.y6_c00232{bottom:907.227067pt;}
.y5_c00232{bottom:929.941867pt;}
.y4_c00232{bottom:951.471067pt;}
.y3_c00232{bottom:972.907067pt;}
.h1_c00232{height:56.156250pt;}
.h3_c00232{height:57.375000pt;}
.h2_c00232{height:77.763750pt;}
.h0_c00232{height:1122.666667pt;}
.w1_c00232{width:793.333333pt;}
.w0_c00232{width:793.626667pt;}
.x0_c00232{left:0.000000pt;}
.x2_c00232{left:151.200000pt;}
.x3_c00232{left:199.200000pt;}
.x4_c00232{left:232.807920pt;}
.x1_c00232{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2da461fad6c4015aff066d45.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.093262;font-style:normal;font-weight:normal;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_448370e609d0b57419296a30.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.106934;font-style: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;}
.ls9_c00233{letter-spacing:-0.079200px;}
.lsa_c00233{letter-spacing:-0.064800px;}
.ls8_c00233{letter-spacing:-0.057600px;}
.ls6_c00233{letter-spacing:-0.050400px;}
.ls2_c00233{letter-spacing:-0.043200px;}
.ls3_c00233{letter-spacing:-0.036000px;}
.ls7_c00233{letter-spacing:-0.028800px;}
.ls1_c00233{letter-spacing:-0.021600px;}
.ls5_c00233{letter-spacing:-0.014400px;}
.lsb_c00233{letter-spacing:-0.007200px;}
.ls0_c00233{letter-spacing:0.000000px;}
.ls4_c00233{letter-spacing:0.007200px;}
.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;}
}
.ws1e_c00233{word-spacing:-3.808800px;}
.ws1d_c00233{word-spacing:-3.772800px;}
.ws16_c00233{word-spacing:-3.405600px;}
.ws24_c00233{word-spacing:-3.398400px;}
.ws25_c00233{word-spacing:-3.391200px;}
.ws11_c00233{word-spacing:-2.692800px;}
.ws10_c00233{word-spacing:-2.512800px;}
.ws7_c00233{word-spacing:-0.907200px;}
.ws0_c00233{word-spacing:0.000000px;}
.ws29_c00233{word-spacing:0.122400px;}
.ws4_c00233{word-spacing:0.151200px;}
.ws21_c00233{word-spacing:0.165600px;}
.ws2e_c00233{word-spacing:0.194400px;}
.ws1c_c00233{word-spacing:0.266400px;}
.wsf_c00233{word-spacing:0.302400px;}
.ws1b_c00233{word-spacing:0.583200px;}
.ws19_c00233{word-spacing:0.900000px;}
.ws1a_c00233{word-spacing:0.986400px;}
.wsd_c00233{word-spacing:1.598400px;}
.wsc_c00233{word-spacing:1.627200px;}
.ws18_c00233{word-spacing:2.340000px;}
.ws17_c00233{word-spacing:2.354400px;}
.wsa_c00233{word-spacing:2.707200px;}
.wsb_c00233{word-spacing:2.750400px;}
.ws8_c00233{word-spacing:3.405600px;}
.ws2a_c00233{word-spacing:3.708000px;}
.ws2b_c00233{word-spacing:3.794400px;}
.ws2d_c00233{word-spacing:5.241600px;}
.ws2c_c00233{word-spacing:5.313600px;}
.ws1f_c00233{word-spacing:6.256800px;}
.ws20_c00233{word-spacing:6.336000px;}
.ws9_c00233{word-spacing:7.408800px;}
.ws5_c00233{word-spacing:8.114400px;}
.ws6_c00233{word-spacing:8.186400px;}
.wse_c00233{word-spacing:17.121600px;}
.ws28_c00233{word-spacing:17.388000px;}
.ws27_c00233{word-spacing:17.467200px;}
.ws13_c00233{word-spacing:21.052800px;}
.ws12_c00233{word-spacing:21.081600px;}
.ws22_c00233{word-spacing:24.962400px;}
.ws23_c00233{word-spacing:25.056000px;}
.ws3_c00233{word-spacing:25.394400px;}
.ws26_c00233{word-spacing:27.108000px;}
.ws1_c00233{word-spacing:27.180000px;}
.ws2_c00233{word-spacing:27.201600px;}
.ws14_c00233{word-spacing:30.772800px;}
.ws15_c00233{word-spacing:30.931200px;}
._0_c00233{width:1.324800px;}
.fc0_c00233{color:rgb(0,0,0);}
.fs0_c00233{font-size:72.000000px;}
.y0_c00233{bottom:0.000000px;}
.y2_c00233{bottom:46.830450px;}
.y1_c00233{bottom:67.530450px;}
.y21_c00233{bottom:131.880450px;}
.y20_c00233{bottom:162.930450px;}
.y1f_c00233{bottom:193.980450px;}
.y1e_c00233{bottom:243.030450px;}
.y1d_c00233{bottom:274.080450px;}
.y1c_c00233{bottom:305.040450px;}
.y1b_c00233{bottom:336.090450px;}
.y1a_c00233{bottom:367.140450px;}
.y19_c00233{bottom:416.190450px;}
.y18_c00233{bottom:447.240450px;}
.y17_c00233{bottom:478.290450px;}
.y16_c00233{bottom:527.340450px;}
.y15_c00233{bottom:557.040450px;}
.y14_c00233{bottom:577.740450px;}
.y13_c00233{bottom:598.440450px;}
.y12_c00233{bottom:619.140450px;}
.y11_c00233{bottom:639.840450px;}
.y10_c00233{bottom:660.540450px;}
.yf_c00233{bottom:681.240450px;}
.ye_c00233{bottom:701.940450px;}
.yd_c00233{bottom:750.990450px;}
.yc_c00233{bottom:782.040450px;}
.yb_c00233{bottom:813.090450px;}
.ya_c00233{bottom:844.140450px;}
.y9_c00233{bottom:875.190450px;}
.y8_c00233{bottom:906.240450px;}
.y7_c00233{bottom:955.290450px;}
.y6_c00233{bottom:986.340450px;}
.y5_c00233{bottom:1035.390450px;}
.y4_c00233{bottom:1066.440450px;}
.y3_c00233{bottom:1097.490450px;}
.h1_c00233{height:63.175781px;}
.h2_c00233{height:64.546875px;}
.h0_c00233{height:1263.000000px;}
.w1_c00233{width:892.500000px;}
.w0_c00233{width:892.830000px;}
.x0_c00233{left:0.000000px;}
.x2_c00233{left:127.620000px;}
.x3_c00233{left:148.950000px;}
.x1_c00233{left:695.880000px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls9_c00233{letter-spacing:-0.070400pt;}
.lsa_c00233{letter-spacing:-0.057600pt;}
.ls8_c00233{letter-spacing:-0.051200pt;}
.ls6_c00233{letter-spacing:-0.044800pt;}
.ls2_c00233{letter-spacing:-0.038400pt;}
.ls3_c00233{letter-spacing:-0.032000pt;}
.ls7_c00233{letter-spacing:-0.025600pt;}
.ls1_c00233{letter-spacing:-0.019200pt;}
.ls5_c00233{letter-spacing:-0.012800pt;}
.lsb_c00233{letter-spacing:-0.006400pt;}
.ls0_c00233{letter-spacing:0.000000pt;}
.ls4_c00233{letter-spacing:0.006400pt;}
.ws1e_c00233{word-spacing:-3.385600pt;}
.ws1d_c00233{word-spacing:-3.353600pt;}
.ws16_c00233{word-spacing:-3.027200pt;}
.ws24_c00233{word-spacing:-3.020800pt;}
.ws25_c00233{word-spacing:-3.014400pt;}
.ws11_c00233{word-spacing:-2.393600pt;}
.ws10_c00233{word-spacing:-2.233600pt;}
.ws7_c00233{word-spacing:-0.806400pt;}
.ws0_c00233{word-spacing:0.000000pt;}
.ws29_c00233{word-spacing:0.108800pt;}
.ws4_c00233{word-spacing:0.134400pt;}
.ws21_c00233{word-spacing:0.147200pt;}
.ws2e_c00233{word-spacing:0.172800pt;}
.ws1c_c00233{word-spacing:0.236800pt;}
.wsf_c00233{word-spacing:0.268800pt;}
.ws1b_c00233{word-spacing:0.518400pt;}
.ws19_c00233{word-spacing:0.800000pt;}
.ws1a_c00233{word-spacing:0.876800pt;}
.wsd_c00233{word-spacing:1.420800pt;}
.wsc_c00233{word-spacing:1.446400pt;}
.ws18_c00233{word-spacing:2.080000pt;}
.ws17_c00233{word-spacing:2.092800pt;}
.wsa_c00233{word-spacing:2.406400pt;}
.wsb_c00233{word-spacing:2.444800pt;}
.ws8_c00233{word-spacing:3.027200pt;}
.ws2a_c00233{word-spacing:3.296000pt;}
.ws2b_c00233{word-spacing:3.372800pt;}
.ws2d_c00233{word-spacing:4.659200pt;}
.ws2c_c00233{word-spacing:4.723200pt;}
.ws1f_c00233{word-spacing:5.561600pt;}
.ws20_c00233{word-spacing:5.632000pt;}
.ws9_c00233{word-spacing:6.585600pt;}
.ws5_c00233{word-spacing:7.212800pt;}
.ws6_c00233{word-spacing:7.276800pt;}
.wse_c00233{word-spacing:15.219200pt;}
.ws28_c00233{word-spacing:15.456000pt;}
.ws27_c00233{word-spacing:15.526400pt;}
.ws13_c00233{word-spacing:18.713600pt;}
.ws12_c00233{word-spacing:18.739200pt;}
.ws22_c00233{word-spacing:22.188800pt;}
.ws23_c00233{word-spacing:22.272000pt;}
.ws3_c00233{word-spacing:22.572800pt;}
.ws26_c00233{word-spacing:24.096000pt;}
.ws1_c00233{word-spacing:24.160000pt;}
.ws2_c00233{word-spacing:24.179200pt;}
.ws14_c00233{word-spacing:27.353600pt;}
.ws15_c00233{word-spacing:27.494400pt;}
._0_c00233{width:1.177600pt;}
.fs0_c00233{font-size:64.000000pt;}
.y0_c00233{bottom:0.000000pt;}
.y2_c00233{bottom:41.627067pt;}
.y1_c00233{bottom:60.027067pt;}
.y21_c00233{bottom:117.227067pt;}
.y20_c00233{bottom:144.827067pt;}
.y1f_c00233{bottom:172.427067pt;}
.y1e_c00233{bottom:216.027067pt;}
.y1d_c00233{bottom:243.627067pt;}
.y1c_c00233{bottom:271.147067pt;}
.y1b_c00233{bottom:298.747067pt;}
.y1a_c00233{bottom:326.347067pt;}
.y19_c00233{bottom:369.947067pt;}
.y18_c00233{bottom:397.547067pt;}
.y17_c00233{bottom:425.147067pt;}
.y16_c00233{bottom:468.747067pt;}
.y15_c00233{bottom:495.147067pt;}
.y14_c00233{bottom:513.547067pt;}
.y13_c00233{bottom:531.947067pt;}
.y12_c00233{bottom:550.347067pt;}
.y11_c00233{bottom:568.747067pt;}
.y10_c00233{bottom:587.147067pt;}
.yf_c00233{bottom:605.547067pt;}
.ye_c00233{bottom:623.947067pt;}
.yd_c00233{bottom:667.547067pt;}
.yc_c00233{bottom:695.147067pt;}
.yb_c00233{bottom:722.747067pt;}
.ya_c00233{bottom:750.347067pt;}
.y9_c00233{bottom:777.947067pt;}
.y8_c00233{bottom:805.547067pt;}
.y7_c00233{bottom:849.147067pt;}
.y6_c00233{bottom:876.747067pt;}
.y5_c00233{bottom:920.347067pt;}
.y4_c00233{bottom:947.947067pt;}
.y3_c00233{bottom:975.547067pt;}
.h1_c00233{height:56.156250pt;}
.h2_c00233{height:57.375000pt;}
.h0_c00233{height:1122.666667pt;}
.w1_c00233{width:793.333333pt;}
.w0_c00233{width:793.626667pt;}
.x0_c00233{left:0.000000pt;}
.x2_c00233{left:113.440000pt;}
.x3_c00233{left:132.400000pt;}
.x1_c00233{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_64e3491581a16f27b152c18b.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.093262;font-style:normal;font-weight:normal;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_3b0c0d6746dbfb958ffd3ca9.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.106934;font-style:normal;font-weight:normal;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_1be20156b7c28c6b12304d86.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc_c00234{letter-spacing:-0.079200px;}
.ls6_c00234{letter-spacing:-0.072000px;}
.lsa_c00234{letter-spacing:-0.064800px;}
.ls7_c00234{letter-spacing:-0.057600px;}
.lsb_c00234{letter-spacing:-0.050400px;}
.ls2_c00234{letter-spacing:-0.043200px;}
.ls9_c00234{letter-spacing:-0.036000px;}
.ls8_c00234{letter-spacing:-0.028800px;}
.ls4_c00234{letter-spacing:-0.021600px;}
.ls5_c00234{letter-spacing:-0.014400px;}
.ls3_c00234{letter-spacing:-0.007200px;}
.ls1_c00234{letter-spacing:0.000000px;}
.ls0_c00234{letter-spacing:0.014400px;}
.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;}
}
.ws2d_c00234{word-spacing:-3.088800px;}
.ws2c_c00234{word-spacing:-3.031200px;}
.wsb_c00234{word-spacing:-1.987200px;}
.wsc_c00234{word-spacing:-1.944000px;}
.wsa_c00234{word-spacing:-1.929600px;}
.ws23_c00234{word-spacing:-0.576000px;}
.ws24_c00234{word-spacing:-0.388800px;}
.ws25_c00234{word-spacing:-0.360000px;}
.ws1a_c00234{word-spacing:-0.194400px;}
.ws19_c00234{word-spacing:-0.043200px;}
.ws0_c00234{word-spacing:0.000000px;}
.ws2_c00234{word-spacing:0.165600px;}
.ws4_c00234{word-spacing:0.172800px;}
.ws7_c00234{word-spacing:0.180000px;}
.ws5_c00234{word-spacing:0.187200px;}
.ws26_c00234{word-spacing:0.194400px;}
.ws1_c00234{word-spacing:0.201600px;}
.ws3_c00234{word-spacing:0.295200px;}
.ws29_c00234{word-spacing:1.209600px;}
.ws22_c00234{word-spacing:1.346400px;}
.ws1f_c00234{word-spacing:3.045600px;}
.ws20_c00234{word-spacing:3.096000px;}
.ws16_c00234{word-spacing:3.312000px;}
.ws17_c00234{word-spacing:3.463200px;}
.wse_c00234{word-spacing:3.801600px;}
.wsf_c00234{word-spacing:3.808800px;}
.ws21_c00234{word-spacing:7.768800px;}
.ws9_c00234{word-spacing:8.445600px;}
.ws8_c00234{word-spacing:8.467200px;}
.ws1d_c00234{word-spacing:10.540800px;}
.ws1e_c00234{word-spacing:10.648800px;}
.ws14_c00234{word-spacing:13.269600px;}
.ws15_c00234{word-spacing:13.384800px;}
.ws2a_c00234{word-spacing:20.714400px;}
.ws2b_c00234{word-spacing:20.995200px;}
.ws13_c00234{word-spacing:21.052800px;}
.ws12_c00234{word-spacing:21.124800px;}
.ws18_c00234{word-spacing:25.416000px;}
.ws1c_c00234{word-spacing:27.900000px;}
.ws1b_c00234{word-spacing:28.000800px;}
.ws11_c00234{word-spacing:30.045600px;}
.ws10_c00234{word-spacing:30.067200px;}
.ws28_c00234{word-spacing:31.161600px;}
.ws27_c00234{word-spacing:31.168800px;}
.wsd_c00234{word-spacing:38.325600px;}
.ws6_c00234{word-spacing:50.601600px;}
._0_c00234{width:1.008000px;}
.fc0_c00234{color:rgb(0,0,0);}
.fs0_c00234{font-size:72.000000px;}
.y0_c00234{bottom:0.000000px;}
.y2_c00234{bottom:46.830450px;}
.y1_c00234{bottom:67.530450px;}
.y23_c00234{bottom:146.280450px;}
.y22_c00234{bottom:166.980450px;}
.y21_c00234{bottom:187.680450px;}
.y20_c00234{bottom:208.380450px;}
.y1f_c00234{bottom:229.080450px;}
.y1e_c00234{bottom:249.690450px;}
.y1d_c00234{bottom:270.390450px;}
.y1c_c00234{bottom:291.090450px;}
.y1b_c00234{bottom:311.790450px;}
.y1a_c00234{bottom:332.490450px;}
.y19_c00234{bottom:353.190450px;}
.y18_c00234{bottom:373.890450px;}
.y17_c00234{bottom:394.590450px;}
.y16_c00234{bottom:415.290450px;}
.y15_c00234{bottom:435.990450px;}
.y14_c00234{bottom:456.690450px;}
.y13_c00234{bottom:477.390450px;}
.y12_c00234{bottom:498.090450px;}
.y11_c00234{bottom:518.790450px;}
.y10_c00234{bottom:567.840450px;}
.yf_c00234{bottom:598.890450px;}
.ye_c00234{bottom:647.940450px;}
.yd_c00234{bottom:678.990450px;}
.yc_c00234{bottom:710.040450px;}
.yb_c00234{bottom:741.090450px;}
.ya_c00234{bottom:772.140450px;}
.y9_c00234{bottom:821.190450px;}
.y8_c00234{bottom:870.240450px;}
.y7_c00234{bottom:901.290450px;}
.y6_c00234{bottom:950.340450px;}
.y5_c00234{bottom:999.390450px;}
.y4_c00234{bottom:1048.440450px;}
.y3_c00234{bottom:1097.490450px;}
.h1_c00234{height:63.175781px;}
.h2_c00234{height:64.546875px;}
.h3_c00234{height:75.093750px;}
.h0_c00234{height:1263.000000px;}
.w1_c00234{width:892.500000px;}
.w0_c00234{width:892.830000px;}
.x0_c00234{left:0.000000px;}
.x2_c00234{left:170.100000px;}
.x3_c00234{left:191.430000px;}
.x1_c00234{left:738.360000px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.lsc_c00234{letter-spacing:-0.070400pt;}
.ls6_c00234{letter-spacing:-0.064000pt;}
.lsa_c00234{letter-spacing:-0.057600pt;}
.ls7_c00234{letter-spacing:-0.051200pt;}
.lsb_c00234{letter-spacing:-0.044800pt;}
.ls2_c00234{letter-spacing:-0.038400pt;}
.ls9_c00234{letter-spacing:-0.032000pt;}
.ls8_c00234{letter-spacing:-0.025600pt;}
.ls4_c00234{letter-spacing:-0.019200pt;}
.ls5_c00234{letter-spacing:-0.012800pt;}
.ls3_c00234{letter-spacing:-0.006400pt;}
.ls1_c00234{letter-spacing:0.000000pt;}
.ls0_c00234{letter-spacing:0.012800pt;}
.ws2d_c00234{word-spacing:-2.745600pt;}
.ws2c_c00234{word-spacing:-2.694400pt;}
.wsb_c00234{word-spacing:-1.766400pt;}
.wsc_c00234{word-spacing:-1.728000pt;}
.wsa_c00234{word-spacing:-1.715200pt;}
.ws23_c00234{word-spacing:-0.512000pt;}
.ws24_c00234{word-spacing:-0.345600pt;}
.ws25_c00234{word-spacing:-0.320000pt;}
.ws1a_c00234{word-spacing:-0.172800pt;}
.ws19_c00234{word-spacing:-0.038400pt;}
.ws0_c00234{word-spacing:0.000000pt;}
.ws2_c00234{word-spacing:0.147200pt;}
.ws4_c00234{word-spacing:0.153600pt;}
.ws7_c00234{word-spacing:0.160000pt;}
.ws5_c00234{word-spacing:0.166400pt;}
.ws26_c00234{word-spacing:0.172800pt;}
.ws1_c00234{word-spacing:0.179200pt;}
.ws3_c00234{word-spacing:0.262400pt;}
.ws29_c00234{word-spacing:1.075200pt;}
.ws22_c00234{word-spacing:1.196800pt;}
.ws1f_c00234{word-spacing:2.707200pt;}
.ws20_c00234{word-spacing:2.752000pt;}
.ws16_c00234{word-spacing:2.944000pt;}
.ws17_c00234{word-spacing:3.078400pt;}
.wse_c00234{word-spacing:3.379200pt;}
.wsf_c00234{word-spacing:3.385600pt;}
.ws21_c00234{word-spacing:6.905600pt;}
.ws9_c00234{word-spacing:7.507200pt;}
.ws8_c00234{word-spacing:7.526400pt;}
.ws1d_c00234{word-spacing:9.369600pt;}
.ws1e_c00234{word-spacing:9.465600pt;}
.ws14_c00234{word-spacing:11.795200pt;}
.ws15_c00234{word-spacing:11.897600pt;}
.ws2a_c00234{word-spacing:18.412800pt;}
.ws2b_c00234{word-spacing:18.662400pt;}
.ws13_c00234{word-spacing:18.713600pt;}
.ws12_c00234{word-spacing:18.777600pt;}
.ws18_c00234{word-spacing:22.592000pt;}
.ws1c_c00234{word-spacing:24.800000pt;}
.ws1b_c00234{word-spacing:24.889600pt;}
.ws11_c00234{word-spacing:26.707200pt;}
.ws10_c00234{word-spacing:26.726400pt;}
.ws28_c00234{word-spacing:27.699200pt;}
.ws27_c00234{word-spacing:27.705600pt;}
.wsd_c00234{word-spacing:34.067200pt;}
.ws6_c00234{word-spacing:44.979200pt;}
._0_c00234{width:0.896000pt;}
.fs0_c00234{font-size:64.000000pt;}
.y0_c00234{bottom:0.000000pt;}
.y2_c00234{bottom:41.627067pt;}
.y1_c00234{bottom:60.027067pt;}
.y23_c00234{bottom:130.027067pt;}
.y22_c00234{bottom:148.427067pt;}
.y21_c00234{bottom:166.827067pt;}
.y20_c00234{bottom:185.227067pt;}
.y1f_c00234{bottom:203.627067pt;}
.y1e_c00234{bottom:221.947067pt;}
.y1d_c00234{bottom:240.347067pt;}
.y1c_c00234{bottom:258.747067pt;}
.y1b_c00234{bottom:277.147067pt;}
.y1a_c00234{bottom:295.547067pt;}
.y19_c00234{bottom:313.947067pt;}
.y18_c00234{bottom:332.347067pt;}
.y17_c00234{bottom:350.747067pt;}
.y16_c00234{bottom:369.147067pt;}
.y15_c00234{bottom:387.547067pt;}
.y14_c00234{bottom:405.947067pt;}
.y13_c00234{bottom:424.347067pt;}
.y12_c00234{bottom:442.747067pt;}
.y11_c00234{bottom:461.147067pt;}
.y10_c00234{bottom:504.747067pt;}
.yf_c00234{bottom:532.347067pt;}
.ye_c00234{bottom:575.947067pt;}
.yd_c00234{bottom:603.547067pt;}
.yc_c00234{bottom:631.147067pt;}
.yb_c00234{bottom:658.747067pt;}
.ya_c00234{bottom:686.347067pt;}
.y9_c00234{bottom:729.947067pt;}
.y8_c00234{bottom:773.547067pt;}
.y7_c00234{bottom:801.147067pt;}
.y6_c00234{bottom:844.747067pt;}
.y5_c00234{bottom:888.347067pt;}
.y4_c00234{bottom:931.947067pt;}
.y3_c00234{bottom:975.547067pt;}
.h1_c00234{height:56.156250pt;}
.h2_c00234{height:57.375000pt;}
.h3_c00234{height:66.750000pt;}
.h0_c00234{height:1122.666667pt;}
.w1_c00234{width:793.333333pt;}
.w0_c00234{width:793.626667pt;}
.x0_c00234{left:0.000000pt;}
.x2_c00234{left:151.200000pt;}
.x3_c00234{left:170.160000pt;}
.x1_c00234{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_af0c2eb617871f8df47ea339.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.093262;font-style:normal;font-weight:normal;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_c41e042332a4f3dab47b4b5b.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.106934;font-style: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;}
.ls10_c00235{letter-spacing:-0.100800px;}
.lsf_c00235{letter-spacing:-0.086400px;}
.lsd_c00235{letter-spacing:-0.079200px;}
.lsa_c00235{letter-spacing:-0.072000px;}
.ls8_c00235{letter-spacing:-0.064800px;}
.ls5_c00235{letter-spacing:-0.057600px;}
.ls9_c00235{letter-spacing:-0.050400px;}
.ls4_c00235{letter-spacing:-0.043200px;}
.ls7_c00235{letter-spacing:-0.036000px;}
.ls3_c00235{letter-spacing:-0.028800px;}
.lsb_c00235{letter-spacing:-0.021600px;}
.ls6_c00235{letter-spacing:-0.014400px;}
.lse_c00235{letter-spacing:-0.007200px;}
.ls2_c00235{letter-spacing:0.000000px;}
.lsc_c00235{letter-spacing:0.007200px;}
.ls0_c00235{letter-spacing:0.014400px;}
.ls1_c00235{letter-spacing:0.036000px;}
.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;}
}
.ws36_c00235{word-spacing:-4.111200px;}
.ws37_c00235{word-spacing:-4.075200px;}
.ws31_c00235{word-spacing:-3.412800px;}
.ws29_c00235{word-spacing:-3.153600px;}
.ws2a_c00235{word-spacing:-3.038400px;}
.ws1a_c00235{word-spacing:-2.692800px;}
.ws19_c00235{word-spacing:-2.678400px;}
.ws22_c00235{word-spacing:-1.706400px;}
.ws23_c00235{word-spacing:-1.584000px;}
.ws0_c00235{word-spacing:0.000000px;}
.ws2c_c00235{word-spacing:0.043200px;}
.ws1d_c00235{word-spacing:0.115200px;}
.ws3a_c00235{word-spacing:0.172800px;}
.ws11_c00235{word-spacing:0.187200px;}
.ws2d_c00235{word-spacing:0.194400px;}
.ws4b_c00235{word-spacing:0.201600px;}
.ws2e_c00235{word-spacing:0.208800px;}
.ws1e_c00235{word-spacing:0.259200px;}
.ws38_c00235{word-spacing:0.532800px;}
.ws39_c00235{word-spacing:0.554400px;}
.ws1f_c00235{word-spacing:1.281600px;}
.ws4_c00235{word-spacing:3.412800px;}
.ws5_c00235{word-spacing:3.542400px;}
.ws3_c00235{word-spacing:3.693600px;}
.ws45_c00235{word-spacing:3.700800px;}
.ws44_c00235{word-spacing:3.758400px;}
.ws27_c00235{word-spacing:4.874400px;}
.ws28_c00235{word-spacing:4.888800px;}
.wsa_c00235{word-spacing:5.544000px;}
.ws35_c00235{word-spacing:5.623200px;}
.wsb_c00235{word-spacing:5.644800px;}
.ws1b_c00235{word-spacing:5.940000px;}
.ws1c_c00235{word-spacing:5.983200px;}
.ws34_c00235{word-spacing:6.048000px;}
.ws2b_c00235{word-spacing:6.652800px;}
.ws24_c00235{word-spacing:8.481600px;}
.ws46_c00235{word-spacing:9.547200px;}
.ws47_c00235{word-spacing:9.561600px;}
.ws16_c00235{word-spacing:10.274400px;}
.ws15_c00235{word-spacing:10.288800px;}
.ws42_c00235{word-spacing:10.512000px;}
.ws43_c00235{word-spacing:10.569600px;}
.ws2f_c00235{word-spacing:10.612800px;}
.ws30_c00235{word-spacing:10.670400px;}
.ws32_c00235{word-spacing:11.700000px;}
.ws20_c00235{word-spacing:11.721600px;}
.ws33_c00235{word-spacing:11.743200px;}
.ws21_c00235{word-spacing:11.757600px;}
.ws1_c00235{word-spacing:13.147200px;}
.ws2_c00235{word-spacing:13.219200px;}
.ws17_c00235{word-spacing:14.630400px;}
.ws14_c00235{word-spacing:17.827200px;}
.ws13_c00235{word-spacing:17.841600px;}
.ws3b_c00235{word-spacing:18.165600px;}
.ws3c_c00235{word-spacing:18.187200px;}
.ws6_c00235{word-spacing:19.216800px;}
.ws7_c00235{word-spacing:19.274400px;}
.ws49_c00235{word-spacing:19.288800px;}
.ws4a_c00235{word-spacing:19.339200px;}
.ws12_c00235{word-spacing:21.823200px;}
.ws48_c00235{word-spacing:23.241600px;}
.ws9_c00235{word-spacing:23.572800px;}
.ws8_c00235{word-spacing:23.601600px;}
.ws18_c00235{word-spacing:23.940000px;}
.wsd_c00235{word-spacing:26.337600px;}
.wsc_c00235{word-spacing:26.344800px;}
.ws40_c00235{word-spacing:27.907200px;}
.ws41_c00235{word-spacing:27.921600px;}
.ws10_c00235{word-spacing:28.980000px;}
.ws25_c00235{word-spacing:30.722400px;}
.ws26_c00235{word-spacing:30.780000px;}
.ws3f_c00235{word-spacing:31.860000px;}
.ws3e_c00235{word-spacing:33.595200px;}
.ws3d_c00235{word-spacing:33.681600px;}
.wsf_c00235{word-spacing:52.012800px;}
.wse_c00235{word-spacing:52.020000px;}
._1_c00235{margin-left:-1.087200px;}
._0_c00235{width:1.152000px;}
.fc0_c00235{color:rgb(0,0,0);}
.fs0_c00235{font-size:72.000000px;}
.y0_c00235{bottom:0.000000px;}
.y2_c00235{bottom:46.830450px;}
.y1_c00235{bottom:67.530450px;}
.y31_c00235{bottom:145.380450px;}
.y30_c00235{bottom:166.080450px;}
.y2f_c00235{bottom:186.780450px;}
.y2e_c00235{bottom:207.480450px;}
.y2d_c00235{bottom:228.180450px;}
.y2c_c00235{bottom:248.880450px;}
.y2b_c00235{bottom:269.580450px;}
.y2a_c00235{bottom:290.280450px;}
.y29_c00235{bottom:310.980450px;}
.y28_c00235{bottom:331.680450px;}
.y27_c00235{bottom:352.380450px;}
.y26_c00235{bottom:373.080450px;}
.y25_c00235{bottom:393.690450px;}
.y24_c00235{bottom:414.390450px;}
.y23_c00235{bottom:435.090450px;}
.y22_c00235{bottom:455.790450px;}
.y21_c00235{bottom:476.490450px;}
.y20_c00235{bottom:497.190450px;}
.y1f_c00235{bottom:517.890450px;}
.y1e_c00235{bottom:538.590450px;}
.y1d_c00235{bottom:559.290450px;}
.y1c_c00235{bottom:579.990450px;}
.y1b_c00235{bottom:600.690450px;}
.y1a_c00235{bottom:621.390450px;}
.y19_c00235{bottom:642.090450px;}
.y18_c00235{bottom:662.790450px;}
.y17_c00235{bottom:683.490450px;}
.y16_c00235{bottom:704.190450px;}
.y15_c00235{bottom:724.890450px;}
.y14_c00235{bottom:745.590450px;}
.y13_c00235{bottom:766.290450px;}
.y12_c00235{bottom:786.990450px;}
.y11_c00235{bottom:807.690450px;}
.y10_c00235{bottom:828.390450px;}
.yf_c00235{bottom:849.090450px;}
.ye_c00235{bottom:869.790450px;}
.yd_c00235{bottom:890.490450px;}
.yc_c00235{bottom:911.190450px;}
.yb_c00235{bottom:931.890450px;}
.ya_c00235{bottom:952.590450px;}
.y9_c00235{bottom:973.290450px;}
.y8_c00235{bottom:993.990450px;}
.y7_c00235{bottom:1014.690450px;}
.y6_c00235{bottom:1035.390450px;}
.y5_c00235{bottom:1056.090450px;}
.y4_c00235{bottom:1076.790450px;}
.y3_c00235{bottom:1097.490450px;}
.h1_c00235{height:63.175781px;}
.h2_c00235{height:64.546875px;}
.h0_c00235{height:1263.000000px;}
.w1_c00235{width:892.500000px;}
.w0_c00235{width:892.830000px;}
.x0_c00235{left:0.000000px;}
.x2_c00235{left:127.620000px;}
.x3_c00235{left:148.950000px;}
.x1_c00235{left:695.880000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls10_c00235{letter-spacing:-0.089600pt;}
.lsf_c00235{letter-spacing:-0.076800pt;}
.lsd_c00235{letter-spacing:-0.070400pt;}
.lsa_c00235{letter-spacing:-0.064000pt;}
.ls8_c00235{letter-spacing:-0.057600pt;}
.ls5_c00235{letter-spacing:-0.051200pt;}
.ls9_c00235{letter-spacing:-0.044800pt;}
.ls4_c00235{letter-spacing:-0.038400pt;}
.ls7_c00235{letter-spacing:-0.032000pt;}
.ls3_c00235{letter-spacing:-0.025600pt;}
.lsb_c00235{letter-spacing:-0.019200pt;}
.ls6_c00235{letter-spacing:-0.012800pt;}
.lse_c00235{letter-spacing:-0.006400pt;}
.ls2_c00235{letter-spacing:0.000000pt;}
.lsc_c00235{letter-spacing:0.006400pt;}
.ls0_c00235{letter-spacing:0.012800pt;}
.ls1_c00235{letter-spacing:0.032000pt;}
.ws36_c00235{word-spacing:-3.654400pt;}
.ws37_c00235{word-spacing:-3.622400pt;}
.ws31_c00235{word-spacing:-3.033600pt;}
.ws29_c00235{word-spacing:-2.803200pt;}
.ws2a_c00235{word-spacing:-2.700800pt;}
.ws1a_c00235{word-spacing:-2.393600pt;}
.ws19_c00235{word-spacing:-2.380800pt;}
.ws22_c00235{word-spacing:-1.516800pt;}
.ws23_c00235{word-spacing:-1.408000pt;}
.ws0_c00235{word-spacing:0.000000pt;}
.ws2c_c00235{word-spacing:0.038400pt;}
.ws1d_c00235{word-spacing:0.102400pt;}
.ws3a_c00235{word-spacing:0.153600pt;}
.ws11_c00235{word-spacing:0.166400pt;}
.ws2d_c00235{word-spacing:0.172800pt;}
.ws4b_c00235{word-spacing:0.179200pt;}
.ws2e_c00235{word-spacing:0.185600pt;}
.ws1e_c00235{word-spacing:0.230400pt;}
.ws38_c00235{word-spacing:0.473600pt;}
.ws39_c00235{word-spacing:0.492800pt;}
.ws1f_c00235{word-spacing:1.139200pt;}
.ws4_c00235{word-spacing:3.033600pt;}
.ws5_c00235{word-spacing:3.148800pt;}
.ws3_c00235{word-spacing:3.283200pt;}
.ws45_c00235{word-spacing:3.289600pt;}
.ws44_c00235{word-spacing:3.340800pt;}
.ws27_c00235{word-spacing:4.332800pt;}
.ws28_c00235{word-spacing:4.345600pt;}
.wsa_c00235{word-spacing:4.928000pt;}
.ws35_c00235{word-spacing:4.998400pt;}
.wsb_c00235{word-spacing:5.017600pt;}
.ws1b_c00235{word-spacing:5.280000pt;}
.ws1c_c00235{word-spacing:5.318400pt;}
.ws34_c00235{word-spacing:5.376000pt;}
.ws2b_c00235{word-spacing:5.913600pt;}
.ws24_c00235{word-spacing:7.539200pt;}
.ws46_c00235{word-spacing:8.486400pt;}
.ws47_c00235{word-spacing:8.499200pt;}
.ws16_c00235{word-spacing:9.132800pt;}
.ws15_c00235{word-spacing:9.145600pt;}
.ws42_c00235{word-spacing:9.344000pt;}
.ws43_c00235{word-spacing:9.395200pt;}
.ws2f_c00235{word-spacing:9.433600pt;}
.ws30_c00235{word-spacing:9.484800pt;}
.ws32_c00235{word-spacing:10.400000pt;}
.ws20_c00235{word-spacing:10.419200pt;}
.ws33_c00235{word-spacing:10.438400pt;}
.ws21_c00235{word-spacing:10.451200pt;}
.ws1_c00235{word-spacing:11.686400pt;}
.ws2_c00235{word-spacing:11.750400pt;}
.ws17_c00235{word-spacing:13.004800pt;}
.ws14_c00235{word-spacing:15.846400pt;}
.ws13_c00235{word-spacing:15.859200pt;}
.ws3b_c00235{word-spacing:16.147200pt;}
.ws3c_c00235{word-spacing:16.166400pt;}
.ws6_c00235{word-spacing:17.081600pt;}
.ws7_c00235{word-spacing:17.132800pt;}
.ws49_c00235{word-spacing:17.145600pt;}
.ws4a_c00235{word-spacing:17.190400pt;}
.ws12_c00235{word-spacing:19.398400pt;}
.ws48_c00235{word-spacing:20.659200pt;}
.ws9_c00235{word-spacing:20.953600pt;}
.ws8_c00235{word-spacing:20.979200pt;}
.ws18_c00235{word-spacing:21.280000pt;}
.wsd_c00235{word-spacing:23.411200pt;}
.wsc_c00235{word-spacing:23.417600pt;}
.ws40_c00235{word-spacing:24.806400pt;}
.ws41_c00235{word-spacing:24.819200pt;}
.ws10_c00235{word-spacing:25.760000pt;}
.ws25_c00235{word-spacing:27.308800pt;}
.ws26_c00235{word-spacing:27.360000pt;}
.ws3f_c00235{word-spacing:28.320000pt;}
.ws3e_c00235{word-spacing:29.862400pt;}
.ws3d_c00235{word-spacing:29.939200pt;}
.wsf_c00235{word-spacing:46.233600pt;}
.wse_c00235{word-spacing:46.240000pt;}
._1_c00235{margin-left:-0.966400pt;}
._0_c00235{width:1.024000pt;}
.fs0_c00235{font-size:64.000000pt;}
.y0_c00235{bottom:0.000000pt;}
.y2_c00235{bottom:41.627067pt;}
.y1_c00235{bottom:60.027067pt;}
.y31_c00235{bottom:129.227067pt;}
.y30_c00235{bottom:147.627067pt;}
.y2f_c00235{bottom:166.027067pt;}
.y2e_c00235{bottom:184.427067pt;}
.y2d_c00235{bottom:202.827067pt;}
.y2c_c00235{bottom:221.227067pt;}
.y2b_c00235{bottom:239.627067pt;}
.y2a_c00235{bottom:258.027067pt;}
.y29_c00235{bottom:276.427067pt;}
.y28_c00235{bottom:294.827067pt;}
.y27_c00235{bottom:313.227067pt;}
.y26_c00235{bottom:331.627067pt;}
.y25_c00235{bottom:349.947067pt;}
.y24_c00235{bottom:368.347067pt;}
.y23_c00235{bottom:386.747067pt;}
.y22_c00235{bottom:405.147067pt;}
.y21_c00235{bottom:423.547067pt;}
.y20_c00235{bottom:441.947067pt;}
.y1f_c00235{bottom:460.347067pt;}
.y1e_c00235{bottom:478.747067pt;}
.y1d_c00235{bottom:497.147067pt;}
.y1c_c00235{bottom:515.547067pt;}
.y1b_c00235{bottom:533.947067pt;}
.y1a_c00235{bottom:552.347067pt;}
.y19_c00235{bottom:570.747067pt;}
.y18_c00235{bottom:589.147067pt;}
.y17_c00235{bottom:607.547067pt;}
.y16_c00235{bottom:625.947067pt;}
.y15_c00235{bottom:644.347067pt;}
.y14_c00235{bottom:662.747067pt;}
.y13_c00235{bottom:681.147067pt;}
.y12_c00235{bottom:699.547067pt;}
.y11_c00235{bottom:717.947067pt;}
.y10_c00235{bottom:736.347067pt;}
.yf_c00235{bottom:754.747067pt;}
.ye_c00235{bottom:773.147067pt;}
.yd_c00235{bottom:791.547067pt;}
.yc_c00235{bottom:809.947067pt;}
.yb_c00235{bottom:828.347067pt;}
.ya_c00235{bottom:846.747067pt;}
.y9_c00235{bottom:865.147067pt;}
.y8_c00235{bottom:883.547067pt;}
.y7_c00235{bottom:901.947067pt;}
.y6_c00235{bottom:920.347067pt;}
.y5_c00235{bottom:938.747067pt;}
.y4_c00235{bottom:957.147067pt;}
.y3_c00235{bottom:975.547067pt;}
.h1_c00235{height:56.156250pt;}
.h2_c00235{height:57.375000pt;}
.h0_c00235{height:1122.666667pt;}
.w1_c00235{width:793.333333pt;}
.w0_c00235{width:793.626667pt;}
.x0_c00235{left:0.000000pt;}
.x2_c00235{left:113.440000pt;}
.x3_c00235{left:132.400000pt;}
.x1_c00235{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_478ed73e8ca21bebc325a9b5.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.093262;font-style:normal;font-weight:normal;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_8327f31f1caf49737404d7b8.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00236{vertical-align:0.000000px;}
.ls4_c00236{letter-spacing:-0.064800px;}
.ls5_c00236{letter-spacing:-0.050400px;}
.ls2_c00236{letter-spacing:-0.021600px;}
.ls1_c00236{letter-spacing:-0.014400px;}
.ls3_c00236{letter-spacing:-0.007200px;}
.ls0_c00236{letter-spacing:0.000000px;}
.ls6_c00236{letter-spacing:843.998400px;}
.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;}
}
.ws0_c00236{word-spacing:0.000000px;}
.ws3_c00236{word-spacing:0.165600px;}
.ws4_c00236{word-spacing:0.180000px;}
.ws8_c00236{word-spacing:0.201600px;}
.ws7_c00236{word-spacing:1.648800px;}
.ws5_c00236{word-spacing:8.107200px;}
.ws6_c00236{word-spacing:8.143200px;}
.ws1_c00236{word-spacing:11.239200px;}
.ws2_c00236{word-spacing:11.340000px;}
._0_c00236{width:1.152000px;}
.fc0_c00236{color:rgb(0,0,0);}
.fs0_c00236{font-size:72.000000px;}
.y0_c00236{bottom:0.000000px;}
.y2_c00236{bottom:46.830450px;}
.y1_c00236{bottom:67.530450px;}
.y9_c00236{bottom:857.190450px;}
.y8_c00236{bottom:906.240450px;}
.y7_c00236{bottom:937.290450px;}
.y6_c00236{bottom:968.340450px;}
.y5_c00236{bottom:1017.390450px;}
.y4_c00236{bottom:1048.440450px;}
.y3_c00236{bottom:1097.490450px;}
.h1_c00236{height:63.175781px;}
.h2_c00236{height:64.546875px;}
.h0_c00236{height:1263.000000px;}
.w1_c00236{width:892.500000px;}
.w0_c00236{width:892.830000px;}
.x0_c00236{left:0.000000px;}
.x2_c00236{left:170.100000px;}
.x1_c00236{left:738.360000px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls4_c00236{letter-spacing:-0.057600pt;}
.ls5_c00236{letter-spacing:-0.044800pt;}
.ls2_c00236{letter-spacing:-0.019200pt;}
.ls1_c00236{letter-spacing:-0.012800pt;}
.ls3_c00236{letter-spacing:-0.006400pt;}
.ls0_c00236{letter-spacing:0.000000pt;}
.ls6_c00236{letter-spacing:750.220800pt;}
.ws0_c00236{word-spacing:0.000000pt;}
.ws3_c00236{word-spacing:0.147200pt;}
.ws4_c00236{word-spacing:0.160000pt;}
.ws8_c00236{word-spacing:0.179200pt;}
.ws7_c00236{word-spacing:1.465600pt;}
.ws5_c00236{word-spacing:7.206400pt;}
.ws6_c00236{word-spacing:7.238400pt;}
.ws1_c00236{word-spacing:9.990400pt;}
.ws2_c00236{word-spacing:10.080000pt;}
._0_c00236{width:1.024000pt;}
.fs0_c00236{font-size:64.000000pt;}
.y0_c00236{bottom:0.000000pt;}
.y2_c00236{bottom:41.627067pt;}
.y1_c00236{bottom:60.027067pt;}
.y9_c00236{bottom:761.947067pt;}
.y8_c00236{bottom:805.547067pt;}
.y7_c00236{bottom:833.147067pt;}
.y6_c00236{bottom:860.747067pt;}
.y5_c00236{bottom:904.347067pt;}
.y4_c00236{bottom:931.947067pt;}
.y3_c00236{bottom:975.547067pt;}
.h1_c00236{height:56.156250pt;}
.h2_c00236{height:57.375000pt;}
.h0_c00236{height:1122.666667pt;}
.w1_c00236{width:793.333333pt;}
.w0_c00236{width:793.626667pt;}
.x0_c00236{left:0.000000pt;}
.x2_c00236{left:151.200000pt;}
.x1_c00236{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f719001d8ff1383deb18e107.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.ls0_c00237{letter-spacing:0.000000px;}
.ls1_c00237{letter-spacing:843.998400px;}
.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;}
}
.ws0_c00237{word-spacing:0.000000px;}
.fc0_c00237{color:rgb(0,0,0);}
.fs0_c00237{font-size:72.000000px;}
.y0_c00237{bottom:0.000000px;}
.y2_c00237{bottom:46.830450px;}
.y1_c00237{bottom:67.530450px;}
.y3_c00237{bottom:1097.490450px;}
.h1_c00237{height:63.175781px;}
.h2_c00237{height:64.546875px;}
.h0_c00237{height:1263.000000px;}
.w1_c00237{width:892.500000px;}
.w0_c00237{width:892.830000px;}
.x0_c00237{left:0.000000px;}
.x2_c00237{left:127.620000px;}
.x1_c00237{left:695.880000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls0_c00237{letter-spacing:0.000000pt;}
.ls1_c00237{letter-spacing:750.220800pt;}
.ws0_c00237{word-spacing:0.000000pt;}
.fs0_c00237{font-size:64.000000pt;}
.y0_c00237{bottom:0.000000pt;}
.y2_c00237{bottom:41.627067pt;}
.y1_c00237{bottom:60.027067pt;}
.y3_c00237{bottom:975.547067pt;}
.h1_c00237{height:56.156250pt;}
.h2_c00237{height:57.375000pt;}
.h0_c00237{height:1122.666667pt;}
.w1_c00237{width:793.333333pt;}
.w0_c00237{width:793.626667pt;}
.x0_c00237{left:0.000000pt;}
.x2_c00237{left:113.440000pt;}
.x1_c00237{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_92672ff8266b6d167acb0eed.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.093262;font-style:normal;font-weight:normal;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_1f027ab6437e2479804e3472.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00238;src:url('chunks/assets/font_750aa459b38ed0aaad202945.woff2')format("woff");}.ff3_c00238{font-family:ff3_c00238;line-height:1.106934;font-style:normal;font-weight:normal;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_6bc9e50e0660ae01893fe80e.woff2')format("woff");}.ff4_c00238{font-family:ff4_c00238;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00238{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.lsb_c00238{letter-spacing:-0.072000px;}
.lsc_c00238{letter-spacing:-0.057600px;}
.ls3_c00238{letter-spacing:-0.050400px;}
.ls8_c00238{letter-spacing:-0.043200px;}
.ls6_c00238{letter-spacing:-0.036000px;}
.ls7_c00238{letter-spacing:-0.028800px;}
.ls5_c00238{letter-spacing:-0.021600px;}
.ls9_c00238{letter-spacing:-0.014400px;}
.ls4_c00238{letter-spacing:-0.007200px;}
.ls2_c00238{letter-spacing:0.000000px;}
.lsa_c00238{letter-spacing:0.021600px;}
.ls0_c00238{letter-spacing:0.050328px;}
.ls1_c00238{letter-spacing:0.075492px;}
.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:-19.994400px;}
.ws35_c00238{word-spacing:-3.398400px;}
.ws34_c00238{word-spacing:-3.304800px;}
.ws25_c00238{word-spacing:-3.103200px;}
.ws24_c00238{word-spacing:-3.038400px;}
.ws2d_c00238{word-spacing:-2.700000px;}
.ws2e_c00238{word-spacing:-2.599200px;}
.ws22_c00238{word-spacing:-1.598400px;}
.ws1d_c00238{word-spacing:-1.281600px;}
.ws1f_c00238{word-spacing:-1.260000px;}
.ws1e_c00238{word-spacing:-1.231200px;}
.ws3_c00238{word-spacing:-0.159372px;}
.ws1_c00238{word-spacing:0.000000px;}
.ws2_c00238{word-spacing:0.041940px;}
.ws31_c00238{word-spacing:0.165600px;}
.ws17_c00238{word-spacing:0.180000px;}
.ws21_c00238{word-spacing:0.194400px;}
.ws33_c00238{word-spacing:0.554400px;}
.ws11_c00238{word-spacing:1.504800px;}
.ws10_c00238{word-spacing:1.627200px;}
.ws9_c00238{word-spacing:3.787200px;}
.ws8_c00238{word-spacing:3.844800px;}
.wsd_c00238{word-spacing:4.492800px;}
.wsc_c00238{word-spacing:4.867200px;}
.ws7_c00238{word-spacing:5.220000px;}
.ws14_c00238{word-spacing:5.846400px;}
.ws2c_c00238{word-spacing:5.860800px;}
.ws2b_c00238{word-spacing:5.932800px;}
.wsb_c00238{word-spacing:5.947200px;}
.wsa_c00238{word-spacing:5.961600px;}
.ws12_c00238{word-spacing:5.990400px;}
.ws13_c00238{word-spacing:5.997600px;}
.ws32_c00238{word-spacing:7.041600px;}
.ws19_c00238{word-spacing:8.100000px;}
.ws1a_c00238{word-spacing:8.172000px;}
.wse_c00238{word-spacing:10.180800px;}
.wsf_c00238{word-spacing:10.281600px;}
.ws16_c00238{word-spacing:10.576800px;}
.ws15_c00238{word-spacing:10.634400px;}
.ws27_c00238{word-spacing:11.671200px;}
.ws26_c00238{word-spacing:11.678400px;}
.ws5_c00238{word-spacing:11.685600px;}
.ws6_c00238{word-spacing:11.728800px;}
.ws4_c00238{word-spacing:11.844000px;}
.ws23_c00238{word-spacing:14.565600px;}
.ws1b_c00238{word-spacing:18.532800px;}
.ws1c_c00238{word-spacing:18.734400px;}
.ws30_c00238{word-spacing:25.358400px;}
.ws2f_c00238{word-spacing:25.380000px;}
.ws20_c00238{word-spacing:30.772800px;}
.ws2a_c00238{word-spacing:32.256000px;}
.ws29_c00238{word-spacing:32.486400px;}
.ws28_c00238{word-spacing:32.616000px;}
.ws18_c00238{word-spacing:43.936344px;}
._2_c00238{margin-left:-44.288640px;}
._1_c00238{width:1.008000px;}
._0_c00238{width:9.730080px;}
.fc0_c00238{color:rgb(0,0,0);}
.fs0_c00238{font-size:72.000000px;}
.fs1_c00238{font-size:83.880000px;}
.y0_c00238{bottom:0.000000px;}
.y2_c00238{bottom:46.830450px;}
.y1_c00238{bottom:67.530450px;}
.y23_c00238{bottom:139.530450px;}
.y22_c00238{bottom:170.580450px;}
.y21_c00238{bottom:201.630450px;}
.y20_c00238{bottom:231.330450px;}
.y1f_c00238{bottom:252.030450px;}
.y1e_c00238{bottom:272.730450px;}
.y1d_c00238{bottom:293.430450px;}
.y1c_c00238{bottom:314.040450px;}
.y1b_c00238{bottom:334.740450px;}
.y1a_c00238{bottom:355.440450px;}
.y19_c00238{bottom:376.140450px;}
.y18_c00238{bottom:396.840450px;}
.y17_c00238{bottom:417.540450px;}
.y16_c00238{bottom:438.240450px;}
.y15_c00238{bottom:487.290450px;}
.y14_c00238{bottom:518.340450px;}
.y13_c00238{bottom:549.390450px;}
.y12_c00238{bottom:580.440450px;}
.y11_c00238{bottom:611.490450px;}
.y10_c00238{bottom:650.730450px;}
.yf_c00238{bottom:702.750450px;}
.ye_c00238{bottom:733.620450px;}
.yd_c00238{bottom:764.760450px;}
.yc_c00238{bottom:795.810450px;}
.yb_c00238{bottom:826.860450px;}
.ya_c00238{bottom:857.910450px;}
.y9_c00238{bottom:888.960450px;}
.y8_c00238{bottom:920.010450px;}
.y7_c00238{bottom:951.060450px;}
.y6_c00238{bottom:982.110450px;}
.y5_c00238{bottom:1031.160450px;}
.y4_c00238{bottom:1070.404950px;}
.y3_c00238{bottom:1094.520450px;}
.h1_c00238{height:63.175781px;}
.h3_c00238{height:64.546875px;}
.h4_c00238{height:75.093750px;}
.h2_c00238{height:87.484219px;}
.h0_c00238{height:1263.000000px;}
.w1_c00238{width:892.500000px;}
.w0_c00238{width:892.830000px;}
.x0_c00238{left:0.000000px;}
.x2_c00238{left:170.100000px;}
.x6_c00238{left:191.430000px;}
.x3_c00238{left:251.100000px;}
.x5_c00238{left:278.100000px;}
.x4_c00238{left:299.708460px;}
.x1_c00238{left:738.360000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.lsb_c00238{letter-spacing:-0.064000pt;}
.lsc_c00238{letter-spacing:-0.051200pt;}
.ls3_c00238{letter-spacing:-0.044800pt;}
.ls8_c00238{letter-spacing:-0.038400pt;}
.ls6_c00238{letter-spacing:-0.032000pt;}
.ls7_c00238{letter-spacing:-0.025600pt;}
.ls5_c00238{letter-spacing:-0.019200pt;}
.ls9_c00238{letter-spacing:-0.012800pt;}
.ls4_c00238{letter-spacing:-0.006400pt;}
.ls2_c00238{letter-spacing:0.000000pt;}
.lsa_c00238{letter-spacing:0.019200pt;}
.ls0_c00238{letter-spacing:0.044736pt;}
.ls1_c00238{letter-spacing:0.067104pt;}
.ws0_c00238{word-spacing:-17.772800pt;}
.ws35_c00238{word-spacing:-3.020800pt;}
.ws34_c00238{word-spacing:-2.937600pt;}
.ws25_c00238{word-spacing:-2.758400pt;}
.ws24_c00238{word-spacing:-2.700800pt;}
.ws2d_c00238{word-spacing:-2.400000pt;}
.ws2e_c00238{word-spacing:-2.310400pt;}
.ws22_c00238{word-spacing:-1.420800pt;}
.ws1d_c00238{word-spacing:-1.139200pt;}
.ws1f_c00238{word-spacing:-1.120000pt;}
.ws1e_c00238{word-spacing:-1.094400pt;}
.ws3_c00238{word-spacing:-0.141664pt;}
.ws1_c00238{word-spacing:0.000000pt;}
.ws2_c00238{word-spacing:0.037280pt;}
.ws31_c00238{word-spacing:0.147200pt;}
.ws17_c00238{word-spacing:0.160000pt;}
.ws21_c00238{word-spacing:0.172800pt;}
.ws33_c00238{word-spacing:0.492800pt;}
.ws11_c00238{word-spacing:1.337600pt;}
.ws10_c00238{word-spacing:1.446400pt;}
.ws9_c00238{word-spacing:3.366400pt;}
.ws8_c00238{word-spacing:3.417600pt;}
.wsd_c00238{word-spacing:3.993600pt;}
.wsc_c00238{word-spacing:4.326400pt;}
.ws7_c00238{word-spacing:4.640000pt;}
.ws14_c00238{word-spacing:5.196800pt;}
.ws2c_c00238{word-spacing:5.209600pt;}
.ws2b_c00238{word-spacing:5.273600pt;}
.wsb_c00238{word-spacing:5.286400pt;}
.wsa_c00238{word-spacing:5.299200pt;}
.ws12_c00238{word-spacing:5.324800pt;}
.ws13_c00238{word-spacing:5.331200pt;}
.ws32_c00238{word-spacing:6.259200pt;}
.ws19_c00238{word-spacing:7.200000pt;}
.ws1a_c00238{word-spacing:7.264000pt;}
.wse_c00238{word-spacing:9.049600pt;}
.wsf_c00238{word-spacing:9.139200pt;}
.ws16_c00238{word-spacing:9.401600pt;}
.ws15_c00238{word-spacing:9.452800pt;}
.ws27_c00238{word-spacing:10.374400pt;}
.ws26_c00238{word-spacing:10.380800pt;}
.ws5_c00238{word-spacing:10.387200pt;}
.ws6_c00238{word-spacing:10.425600pt;}
.ws4_c00238{word-spacing:10.528000pt;}
.ws23_c00238{word-spacing:12.947200pt;}
.ws1b_c00238{word-spacing:16.473600pt;}
.ws1c_c00238{word-spacing:16.652800pt;}
.ws30_c00238{word-spacing:22.540800pt;}
.ws2f_c00238{word-spacing:22.560000pt;}
.ws20_c00238{word-spacing:27.353600pt;}
.ws2a_c00238{word-spacing:28.672000pt;}
.ws29_c00238{word-spacing:28.876800pt;}
.ws28_c00238{word-spacing:28.992000pt;}
.ws18_c00238{word-spacing:39.054528pt;}
._2_c00238{margin-left:-39.367680pt;}
._1_c00238{width:0.896000pt;}
._0_c00238{width:8.648960pt;}
.fs0_c00238{font-size:64.000000pt;}
.fs1_c00238{font-size:74.560000pt;}
.y0_c00238{bottom:0.000000pt;}
.y2_c00238{bottom:41.627067pt;}
.y1_c00238{bottom:60.027067pt;}
.y23_c00238{bottom:124.027067pt;}
.y22_c00238{bottom:151.627067pt;}
.y21_c00238{bottom:179.227067pt;}
.y20_c00238{bottom:205.627067pt;}
.y1f_c00238{bottom:224.027067pt;}
.y1e_c00238{bottom:242.427067pt;}
.y1d_c00238{bottom:260.827067pt;}
.y1c_c00238{bottom:279.147067pt;}
.y1b_c00238{bottom:297.547067pt;}
.y1a_c00238{bottom:315.947067pt;}
.y19_c00238{bottom:334.347067pt;}
.y18_c00238{bottom:352.747067pt;}
.y17_c00238{bottom:371.147067pt;}
.y16_c00238{bottom:389.547067pt;}
.y15_c00238{bottom:433.147067pt;}
.y14_c00238{bottom:460.747067pt;}
.y13_c00238{bottom:488.347067pt;}
.y12_c00238{bottom:515.947067pt;}
.y11_c00238{bottom:543.547067pt;}
.y10_c00238{bottom:578.427067pt;}
.yf_c00238{bottom:624.667067pt;}
.ye_c00238{bottom:652.107067pt;}
.yd_c00238{bottom:679.787067pt;}
.yc_c00238{bottom:707.387067pt;}
.yb_c00238{bottom:734.987067pt;}
.ya_c00238{bottom:762.587067pt;}
.y9_c00238{bottom:790.187067pt;}
.y8_c00238{bottom:817.787067pt;}
.y7_c00238{bottom:845.387067pt;}
.y6_c00238{bottom:872.987067pt;}
.y5_c00238{bottom:916.587067pt;}
.y4_c00238{bottom:951.471067pt;}
.y3_c00238{bottom:972.907067pt;}
.h1_c00238{height:56.156250pt;}
.h3_c00238{height:57.375000pt;}
.h4_c00238{height:66.750000pt;}
.h2_c00238{height:77.763750pt;}
.h0_c00238{height:1122.666667pt;}
.w1_c00238{width:793.333333pt;}
.w0_c00238{width:793.626667pt;}
.x0_c00238{left:0.000000pt;}
.x2_c00238{left:151.200000pt;}
.x6_c00238{left:170.160000pt;}
.x3_c00238{left:223.200000pt;}
.x5_c00238{left:247.200000pt;}
.x4_c00238{left:266.407520pt;}
.x1_c00238{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3b48e1e2db813eb6b711d5d1.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.093262;font-style:normal;font-weight:normal;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_41ccbc38adbc430c1a82f5b9.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.106934;font-style:normal;font-weight:normal;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_9016dc2a2fff35f5047e3c9e.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsd_c00239{letter-spacing:-0.079200px;}
.lsb_c00239{letter-spacing:-0.072000px;}
.ls8_c00239{letter-spacing:-0.064800px;}
.lsa_c00239{letter-spacing:-0.057600px;}
.ls7_c00239{letter-spacing:-0.050400px;}
.ls5_c00239{letter-spacing:-0.043200px;}
.ls3_c00239{letter-spacing:-0.036000px;}
.ls2_c00239{letter-spacing:-0.028800px;}
.ls6_c00239{letter-spacing:-0.021600px;}
.ls4_c00239{letter-spacing:-0.014400px;}
.ls9_c00239{letter-spacing:-0.007200px;}
.ls1_c00239{letter-spacing:0.000000px;}
.lsc_c00239{letter-spacing:0.036000px;}
.ls0_c00239{letter-spacing:0.067104px;}
.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;}
}
.ws2a_c00239{word-spacing:-4.197600px;}
.ws2b_c00239{word-spacing:-4.082400px;}
.ws16_c00239{word-spacing:-3.837600px;}
.ws15_c00239{word-spacing:-3.758400px;}
.ws13_c00239{word-spacing:-2.440800px;}
.ws14_c00239{word-spacing:-2.289600px;}
.ws25_c00239{word-spacing:-1.339200px;}
.ws26_c00239{word-spacing:-1.267200px;}
.ws0_c00239{word-spacing:0.000000px;}
.wsc_c00239{word-spacing:0.165600px;}
.ws5_c00239{word-spacing:0.172800px;}
.ws27_c00239{word-spacing:0.180000px;}
.wsb_c00239{word-spacing:0.511200px;}
.ws2d_c00239{word-spacing:0.532800px;}
.ws2e_c00239{word-spacing:0.554400px;}
.ws6_c00239{word-spacing:1.252800px;}
.ws10_c00239{word-spacing:2.714400px;}
.ws4_c00239{word-spacing:3.355200px;}
.ws3_c00239{word-spacing:3.434400px;}
.ws21_c00239{word-spacing:3.952800px;}
.ws22_c00239{word-spacing:4.190400px;}
.ws1d_c00239{word-spacing:4.852800px;}
.ws1e_c00239{word-spacing:4.953600px;}
.ws9_c00239{word-spacing:5.940000px;}
.wsa_c00239{word-spacing:6.012000px;}
.ws1c_c00239{word-spacing:8.733600px;}
.ws29_c00239{word-spacing:8.827200px;}
.ws28_c00239{word-spacing:8.841600px;}
.ws1b_c00239{word-spacing:8.863200px;}
.ws2_c00239{word-spacing:11.678400px;}
.ws1_c00239{word-spacing:11.707200px;}
.ws8_c00239{word-spacing:12.398400px;}
.ws7_c00239{word-spacing:12.441600px;}
.ws1a_c00239{word-spacing:16.365600px;}
.ws19_c00239{word-spacing:16.394400px;}
.ws12_c00239{word-spacing:24.242400px;}
.ws11_c00239{word-spacing:24.314400px;}
.ws20_c00239{word-spacing:30.319200px;}
.ws1f_c00239{word-spacing:30.448800px;}
.ws2c_c00239{word-spacing:36.187200px;}
.wsf_c00239{word-spacing:36.727200px;}
.wse_c00239{word-spacing:36.828000px;}
.ws23_c00239{word-spacing:39.088800px;}
.ws24_c00239{word-spacing:39.153600px;}
.wsd_c00239{word-spacing:43.944732px;}
.ws17_c00239{word-spacing:48.780000px;}
.ws18_c00239{word-spacing:48.801600px;}
._1_c00239{margin-left:-44.288640px;}
._0_c00239{width:1.123200px;}
.fc0_c00239{color:rgb(0,0,0);}
.fs0_c00239{font-size:72.000000px;}
.fs1_c00239{font-size:83.880000px;}
.y0_c00239{bottom:0.000000px;}
.y2_c00239{bottom:46.830450px;}
.y1_c00239{bottom:67.530450px;}
.y22_c00239{bottom:168.420450px;}
.y21_c00239{bottom:199.470450px;}
.y20_c00239{bottom:230.520450px;}
.y1f_c00239{bottom:261.570450px;}
.y1e_c00239{bottom:292.620450px;}
.y1d_c00239{bottom:341.670450px;}
.y1c_c00239{bottom:371.370450px;}
.y1b_c00239{bottom:392.070450px;}
.y1a_c00239{bottom:412.770450px;}
.y19_c00239{bottom:433.470450px;}
.y18_c00239{bottom:454.170450px;}
.y17_c00239{bottom:474.870450px;}
.y16_c00239{bottom:495.570450px;}
.y15_c00239{bottom:544.620450px;}
.y14_c00239{bottom:575.670450px;}
.y13_c00239{bottom:606.720450px;}
.y12_c00239{bottom:637.770450px;}
.y11_c00239{bottom:668.820450px;}
.y10_c00239{bottom:699.870450px;}
.yf_c00239{bottom:730.920450px;}
.ye_c00239{bottom:761.970450px;}
.yd_c00239{bottom:801.120450px;}
.yc_c00239{bottom:853.140450px;}
.yb_c00239{bottom:882.840450px;}
.ya_c00239{bottom:903.540450px;}
.y9_c00239{bottom:924.240450px;}
.y8_c00239{bottom:944.940450px;}
.y7_c00239{bottom:965.640450px;}
.y6_c00239{bottom:986.340450px;}
.y5_c00239{bottom:1035.390450px;}
.y4_c00239{bottom:1066.440450px;}
.y3_c00239{bottom:1097.490450px;}
.h1_c00239{height:63.175781px;}
.h2_c00239{height:64.546875px;}
.h3_c00239{height:87.484219px;}
.h0_c00239{height:1263.000000px;}
.w1_c00239{width:892.500000px;}
.w0_c00239{width:892.830000px;}
.x0_c00239{left:0.000000px;}
.x2_c00239{left:127.620000px;}
.x3_c00239{left:148.950000px;}
.x4_c00239{left:235.620000px;}
.x1_c00239{left:695.880000px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.lsd_c00239{letter-spacing:-0.070400pt;}
.lsb_c00239{letter-spacing:-0.064000pt;}
.ls8_c00239{letter-spacing:-0.057600pt;}
.lsa_c00239{letter-spacing:-0.051200pt;}
.ls7_c00239{letter-spacing:-0.044800pt;}
.ls5_c00239{letter-spacing:-0.038400pt;}
.ls3_c00239{letter-spacing:-0.032000pt;}
.ls2_c00239{letter-spacing:-0.025600pt;}
.ls6_c00239{letter-spacing:-0.019200pt;}
.ls4_c00239{letter-spacing:-0.012800pt;}
.ls9_c00239{letter-spacing:-0.006400pt;}
.ls1_c00239{letter-spacing:0.000000pt;}
.lsc_c00239{letter-spacing:0.032000pt;}
.ls0_c00239{letter-spacing:0.059648pt;}
.ws2a_c00239{word-spacing:-3.731200pt;}
.ws2b_c00239{word-spacing:-3.628800pt;}
.ws16_c00239{word-spacing:-3.411200pt;}
.ws15_c00239{word-spacing:-3.340800pt;}
.ws13_c00239{word-spacing:-2.169600pt;}
.ws14_c00239{word-spacing:-2.035200pt;}
.ws25_c00239{word-spacing:-1.190400pt;}
.ws26_c00239{word-spacing:-1.126400pt;}
.ws0_c00239{word-spacing:0.000000pt;}
.wsc_c00239{word-spacing:0.147200pt;}
.ws5_c00239{word-spacing:0.153600pt;}
.ws27_c00239{word-spacing:0.160000pt;}
.wsb_c00239{word-spacing:0.454400pt;}
.ws2d_c00239{word-spacing:0.473600pt;}
.ws2e_c00239{word-spacing:0.492800pt;}
.ws6_c00239{word-spacing:1.113600pt;}
.ws10_c00239{word-spacing:2.412800pt;}
.ws4_c00239{word-spacing:2.982400pt;}
.ws3_c00239{word-spacing:3.052800pt;}
.ws21_c00239{word-spacing:3.513600pt;}
.ws22_c00239{word-spacing:3.724800pt;}
.ws1d_c00239{word-spacing:4.313600pt;}
.ws1e_c00239{word-spacing:4.403200pt;}
.ws9_c00239{word-spacing:5.280000pt;}
.wsa_c00239{word-spacing:5.344000pt;}
.ws1c_c00239{word-spacing:7.763200pt;}
.ws29_c00239{word-spacing:7.846400pt;}
.ws28_c00239{word-spacing:7.859200pt;}
.ws1b_c00239{word-spacing:7.878400pt;}
.ws2_c00239{word-spacing:10.380800pt;}
.ws1_c00239{word-spacing:10.406400pt;}
.ws8_c00239{word-spacing:11.020800pt;}
.ws7_c00239{word-spacing:11.059200pt;}
.ws1a_c00239{word-spacing:14.547200pt;}
.ws19_c00239{word-spacing:14.572800pt;}
.ws12_c00239{word-spacing:21.548800pt;}
.ws11_c00239{word-spacing:21.612800pt;}
.ws20_c00239{word-spacing:26.950400pt;}
.ws1f_c00239{word-spacing:27.065600pt;}
.ws2c_c00239{word-spacing:32.166400pt;}
.wsf_c00239{word-spacing:32.646400pt;}
.wse_c00239{word-spacing:32.736000pt;}
.ws23_c00239{word-spacing:34.745600pt;}
.ws24_c00239{word-spacing:34.803200pt;}
.wsd_c00239{word-spacing:39.061984pt;}
.ws17_c00239{word-spacing:43.360000pt;}
.ws18_c00239{word-spacing:43.379200pt;}
._1_c00239{margin-left:-39.367680pt;}
._0_c00239{width:0.998400pt;}
.fs0_c00239{font-size:64.000000pt;}
.fs1_c00239{font-size:74.560000pt;}
.y0_c00239{bottom:0.000000pt;}
.y2_c00239{bottom:41.627067pt;}
.y1_c00239{bottom:60.027067pt;}
.y22_c00239{bottom:149.707067pt;}
.y21_c00239{bottom:177.307067pt;}
.y20_c00239{bottom:204.907067pt;}
.y1f_c00239{bottom:232.507067pt;}
.y1e_c00239{bottom:260.107067pt;}
.y1d_c00239{bottom:303.707067pt;}
.y1c_c00239{bottom:330.107067pt;}
.y1b_c00239{bottom:348.507067pt;}
.y1a_c00239{bottom:366.907067pt;}
.y19_c00239{bottom:385.307067pt;}
.y18_c00239{bottom:403.707067pt;}
.y17_c00239{bottom:422.107067pt;}
.y16_c00239{bottom:440.507067pt;}
.y15_c00239{bottom:484.107067pt;}
.y14_c00239{bottom:511.707067pt;}
.y13_c00239{bottom:539.307067pt;}
.y12_c00239{bottom:566.907067pt;}
.y11_c00239{bottom:594.507067pt;}
.y10_c00239{bottom:622.107067pt;}
.yf_c00239{bottom:649.707067pt;}
.ye_c00239{bottom:677.307067pt;}
.yd_c00239{bottom:712.107067pt;}
.yc_c00239{bottom:758.347067pt;}
.yb_c00239{bottom:784.747067pt;}
.ya_c00239{bottom:803.147067pt;}
.y9_c00239{bottom:821.547067pt;}
.y8_c00239{bottom:839.947067pt;}
.y7_c00239{bottom:858.347067pt;}
.y6_c00239{bottom:876.747067pt;}
.y5_c00239{bottom:920.347067pt;}
.y4_c00239{bottom:947.947067pt;}
.y3_c00239{bottom:975.547067pt;}
.h1_c00239{height:56.156250pt;}
.h2_c00239{height:57.375000pt;}
.h3_c00239{height:77.763750pt;}
.h0_c00239{height:1122.666667pt;}
.w1_c00239{width:793.333333pt;}
.w0_c00239{width:793.626667pt;}
.x0_c00239{left:0.000000pt;}
.x2_c00239{left:113.440000pt;}
.x3_c00239{left:132.400000pt;}
.x4_c00239{left:209.440000pt;}
.x1_c00239{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e48f61418c2ce975c7ab6000.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.093262;font-style:normal;font-weight:normal;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_16362ad620c457440275b9cc.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00240{vertical-align:0.000000px;}
.lsb_c00240{letter-spacing:-0.086400px;}
.ls1_c00240{letter-spacing:-0.072000px;}
.ls2_c00240{letter-spacing:-0.064800px;}
.ls9_c00240{letter-spacing:-0.057600px;}
.ls5_c00240{letter-spacing:-0.050400px;}
.ls8_c00240{letter-spacing:-0.043200px;}
.ls3_c00240{letter-spacing:-0.036000px;}
.lsa_c00240{letter-spacing:-0.028800px;}
.ls6_c00240{letter-spacing:-0.021600px;}
.ls4_c00240{letter-spacing:-0.014400px;}
.lsc_c00240{letter-spacing:-0.007200px;}
.ls0_c00240{letter-spacing:0.000000px;}
.ls7_c00240{letter-spacing:0.007200px;}
.lsd_c00240{letter-spacing:843.998400px;}
.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;}
}
.wsd_c00240{word-spacing:-3.024000px;}
.wsc_c00240{word-spacing:-2.966400px;}
.ws4_c00240{word-spacing:-1.987200px;}
.ws0_c00240{word-spacing:0.000000px;}
.ws20_c00240{word-spacing:0.165600px;}
.ws6_c00240{word-spacing:0.172800px;}
.ws1f_c00240{word-spacing:0.194400px;}
.ws5_c00240{word-spacing:0.280800px;}
.ws12_c00240{word-spacing:0.288000px;}
.ws9_c00240{word-spacing:0.748800px;}
.wsa_c00240{word-spacing:0.871200px;}
.ws8_c00240{word-spacing:0.914400px;}
.ws14_c00240{word-spacing:1.310400px;}
.ws13_c00240{word-spacing:1.332000px;}
.ws1d_c00240{word-spacing:1.519200px;}
.ws1e_c00240{word-spacing:1.663200px;}
.wsb_c00240{word-spacing:3.081600px;}
.ws3_c00240{word-spacing:3.434400px;}
.ws18_c00240{word-spacing:5.292000px;}
.ws17_c00240{word-spacing:5.407200px;}
.wsf_c00240{word-spacing:5.587200px;}
.wse_c00240{word-spacing:5.688000px;}
.ws1b_c00240{word-spacing:13.838400px;}
.ws1c_c00240{word-spacing:13.860000px;}
.ws16_c00240{word-spacing:21.816000px;}
.ws15_c00240{word-spacing:21.844800px;}
.ws1_c00240{word-spacing:22.118400px;}
.ws2_c00240{word-spacing:22.183200px;}
.ws7_c00240{word-spacing:23.580000px;}
.ws10_c00240{word-spacing:25.689600px;}
.ws11_c00240{word-spacing:25.740000px;}
.ws1a_c00240{word-spacing:62.460000px;}
.ws19_c00240{word-spacing:62.575200px;}
.fc0_c00240{color:rgb(0,0,0);}
.fs0_c00240{font-size:72.000000px;}
.y0_c00240{bottom:0.000000px;}
.y2_c00240{bottom:46.830450px;}
.y1_c00240{bottom:67.530450px;}
.y15_c00240{bottom:575.040450px;}
.y14_c00240{bottom:595.740450px;}
.y13_c00240{bottom:616.440450px;}
.y12_c00240{bottom:637.140450px;}
.y11_c00240{bottom:657.840450px;}
.y10_c00240{bottom:678.540450px;}
.yf_c00240{bottom:699.240450px;}
.ye_c00240{bottom:719.940450px;}
.yd_c00240{bottom:768.990450px;}
.yc_c00240{bottom:800.040450px;}
.yb_c00240{bottom:831.090450px;}
.ya_c00240{bottom:862.140450px;}
.y9_c00240{bottom:893.190450px;}
.y8_c00240{bottom:924.240450px;}
.y7_c00240{bottom:955.290450px;}
.y6_c00240{bottom:1004.340450px;}
.y5_c00240{bottom:1035.390450px;}
.y4_c00240{bottom:1066.440450px;}
.y3_c00240{bottom:1097.490450px;}
.h1_c00240{height:63.175781px;}
.h2_c00240{height:64.546875px;}
.h0_c00240{height:1263.000000px;}
.w1_c00240{width:892.500000px;}
.w0_c00240{width:892.830000px;}
.x0_c00240{left:0.000000px;}
.x2_c00240{left:170.100000px;}
.x3_c00240{left:191.430000px;}
.x1_c00240{left:738.360000px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.lsb_c00240{letter-spacing:-0.076800pt;}
.ls1_c00240{letter-spacing:-0.064000pt;}
.ls2_c00240{letter-spacing:-0.057600pt;}
.ls9_c00240{letter-spacing:-0.051200pt;}
.ls5_c00240{letter-spacing:-0.044800pt;}
.ls8_c00240{letter-spacing:-0.038400pt;}
.ls3_c00240{letter-spacing:-0.032000pt;}
.lsa_c00240{letter-spacing:-0.025600pt;}
.ls6_c00240{letter-spacing:-0.019200pt;}
.ls4_c00240{letter-spacing:-0.012800pt;}
.lsc_c00240{letter-spacing:-0.006400pt;}
.ls0_c00240{letter-spacing:0.000000pt;}
.ls7_c00240{letter-spacing:0.006400pt;}
.lsd_c00240{letter-spacing:750.220800pt;}
.wsd_c00240{word-spacing:-2.688000pt;}
.wsc_c00240{word-spacing:-2.636800pt;}
.ws4_c00240{word-spacing:-1.766400pt;}
.ws0_c00240{word-spacing:0.000000pt;}
.ws20_c00240{word-spacing:0.147200pt;}
.ws6_c00240{word-spacing:0.153600pt;}
.ws1f_c00240{word-spacing:0.172800pt;}
.ws5_c00240{word-spacing:0.249600pt;}
.ws12_c00240{word-spacing:0.256000pt;}
.ws9_c00240{word-spacing:0.665600pt;}
.wsa_c00240{word-spacing:0.774400pt;}
.ws8_c00240{word-spacing:0.812800pt;}
.ws14_c00240{word-spacing:1.164800pt;}
.ws13_c00240{word-spacing:1.184000pt;}
.ws1d_c00240{word-spacing:1.350400pt;}
.ws1e_c00240{word-spacing:1.478400pt;}
.wsb_c00240{word-spacing:2.739200pt;}
.ws3_c00240{word-spacing:3.052800pt;}
.ws18_c00240{word-spacing:4.704000pt;}
.ws17_c00240{word-spacing:4.806400pt;}
.wsf_c00240{word-spacing:4.966400pt;}
.wse_c00240{word-spacing:5.056000pt;}
.ws1b_c00240{word-spacing:12.300800pt;}
.ws1c_c00240{word-spacing:12.320000pt;}
.ws16_c00240{word-spacing:19.392000pt;}
.ws15_c00240{word-spacing:19.417600pt;}
.ws1_c00240{word-spacing:19.660800pt;}
.ws2_c00240{word-spacing:19.718400pt;}
.ws7_c00240{word-spacing:20.960000pt;}
.ws10_c00240{word-spacing:22.835200pt;}
.ws11_c00240{word-spacing:22.880000pt;}
.ws1a_c00240{word-spacing:55.520000pt;}
.ws19_c00240{word-spacing:55.622400pt;}
.fs0_c00240{font-size:64.000000pt;}
.y0_c00240{bottom:0.000000pt;}
.y2_c00240{bottom:41.627067pt;}
.y1_c00240{bottom:60.027067pt;}
.y15_c00240{bottom:511.147067pt;}
.y14_c00240{bottom:529.547067pt;}
.y13_c00240{bottom:547.947067pt;}
.y12_c00240{bottom:566.347067pt;}
.y11_c00240{bottom:584.747067pt;}
.y10_c00240{bottom:603.147067pt;}
.yf_c00240{bottom:621.547067pt;}
.ye_c00240{bottom:639.947067pt;}
.yd_c00240{bottom:683.547067pt;}
.yc_c00240{bottom:711.147067pt;}
.yb_c00240{bottom:738.747067pt;}
.ya_c00240{bottom:766.347067pt;}
.y9_c00240{bottom:793.947067pt;}
.y8_c00240{bottom:821.547067pt;}
.y7_c00240{bottom:849.147067pt;}
.y6_c00240{bottom:892.747067pt;}
.y5_c00240{bottom:920.347067pt;}
.y4_c00240{bottom:947.947067pt;}
.y3_c00240{bottom:975.547067pt;}
.h1_c00240{height:56.156250pt;}
.h2_c00240{height:57.375000pt;}
.h0_c00240{height:1122.666667pt;}
.w1_c00240{width:793.333333pt;}
.w0_c00240{width:793.626667pt;}
.x0_c00240{left:0.000000pt;}
.x2_c00240{left:151.200000pt;}
.x3_c00240{left:170.160000pt;}
.x1_c00240{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a01e766aac10d2b2ee8daadd.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.106934;font-style: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;}
.ls0_c00241{letter-spacing:0.000000px;}
.ls1_c00241{letter-spacing:843.998400px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00241{word-spacing:0.000000px;}
.fc0_c00241{color:rgb(0,0,0);}
.fs0_c00241{font-size:72.000000px;}
.y0_c00241{bottom:0.000000px;}
.y2_c00241{bottom:46.830450px;}
.y1_c00241{bottom:67.530450px;}
.y5_c00241{bottom:1056.090450px;}
.y4_c00241{bottom:1076.790450px;}
.y3_c00241{bottom:1097.490450px;}
.h1_c00241{height:63.175781px;}
.h2_c00241{height:64.546875px;}
.h0_c00241{height:1263.000000px;}
.w1_c00241{width:892.500000px;}
.w0_c00241{width:892.830000px;}
.x0_c00241{left:0.000000px;}
.x2_c00241{left:127.620000px;}
.x3_c00241{left:148.950000px;}
.x1_c00241{left:695.880000px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls0_c00241{letter-spacing:0.000000pt;}
.ls1_c00241{letter-spacing:750.220800pt;}
.ws0_c00241{word-spacing:0.000000pt;}
.fs0_c00241{font-size:64.000000pt;}
.y0_c00241{bottom:0.000000pt;}
.y2_c00241{bottom:41.627067pt;}
.y1_c00241{bottom:60.027067pt;}
.y5_c00241{bottom:938.747067pt;}
.y4_c00241{bottom:957.147067pt;}
.y3_c00241{bottom:975.547067pt;}
.h1_c00241{height:56.156250pt;}
.h2_c00241{height:57.375000pt;}
.h0_c00241{height:1122.666667pt;}
.w1_c00241{width:793.333333pt;}
.w0_c00241{width:793.626667pt;}
.x0_c00241{left:0.000000pt;}
.x2_c00241{left:113.440000pt;}
.x3_c00241{left:132.400000pt;}
.x1_c00241{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2da461fad6c4015aff066d45.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.093262;font-style:normal;font-weight:normal;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_752d06fea071af2dce093699.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00242;src:url('chunks/assets/font_1e2a1ffc15c579d2c55cbd0c.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.lse_c00242{letter-spacing:-0.115200px;}
.lsb_c00242{letter-spacing:-0.086400px;}
.lsd_c00242{letter-spacing:-0.072000px;}
.lsa_c00242{letter-spacing:-0.064800px;}
.ls4_c00242{letter-spacing:-0.057600px;}
.ls3_c00242{letter-spacing:-0.050400px;}
.ls8_c00242{letter-spacing:-0.043200px;}
.ls7_c00242{letter-spacing:-0.036000px;}
.ls9_c00242{letter-spacing:-0.028800px;}
.ls5_c00242{letter-spacing:-0.021600px;}
.ls6_c00242{letter-spacing:-0.014400px;}
.lsc_c00242{letter-spacing:-0.007200px;}
.ls2_c00242{letter-spacing:0.000000px;}
.ls1_c00242{letter-spacing:0.021600px;}
.ls0_c00242{letter-spacing:0.067104px;}
.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;}
}
.ws2a_c00242{word-spacing:-1.994400px;}
.ws29_c00242{word-spacing:-1.958400px;}
.ws21_c00242{word-spacing:-0.532800px;}
.ws20_c00242{word-spacing:-0.518400px;}
.wsd_c00242{word-spacing:-0.252000px;}
.wsc_c00242{word-spacing:-0.144000px;}
.ws0_c00242{word-spacing:0.000000px;}
.ws1_c00242{word-spacing:0.025164px;}
.wsa_c00242{word-spacing:0.187200px;}
.ws1d_c00242{word-spacing:0.194400px;}
.ws18_c00242{word-spacing:0.547200px;}
.ws19_c00242{word-spacing:0.741600px;}
.ws1a_c00242{word-spacing:0.900000px;}
.wsb_c00242{word-spacing:0.943200px;}
.ws1b_c00242{word-spacing:1.080000px;}
.ws22_c00242{word-spacing:1.195200px;}
.ws1e_c00242{word-spacing:1.224000px;}
.ws23_c00242{word-spacing:1.281600px;}
.ws1f_c00242{word-spacing:1.382400px;}
.ws17_c00242{word-spacing:3.067200px;}
.ws16_c00242{word-spacing:3.117600px;}
.ws25_c00242{word-spacing:4.132800px;}
.ws24_c00242{word-spacing:4.147200px;}
.ws9_c00242{word-spacing:4.204800px;}
.ws8_c00242{word-spacing:4.248000px;}
.wse_c00242{word-spacing:4.802400px;}
.wsf_c00242{word-spacing:4.816800px;}
.ws4_c00242{word-spacing:7.372800px;}
.ws3_c00242{word-spacing:7.437600px;}
.ws27_c00242{word-spacing:13.773600px;}
.ws26_c00242{word-spacing:13.867200px;}
.ws14_c00242{word-spacing:13.874400px;}
.ws15_c00242{word-spacing:13.888800px;}
.ws2d_c00242{word-spacing:13.910400px;}
.ws12_c00242{word-spacing:16.358400px;}
.ws13_c00242{word-spacing:16.380000px;}
.ws11_c00242{word-spacing:18.878400px;}
.ws10_c00242{word-spacing:18.914400px;}
.ws2b_c00242{word-spacing:22.068000px;}
.ws2c_c00242{word-spacing:22.161600px;}
.ws6_c00242{word-spacing:23.234400px;}
.ws7_c00242{word-spacing:23.256000px;}
.ws2_c00242{word-spacing:24.328800px;}
.ws28_c00242{word-spacing:24.645600px;}
.ws1c_c00242{word-spacing:27.201600px;}
.ws5_c00242{word-spacing:35.848800px;}
._1_c00242{margin-left:-2.952000px;}
._2_c00242{width:1.288800px;}
._0_c00242{width:78.092280px;}
.fc0_c00242{color:rgb(0,0,0);}
.fs0_c00242{font-size:72.000000px;}
.fs1_c00242{font-size:83.880000px;}
.y0_c00242{bottom:0.000000px;}
.y2_c00242{bottom:46.830450px;}
.y1_c00242{bottom:67.530450px;}
.y23_c00242{bottom:135.750450px;}
.y22_c00242{bottom:166.800450px;}
.y21_c00242{bottom:197.850450px;}
.y20_c00242{bottom:228.900450px;}
.y1f_c00242{bottom:259.950450px;}
.y1e_c00242{bottom:291.000450px;}
.y1d_c00242{bottom:322.050450px;}
.y1c_c00242{bottom:353.100450px;}
.y1b_c00242{bottom:384.150450px;}
.y1a_c00242{bottom:415.200450px;}
.y19_c00242{bottom:464.250450px;}
.y18_c00242{bottom:493.950450px;}
.y17_c00242{bottom:514.650450px;}
.y16_c00242{bottom:535.350450px;}
.y15_c00242{bottom:556.050450px;}
.y14_c00242{bottom:576.750450px;}
.y13_c00242{bottom:597.450450px;}
.y12_c00242{bottom:618.150450px;}
.y11_c00242{bottom:638.850450px;}
.y10_c00242{bottom:659.550450px;}
.yf_c00242{bottom:708.510450px;}
.ye_c00242{bottom:739.560450px;}
.yd_c00242{bottom:770.610450px;}
.yc_c00242{bottom:801.660450px;}
.yb_c00242{bottom:850.710450px;}
.ya_c00242{bottom:881.760450px;}
.y9_c00242{bottom:912.810450px;}
.y8_c00242{bottom:943.860450px;}
.y7_c00242{bottom:974.910450px;}
.y6_c00242{bottom:1005.960450px;}
.y5_c00242{bottom:1044.750450px;}
.y4_c00242{bottom:1070.404950px;}
.y3_c00242{bottom:1094.520450px;}
.h1_c00242{height:63.175781px;}
.h3_c00242{height:64.546875px;}
.h2_c00242{height:87.484219px;}
.h0_c00242{height:1263.000000px;}
.w1_c00242{width:892.500000px;}
.w0_c00242{width:892.830000px;}
.x0_c00242{left:0.000000px;}
.x2_c00242{left:170.100000px;}
.x5_c00242{left:191.430000px;}
.x3_c00242{left:305.100000px;}
.x4_c00242{left:375.307560px;}
.x1_c00242{left:738.360000px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.lse_c00242{letter-spacing:-0.102400pt;}
.lsb_c00242{letter-spacing:-0.076800pt;}
.lsd_c00242{letter-spacing:-0.064000pt;}
.lsa_c00242{letter-spacing:-0.057600pt;}
.ls4_c00242{letter-spacing:-0.051200pt;}
.ls3_c00242{letter-spacing:-0.044800pt;}
.ls8_c00242{letter-spacing:-0.038400pt;}
.ls7_c00242{letter-spacing:-0.032000pt;}
.ls9_c00242{letter-spacing:-0.025600pt;}
.ls5_c00242{letter-spacing:-0.019200pt;}
.ls6_c00242{letter-spacing:-0.012800pt;}
.lsc_c00242{letter-spacing:-0.006400pt;}
.ls2_c00242{letter-spacing:0.000000pt;}
.ls1_c00242{letter-spacing:0.019200pt;}
.ls0_c00242{letter-spacing:0.059648pt;}
.ws2a_c00242{word-spacing:-1.772800pt;}
.ws29_c00242{word-spacing:-1.740800pt;}
.ws21_c00242{word-spacing:-0.473600pt;}
.ws20_c00242{word-spacing:-0.460800pt;}
.wsd_c00242{word-spacing:-0.224000pt;}
.wsc_c00242{word-spacing:-0.128000pt;}
.ws0_c00242{word-spacing:0.000000pt;}
.ws1_c00242{word-spacing:0.022368pt;}
.wsa_c00242{word-spacing:0.166400pt;}
.ws1d_c00242{word-spacing:0.172800pt;}
.ws18_c00242{word-spacing:0.486400pt;}
.ws19_c00242{word-spacing:0.659200pt;}
.ws1a_c00242{word-spacing:0.800000pt;}
.wsb_c00242{word-spacing:0.838400pt;}
.ws1b_c00242{word-spacing:0.960000pt;}
.ws22_c00242{word-spacing:1.062400pt;}
.ws1e_c00242{word-spacing:1.088000pt;}
.ws23_c00242{word-spacing:1.139200pt;}
.ws1f_c00242{word-spacing:1.228800pt;}
.ws17_c00242{word-spacing:2.726400pt;}
.ws16_c00242{word-spacing:2.771200pt;}
.ws25_c00242{word-spacing:3.673600pt;}
.ws24_c00242{word-spacing:3.686400pt;}
.ws9_c00242{word-spacing:3.737600pt;}
.ws8_c00242{word-spacing:3.776000pt;}
.wse_c00242{word-spacing:4.268800pt;}
.wsf_c00242{word-spacing:4.281600pt;}
.ws4_c00242{word-spacing:6.553600pt;}
.ws3_c00242{word-spacing:6.611200pt;}
.ws27_c00242{word-spacing:12.243200pt;}
.ws26_c00242{word-spacing:12.326400pt;}
.ws14_c00242{word-spacing:12.332800pt;}
.ws15_c00242{word-spacing:12.345600pt;}
.ws2d_c00242{word-spacing:12.364800pt;}
.ws12_c00242{word-spacing:14.540800pt;}
.ws13_c00242{word-spacing:14.560000pt;}
.ws11_c00242{word-spacing:16.780800pt;}
.ws10_c00242{word-spacing:16.812800pt;}
.ws2b_c00242{word-spacing:19.616000pt;}
.ws2c_c00242{word-spacing:19.699200pt;}
.ws6_c00242{word-spacing:20.652800pt;}
.ws7_c00242{word-spacing:20.672000pt;}
.ws2_c00242{word-spacing:21.625600pt;}
.ws28_c00242{word-spacing:21.907200pt;}
.ws1c_c00242{word-spacing:24.179200pt;}
.ws5_c00242{word-spacing:31.865600pt;}
._1_c00242{margin-left:-2.624000pt;}
._2_c00242{width:1.145600pt;}
._0_c00242{width:69.415360pt;}
.fs0_c00242{font-size:64.000000pt;}
.fs1_c00242{font-size:74.560000pt;}
.y0_c00242{bottom:0.000000pt;}
.y2_c00242{bottom:41.627067pt;}
.y1_c00242{bottom:60.027067pt;}
.y23_c00242{bottom:120.667067pt;}
.y22_c00242{bottom:148.267067pt;}
.y21_c00242{bottom:175.867067pt;}
.y20_c00242{bottom:203.467067pt;}
.y1f_c00242{bottom:231.067067pt;}
.y1e_c00242{bottom:258.667067pt;}
.y1d_c00242{bottom:286.267067pt;}
.y1c_c00242{bottom:313.867067pt;}
.y1b_c00242{bottom:341.467067pt;}
.y1a_c00242{bottom:369.067067pt;}
.y19_c00242{bottom:412.667067pt;}
.y18_c00242{bottom:439.067067pt;}
.y17_c00242{bottom:457.467067pt;}
.y16_c00242{bottom:475.867067pt;}
.y15_c00242{bottom:494.267067pt;}
.y14_c00242{bottom:512.667067pt;}
.y13_c00242{bottom:531.067067pt;}
.y12_c00242{bottom:549.467067pt;}
.y11_c00242{bottom:567.867067pt;}
.y10_c00242{bottom:586.267067pt;}
.yf_c00242{bottom:629.787067pt;}
.ye_c00242{bottom:657.387067pt;}
.yd_c00242{bottom:684.987067pt;}
.yc_c00242{bottom:712.587067pt;}
.yb_c00242{bottom:756.187067pt;}
.ya_c00242{bottom:783.787067pt;}
.y9_c00242{bottom:811.387067pt;}
.y8_c00242{bottom:838.987067pt;}
.y7_c00242{bottom:866.587067pt;}
.y6_c00242{bottom:894.187067pt;}
.y5_c00242{bottom:928.667067pt;}
.y4_c00242{bottom:951.471067pt;}
.y3_c00242{bottom:972.907067pt;}
.h1_c00242{height:56.156250pt;}
.h3_c00242{height:57.375000pt;}
.h2_c00242{height:77.763750pt;}
.h0_c00242{height:1122.666667pt;}
.w1_c00242{width:793.333333pt;}
.w0_c00242{width:793.626667pt;}
.x0_c00242{left:0.000000pt;}
.x2_c00242{left:151.200000pt;}
.x5_c00242{left:170.160000pt;}
.x3_c00242{left:271.200000pt;}
.x4_c00242{left:333.606720pt;}
.x1_c00242{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a01e766aac10d2b2ee8daadd.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.093262;font-style:normal;font-weight:normal;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_7bc2a96b8dea6ebbef2f5a35.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00243;src:url('chunks/assets/font_e18f64e9bcbe88a7ff3bcd10.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:1.106934;font-style:normal;font-weight:normal;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_9ac89f8ae9664947d598443e.woff2')format("woff");}.ff4_c00243{font-family:ff4_c00243;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00243{letter-spacing:-0.086400px;}
.ls4_c00243{letter-spacing:-0.079200px;}
.lsb_c00243{letter-spacing:-0.064800px;}
.ls6_c00243{letter-spacing:-0.057600px;}
.ls5_c00243{letter-spacing:-0.050400px;}
.ls9_c00243{letter-spacing:-0.043200px;}
.ls3_c00243{letter-spacing:-0.036000px;}
.ls7_c00243{letter-spacing:-0.028800px;}
.lsc_c00243{letter-spacing:-0.021600px;}
.ls2_c00243{letter-spacing:-0.014400px;}
.lsa_c00243{letter-spacing:-0.007200px;}
.ls1_c00243{letter-spacing:0.000000px;}
.ls0_c00243{letter-spacing:0.067104px;}
.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;}
}
.ws3_c00243{word-spacing:-3.880800px;}
.ws2_c00243{word-spacing:-3.787200px;}
.ws4_c00243{word-spacing:-3.722400px;}
.ws20_c00243{word-spacing:-2.664000px;}
.ws1f_c00243{word-spacing:-2.584800px;}
.wsf_c00243{word-spacing:-2.332800px;}
.wse_c00243{word-spacing:-2.318400px;}
.wsc_c00243{word-spacing:-0.216000px;}
.wsb_c00243{word-spacing:-0.151200px;}
.wsd_c00243{word-spacing:-0.115200px;}
.ws0_c00243{word-spacing:0.000000px;}
.ws2f_c00243{word-spacing:0.108000px;}
.ws30_c00243{word-spacing:0.172800px;}
.ws13_c00243{word-spacing:0.187200px;}
.ws1e_c00243{word-spacing:0.194400px;}
.ws31_c00243{word-spacing:0.208800px;}
.ws8_c00243{word-spacing:1.231200px;}
.ws7_c00243{word-spacing:1.296000px;}
.ws2b_c00243{word-spacing:1.627200px;}
.ws2a_c00243{word-spacing:1.663200px;}
.ws29_c00243{word-spacing:1.929600px;}
.ws28_c00243{word-spacing:1.965600px;}
.ws27_c00243{word-spacing:1.980000px;}
.ws26_c00243{word-spacing:2.052000px;}
.ws6_c00243{word-spacing:3.376800px;}
.ws5_c00243{word-spacing:3.434400px;}
.wsa_c00243{word-spacing:3.780000px;}
.ws9_c00243{word-spacing:3.787200px;}
.ws33_c00243{word-spacing:5.580000px;}
.ws32_c00243{word-spacing:5.601600px;}
.ws14_c00243{word-spacing:6.328800px;}
.ws17_c00243{word-spacing:7.034400px;}
.ws16_c00243{word-spacing:7.113600px;}
.ws19_c00243{word-spacing:8.827200px;}
.ws18_c00243{word-spacing:8.863200px;}
.ws21_c00243{word-spacing:9.907200px;}
.ws22_c00243{word-spacing:9.914400px;}
.ws23_c00243{word-spacing:10.101600px;}
.ws12_c00243{word-spacing:10.281600px;}
.ws11_c00243{word-spacing:10.296000px;}
.ws24_c00243{word-spacing:12.420000px;}
.ws25_c00243{word-spacing:12.427200px;}
.ws2c_c00243{word-spacing:13.874400px;}
.ws1a_c00243{word-spacing:24.933600px;}
.ws1b_c00243{word-spacing:25.041600px;}
.ws2e_c00243{word-spacing:25.365600px;}
.ws2d_c00243{word-spacing:25.372800px;}
.ws10_c00243{word-spacing:28.965600px;}
.ws1c_c00243{word-spacing:30.189600px;}
.ws1d_c00243{word-spacing:30.297600px;}
.ws1_c00243{word-spacing:43.944732px;}
.ws35_c00243{word-spacing:54.907200px;}
.ws34_c00243{word-spacing:54.972000px;}
.ws15_c00243{word-spacing:70.819200px;}
._0_c00243{margin-left:-44.288640px;}
._1_c00243{width:1.065600px;}
.fc0_c00243{color:rgb(0,0,0);}
.fs0_c00243{font-size:72.000000px;}
.fs1_c00243{font-size:83.880000px;}
.y0_c00243{bottom:0.000000px;}
.y2_c00243{bottom:46.830450px;}
.y1_c00243{bottom:67.530450px;}
.y22_c00243{bottom:154.020450px;}
.y21_c00243{bottom:185.070450px;}
.y20_c00243{bottom:216.120450px;}
.y1f_c00243{bottom:265.170450px;}
.y1e_c00243{bottom:296.220450px;}
.y1d_c00243{bottom:327.270450px;}
.y1c_c00243{bottom:358.320450px;}
.y1b_c00243{bottom:389.370450px;}
.y1a_c00243{bottom:420.420450px;}
.y19_c00243{bottom:451.470450px;}
.y18_c00243{bottom:500.520450px;}
.y17_c00243{bottom:531.570450px;}
.y16_c00243{bottom:562.620450px;}
.y15_c00243{bottom:592.320450px;}
.y14_c00243{bottom:613.020450px;}
.y13_c00243{bottom:633.720450px;}
.y12_c00243{bottom:654.420450px;}
.y11_c00243{bottom:675.120450px;}
.y10_c00243{bottom:695.820450px;}
.yf_c00243{bottom:716.520450px;}
.ye_c00243{bottom:737.220450px;}
.yd_c00243{bottom:757.920450px;}
.yc_c00243{bottom:806.970450px;}
.yb_c00243{bottom:838.020450px;}
.ya_c00243{bottom:869.070450px;}
.y9_c00243{bottom:900.030450px;}
.y8_c00243{bottom:931.170450px;}
.y7_c00243{bottom:962.220450px;}
.y6_c00243{bottom:993.270450px;}
.y5_c00243{bottom:1024.320450px;}
.y4_c00243{bottom:1055.370450px;}
.y3_c00243{bottom:1094.520450px;}
.h1_c00243{height:63.175781px;}
.h3_c00243{height:64.546875px;}
.h4_c00243{height:75.093750px;}
.h2_c00243{height:87.484219px;}
.h0_c00243{height:1263.000000px;}
.w1_c00243{width:892.500000px;}
.w0_c00243{width:892.830000px;}
.x0_c00243{left:0.000000px;}
.x2_c00243{left:127.620000px;}
.x4_c00243{left:148.950000px;}
.x3_c00243{left:235.620000px;}
.x1_c00243{left:695.880000px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls8_c00243{letter-spacing:-0.076800pt;}
.ls4_c00243{letter-spacing:-0.070400pt;}
.lsb_c00243{letter-spacing:-0.057600pt;}
.ls6_c00243{letter-spacing:-0.051200pt;}
.ls5_c00243{letter-spacing:-0.044800pt;}
.ls9_c00243{letter-spacing:-0.038400pt;}
.ls3_c00243{letter-spacing:-0.032000pt;}
.ls7_c00243{letter-spacing:-0.025600pt;}
.lsc_c00243{letter-spacing:-0.019200pt;}
.ls2_c00243{letter-spacing:-0.012800pt;}
.lsa_c00243{letter-spacing:-0.006400pt;}
.ls1_c00243{letter-spacing:0.000000pt;}
.ls0_c00243{letter-spacing:0.059648pt;}
.ws3_c00243{word-spacing:-3.449600pt;}
.ws2_c00243{word-spacing:-3.366400pt;}
.ws4_c00243{word-spacing:-3.308800pt;}
.ws20_c00243{word-spacing:-2.368000pt;}
.ws1f_c00243{word-spacing:-2.297600pt;}
.wsf_c00243{word-spacing:-2.073600pt;}
.wse_c00243{word-spacing:-2.060800pt;}
.wsc_c00243{word-spacing:-0.192000pt;}
.wsb_c00243{word-spacing:-0.134400pt;}
.wsd_c00243{word-spacing:-0.102400pt;}
.ws0_c00243{word-spacing:0.000000pt;}
.ws2f_c00243{word-spacing:0.096000pt;}
.ws30_c00243{word-spacing:0.153600pt;}
.ws13_c00243{word-spacing:0.166400pt;}
.ws1e_c00243{word-spacing:0.172800pt;}
.ws31_c00243{word-spacing:0.185600pt;}
.ws8_c00243{word-spacing:1.094400pt;}
.ws7_c00243{word-spacing:1.152000pt;}
.ws2b_c00243{word-spacing:1.446400pt;}
.ws2a_c00243{word-spacing:1.478400pt;}
.ws29_c00243{word-spacing:1.715200pt;}
.ws28_c00243{word-spacing:1.747200pt;}
.ws27_c00243{word-spacing:1.760000pt;}
.ws26_c00243{word-spacing:1.824000pt;}
.ws6_c00243{word-spacing:3.001600pt;}
.ws5_c00243{word-spacing:3.052800pt;}
.wsa_c00243{word-spacing:3.360000pt;}
.ws9_c00243{word-spacing:3.366400pt;}
.ws33_c00243{word-spacing:4.960000pt;}
.ws32_c00243{word-spacing:4.979200pt;}
.ws14_c00243{word-spacing:5.625600pt;}
.ws17_c00243{word-spacing:6.252800pt;}
.ws16_c00243{word-spacing:6.323200pt;}
.ws19_c00243{word-spacing:7.846400pt;}
.ws18_c00243{word-spacing:7.878400pt;}
.ws21_c00243{word-spacing:8.806400pt;}
.ws22_c00243{word-spacing:8.812800pt;}
.ws23_c00243{word-spacing:8.979200pt;}
.ws12_c00243{word-spacing:9.139200pt;}
.ws11_c00243{word-spacing:9.152000pt;}
.ws24_c00243{word-spacing:11.040000pt;}
.ws25_c00243{word-spacing:11.046400pt;}
.ws2c_c00243{word-spacing:12.332800pt;}
.ws1a_c00243{word-spacing:22.163200pt;}
.ws1b_c00243{word-spacing:22.259200pt;}
.ws2e_c00243{word-spacing:22.547200pt;}
.ws2d_c00243{word-spacing:22.553600pt;}
.ws10_c00243{word-spacing:25.747200pt;}
.ws1c_c00243{word-spacing:26.835200pt;}
.ws1d_c00243{word-spacing:26.931200pt;}
.ws1_c00243{word-spacing:39.061984pt;}
.ws35_c00243{word-spacing:48.806400pt;}
.ws34_c00243{word-spacing:48.864000pt;}
.ws15_c00243{word-spacing:62.950400pt;}
._0_c00243{margin-left:-39.367680pt;}
._1_c00243{width:0.947200pt;}
.fs0_c00243{font-size:64.000000pt;}
.fs1_c00243{font-size:74.560000pt;}
.y0_c00243{bottom:0.000000pt;}
.y2_c00243{bottom:41.627067pt;}
.y1_c00243{bottom:60.027067pt;}
.y22_c00243{bottom:136.907067pt;}
.y21_c00243{bottom:164.507067pt;}
.y20_c00243{bottom:192.107067pt;}
.y1f_c00243{bottom:235.707067pt;}
.y1e_c00243{bottom:263.307067pt;}
.y1d_c00243{bottom:290.907067pt;}
.y1c_c00243{bottom:318.507067pt;}
.y1b_c00243{bottom:346.107067pt;}
.y1a_c00243{bottom:373.707067pt;}
.y19_c00243{bottom:401.307067pt;}
.y18_c00243{bottom:444.907067pt;}
.y17_c00243{bottom:472.507067pt;}
.y16_c00243{bottom:500.107067pt;}
.y15_c00243{bottom:526.507067pt;}
.y14_c00243{bottom:544.907067pt;}
.y13_c00243{bottom:563.307067pt;}
.y12_c00243{bottom:581.707067pt;}
.y11_c00243{bottom:600.107067pt;}
.y10_c00243{bottom:618.507067pt;}
.yf_c00243{bottom:636.907067pt;}
.ye_c00243{bottom:655.307067pt;}
.yd_c00243{bottom:673.707067pt;}
.yc_c00243{bottom:717.307067pt;}
.yb_c00243{bottom:744.907067pt;}
.ya_c00243{bottom:772.507067pt;}
.y9_c00243{bottom:800.027067pt;}
.y8_c00243{bottom:827.707067pt;}
.y7_c00243{bottom:855.307067pt;}
.y6_c00243{bottom:882.907067pt;}
.y5_c00243{bottom:910.507067pt;}
.y4_c00243{bottom:938.107067pt;}
.y3_c00243{bottom:972.907067pt;}
.h1_c00243{height:56.156250pt;}
.h3_c00243{height:57.375000pt;}
.h4_c00243{height:66.750000pt;}
.h2_c00243{height:77.763750pt;}
.h0_c00243{height:1122.666667pt;}
.w1_c00243{width:793.333333pt;}
.w0_c00243{width:793.626667pt;}
.x0_c00243{left:0.000000pt;}
.x2_c00243{left:113.440000pt;}
.x4_c00243{left:132.400000pt;}
.x3_c00243{left:209.440000pt;}
.x1_c00243{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c7dcfab1c4ccb51c96fb2d40.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.093262;font-style:normal;font-weight:normal;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_bbe8b86ad10a1efeea9b4eb9.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.106934;font-style:normal;font-weight:normal;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_27d49c52f7e5fc861ce1a8b9.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00244;src:url('chunks/assets/font_df08d26bac7a0236fe3122ae.woff2')format("woff");}.ff4_c00244{font-family:ff4_c00244;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsa_c00244{letter-spacing:-0.064800px;}
.ls6_c00244{letter-spacing:-0.057600px;}
.ls9_c00244{letter-spacing:-0.050400px;}
.ls4_c00244{letter-spacing:-0.043200px;}
.ls5_c00244{letter-spacing:-0.036000px;}
.ls3_c00244{letter-spacing:-0.028800px;}
.ls7_c00244{letter-spacing:-0.021600px;}
.ls8_c00244{letter-spacing:-0.014400px;}
.ls2_c00244{letter-spacing:-0.007200px;}
.ls1_c00244{letter-spacing:0.000000px;}
.ls0_c00244{letter-spacing:0.041940px;}
.lsb_c00244{letter-spacing:0.144000px;}
.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;}
}
.ws23_c00244{word-spacing:-3.859200px;}
.ws22_c00244{word-spacing:-3.765600px;}
.ws6_c00244{word-spacing:-3.758400px;}
.ws7_c00244{word-spacing:-3.751200px;}
.ws17_c00244{word-spacing:-1.584000px;}
.ws1f_c00244{word-spacing:-1.260000px;}
.ws1e_c00244{word-spacing:-1.166400px;}
.ws0_c00244{word-spacing:0.000000px;}
.ws3_c00244{word-spacing:0.050328px;}
.ws1b_c00244{word-spacing:0.158400px;}
.wsd_c00244{word-spacing:0.165600px;}
.ws14_c00244{word-spacing:0.187200px;}
.ws24_c00244{word-spacing:0.201600px;}
.wse_c00244{word-spacing:0.259200px;}
.ws15_c00244{word-spacing:3.405600px;}
.ws16_c00244{word-spacing:3.564000px;}
.ws4_c00244{word-spacing:5.241600px;}
.ws20_c00244{word-spacing:5.594400px;}
.ws21_c00244{word-spacing:5.608800px;}
.ws5_c00244{word-spacing:7.754400px;}
.ws1d_c00244{word-spacing:9.900000px;}
.ws1c_c00244{word-spacing:9.936000px;}
.wsa_c00244{word-spacing:12.420000px;}
.wsc_c00244{word-spacing:12.434400px;}
.wsb_c00244{word-spacing:12.672000px;}
.wsf_c00244{word-spacing:14.608800px;}
.ws1a_c00244{word-spacing:19.641600px;}
.ws9_c00244{word-spacing:20.714400px;}
.ws8_c00244{word-spacing:20.736000px;}
.ws19_c00244{word-spacing:21.434400px;}
.ws18_c00244{word-spacing:21.556800px;}
.ws13_c00244{word-spacing:22.838400px;}
.ws12_c00244{word-spacing:22.903200px;}
.ws10_c00244{word-spacing:37.555200px;}
.ws11_c00244{word-spacing:37.663200px;}
.ws1_c00244{word-spacing:66.765600px;}
.ws2_c00244{word-spacing:66.787200px;}
._1_c00244{width:1.008000px;}
._0_c00244{width:9.730080px;}
.fc0_c00244{color:rgb(0,0,0);}
.fs0_c00244{font-size:72.000000px;}
.fs1_c00244{font-size:83.880000px;}
.y0_c00244{bottom:0.000000px;}
.y2_c00244{bottom:46.830450px;}
.y1_c00244{bottom:67.530450px;}
.y1f_c00244{bottom:193.170450px;}
.y1e_c00244{bottom:224.220450px;}
.y1d_c00244{bottom:255.270450px;}
.y1c_c00244{bottom:286.320450px;}
.y1b_c00244{bottom:317.370450px;}
.y1a_c00244{bottom:348.420450px;}
.y19_c00244{bottom:397.470450px;}
.y18_c00244{bottom:427.170450px;}
.y17_c00244{bottom:447.870450px;}
.y16_c00244{bottom:468.570450px;}
.y15_c00244{bottom:489.270450px;}
.y14_c00244{bottom:509.970450px;}
.y13_c00244{bottom:530.670450px;}
.y12_c00244{bottom:551.370450px;}
.y11_c00244{bottom:572.070450px;}
.y10_c00244{bottom:592.770450px;}
.yf_c00244{bottom:641.820450px;}
.ye_c00244{bottom:672.870450px;}
.yd_c00244{bottom:703.920450px;}
.yc_c00244{bottom:734.970450px;}
.yb_c00244{bottom:766.020450px;}
.ya_c00244{bottom:797.070450px;}
.y9_c00244{bottom:828.120450px;}
.y8_c00244{bottom:877.170450px;}
.y7_c00244{bottom:916.320450px;}
.y6_c00244{bottom:968.340450px;}
.y5_c00244{bottom:1017.390450px;}
.y4_c00244{bottom:1066.440450px;}
.y3_c00244{bottom:1097.490450px;}
.h1_c00244{height:63.175781px;}
.h2_c00244{height:64.546875px;}
.h4_c00244{height:75.093750px;}
.h3_c00244{height:87.484219px;}
.h0_c00244{height:1263.000000px;}
.w1_c00244{width:892.500000px;}
.w0_c00244{width:892.830000px;}
.x0_c00244{left:0.000000px;}
.x2_c00244{left:170.100000px;}
.x4_c00244{left:191.430000px;}
.x3_c00244{left:251.100000px;}
.x1_c00244{left:738.360000px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.lsa_c00244{letter-spacing:-0.057600pt;}
.ls6_c00244{letter-spacing:-0.051200pt;}
.ls9_c00244{letter-spacing:-0.044800pt;}
.ls4_c00244{letter-spacing:-0.038400pt;}
.ls5_c00244{letter-spacing:-0.032000pt;}
.ls3_c00244{letter-spacing:-0.025600pt;}
.ls7_c00244{letter-spacing:-0.019200pt;}
.ls8_c00244{letter-spacing:-0.012800pt;}
.ls2_c00244{letter-spacing:-0.006400pt;}
.ls1_c00244{letter-spacing:0.000000pt;}
.ls0_c00244{letter-spacing:0.037280pt;}
.lsb_c00244{letter-spacing:0.128000pt;}
.ws23_c00244{word-spacing:-3.430400pt;}
.ws22_c00244{word-spacing:-3.347200pt;}
.ws6_c00244{word-spacing:-3.340800pt;}
.ws7_c00244{word-spacing:-3.334400pt;}
.ws17_c00244{word-spacing:-1.408000pt;}
.ws1f_c00244{word-spacing:-1.120000pt;}
.ws1e_c00244{word-spacing:-1.036800pt;}
.ws0_c00244{word-spacing:0.000000pt;}
.ws3_c00244{word-spacing:0.044736pt;}
.ws1b_c00244{word-spacing:0.140800pt;}
.wsd_c00244{word-spacing:0.147200pt;}
.ws14_c00244{word-spacing:0.166400pt;}
.ws24_c00244{word-spacing:0.179200pt;}
.wse_c00244{word-spacing:0.230400pt;}
.ws15_c00244{word-spacing:3.027200pt;}
.ws16_c00244{word-spacing:3.168000pt;}
.ws4_c00244{word-spacing:4.659200pt;}
.ws20_c00244{word-spacing:4.972800pt;}
.ws21_c00244{word-spacing:4.985600pt;}
.ws5_c00244{word-spacing:6.892800pt;}
.ws1d_c00244{word-spacing:8.800000pt;}
.ws1c_c00244{word-spacing:8.832000pt;}
.wsa_c00244{word-spacing:11.040000pt;}
.wsc_c00244{word-spacing:11.052800pt;}
.wsb_c00244{word-spacing:11.264000pt;}
.wsf_c00244{word-spacing:12.985600pt;}
.ws1a_c00244{word-spacing:17.459200pt;}
.ws9_c00244{word-spacing:18.412800pt;}
.ws8_c00244{word-spacing:18.432000pt;}
.ws19_c00244{word-spacing:19.052800pt;}
.ws18_c00244{word-spacing:19.161600pt;}
.ws13_c00244{word-spacing:20.300800pt;}
.ws12_c00244{word-spacing:20.358400pt;}
.ws10_c00244{word-spacing:33.382400pt;}
.ws11_c00244{word-spacing:33.478400pt;}
.ws1_c00244{word-spacing:59.347200pt;}
.ws2_c00244{word-spacing:59.366400pt;}
._1_c00244{width:0.896000pt;}
._0_c00244{width:8.648960pt;}
.fs0_c00244{font-size:64.000000pt;}
.fs1_c00244{font-size:74.560000pt;}
.y0_c00244{bottom:0.000000pt;}
.y2_c00244{bottom:41.627067pt;}
.y1_c00244{bottom:60.027067pt;}
.y1f_c00244{bottom:171.707067pt;}
.y1e_c00244{bottom:199.307067pt;}
.y1d_c00244{bottom:226.907067pt;}
.y1c_c00244{bottom:254.507067pt;}
.y1b_c00244{bottom:282.107067pt;}
.y1a_c00244{bottom:309.707067pt;}
.y19_c00244{bottom:353.307067pt;}
.y18_c00244{bottom:379.707067pt;}
.y17_c00244{bottom:398.107067pt;}
.y16_c00244{bottom:416.507067pt;}
.y15_c00244{bottom:434.907067pt;}
.y14_c00244{bottom:453.307067pt;}
.y13_c00244{bottom:471.707067pt;}
.y12_c00244{bottom:490.107067pt;}
.y11_c00244{bottom:508.507067pt;}
.y10_c00244{bottom:526.907067pt;}
.yf_c00244{bottom:570.507067pt;}
.ye_c00244{bottom:598.107067pt;}
.yd_c00244{bottom:625.707067pt;}
.yc_c00244{bottom:653.307067pt;}
.yb_c00244{bottom:680.907067pt;}
.ya_c00244{bottom:708.507067pt;}
.y9_c00244{bottom:736.107067pt;}
.y8_c00244{bottom:779.707067pt;}
.y7_c00244{bottom:814.507067pt;}
.y6_c00244{bottom:860.747067pt;}
.y5_c00244{bottom:904.347067pt;}
.y4_c00244{bottom:947.947067pt;}
.y3_c00244{bottom:975.547067pt;}
.h1_c00244{height:56.156250pt;}
.h2_c00244{height:57.375000pt;}
.h4_c00244{height:66.750000pt;}
.h3_c00244{height:77.763750pt;}
.h0_c00244{height:1122.666667pt;}
.w1_c00244{width:793.333333pt;}
.w0_c00244{width:793.626667pt;}
.x0_c00244{left:0.000000pt;}
.x2_c00244{left:151.200000pt;}
.x4_c00244{left:170.160000pt;}
.x3_c00244{left:223.200000pt;}
.x1_c00244{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c5ff0f7fc33a3623741df946.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.093262;font-style:normal;font-weight:normal;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_97f7692d3b7870edf9b4439e.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.106934;font-style:normal;font-weight:normal;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_8996acdd7c54ea9864f20106.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lse_c00245{letter-spacing:-0.086400px;}
.lsb_c00245{letter-spacing:-0.079200px;}
.lsd_c00245{letter-spacing:-0.072000px;}
.lsc_c00245{letter-spacing:-0.064800px;}
.lsa_c00245{letter-spacing:-0.057600px;}
.ls3_c00245{letter-spacing:-0.050400px;}
.ls4_c00245{letter-spacing:-0.043200px;}
.ls6_c00245{letter-spacing:-0.036000px;}
.ls5_c00245{letter-spacing:-0.028800px;}
.ls8_c00245{letter-spacing:-0.021600px;}
.ls9_c00245{letter-spacing:-0.014400px;}
.ls7_c00245{letter-spacing:-0.007200px;}
.ls2_c00245{letter-spacing:0.000000px;}
.ls0_c00245{letter-spacing:0.007200px;}
.ls1_c00245{letter-spacing:0.144000px;}
.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;}
}
.ws6_c00245{word-spacing:-4.852800px;}
.ws7_c00245{word-spacing:-4.752000px;}
.wsd_c00245{word-spacing:-2.685600px;}
.ws29_c00245{word-spacing:-0.165600px;}
.ws2f_c00245{word-spacing:-0.136800px;}
.ws28_c00245{word-spacing:-0.129600px;}
.ws0_c00245{word-spacing:0.000000px;}
.ws2b_c00245{word-spacing:0.115200px;}
.wsb_c00245{word-spacing:0.158400px;}
.wsc_c00245{word-spacing:0.165600px;}
.ws5_c00245{word-spacing:0.187200px;}
.ws14_c00245{word-spacing:0.194400px;}
.ws17_c00245{word-spacing:0.266400px;}
.ws2e_c00245{word-spacing:0.540000px;}
.ws2d_c00245{word-spacing:0.554400px;}
.ws2c_c00245{word-spacing:0.655200px;}
.ws2_c00245{word-spacing:0.871200px;}
.ws2a_c00245{word-spacing:0.921600px;}
.ws1_c00245{word-spacing:0.928800px;}
.ws1e_c00245{word-spacing:0.936000px;}
.ws1f_c00245{word-spacing:0.972000px;}
.ws24_c00245{word-spacing:1.267200px;}
.ws25_c00245{word-spacing:1.303200px;}
.ws22_c00245{word-spacing:2.685600px;}
.ws23_c00245{word-spacing:2.714400px;}
.ws21_c00245{word-spacing:2.728800px;}
.ws12_c00245{word-spacing:3.952800px;}
.ws13_c00245{word-spacing:4.161600px;}
.ws1c_c00245{word-spacing:4.881600px;}
.ws4_c00245{word-spacing:6.962400px;}
.ws8_c00245{word-spacing:7.027200px;}
.ws3_c00245{word-spacing:7.041600px;}
.wsf_c00245{word-spacing:8.805600px;}
.ws15_c00245{word-spacing:10.958400px;}
.ws16_c00245{word-spacing:11.073600px;}
.ws20_c00245{word-spacing:12.067200px;}
.ws19_c00245{word-spacing:15.652800px;}
.ws18_c00245{word-spacing:15.660000px;}
.ws1a_c00245{word-spacing:15.688800px;}
.ws1b_c00245{word-spacing:15.782400px;}
.ws9_c00245{word-spacing:17.409600px;}
.wsa_c00245{word-spacing:17.467200px;}
.ws10_c00245{word-spacing:21.225600px;}
.ws11_c00245{word-spacing:21.441600px;}
.wse_c00245{word-spacing:27.900000px;}
.ws26_c00245{word-spacing:32.580000px;}
.ws27_c00245{word-spacing:32.673600px;}
.ws1d_c00245{word-spacing:43.027200px;}
._0_c00245{width:1.152000px;}
.fc0_c00245{color:rgb(0,0,0);}
.fs0_c00245{font-size:72.000000px;}
.y0_c00245{bottom:0.000000px;}
.y2_c00245{bottom:46.830450px;}
.y1_c00245{bottom:67.530450px;}
.y22_c00245{bottom:193.530450px;}
.y21_c00245{bottom:224.490450px;}
.y20_c00245{bottom:255.630450px;}
.y1f_c00245{bottom:286.680450px;}
.y1e_c00245{bottom:317.730450px;}
.y1d_c00245{bottom:348.690450px;}
.y1c_c00245{bottom:379.740450px;}
.y1b_c00245{bottom:410.790450px;}
.y1a_c00245{bottom:441.840450px;}
.y19_c00245{bottom:472.890450px;}
.y18_c00245{bottom:503.940450px;}
.y17_c00245{bottom:534.990450px;}
.y16_c00245{bottom:566.040450px;}
.y15_c00245{bottom:597.090450px;}
.y14_c00245{bottom:628.140450px;}
.y13_c00245{bottom:657.840450px;}
.y12_c00245{bottom:678.540450px;}
.y11_c00245{bottom:699.240450px;}
.y10_c00245{bottom:719.940450px;}
.yf_c00245{bottom:740.640450px;}
.ye_c00245{bottom:761.340450px;}
.yd_c00245{bottom:782.040450px;}
.yc_c00245{bottom:802.740450px;}
.yb_c00245{bottom:823.440450px;}
.ya_c00245{bottom:844.140450px;}
.y9_c00245{bottom:893.190450px;}
.y8_c00245{bottom:924.240450px;}
.y7_c00245{bottom:955.290450px;}
.y6_c00245{bottom:986.340450px;}
.y5_c00245{bottom:1035.390450px;}
.y4_c00245{bottom:1066.440450px;}
.y3_c00245{bottom:1097.490450px;}
.h1_c00245{height:63.175781px;}
.h2_c00245{height:64.546875px;}
.h3_c00245{height:75.093750px;}
.h0_c00245{height:1263.000000px;}
.w1_c00245{width:892.500000px;}
.w0_c00245{width:892.830000px;}
.x0_c00245{left:0.000000px;}
.x2_c00245{left:127.620000px;}
.x3_c00245{left:148.950000px;}
.x1_c00245{left:695.880000px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.lse_c00245{letter-spacing:-0.076800pt;}
.lsb_c00245{letter-spacing:-0.070400pt;}
.lsd_c00245{letter-spacing:-0.064000pt;}
.lsc_c00245{letter-spacing:-0.057600pt;}
.lsa_c00245{letter-spacing:-0.051200pt;}
.ls3_c00245{letter-spacing:-0.044800pt;}
.ls4_c00245{letter-spacing:-0.038400pt;}
.ls6_c00245{letter-spacing:-0.032000pt;}
.ls5_c00245{letter-spacing:-0.025600pt;}
.ls8_c00245{letter-spacing:-0.019200pt;}
.ls9_c00245{letter-spacing:-0.012800pt;}
.ls7_c00245{letter-spacing:-0.006400pt;}
.ls2_c00245{letter-spacing:0.000000pt;}
.ls0_c00245{letter-spacing:0.006400pt;}
.ls1_c00245{letter-spacing:0.128000pt;}
.ws6_c00245{word-spacing:-4.313600pt;}
.ws7_c00245{word-spacing:-4.224000pt;}
.wsd_c00245{word-spacing:-2.387200pt;}
.ws29_c00245{word-spacing:-0.147200pt;}
.ws2f_c00245{word-spacing:-0.121600pt;}
.ws28_c00245{word-spacing:-0.115200pt;}
.ws0_c00245{word-spacing:0.000000pt;}
.ws2b_c00245{word-spacing:0.102400pt;}
.wsb_c00245{word-spacing:0.140800pt;}
.wsc_c00245{word-spacing:0.147200pt;}
.ws5_c00245{word-spacing:0.166400pt;}
.ws14_c00245{word-spacing:0.172800pt;}
.ws17_c00245{word-spacing:0.236800pt;}
.ws2e_c00245{word-spacing:0.480000pt;}
.ws2d_c00245{word-spacing:0.492800pt;}
.ws2c_c00245{word-spacing:0.582400pt;}
.ws2_c00245{word-spacing:0.774400pt;}
.ws2a_c00245{word-spacing:0.819200pt;}
.ws1_c00245{word-spacing:0.825600pt;}
.ws1e_c00245{word-spacing:0.832000pt;}
.ws1f_c00245{word-spacing:0.864000pt;}
.ws24_c00245{word-spacing:1.126400pt;}
.ws25_c00245{word-spacing:1.158400pt;}
.ws22_c00245{word-spacing:2.387200pt;}
.ws23_c00245{word-spacing:2.412800pt;}
.ws21_c00245{word-spacing:2.425600pt;}
.ws12_c00245{word-spacing:3.513600pt;}
.ws13_c00245{word-spacing:3.699200pt;}
.ws1c_c00245{word-spacing:4.339200pt;}
.ws4_c00245{word-spacing:6.188800pt;}
.ws8_c00245{word-spacing:6.246400pt;}
.ws3_c00245{word-spacing:6.259200pt;}
.wsf_c00245{word-spacing:7.827200pt;}
.ws15_c00245{word-spacing:9.740800pt;}
.ws16_c00245{word-spacing:9.843200pt;}
.ws20_c00245{word-spacing:10.726400pt;}
.ws19_c00245{word-spacing:13.913600pt;}
.ws18_c00245{word-spacing:13.920000pt;}
.ws1a_c00245{word-spacing:13.945600pt;}
.ws1b_c00245{word-spacing:14.028800pt;}
.ws9_c00245{word-spacing:15.475200pt;}
.wsa_c00245{word-spacing:15.526400pt;}
.ws10_c00245{word-spacing:18.867200pt;}
.ws11_c00245{word-spacing:19.059200pt;}
.wse_c00245{word-spacing:24.800000pt;}
.ws26_c00245{word-spacing:28.960000pt;}
.ws27_c00245{word-spacing:29.043200pt;}
.ws1d_c00245{word-spacing:38.246400pt;}
._0_c00245{width:1.024000pt;}
.fs0_c00245{font-size:64.000000pt;}
.y0_c00245{bottom:0.000000pt;}
.y2_c00245{bottom:41.627067pt;}
.y1_c00245{bottom:60.027067pt;}
.y22_c00245{bottom:172.027067pt;}
.y21_c00245{bottom:199.547067pt;}
.y20_c00245{bottom:227.227067pt;}
.y1f_c00245{bottom:254.827067pt;}
.y1e_c00245{bottom:282.427067pt;}
.y1d_c00245{bottom:309.947067pt;}
.y1c_c00245{bottom:337.547067pt;}
.y1b_c00245{bottom:365.147067pt;}
.y1a_c00245{bottom:392.747067pt;}
.y19_c00245{bottom:420.347067pt;}
.y18_c00245{bottom:447.947067pt;}
.y17_c00245{bottom:475.547067pt;}
.y16_c00245{bottom:503.147067pt;}
.y15_c00245{bottom:530.747067pt;}
.y14_c00245{bottom:558.347067pt;}
.y13_c00245{bottom:584.747067pt;}
.y12_c00245{bottom:603.147067pt;}
.y11_c00245{bottom:621.547067pt;}
.y10_c00245{bottom:639.947067pt;}
.yf_c00245{bottom:658.347067pt;}
.ye_c00245{bottom:676.747067pt;}
.yd_c00245{bottom:695.147067pt;}
.yc_c00245{bottom:713.547067pt;}
.yb_c00245{bottom:731.947067pt;}
.ya_c00245{bottom:750.347067pt;}
.y9_c00245{bottom:793.947067pt;}
.y8_c00245{bottom:821.547067pt;}
.y7_c00245{bottom:849.147067pt;}
.y6_c00245{bottom:876.747067pt;}
.y5_c00245{bottom:920.347067pt;}
.y4_c00245{bottom:947.947067pt;}
.y3_c00245{bottom:975.547067pt;}
.h1_c00245{height:56.156250pt;}
.h2_c00245{height:57.375000pt;}
.h3_c00245{height:66.750000pt;}
.h0_c00245{height:1122.666667pt;}
.w1_c00245{width:793.333333pt;}
.w0_c00245{width:793.626667pt;}
.x0_c00245{left:0.000000pt;}
.x2_c00245{left:113.440000pt;}
.x3_c00245{left:132.400000pt;}
.x1_c00245{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dee2cf6c5b08ef3a343dda87.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.093262;font-style:normal;font-weight:normal;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_d6ff3aa6611c271be0158037.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.106934;font-style:normal;font-weight:normal;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_7e67a151c08e579cb9f5ee85.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7_c00246{letter-spacing:-0.086400px;}
.ls4_c00246{letter-spacing:-0.064800px;}
.ls8_c00246{letter-spacing:-0.057600px;}
.ls5_c00246{letter-spacing:-0.050400px;}
.ls2_c00246{letter-spacing:-0.043200px;}
.ls1_c00246{letter-spacing:-0.036000px;}
.ls6_c00246{letter-spacing:-0.028800px;}
.ls3_c00246{letter-spacing:-0.021600px;}
.lsb_c00246{letter-spacing:-0.014400px;}
.lsa_c00246{letter-spacing:-0.007200px;}
.ls0_c00246{letter-spacing:0.000000px;}
.lsc_c00246{letter-spacing:0.014400px;}
.ls9_c00246{letter-spacing:0.057600px;}
.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;}
}
.ws1b_c00246{word-spacing:-4.874400px;}
.ws1c_c00246{word-spacing:-4.867200px;}
.ws2d_c00246{word-spacing:-4.190400px;}
.ws2c_c00246{word-spacing:-4.132800px;}
.ws2e_c00246{word-spacing:-4.125600px;}
.ws22_c00246{word-spacing:-3.052800px;}
.ws21_c00246{word-spacing:-3.038400px;}
.ws30_c00246{word-spacing:-2.419200px;}
.ws2f_c00246{word-spacing:-2.311200px;}
.ws10_c00246{word-spacing:-1.598400px;}
.ws11_c00246{word-spacing:-1.533600px;}
.wsc_c00246{word-spacing:-0.986400px;}
.ws20_c00246{word-spacing:-0.885600px;}
.wsb_c00246{word-spacing:-0.878400px;}
.wsd_c00246{word-spacing:-0.835200px;}
.ws1f_c00246{word-spacing:-0.525600px;}
.ws0_c00246{word-spacing:0.000000px;}
.ws2b_c00246{word-spacing:0.093600px;}
.wsf_c00246{word-spacing:0.122400px;}
.ws1d_c00246{word-spacing:0.136800px;}
.ws1e_c00246{word-spacing:0.165600px;}
.ws9_c00246{word-spacing:0.180000px;}
.wsa_c00246{word-spacing:0.187200px;}
.ws16_c00246{word-spacing:0.201600px;}
.ws15_c00246{word-spacing:0.216000px;}
.ws2a_c00246{word-spacing:0.266400px;}
.ws33_c00246{word-spacing:1.641600px;}
.ws34_c00246{word-spacing:2.347200px;}
.ws35_c00246{word-spacing:2.361600px;}
.ws32_c00246{word-spacing:3.038400px;}
.ws31_c00246{word-spacing:3.060000px;}
.ws1a_c00246{word-spacing:3.715200px;}
.ws18_c00246{word-spacing:3.780000px;}
.ws19_c00246{word-spacing:3.794400px;}
.ws17_c00246{word-spacing:4.867200px;}
.ws24_c00246{word-spacing:5.572800px;}
.ws23_c00246{word-spacing:5.608800px;}
.ws5_c00246{word-spacing:6.249600px;}
.ws27_c00246{word-spacing:6.264000px;}
.ws25_c00246{word-spacing:6.307200px;}
.ws26_c00246{word-spacing:6.314400px;}
.ws6_c00246{word-spacing:6.343200px;}
.ws7_c00246{word-spacing:6.998400px;}
.ws8_c00246{word-spacing:7.048800px;}
.ws13_c00246{word-spacing:10.634400px;}
.ws14_c00246{word-spacing:10.656000px;}
.ws29_c00246{word-spacing:11.692800px;}
.ws28_c00246{word-spacing:11.714400px;}
.wse_c00246{word-spacing:19.987200px;}
.ws12_c00246{word-spacing:27.201600px;}
.ws1_c00246{word-spacing:36.194400px;}
.ws2_c00246{word-spacing:36.288000px;}
.ws3_c00246{word-spacing:36.540000px;}
.ws4_c00246{word-spacing:36.626400px;}
._0_c00246{margin-left:-1.195200px;}
._1_c00246{width:1.324800px;}
.fc0_c00246{color:rgb(0,0,0);}
.fs0_c00246{font-size:72.000000px;}
.y0_c00246{bottom:0.000000px;}
.y2_c00246{bottom:46.830450px;}
.y1_c00246{bottom:67.530450px;}
.y22_c00246{bottom:149.880450px;}
.y21_c00246{bottom:180.930450px;}
.y20_c00246{bottom:211.980450px;}
.y1f_c00246{bottom:243.030450px;}
.y1e_c00246{bottom:274.080450px;}
.y1d_c00246{bottom:323.040450px;}
.y1c_c00246{bottom:354.090450px;}
.y1b_c00246{bottom:385.140450px;}
.y1a_c00246{bottom:416.190450px;}
.y19_c00246{bottom:447.240450px;}
.y18_c00246{bottom:478.290450px;}
.y17_c00246{bottom:527.340450px;}
.y16_c00246{bottom:558.390450px;}
.y15_c00246{bottom:589.440450px;}
.y14_c00246{bottom:619.140450px;}
.y13_c00246{bottom:639.840450px;}
.y12_c00246{bottom:660.540450px;}
.y11_c00246{bottom:681.240450px;}
.y10_c00246{bottom:701.940450px;}
.yf_c00246{bottom:722.640450px;}
.ye_c00246{bottom:743.340450px;}
.yd_c00246{bottom:764.040450px;}
.yc_c00246{bottom:784.740450px;}
.yb_c00246{bottom:805.440450px;}
.ya_c00246{bottom:826.140450px;}
.y9_c00246{bottom:875.190450px;}
.y8_c00246{bottom:924.240450px;}
.y7_c00246{bottom:973.290450px;}
.y6_c00246{bottom:1004.340450px;}
.y5_c00246{bottom:1035.390450px;}
.y4_c00246{bottom:1066.440450px;}
.y3_c00246{bottom:1097.490450px;}
.h1_c00246{height:63.175781px;}
.h2_c00246{height:64.546875px;}
.h3_c00246{height:75.093750px;}
.h0_c00246{height:1263.000000px;}
.w1_c00246{width:892.500000px;}
.w0_c00246{width:892.830000px;}
.x0_c00246{left:0.000000px;}
.x2_c00246{left:170.100000px;}
.x3_c00246{left:191.430000px;}
.x1_c00246{left:738.360000px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls7_c00246{letter-spacing:-0.076800pt;}
.ls4_c00246{letter-spacing:-0.057600pt;}
.ls8_c00246{letter-spacing:-0.051200pt;}
.ls5_c00246{letter-spacing:-0.044800pt;}
.ls2_c00246{letter-spacing:-0.038400pt;}
.ls1_c00246{letter-spacing:-0.032000pt;}
.ls6_c00246{letter-spacing:-0.025600pt;}
.ls3_c00246{letter-spacing:-0.019200pt;}
.lsb_c00246{letter-spacing:-0.012800pt;}
.lsa_c00246{letter-spacing:-0.006400pt;}
.ls0_c00246{letter-spacing:0.000000pt;}
.lsc_c00246{letter-spacing:0.012800pt;}
.ls9_c00246{letter-spacing:0.051200pt;}
.ws1b_c00246{word-spacing:-4.332800pt;}
.ws1c_c00246{word-spacing:-4.326400pt;}
.ws2d_c00246{word-spacing:-3.724800pt;}
.ws2c_c00246{word-spacing:-3.673600pt;}
.ws2e_c00246{word-spacing:-3.667200pt;}
.ws22_c00246{word-spacing:-2.713600pt;}
.ws21_c00246{word-spacing:-2.700800pt;}
.ws30_c00246{word-spacing:-2.150400pt;}
.ws2f_c00246{word-spacing:-2.054400pt;}
.ws10_c00246{word-spacing:-1.420800pt;}
.ws11_c00246{word-spacing:-1.363200pt;}
.wsc_c00246{word-spacing:-0.876800pt;}
.ws20_c00246{word-spacing:-0.787200pt;}
.wsb_c00246{word-spacing:-0.780800pt;}
.wsd_c00246{word-spacing:-0.742400pt;}
.ws1f_c00246{word-spacing:-0.467200pt;}
.ws0_c00246{word-spacing:0.000000pt;}
.ws2b_c00246{word-spacing:0.083200pt;}
.wsf_c00246{word-spacing:0.108800pt;}
.ws1d_c00246{word-spacing:0.121600pt;}
.ws1e_c00246{word-spacing:0.147200pt;}
.ws9_c00246{word-spacing:0.160000pt;}
.wsa_c00246{word-spacing:0.166400pt;}
.ws16_c00246{word-spacing:0.179200pt;}
.ws15_c00246{word-spacing:0.192000pt;}
.ws2a_c00246{word-spacing:0.236800pt;}
.ws33_c00246{word-spacing:1.459200pt;}
.ws34_c00246{word-spacing:2.086400pt;}
.ws35_c00246{word-spacing:2.099200pt;}
.ws32_c00246{word-spacing:2.700800pt;}
.ws31_c00246{word-spacing:2.720000pt;}
.ws1a_c00246{word-spacing:3.302400pt;}
.ws18_c00246{word-spacing:3.360000pt;}
.ws19_c00246{word-spacing:3.372800pt;}
.ws17_c00246{word-spacing:4.326400pt;}
.ws24_c00246{word-spacing:4.953600pt;}
.ws23_c00246{word-spacing:4.985600pt;}
.ws5_c00246{word-spacing:5.555200pt;}
.ws27_c00246{word-spacing:5.568000pt;}
.ws25_c00246{word-spacing:5.606400pt;}
.ws26_c00246{word-spacing:5.612800pt;}
.ws6_c00246{word-spacing:5.638400pt;}
.ws7_c00246{word-spacing:6.220800pt;}
.ws8_c00246{word-spacing:6.265600pt;}
.ws13_c00246{word-spacing:9.452800pt;}
.ws14_c00246{word-spacing:9.472000pt;}
.ws29_c00246{word-spacing:10.393600pt;}
.ws28_c00246{word-spacing:10.412800pt;}
.wse_c00246{word-spacing:17.766400pt;}
.ws12_c00246{word-spacing:24.179200pt;}
.ws1_c00246{word-spacing:32.172800pt;}
.ws2_c00246{word-spacing:32.256000pt;}
.ws3_c00246{word-spacing:32.480000pt;}
.ws4_c00246{word-spacing:32.556800pt;}
._0_c00246{margin-left:-1.062400pt;}
._1_c00246{width:1.177600pt;}
.fs0_c00246{font-size:64.000000pt;}
.y0_c00246{bottom:0.000000pt;}
.y2_c00246{bottom:41.627067pt;}
.y1_c00246{bottom:60.027067pt;}
.y22_c00246{bottom:133.227067pt;}
.y21_c00246{bottom:160.827067pt;}
.y20_c00246{bottom:188.427067pt;}
.y1f_c00246{bottom:216.027067pt;}
.y1e_c00246{bottom:243.627067pt;}
.y1d_c00246{bottom:287.147067pt;}
.y1c_c00246{bottom:314.747067pt;}
.y1b_c00246{bottom:342.347067pt;}
.y1a_c00246{bottom:369.947067pt;}
.y19_c00246{bottom:397.547067pt;}
.y18_c00246{bottom:425.147067pt;}
.y17_c00246{bottom:468.747067pt;}
.y16_c00246{bottom:496.347067pt;}
.y15_c00246{bottom:523.947067pt;}
.y14_c00246{bottom:550.347067pt;}
.y13_c00246{bottom:568.747067pt;}
.y12_c00246{bottom:587.147067pt;}
.y11_c00246{bottom:605.547067pt;}
.y10_c00246{bottom:623.947067pt;}
.yf_c00246{bottom:642.347067pt;}
.ye_c00246{bottom:660.747067pt;}
.yd_c00246{bottom:679.147067pt;}
.yc_c00246{bottom:697.547067pt;}
.yb_c00246{bottom:715.947067pt;}
.ya_c00246{bottom:734.347067pt;}
.y9_c00246{bottom:777.947067pt;}
.y8_c00246{bottom:821.547067pt;}
.y7_c00246{bottom:865.147067pt;}
.y6_c00246{bottom:892.747067pt;}
.y5_c00246{bottom:920.347067pt;}
.y4_c00246{bottom:947.947067pt;}
.y3_c00246{bottom:975.547067pt;}
.h1_c00246{height:56.156250pt;}
.h2_c00246{height:57.375000pt;}
.h3_c00246{height:66.750000pt;}
.h0_c00246{height:1122.666667pt;}
.w1_c00246{width:793.333333pt;}
.w0_c00246{width:793.626667pt;}
.x0_c00246{left:0.000000pt;}
.x2_c00246{left:151.200000pt;}
.x3_c00246{left:170.160000pt;}
.x1_c00246{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_884dc2e015ca0e7c3f7e4069.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.093262;font-style:normal;font-weight:normal;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_d845699ef1726579a01b51bd.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.106934;font-style:normal;font-weight:normal;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_13c7e69aadc13018b5f5c86a.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00247{letter-spacing:-0.093600px;}
.lsc_c00247{letter-spacing:-0.086400px;}
.ls4_c00247{letter-spacing:-0.057600px;}
.ls3_c00247{letter-spacing:-0.050400px;}
.ls6_c00247{letter-spacing:-0.043200px;}
.ls1_c00247{letter-spacing:-0.036000px;}
.lsa_c00247{letter-spacing:-0.028800px;}
.ls2_c00247{letter-spacing:-0.021600px;}
.ls5_c00247{letter-spacing:-0.014400px;}
.ls9_c00247{letter-spacing:-0.007200px;}
.ls0_c00247{letter-spacing:0.000000px;}
.ls7_c00247{letter-spacing:0.007200px;}
.lsb_c00247{letter-spacing:0.518400px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00247{word-spacing:-19.965600px;}
.wsb_c00247{word-spacing:-4.485600px;}
.wsa_c00247{word-spacing:-4.464000px;}
.wsd_c00247{word-spacing:-4.204800px;}
.wse_c00247{word-spacing:-4.125600px;}
.ws2f_c00247{word-spacing:-2.764800px;}
.ws30_c00247{word-spacing:-2.700000px;}
.ws1e_c00247{word-spacing:-2.340000px;}
.ws1d_c00247{word-spacing:-2.311200px;}
.ws1_c00247{word-spacing:0.000000px;}
.ws10_c00247{word-spacing:0.151200px;}
.ws3_c00247{word-spacing:0.180000px;}
.ws24_c00247{word-spacing:0.187200px;}
.wsf_c00247{word-spacing:0.194400px;}
.ws16_c00247{word-spacing:0.244800px;}
.ws8_c00247{word-spacing:0.525600px;}
.ws9_c00247{word-spacing:0.554400px;}
.wsc_c00247{word-spacing:0.892800px;}
.ws1f_c00247{word-spacing:1.555200px;}
.ws13_c00247{word-spacing:1.641600px;}
.ws7_c00247{word-spacing:5.220000px;}
.ws5_c00247{word-spacing:5.558400px;}
.ws6_c00247{word-spacing:5.580000px;}
.ws4_c00247{word-spacing:5.608800px;}
.ws11_c00247{word-spacing:6.602400px;}
.ws12_c00247{word-spacing:6.660000px;}
.ws15_c00247{word-spacing:7.984800px;}
.ws14_c00247{word-spacing:8.100000px;}
.ws21_c00247{word-spacing:10.598400px;}
.ws20_c00247{word-spacing:10.634400px;}
.ws2b_c00247{word-spacing:10.944000px;}
.ws2c_c00247{word-spacing:10.994400px;}
.ws19_c00247{word-spacing:11.520000px;}
.ws1b_c00247{word-spacing:11.592000px;}
.ws1a_c00247{word-spacing:11.700000px;}
.ws29_c00247{word-spacing:12.038400px;}
.ws2a_c00247{word-spacing:12.067200px;}
.ws22_c00247{word-spacing:12.139200px;}
.ws23_c00247{word-spacing:12.146400px;}
.ws32_c00247{word-spacing:14.947200px;}
.ws31_c00247{word-spacing:15.019200px;}
.ws18_c00247{word-spacing:15.652800px;}
.ws1c_c00247{word-spacing:15.998400px;}
.ws17_c00247{word-spacing:16.056000px;}
.ws2_c00247{word-spacing:22.550400px;}
.ws28_c00247{word-spacing:45.432000px;}
.ws27_c00247{word-spacing:45.540000px;}
.ws2e_c00247{word-spacing:48.031200px;}
.ws2d_c00247{word-spacing:48.052800px;}
.ws25_c00247{word-spacing:61.740000px;}
.ws26_c00247{word-spacing:61.761600px;}
._1_c00247{margin-left:-10.440000px;}
._0_c00247{width:1.108800px;}
._2_c00247{width:61.819200px;}
.fc0_c00247{color:rgb(0,0,0);}
.fs0_c00247{font-size:72.000000px;}
.y0_c00247{bottom:0.000000px;}
.y2_c00247{bottom:46.830450px;}
.y1_c00247{bottom:67.530450px;}
.y1f_c00247{bottom:138.180450px;}
.y1e_c00247{bottom:169.230450px;}
.y1d_c00247{bottom:200.280450px;}
.y1c_c00247{bottom:231.330450px;}
.y1b_c00247{bottom:262.380450px;}
.y1a_c00247{bottom:293.430450px;}
.y19_c00247{bottom:324.390450px;}
.y18_c00247{bottom:373.440450px;}
.y17_c00247{bottom:404.490450px;}
.y16_c00247{bottom:435.540450px;}
.y15_c00247{bottom:484.590450px;}
.y14_c00247{bottom:515.640450px;}
.y13_c00247{bottom:546.690450px;}
.y12_c00247{bottom:577.740450px;}
.y11_c00247{bottom:608.790450px;}
.y10_c00247{bottom:639.840450px;}
.yf_c00247{bottom:670.890450px;}
.ye_c00247{bottom:719.940450px;}
.yd_c00247{bottom:750.990450px;}
.yc_c00247{bottom:782.040450px;}
.yb_c00247{bottom:813.090450px;}
.ya_c00247{bottom:862.140450px;}
.y9_c00247{bottom:893.190450px;}
.y8_c00247{bottom:924.240450px;}
.y7_c00247{bottom:955.290450px;}
.y6_c00247{bottom:986.340450px;}
.y5_c00247{bottom:1017.390450px;}
.y4_c00247{bottom:1066.440450px;}
.y3_c00247{bottom:1097.490450px;}
.h1_c00247{height:63.175781px;}
.h2_c00247{height:64.546875px;}
.h3_c00247{height:75.093750px;}
.h0_c00247{height:1263.000000px;}
.w1_c00247{width:892.500000px;}
.w0_c00247{width:892.830000px;}
.x0_c00247{left:0.000000px;}
.x2_c00247{left:127.620000px;}
.x1_c00247{left:695.880000px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls8_c00247{letter-spacing:-0.083200pt;}
.lsc_c00247{letter-spacing:-0.076800pt;}
.ls4_c00247{letter-spacing:-0.051200pt;}
.ls3_c00247{letter-spacing:-0.044800pt;}
.ls6_c00247{letter-spacing:-0.038400pt;}
.ls1_c00247{letter-spacing:-0.032000pt;}
.lsa_c00247{letter-spacing:-0.025600pt;}
.ls2_c00247{letter-spacing:-0.019200pt;}
.ls5_c00247{letter-spacing:-0.012800pt;}
.ls9_c00247{letter-spacing:-0.006400pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ls7_c00247{letter-spacing:0.006400pt;}
.lsb_c00247{letter-spacing:0.460800pt;}
.ws0_c00247{word-spacing:-17.747200pt;}
.wsb_c00247{word-spacing:-3.987200pt;}
.wsa_c00247{word-spacing:-3.968000pt;}
.wsd_c00247{word-spacing:-3.737600pt;}
.wse_c00247{word-spacing:-3.667200pt;}
.ws2f_c00247{word-spacing:-2.457600pt;}
.ws30_c00247{word-spacing:-2.400000pt;}
.ws1e_c00247{word-spacing:-2.080000pt;}
.ws1d_c00247{word-spacing:-2.054400pt;}
.ws1_c00247{word-spacing:0.000000pt;}
.ws10_c00247{word-spacing:0.134400pt;}
.ws3_c00247{word-spacing:0.160000pt;}
.ws24_c00247{word-spacing:0.166400pt;}
.wsf_c00247{word-spacing:0.172800pt;}
.ws16_c00247{word-spacing:0.217600pt;}
.ws8_c00247{word-spacing:0.467200pt;}
.ws9_c00247{word-spacing:0.492800pt;}
.wsc_c00247{word-spacing:0.793600pt;}
.ws1f_c00247{word-spacing:1.382400pt;}
.ws13_c00247{word-spacing:1.459200pt;}
.ws7_c00247{word-spacing:4.640000pt;}
.ws5_c00247{word-spacing:4.940800pt;}
.ws6_c00247{word-spacing:4.960000pt;}
.ws4_c00247{word-spacing:4.985600pt;}
.ws11_c00247{word-spacing:5.868800pt;}
.ws12_c00247{word-spacing:5.920000pt;}
.ws15_c00247{word-spacing:7.097600pt;}
.ws14_c00247{word-spacing:7.200000pt;}
.ws21_c00247{word-spacing:9.420800pt;}
.ws20_c00247{word-spacing:9.452800pt;}
.ws2b_c00247{word-spacing:9.728000pt;}
.ws2c_c00247{word-spacing:9.772800pt;}
.ws19_c00247{word-spacing:10.240000pt;}
.ws1b_c00247{word-spacing:10.304000pt;}
.ws1a_c00247{word-spacing:10.400000pt;}
.ws29_c00247{word-spacing:10.700800pt;}
.ws2a_c00247{word-spacing:10.726400pt;}
.ws22_c00247{word-spacing:10.790400pt;}
.ws23_c00247{word-spacing:10.796800pt;}
.ws32_c00247{word-spacing:13.286400pt;}
.ws31_c00247{word-spacing:13.350400pt;}
.ws18_c00247{word-spacing:13.913600pt;}
.ws1c_c00247{word-spacing:14.220800pt;}
.ws17_c00247{word-spacing:14.272000pt;}
.ws2_c00247{word-spacing:20.044800pt;}
.ws28_c00247{word-spacing:40.384000pt;}
.ws27_c00247{word-spacing:40.480000pt;}
.ws2e_c00247{word-spacing:42.694400pt;}
.ws2d_c00247{word-spacing:42.713600pt;}
.ws25_c00247{word-spacing:54.880000pt;}
.ws26_c00247{word-spacing:54.899200pt;}
._1_c00247{margin-left:-9.280000pt;}
._0_c00247{width:0.985600pt;}
._2_c00247{width:54.950400pt;}
.fs0_c00247{font-size:64.000000pt;}
.y0_c00247{bottom:0.000000pt;}
.y2_c00247{bottom:41.627067pt;}
.y1_c00247{bottom:60.027067pt;}
.y1f_c00247{bottom:122.827067pt;}
.y1e_c00247{bottom:150.427067pt;}
.y1d_c00247{bottom:178.027067pt;}
.y1c_c00247{bottom:205.627067pt;}
.y1b_c00247{bottom:233.227067pt;}
.y1a_c00247{bottom:260.827067pt;}
.y19_c00247{bottom:288.347067pt;}
.y18_c00247{bottom:331.947067pt;}
.y17_c00247{bottom:359.547067pt;}
.y16_c00247{bottom:387.147067pt;}
.y15_c00247{bottom:430.747067pt;}
.y14_c00247{bottom:458.347067pt;}
.y13_c00247{bottom:485.947067pt;}
.y12_c00247{bottom:513.547067pt;}
.y11_c00247{bottom:541.147067pt;}
.y10_c00247{bottom:568.747067pt;}
.yf_c00247{bottom:596.347067pt;}
.ye_c00247{bottom:639.947067pt;}
.yd_c00247{bottom:667.547067pt;}
.yc_c00247{bottom:695.147067pt;}
.yb_c00247{bottom:722.747067pt;}
.ya_c00247{bottom:766.347067pt;}
.y9_c00247{bottom:793.947067pt;}
.y8_c00247{bottom:821.547067pt;}
.y7_c00247{bottom:849.147067pt;}
.y6_c00247{bottom:876.747067pt;}
.y5_c00247{bottom:904.347067pt;}
.y4_c00247{bottom:947.947067pt;}
.y3_c00247{bottom:975.547067pt;}
.h1_c00247{height:56.156250pt;}
.h2_c00247{height:57.375000pt;}
.h3_c00247{height:66.750000pt;}
.h0_c00247{height:1122.666667pt;}
.w1_c00247{width:793.333333pt;}
.w0_c00247{width:793.626667pt;}
.x0_c00247{left:0.000000pt;}
.x2_c00247{left:113.440000pt;}
.x1_c00247{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_64793b51478615da70d31246.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.093262;font-style:normal;font-weight:normal;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_c5a49bc3de16538358d0f654.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.106934;font-style:normal;font-weight:normal;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_61e35ebd66e0b0e6e66fa34b.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls4_c00248{letter-spacing:-0.086400px;}
.ls8_c00248{letter-spacing:-0.072000px;}
.lsb_c00248{letter-spacing:-0.064800px;}
.ls7_c00248{letter-spacing:-0.057600px;}
.ls6_c00248{letter-spacing:-0.050400px;}
.ls2_c00248{letter-spacing:-0.043200px;}
.ls1_c00248{letter-spacing:-0.036000px;}
.ls9_c00248{letter-spacing:-0.028800px;}
.ls3_c00248{letter-spacing:-0.021600px;}
.ls5_c00248{letter-spacing:-0.014400px;}
.lsa_c00248{letter-spacing:-0.007200px;}
.ls0_c00248{letter-spacing:0.000000px;}
.lsc_c00248{letter-spacing:843.998400px;}
.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;}
}
.ws23_c00248{word-spacing:-4.665600px;}
.ws22_c00248{word-spacing:-4.514400px;}
.ws11_c00248{word-spacing:-4.500000px;}
.ws10_c00248{word-spacing:-4.377600px;}
.ws18_c00248{word-spacing:-2.476800px;}
.ws6_c00248{word-spacing:-2.340000px;}
.ws7_c00248{word-spacing:-2.282400px;}
.ws1_c00248{word-spacing:-1.245600px;}
.ws0_c00248{word-spacing:0.000000px;}
.ws4_c00248{word-spacing:0.086400px;}
.ws2c_c00248{word-spacing:0.108000px;}
.ws5_c00248{word-spacing:0.180000px;}
.ws2d_c00248{word-spacing:0.187200px;}
.wsd_c00248{word-spacing:1.792800px;}
.wsc_c00248{word-spacing:1.994400px;}
.wsb_c00248{word-spacing:2.008800px;}
.ws21_c00248{word-spacing:4.161600px;}
.ws14_c00248{word-spacing:5.198400px;}
.ws15_c00248{word-spacing:5.234400px;}
.ws3_c00248{word-spacing:8.100000px;}
.ws2_c00248{word-spacing:8.114400px;}
.ws1d_c00248{word-spacing:8.899200px;}
.ws1e_c00248{word-spacing:8.906400px;}
.ws27_c00248{word-spacing:9.187200px;}
.ws26_c00248{word-spacing:9.295200px;}
.ws2b_c00248{word-spacing:9.900000px;}
.wse_c00248{word-spacing:9.928800px;}
.wsf_c00248{word-spacing:9.936000px;}
.ws2a_c00248{word-spacing:10.094400px;}
.ws8_c00248{word-spacing:12.456000px;}
.ws25_c00248{word-spacing:14.220000px;}
.ws24_c00248{word-spacing:14.241600px;}
.wsa_c00248{word-spacing:16.358400px;}
.ws9_c00248{word-spacing:16.372800px;}
.ws12_c00248{word-spacing:17.812800px;}
.ws13_c00248{word-spacing:17.841600px;}
.ws1c_c00248{word-spacing:21.052800px;}
.ws1b_c00248{word-spacing:21.067200px;}
.ws1a_c00248{word-spacing:21.412800px;}
.ws19_c00248{word-spacing:21.484800px;}
.ws28_c00248{word-spacing:21.765600px;}
.ws29_c00248{word-spacing:21.780000px;}
.ws17_c00248{word-spacing:33.292800px;}
.ws16_c00248{word-spacing:33.300000px;}
.ws1f_c00248{word-spacing:38.692800px;}
.ws20_c00248{word-spacing:38.707200px;}
._4_c00248{margin-left:-13.449600px;}
._0_c00248{margin-left:-2.260800px;}
._1_c00248{width:1.108800px;}
._3_c00248{width:4.219200px;}
._2_c00248{width:33.379200px;}
.fc0_c00248{color:rgb(0,0,0);}
.fs0_c00248{font-size:72.000000px;}
.y0_c00248{bottom:0.000000px;}
.y2_c00248{bottom:46.830450px;}
.y1_c00248{bottom:67.530450px;}
.y1d_c00248{bottom:218.280450px;}
.y1c_c00248{bottom:267.330450px;}
.y1b_c00248{bottom:298.380450px;}
.y1a_c00248{bottom:329.430450px;}
.y19_c00248{bottom:360.390450px;}
.y18_c00248{bottom:391.440450px;}
.y17_c00248{bottom:422.490450px;}
.y16_c00248{bottom:453.540450px;}
.y15_c00248{bottom:502.590450px;}
.y14_c00248{bottom:533.640450px;}
.y13_c00248{bottom:564.690450px;}
.y12_c00248{bottom:595.740450px;}
.y11_c00248{bottom:626.790450px;}
.y10_c00248{bottom:657.840450px;}
.yf_c00248{bottom:688.890450px;}
.ye_c00248{bottom:737.940450px;}
.yd_c00248{bottom:768.990450px;}
.yc_c00248{bottom:800.040450px;}
.yb_c00248{bottom:831.090450px;}
.ya_c00248{bottom:862.140450px;}
.y9_c00248{bottom:893.190450px;}
.y8_c00248{bottom:924.240450px;}
.y7_c00248{bottom:955.290450px;}
.y6_c00248{bottom:986.340450px;}
.y5_c00248{bottom:1035.390450px;}
.y4_c00248{bottom:1066.440450px;}
.y3_c00248{bottom:1097.490450px;}
.h1_c00248{height:63.175781px;}
.h2_c00248{height:64.546875px;}
.h3_c00248{height:75.093750px;}
.h0_c00248{height:1263.000000px;}
.w1_c00248{width:892.500000px;}
.w0_c00248{width:892.830000px;}
.x0_c00248{left:0.000000px;}
.x2_c00248{left:170.100000px;}
.x1_c00248{left:738.360000px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls4_c00248{letter-spacing:-0.076800pt;}
.ls8_c00248{letter-spacing:-0.064000pt;}
.lsb_c00248{letter-spacing:-0.057600pt;}
.ls7_c00248{letter-spacing:-0.051200pt;}
.ls6_c00248{letter-spacing:-0.044800pt;}
.ls2_c00248{letter-spacing:-0.038400pt;}
.ls1_c00248{letter-spacing:-0.032000pt;}
.ls9_c00248{letter-spacing:-0.025600pt;}
.ls3_c00248{letter-spacing:-0.019200pt;}
.ls5_c00248{letter-spacing:-0.012800pt;}
.lsa_c00248{letter-spacing:-0.006400pt;}
.ls0_c00248{letter-spacing:0.000000pt;}
.lsc_c00248{letter-spacing:750.220800pt;}
.ws23_c00248{word-spacing:-4.147200pt;}
.ws22_c00248{word-spacing:-4.012800pt;}
.ws11_c00248{word-spacing:-4.000000pt;}
.ws10_c00248{word-spacing:-3.891200pt;}
.ws18_c00248{word-spacing:-2.201600pt;}
.ws6_c00248{word-spacing:-2.080000pt;}
.ws7_c00248{word-spacing:-2.028800pt;}
.ws1_c00248{word-spacing:-1.107200pt;}
.ws0_c00248{word-spacing:0.000000pt;}
.ws4_c00248{word-spacing:0.076800pt;}
.ws2c_c00248{word-spacing:0.096000pt;}
.ws5_c00248{word-spacing:0.160000pt;}
.ws2d_c00248{word-spacing:0.166400pt;}
.wsd_c00248{word-spacing:1.593600pt;}
.wsc_c00248{word-spacing:1.772800pt;}
.wsb_c00248{word-spacing:1.785600pt;}
.ws21_c00248{word-spacing:3.699200pt;}
.ws14_c00248{word-spacing:4.620800pt;}
.ws15_c00248{word-spacing:4.652800pt;}
.ws3_c00248{word-spacing:7.200000pt;}
.ws2_c00248{word-spacing:7.212800pt;}
.ws1d_c00248{word-spacing:7.910400pt;}
.ws1e_c00248{word-spacing:7.916800pt;}
.ws27_c00248{word-spacing:8.166400pt;}
.ws26_c00248{word-spacing:8.262400pt;}
.ws2b_c00248{word-spacing:8.800000pt;}
.wse_c00248{word-spacing:8.825600pt;}
.wsf_c00248{word-spacing:8.832000pt;}
.ws2a_c00248{word-spacing:8.972800pt;}
.ws8_c00248{word-spacing:11.072000pt;}
.ws25_c00248{word-spacing:12.640000pt;}
.ws24_c00248{word-spacing:12.659200pt;}
.wsa_c00248{word-spacing:14.540800pt;}
.ws9_c00248{word-spacing:14.553600pt;}
.ws12_c00248{word-spacing:15.833600pt;}
.ws13_c00248{word-spacing:15.859200pt;}
.ws1c_c00248{word-spacing:18.713600pt;}
.ws1b_c00248{word-spacing:18.726400pt;}
.ws1a_c00248{word-spacing:19.033600pt;}
.ws19_c00248{word-spacing:19.097600pt;}
.ws28_c00248{word-spacing:19.347200pt;}
.ws29_c00248{word-spacing:19.360000pt;}
.ws17_c00248{word-spacing:29.593600pt;}
.ws16_c00248{word-spacing:29.600000pt;}
.ws1f_c00248{word-spacing:34.393600pt;}
.ws20_c00248{word-spacing:34.406400pt;}
._4_c00248{margin-left:-11.955200pt;}
._0_c00248{margin-left:-2.009600pt;}
._1_c00248{width:0.985600pt;}
._3_c00248{width:3.750400pt;}
._2_c00248{width:29.670400pt;}
.fs0_c00248{font-size:64.000000pt;}
.y0_c00248{bottom:0.000000pt;}
.y2_c00248{bottom:41.627067pt;}
.y1_c00248{bottom:60.027067pt;}
.y1d_c00248{bottom:194.027067pt;}
.y1c_c00248{bottom:237.627067pt;}
.y1b_c00248{bottom:265.227067pt;}
.y1a_c00248{bottom:292.827067pt;}
.y19_c00248{bottom:320.347067pt;}
.y18_c00248{bottom:347.947067pt;}
.y17_c00248{bottom:375.547067pt;}
.y16_c00248{bottom:403.147067pt;}
.y15_c00248{bottom:446.747067pt;}
.y14_c00248{bottom:474.347067pt;}
.y13_c00248{bottom:501.947067pt;}
.y12_c00248{bottom:529.547067pt;}
.y11_c00248{bottom:557.147067pt;}
.y10_c00248{bottom:584.747067pt;}
.yf_c00248{bottom:612.347067pt;}
.ye_c00248{bottom:655.947067pt;}
.yd_c00248{bottom:683.547067pt;}
.yc_c00248{bottom:711.147067pt;}
.yb_c00248{bottom:738.747067pt;}
.ya_c00248{bottom:766.347067pt;}
.y9_c00248{bottom:793.947067pt;}
.y8_c00248{bottom:821.547067pt;}
.y7_c00248{bottom:849.147067pt;}
.y6_c00248{bottom:876.747067pt;}
.y5_c00248{bottom:920.347067pt;}
.y4_c00248{bottom:947.947067pt;}
.y3_c00248{bottom:975.547067pt;}
.h1_c00248{height:56.156250pt;}
.h2_c00248{height:57.375000pt;}
.h3_c00248{height:66.750000pt;}
.h0_c00248{height:1122.666667pt;}
.w1_c00248{width:793.333333pt;}
.w0_c00248{width:793.626667pt;}
.x0_c00248{left:0.000000pt;}
.x2_c00248{left:151.200000pt;}
.x1_c00248{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_827c2cb4e2e22cfe87060444.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.ls0_c00249{letter-spacing:0.000000px;}
.ls1_c00249{letter-spacing:843.998400px;}
.sc__c00249{text-shadow:none;}
.sc0_c00249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00249{-webkit-text-stroke:0px transparent;}
.sc0_c00249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00249{word-spacing:0.000000px;}
.fc0_c00249{color:rgb(0,0,0);}
.fs0_c00249{font-size:72.000000px;}
.y0_c00249{bottom:0.000000px;}
.y2_c00249{bottom:46.830450px;}
.y1_c00249{bottom:67.530450px;}
.y5_c00249{bottom:999.390450px;}
.y4_c00249{bottom:1048.440450px;}
.y3_c00249{bottom:1097.490450px;}
.h1_c00249{height:63.175781px;}
.h2_c00249{height:64.546875px;}
.h0_c00249{height:1263.000000px;}
.w1_c00249{width:892.500000px;}
.w0_c00249{width:892.830000px;}
.x0_c00249{left:0.000000px;}
.x2_c00249{left:127.620000px;}
.x1_c00249{left:695.880000px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls0_c00249{letter-spacing:0.000000pt;}
.ls1_c00249{letter-spacing:750.220800pt;}
.ws0_c00249{word-spacing:0.000000pt;}
.fs0_c00249{font-size:64.000000pt;}
.y0_c00249{bottom:0.000000pt;}
.y2_c00249{bottom:41.627067pt;}
.y1_c00249{bottom:60.027067pt;}
.y5_c00249{bottom:888.347067pt;}
.y4_c00249{bottom:931.947067pt;}
.y3_c00249{bottom:975.547067pt;}
.h1_c00249{height:56.156250pt;}
.h2_c00249{height:57.375000pt;}
.h0_c00249{height:1122.666667pt;}
.w1_c00249{width:793.333333pt;}
.w0_c00249{width:793.626667pt;}
.x0_c00249{left:0.000000pt;}
.x2_c00249{left:113.440000pt;}
.x1_c00249{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_82018bd6c7bc5c644a10a97b.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.093262;font-style:normal;font-weight:normal;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_691e81c0cc2b487e0dc435d4.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00250;src:url('chunks/assets/font_91fd3c3fc9132c8d2af563c7.woff2')format("woff");}.ff3_c00250{font-family:ff3_c00250;line-height:1.106934;font-style:normal;font-weight:normal;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_6912b14af30f9010cf3275b1.woff2')format("woff");}.ff4_c00250{font-family:ff4_c00250;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls8_c00250{letter-spacing:-0.266400px;}
.lsb_c00250{letter-spacing:-0.072000px;}
.ls5_c00250{letter-spacing:-0.057600px;}
.ls9_c00250{letter-spacing:-0.050400px;}
.ls4_c00250{letter-spacing:-0.043200px;}
.ls2_c00250{letter-spacing:-0.036000px;}
.ls3_c00250{letter-spacing:-0.028800px;}
.ls6_c00250{letter-spacing:-0.021600px;}
.lsa_c00250{letter-spacing:-0.014400px;}
.ls7_c00250{letter-spacing:-0.007200px;}
.ls1_c00250{letter-spacing:0.000000px;}
.ls0_c00250{letter-spacing:0.041940px;}
.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;}
}
.ws24_c00250{word-spacing:-2.332800px;}
.wsd_c00250{word-spacing:-1.965600px;}
.ws4_c00250{word-spacing:-1.958400px;}
.ws5_c00250{word-spacing:-1.944000px;}
.wse_c00250{word-spacing:-1.864800px;}
.ws26_c00250{word-spacing:-1.540800px;}
.ws25_c00250{word-spacing:-1.440000px;}
.wsf_c00250{word-spacing:-1.339200px;}
.ws10_c00250{word-spacing:-1.231200px;}
.ws2d_c00250{word-spacing:-1.166400px;}
.ws8_c00250{word-spacing:-0.165600px;}
.ws0_c00250{word-spacing:0.000000px;}
.wsc_c00250{word-spacing:0.172800px;}
.ws23_c00250{word-spacing:0.187200px;}
.ws27_c00250{word-spacing:0.201600px;}
.wsb_c00250{word-spacing:0.208800px;}
.ws2c_c00250{word-spacing:0.878400px;}
.ws2b_c00250{word-spacing:0.900000px;}
.ws2_c00250{word-spacing:1.994400px;}
.ws3_c00250{word-spacing:2.059200px;}
.ws1b_c00250{word-spacing:2.714400px;}
.ws1a_c00250{word-spacing:2.736000px;}
.ws19_c00250{word-spacing:5.227200px;}
.ws18_c00250{word-spacing:5.306400px;}
.ws13_c00250{word-spacing:7.012800px;}
.ws14_c00250{word-spacing:7.099200px;}
.ws1_c00250{word-spacing:9.772020px;}
.wsa_c00250{word-spacing:12.405600px;}
.ws15_c00250{word-spacing:12.412800px;}
.ws9_c00250{word-spacing:12.420000px;}
.ws16_c00250{word-spacing:12.427200px;}
.ws17_c00250{word-spacing:12.585600px;}
.ws20_c00250{word-spacing:13.507200px;}
.ws21_c00250{word-spacing:13.586400px;}
.ws6_c00250{word-spacing:14.234400px;}
.ws7_c00250{word-spacing:14.580000px;}
.ws1c_c00250{word-spacing:15.314400px;}
.ws1d_c00250{word-spacing:15.350400px;}
.ws22_c00250{word-spacing:19.980000px;}
.ws1e_c00250{word-spacing:23.580000px;}
.ws1f_c00250{word-spacing:23.608800px;}
.ws28_c00250{word-spacing:24.681600px;}
.ws29_c00250{word-spacing:28.980000px;}
.ws2a_c00250{word-spacing:29.001600px;}
.ws12_c00250{word-spacing:32.947200px;}
.ws11_c00250{word-spacing:32.961600px;}
._0_c00250{margin-left:-9.730080px;}
._1_c00250{width:1.267200px;}
.fc0_c00250{color:rgb(0,0,0);}
.fs0_c00250{font-size:72.000000px;}
.fs1_c00250{font-size:83.880000px;}
.y0_c00250{bottom:0.000000px;}
.y2_c00250{bottom:46.830450px;}
.y1_c00250{bottom:67.530450px;}
.y21_c00250{bottom:138.720450px;}
.y20_c00250{bottom:159.420450px;}
.y1f_c00250{bottom:180.120450px;}
.y1e_c00250{bottom:200.820450px;}
.y1d_c00250{bottom:249.870450px;}
.y1c_c00250{bottom:280.920450px;}
.y1b_c00250{bottom:311.970450px;}
.y1a_c00250{bottom:361.020450px;}
.y19_c00250{bottom:390.720450px;}
.y18_c00250{bottom:411.420450px;}
.y17_c00250{bottom:432.120450px;}
.y16_c00250{bottom:452.820450px;}
.y15_c00250{bottom:473.520450px;}
.y14_c00250{bottom:522.570450px;}
.y13_c00250{bottom:553.620450px;}
.y12_c00250{bottom:584.670450px;}
.y11_c00250{bottom:615.720450px;}
.y10_c00250{bottom:646.770450px;}
.yf_c00250{bottom:677.820450px;}
.ye_c00250{bottom:708.870450px;}
.yd_c00250{bottom:739.920450px;}
.yc_c00250{bottom:770.970450px;}
.yb_c00250{bottom:820.020450px;}
.ya_c00250{bottom:851.070450px;}
.y9_c00250{bottom:882.120450px;}
.y8_c00250{bottom:913.170450px;}
.y7_c00250{bottom:944.220450px;}
.y6_c00250{bottom:975.270450px;}
.y5_c00250{bottom:1006.320450px;}
.y4_c00250{bottom:1055.370450px;}
.y3_c00250{bottom:1094.520450px;}
.h1_c00250{height:63.175781px;}
.h3_c00250{height:64.546875px;}
.h4_c00250{height:75.093750px;}
.h2_c00250{height:87.484219px;}
.h0_c00250{height:1263.000000px;}
.w1_c00250{width:892.500000px;}
.w0_c00250{width:892.830000px;}
.x0_c00250{left:0.000000px;}
.x2_c00250{left:170.100000px;}
.x4_c00250{left:191.430000px;}
.x3_c00250{left:251.100000px;}
.x1_c00250{left:738.360000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls8_c00250{letter-spacing:-0.236800pt;}
.lsb_c00250{letter-spacing:-0.064000pt;}
.ls5_c00250{letter-spacing:-0.051200pt;}
.ls9_c00250{letter-spacing:-0.044800pt;}
.ls4_c00250{letter-spacing:-0.038400pt;}
.ls2_c00250{letter-spacing:-0.032000pt;}
.ls3_c00250{letter-spacing:-0.025600pt;}
.ls6_c00250{letter-spacing:-0.019200pt;}
.lsa_c00250{letter-spacing:-0.012800pt;}
.ls7_c00250{letter-spacing:-0.006400pt;}
.ls1_c00250{letter-spacing:0.000000pt;}
.ls0_c00250{letter-spacing:0.037280pt;}
.ws24_c00250{word-spacing:-2.073600pt;}
.wsd_c00250{word-spacing:-1.747200pt;}
.ws4_c00250{word-spacing:-1.740800pt;}
.ws5_c00250{word-spacing:-1.728000pt;}
.wse_c00250{word-spacing:-1.657600pt;}
.ws26_c00250{word-spacing:-1.369600pt;}
.ws25_c00250{word-spacing:-1.280000pt;}
.wsf_c00250{word-spacing:-1.190400pt;}
.ws10_c00250{word-spacing:-1.094400pt;}
.ws2d_c00250{word-spacing:-1.036800pt;}
.ws8_c00250{word-spacing:-0.147200pt;}
.ws0_c00250{word-spacing:0.000000pt;}
.wsc_c00250{word-spacing:0.153600pt;}
.ws23_c00250{word-spacing:0.166400pt;}
.ws27_c00250{word-spacing:0.179200pt;}
.wsb_c00250{word-spacing:0.185600pt;}
.ws2c_c00250{word-spacing:0.780800pt;}
.ws2b_c00250{word-spacing:0.800000pt;}
.ws2_c00250{word-spacing:1.772800pt;}
.ws3_c00250{word-spacing:1.830400pt;}
.ws1b_c00250{word-spacing:2.412800pt;}
.ws1a_c00250{word-spacing:2.432000pt;}
.ws19_c00250{word-spacing:4.646400pt;}
.ws18_c00250{word-spacing:4.716800pt;}
.ws13_c00250{word-spacing:6.233600pt;}
.ws14_c00250{word-spacing:6.310400pt;}
.ws1_c00250{word-spacing:8.686240pt;}
.wsa_c00250{word-spacing:11.027200pt;}
.ws15_c00250{word-spacing:11.033600pt;}
.ws9_c00250{word-spacing:11.040000pt;}
.ws16_c00250{word-spacing:11.046400pt;}
.ws17_c00250{word-spacing:11.187200pt;}
.ws20_c00250{word-spacing:12.006400pt;}
.ws21_c00250{word-spacing:12.076800pt;}
.ws6_c00250{word-spacing:12.652800pt;}
.ws7_c00250{word-spacing:12.960000pt;}
.ws1c_c00250{word-spacing:13.612800pt;}
.ws1d_c00250{word-spacing:13.644800pt;}
.ws22_c00250{word-spacing:17.760000pt;}
.ws1e_c00250{word-spacing:20.960000pt;}
.ws1f_c00250{word-spacing:20.985600pt;}
.ws28_c00250{word-spacing:21.939200pt;}
.ws29_c00250{word-spacing:25.760000pt;}
.ws2a_c00250{word-spacing:25.779200pt;}
.ws12_c00250{word-spacing:29.286400pt;}
.ws11_c00250{word-spacing:29.299200pt;}
._0_c00250{margin-left:-8.648960pt;}
._1_c00250{width:1.126400pt;}
.fs0_c00250{font-size:64.000000pt;}
.fs1_c00250{font-size:74.560000pt;}
.y0_c00250{bottom:0.000000pt;}
.y2_c00250{bottom:41.627067pt;}
.y1_c00250{bottom:60.027067pt;}
.y21_c00250{bottom:123.307067pt;}
.y20_c00250{bottom:141.707067pt;}
.y1f_c00250{bottom:160.107067pt;}
.y1e_c00250{bottom:178.507067pt;}
.y1d_c00250{bottom:222.107067pt;}
.y1c_c00250{bottom:249.707067pt;}
.y1b_c00250{bottom:277.307067pt;}
.y1a_c00250{bottom:320.907067pt;}
.y19_c00250{bottom:347.307067pt;}
.y18_c00250{bottom:365.707067pt;}
.y17_c00250{bottom:384.107067pt;}
.y16_c00250{bottom:402.507067pt;}
.y15_c00250{bottom:420.907067pt;}
.y14_c00250{bottom:464.507067pt;}
.y13_c00250{bottom:492.107067pt;}
.y12_c00250{bottom:519.707067pt;}
.y11_c00250{bottom:547.307067pt;}
.y10_c00250{bottom:574.907067pt;}
.yf_c00250{bottom:602.507067pt;}
.ye_c00250{bottom:630.107067pt;}
.yd_c00250{bottom:657.707067pt;}
.yc_c00250{bottom:685.307067pt;}
.yb_c00250{bottom:728.907067pt;}
.ya_c00250{bottom:756.507067pt;}
.y9_c00250{bottom:784.107067pt;}
.y8_c00250{bottom:811.707067pt;}
.y7_c00250{bottom:839.307067pt;}
.y6_c00250{bottom:866.907067pt;}
.y5_c00250{bottom:894.507067pt;}
.y4_c00250{bottom:938.107067pt;}
.y3_c00250{bottom:972.907067pt;}
.h1_c00250{height:56.156250pt;}
.h3_c00250{height:57.375000pt;}
.h4_c00250{height:66.750000pt;}
.h2_c00250{height:77.763750pt;}
.h0_c00250{height:1122.666667pt;}
.w1_c00250{width:793.333333pt;}
.w0_c00250{width:793.626667pt;}
.x0_c00250{left:0.000000pt;}
.x2_c00250{left:151.200000pt;}
.x4_c00250{left:170.160000pt;}
.x3_c00250{left:223.200000pt;}
.x1_c00250{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8e45ef0e19c2e9bddcd10569.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.093262;font-style:normal;font-weight:normal;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_e81165bf2dee64d35b0a6488.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.106934;font-style:normal;font-weight:normal;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_597dad06860e015b27301c95.woff2')format("woff");}.ff3_c00251{font-family:ff3_c00251;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00251{letter-spacing:-0.086400px;}
.lse_c00251{letter-spacing:-0.079200px;}
.lsb_c00251{letter-spacing:-0.072000px;}
.ls9_c00251{letter-spacing:-0.064800px;}
.ls7_c00251{letter-spacing:-0.057600px;}
.lsa_c00251{letter-spacing:-0.050400px;}
.ls2_c00251{letter-spacing:-0.043200px;}
.ls6_c00251{letter-spacing:-0.036000px;}
.ls1_c00251{letter-spacing:-0.028800px;}
.ls4_c00251{letter-spacing:-0.021600px;}
.lsc_c00251{letter-spacing:-0.014400px;}
.ls5_c00251{letter-spacing:-0.007200px;}
.ls0_c00251{letter-spacing:0.000000px;}
.ls8_c00251{letter-spacing:0.007200px;}
.ls3_c00251{letter-spacing:0.021600px;}
.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;}
}
.ws32_c00251{word-spacing:-3.758400px;}
.ws31_c00251{word-spacing:-3.751200px;}
.ws13_c00251{word-spacing:-3.405600px;}
.ws14_c00251{word-spacing:-3.384000px;}
.ws1a_c00251{word-spacing:-2.628000px;}
.ws19_c00251{word-spacing:-2.548800px;}
.ws8_c00251{word-spacing:-2.383200px;}
.ws7_c00251{word-spacing:-2.239200px;}
.ws12_c00251{word-spacing:-1.641600px;}
.wsb_c00251{word-spacing:-0.576000px;}
.wsd_c00251{word-spacing:-0.540000px;}
.wsc_c00251{word-spacing:-0.518400px;}
.ws18_c00251{word-spacing:-0.158400px;}
.ws0_c00251{word-spacing:0.000000px;}
.ws11_c00251{word-spacing:0.180000px;}
.ws1b_c00251{word-spacing:0.187200px;}
.ws17_c00251{word-spacing:0.194400px;}
.ws1c_c00251{word-spacing:0.216000px;}
.ws10_c00251{word-spacing:0.280800px;}
.ws2b_c00251{word-spacing:1.612800px;}
.ws2a_c00251{word-spacing:1.634400px;}
.ws2d_c00251{word-spacing:1.972800px;}
.ws2c_c00251{word-spacing:1.994400px;}
.ws33_c00251{word-spacing:2.016000px;}
.ws30_c00251{word-spacing:2.044800px;}
.ws9_c00251{word-spacing:2.426400px;}
.wsa_c00251{word-spacing:2.455200px;}
.ws26_c00251{word-spacing:5.205600px;}
.ws27_c00251{word-spacing:5.212800px;}
.ws22_c00251{word-spacing:8.107200px;}
.ws23_c00251{word-spacing:8.128800px;}
.ws1e_c00251{word-spacing:8.467200px;}
.ws1f_c00251{word-spacing:8.481600px;}
.ws16_c00251{word-spacing:9.151200px;}
.ws15_c00251{word-spacing:9.194400px;}
.ws6_c00251{word-spacing:11.289600px;}
.ws5_c00251{word-spacing:11.347200px;}
.ws1_c00251{word-spacing:14.155200px;}
.ws2_c00251{word-spacing:14.299200px;}
.ws36_c00251{word-spacing:17.100000px;}
.ws28_c00251{word-spacing:19.245600px;}
.ws29_c00251{word-spacing:19.260000px;}
.ws35_c00251{word-spacing:27.410400px;}
.ws34_c00251{word-spacing:27.568800px;}
.ws2f_c00251{word-spacing:28.252800px;}
.ws2e_c00251{word-spacing:28.288800px;}
.ws21_c00251{word-spacing:30.369600px;}
.wse_c00251{word-spacing:30.405600px;}
.wsf_c00251{word-spacing:30.427200px;}
.ws20_c00251{word-spacing:30.448800px;}
.ws1d_c00251{word-spacing:32.263200px;}
.ws25_c00251{word-spacing:37.670400px;}
.ws24_c00251{word-spacing:37.764000px;}
.ws3_c00251{word-spacing:63.921600px;}
.ws4_c00251{word-spacing:64.015200px;}
._0_c00251{width:1.137600px;}
.fc0_c00251{color:rgb(0,0,0);}
.fs0_c00251{font-size:72.000000px;}
.y0_c00251{bottom:0.000000px;}
.y2_c00251{bottom:46.830450px;}
.y1_c00251{bottom:67.530450px;}
.y25_c00251{bottom:156.180450px;}
.y24_c00251{bottom:187.230450px;}
.y23_c00251{bottom:218.280450px;}
.y22_c00251{bottom:249.330450px;}
.y21_c00251{bottom:280.380450px;}
.y20_c00251{bottom:329.430450px;}
.y1f_c00251{bottom:360.390450px;}
.y1e_c00251{bottom:391.440450px;}
.y1d_c00251{bottom:422.490450px;}
.y1c_c00251{bottom:452.190450px;}
.y1b_c00251{bottom:472.890450px;}
.y1a_c00251{bottom:493.590450px;}
.y19_c00251{bottom:514.290450px;}
.y18_c00251{bottom:534.990450px;}
.y17_c00251{bottom:555.690450px;}
.y16_c00251{bottom:576.390450px;}
.y15_c00251{bottom:597.090450px;}
.y14_c00251{bottom:617.790450px;}
.y13_c00251{bottom:638.490450px;}
.y12_c00251{bottom:687.540450px;}
.y11_c00251{bottom:718.590450px;}
.y10_c00251{bottom:749.640450px;}
.yf_c00251{bottom:780.690450px;}
.ye_c00251{bottom:811.740450px;}
.yd_c00251{bottom:842.790450px;}
.yc_c00251{bottom:873.840450px;}
.yb_c00251{bottom:922.890450px;}
.ya_c00251{bottom:952.590450px;}
.y9_c00251{bottom:973.290450px;}
.y8_c00251{bottom:993.990450px;}
.y7_c00251{bottom:1014.690450px;}
.y6_c00251{bottom:1035.390450px;}
.y5_c00251{bottom:1056.090450px;}
.y4_c00251{bottom:1076.790450px;}
.y3_c00251{bottom:1097.490450px;}
.h1_c00251{height:63.175781px;}
.h2_c00251{height:64.546875px;}
.h3_c00251{height:75.093750px;}
.h0_c00251{height:1263.000000px;}
.w1_c00251{width:892.500000px;}
.w0_c00251{width:892.830000px;}
.x0_c00251{left:0.000000px;}
.x2_c00251{left:127.620000px;}
.x3_c00251{left:148.950000px;}
.x1_c00251{left:695.880000px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.lsd_c00251{letter-spacing:-0.076800pt;}
.lse_c00251{letter-spacing:-0.070400pt;}
.lsb_c00251{letter-spacing:-0.064000pt;}
.ls9_c00251{letter-spacing:-0.057600pt;}
.ls7_c00251{letter-spacing:-0.051200pt;}
.lsa_c00251{letter-spacing:-0.044800pt;}
.ls2_c00251{letter-spacing:-0.038400pt;}
.ls6_c00251{letter-spacing:-0.032000pt;}
.ls1_c00251{letter-spacing:-0.025600pt;}
.ls4_c00251{letter-spacing:-0.019200pt;}
.lsc_c00251{letter-spacing:-0.012800pt;}
.ls5_c00251{letter-spacing:-0.006400pt;}
.ls0_c00251{letter-spacing:0.000000pt;}
.ls8_c00251{letter-spacing:0.006400pt;}
.ls3_c00251{letter-spacing:0.019200pt;}
.ws32_c00251{word-spacing:-3.340800pt;}
.ws31_c00251{word-spacing:-3.334400pt;}
.ws13_c00251{word-spacing:-3.027200pt;}
.ws14_c00251{word-spacing:-3.008000pt;}
.ws1a_c00251{word-spacing:-2.336000pt;}
.ws19_c00251{word-spacing:-2.265600pt;}
.ws8_c00251{word-spacing:-2.118400pt;}
.ws7_c00251{word-spacing:-1.990400pt;}
.ws12_c00251{word-spacing:-1.459200pt;}
.wsb_c00251{word-spacing:-0.512000pt;}
.wsd_c00251{word-spacing:-0.480000pt;}
.wsc_c00251{word-spacing:-0.460800pt;}
.ws18_c00251{word-spacing:-0.140800pt;}
.ws0_c00251{word-spacing:0.000000pt;}
.ws11_c00251{word-spacing:0.160000pt;}
.ws1b_c00251{word-spacing:0.166400pt;}
.ws17_c00251{word-spacing:0.172800pt;}
.ws1c_c00251{word-spacing:0.192000pt;}
.ws10_c00251{word-spacing:0.249600pt;}
.ws2b_c00251{word-spacing:1.433600pt;}
.ws2a_c00251{word-spacing:1.452800pt;}
.ws2d_c00251{word-spacing:1.753600pt;}
.ws2c_c00251{word-spacing:1.772800pt;}
.ws33_c00251{word-spacing:1.792000pt;}
.ws30_c00251{word-spacing:1.817600pt;}
.ws9_c00251{word-spacing:2.156800pt;}
.wsa_c00251{word-spacing:2.182400pt;}
.ws26_c00251{word-spacing:4.627200pt;}
.ws27_c00251{word-spacing:4.633600pt;}
.ws22_c00251{word-spacing:7.206400pt;}
.ws23_c00251{word-spacing:7.225600pt;}
.ws1e_c00251{word-spacing:7.526400pt;}
.ws1f_c00251{word-spacing:7.539200pt;}
.ws16_c00251{word-spacing:8.134400pt;}
.ws15_c00251{word-spacing:8.172800pt;}
.ws6_c00251{word-spacing:10.035200pt;}
.ws5_c00251{word-spacing:10.086400pt;}
.ws1_c00251{word-spacing:12.582400pt;}
.ws2_c00251{word-spacing:12.710400pt;}
.ws36_c00251{word-spacing:15.200000pt;}
.ws28_c00251{word-spacing:17.107200pt;}
.ws29_c00251{word-spacing:17.120000pt;}
.ws35_c00251{word-spacing:24.364800pt;}
.ws34_c00251{word-spacing:24.505600pt;}
.ws2f_c00251{word-spacing:25.113600pt;}
.ws2e_c00251{word-spacing:25.145600pt;}
.ws21_c00251{word-spacing:26.995200pt;}
.wse_c00251{word-spacing:27.027200pt;}
.wsf_c00251{word-spacing:27.046400pt;}
.ws20_c00251{word-spacing:27.065600pt;}
.ws1d_c00251{word-spacing:28.678400pt;}
.ws25_c00251{word-spacing:33.484800pt;}
.ws24_c00251{word-spacing:33.568000pt;}
.ws3_c00251{word-spacing:56.819200pt;}
.ws4_c00251{word-spacing:56.902400pt;}
._0_c00251{width:1.011200pt;}
.fs0_c00251{font-size:64.000000pt;}
.y0_c00251{bottom:0.000000pt;}
.y2_c00251{bottom:41.627067pt;}
.y1_c00251{bottom:60.027067pt;}
.y25_c00251{bottom:138.827067pt;}
.y24_c00251{bottom:166.427067pt;}
.y23_c00251{bottom:194.027067pt;}
.y22_c00251{bottom:221.627067pt;}
.y21_c00251{bottom:249.227067pt;}
.y20_c00251{bottom:292.827067pt;}
.y1f_c00251{bottom:320.347067pt;}
.y1e_c00251{bottom:347.947067pt;}
.y1d_c00251{bottom:375.547067pt;}
.y1c_c00251{bottom:401.947067pt;}
.y1b_c00251{bottom:420.347067pt;}
.y1a_c00251{bottom:438.747067pt;}
.y19_c00251{bottom:457.147067pt;}
.y18_c00251{bottom:475.547067pt;}
.y17_c00251{bottom:493.947067pt;}
.y16_c00251{bottom:512.347067pt;}
.y15_c00251{bottom:530.747067pt;}
.y14_c00251{bottom:549.147067pt;}
.y13_c00251{bottom:567.547067pt;}
.y12_c00251{bottom:611.147067pt;}
.y11_c00251{bottom:638.747067pt;}
.y10_c00251{bottom:666.347067pt;}
.yf_c00251{bottom:693.947067pt;}
.ye_c00251{bottom:721.547067pt;}
.yd_c00251{bottom:749.147067pt;}
.yc_c00251{bottom:776.747067pt;}
.yb_c00251{bottom:820.347067pt;}
.ya_c00251{bottom:846.747067pt;}
.y9_c00251{bottom:865.147067pt;}
.y8_c00251{bottom:883.547067pt;}
.y7_c00251{bottom:901.947067pt;}
.y6_c00251{bottom:920.347067pt;}
.y5_c00251{bottom:938.747067pt;}
.y4_c00251{bottom:957.147067pt;}
.y3_c00251{bottom:975.547067pt;}
.h1_c00251{height:56.156250pt;}
.h2_c00251{height:57.375000pt;}
.h3_c00251{height:66.750000pt;}
.h0_c00251{height:1122.666667pt;}
.w1_c00251{width:793.333333pt;}
.w0_c00251{width:793.626667pt;}
.x0_c00251{left:0.000000pt;}
.x2_c00251{left:113.440000pt;}
.x3_c00251{left:132.400000pt;}
.x1_c00251{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_64e3491581a16f27b152c18b.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.093262;font-style:normal;font-weight:normal;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_b06326d99a27a45ad938e1f0.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.106934;font-style:normal;font-weight:normal;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_e5569b29ad6d11c3c276c01f.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00252{letter-spacing:-0.093600px;}
.ls5_c00252{letter-spacing:-0.086400px;}
.lse_c00252{letter-spacing:-0.079200px;}
.ls9_c00252{letter-spacing:-0.072000px;}
.lsc_c00252{letter-spacing:-0.064800px;}
.lsa_c00252{letter-spacing:-0.057600px;}
.lsd_c00252{letter-spacing:-0.050400px;}
.ls8_c00252{letter-spacing:-0.043200px;}
.ls3_c00252{letter-spacing:-0.036000px;}
.ls6_c00252{letter-spacing:-0.028800px;}
.ls2_c00252{letter-spacing:-0.021600px;}
.ls7_c00252{letter-spacing:-0.014400px;}
.ls4_c00252{letter-spacing:-0.007200px;}
.ls1_c00252{letter-spacing:0.000000px;}
.ls0_c00252{letter-spacing:0.028800px;}
.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:-20.044800px;}
.wsc_c00252{word-spacing:-3.182400px;}
.wsb_c00252{word-spacing:-3.074400px;}
.wsa_c00252{word-spacing:-3.060000px;}
.ws2b_c00252{word-spacing:-2.476800px;}
.ws2c_c00252{word-spacing:-2.412000px;}
.ws15_c00252{word-spacing:-2.390400px;}
.ws16_c00252{word-spacing:-2.289600px;}
.ws13_c00252{word-spacing:-1.641600px;}
.ws12_c00252{word-spacing:-1.562400px;}
.ws11_c00252{word-spacing:-1.483200px;}
.ws2e_c00252{word-spacing:-1.245600px;}
.ws2f_c00252{word-spacing:-1.231200px;}
.ws1_c00252{word-spacing:0.000000px;}
.ws5_c00252{word-spacing:0.165600px;}
.ws1f_c00252{word-spacing:0.180000px;}
.ws4_c00252{word-spacing:0.194400px;}
.ws35_c00252{word-spacing:0.280800px;}
.ws34_c00252{word-spacing:0.957600px;}
.wsf_c00252{word-spacing:1.288800px;}
.ws1a_c00252{word-spacing:1.598400px;}
.ws25_c00252{word-spacing:1.620000px;}
.ws1b_c00252{word-spacing:1.627200px;}
.ws1c_c00252{word-spacing:1.641600px;}
.ws33_c00252{word-spacing:1.648800px;}
.ws17_c00252{word-spacing:1.670400px;}
.ws32_c00252{word-spacing:1.735200px;}
.ws2d_c00252{word-spacing:2.966400px;}
.wsd_c00252{word-spacing:3.016800px;}
.wse_c00252{word-spacing:3.060000px;}
.ws1d_c00252{word-spacing:3.074400px;}
.ws1e_c00252{word-spacing:3.168000px;}
.ws21_c00252{word-spacing:5.205600px;}
.ws20_c00252{word-spacing:5.234400px;}
.ws22_c00252{word-spacing:5.241600px;}
.ws7_c00252{word-spacing:5.853600px;}
.ws8_c00252{word-spacing:5.932800px;}
.ws6_c00252{word-spacing:6.004800px;}
.ws19_c00252{word-spacing:10.260000px;}
.ws18_c00252{word-spacing:10.267200px;}
.ws14_c00252{word-spacing:10.281600px;}
.ws31_c00252{word-spacing:10.605600px;}
.ws30_c00252{word-spacing:10.641600px;}
.ws27_c00252{word-spacing:10.972800px;}
.ws28_c00252{word-spacing:10.994400px;}
.ws26_c00252{word-spacing:11.095200px;}
.ws29_c00252{word-spacing:12.412800px;}
.ws2a_c00252{word-spacing:12.456000px;}
.ws9_c00252{word-spacing:18.907200px;}
.ws23_c00252{word-spacing:22.536000px;}
.ws24_c00252{word-spacing:22.572000px;}
.ws10_c00252{word-spacing:22.881600px;}
.ws2_c00252{word-spacing:32.580000px;}
.ws3_c00252{word-spacing:32.587200px;}
._0_c00252{width:1.123200px;}
.fc0_c00252{color:rgb(0,0,0);}
.fs0_c00252{font-size:72.000000px;}
.y0_c00252{bottom:0.000000px;}
.y2_c00252{bottom:46.830450px;}
.y1_c00252{bottom:67.530450px;}
.y1e_c00252{bottom:223.230450px;}
.y1d_c00252{bottom:254.280450px;}
.y1c_c00252{bottom:285.330450px;}
.y1b_c00252{bottom:316.380450px;}
.y1a_c00252{bottom:347.430450px;}
.y19_c00252{bottom:378.390450px;}
.y18_c00252{bottom:409.440450px;}
.y17_c00252{bottom:440.490450px;}
.y16_c00252{bottom:471.540450px;}
.y15_c00252{bottom:502.590450px;}
.y14_c00252{bottom:533.640450px;}
.y13_c00252{bottom:564.690450px;}
.y12_c00252{bottom:613.740450px;}
.y11_c00252{bottom:644.790450px;}
.y10_c00252{bottom:675.840450px;}
.yf_c00252{bottom:706.890450px;}
.ye_c00252{bottom:737.940450px;}
.yd_c00252{bottom:768.990450px;}
.yc_c00252{bottom:800.040450px;}
.yb_c00252{bottom:831.090450px;}
.ya_c00252{bottom:862.140450px;}
.y9_c00252{bottom:893.190450px;}
.y8_c00252{bottom:924.240450px;}
.y7_c00252{bottom:955.290450px;}
.y6_c00252{bottom:986.340450px;}
.y5_c00252{bottom:1017.390450px;}
.y4_c00252{bottom:1066.440450px;}
.y3_c00252{bottom:1097.490450px;}
.h1_c00252{height:63.175781px;}
.h2_c00252{height:64.546875px;}
.h3_c00252{height:75.093750px;}
.h0_c00252{height:1263.000000px;}
.w1_c00252{width:892.500000px;}
.w0_c00252{width:892.830000px;}
.x0_c00252{left:0.000000px;}
.x2_c00252{left:170.100000px;}
.x1_c00252{left:738.360000px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.lsb_c00252{letter-spacing:-0.083200pt;}
.ls5_c00252{letter-spacing:-0.076800pt;}
.lse_c00252{letter-spacing:-0.070400pt;}
.ls9_c00252{letter-spacing:-0.064000pt;}
.lsc_c00252{letter-spacing:-0.057600pt;}
.lsa_c00252{letter-spacing:-0.051200pt;}
.lsd_c00252{letter-spacing:-0.044800pt;}
.ls8_c00252{letter-spacing:-0.038400pt;}
.ls3_c00252{letter-spacing:-0.032000pt;}
.ls6_c00252{letter-spacing:-0.025600pt;}
.ls2_c00252{letter-spacing:-0.019200pt;}
.ls7_c00252{letter-spacing:-0.012800pt;}
.ls4_c00252{letter-spacing:-0.006400pt;}
.ls1_c00252{letter-spacing:0.000000pt;}
.ls0_c00252{letter-spacing:0.025600pt;}
.ws0_c00252{word-spacing:-17.817600pt;}
.wsc_c00252{word-spacing:-2.828800pt;}
.wsb_c00252{word-spacing:-2.732800pt;}
.wsa_c00252{word-spacing:-2.720000pt;}
.ws2b_c00252{word-spacing:-2.201600pt;}
.ws2c_c00252{word-spacing:-2.144000pt;}
.ws15_c00252{word-spacing:-2.124800pt;}
.ws16_c00252{word-spacing:-2.035200pt;}
.ws13_c00252{word-spacing:-1.459200pt;}
.ws12_c00252{word-spacing:-1.388800pt;}
.ws11_c00252{word-spacing:-1.318400pt;}
.ws2e_c00252{word-spacing:-1.107200pt;}
.ws2f_c00252{word-spacing:-1.094400pt;}
.ws1_c00252{word-spacing:0.000000pt;}
.ws5_c00252{word-spacing:0.147200pt;}
.ws1f_c00252{word-spacing:0.160000pt;}
.ws4_c00252{word-spacing:0.172800pt;}
.ws35_c00252{word-spacing:0.249600pt;}
.ws34_c00252{word-spacing:0.851200pt;}
.wsf_c00252{word-spacing:1.145600pt;}
.ws1a_c00252{word-spacing:1.420800pt;}
.ws25_c00252{word-spacing:1.440000pt;}
.ws1b_c00252{word-spacing:1.446400pt;}
.ws1c_c00252{word-spacing:1.459200pt;}
.ws33_c00252{word-spacing:1.465600pt;}
.ws17_c00252{word-spacing:1.484800pt;}
.ws32_c00252{word-spacing:1.542400pt;}
.ws2d_c00252{word-spacing:2.636800pt;}
.wsd_c00252{word-spacing:2.681600pt;}
.wse_c00252{word-spacing:2.720000pt;}
.ws1d_c00252{word-spacing:2.732800pt;}
.ws1e_c00252{word-spacing:2.816000pt;}
.ws21_c00252{word-spacing:4.627200pt;}
.ws20_c00252{word-spacing:4.652800pt;}
.ws22_c00252{word-spacing:4.659200pt;}
.ws7_c00252{word-spacing:5.203200pt;}
.ws8_c00252{word-spacing:5.273600pt;}
.ws6_c00252{word-spacing:5.337600pt;}
.ws19_c00252{word-spacing:9.120000pt;}
.ws18_c00252{word-spacing:9.126400pt;}
.ws14_c00252{word-spacing:9.139200pt;}
.ws31_c00252{word-spacing:9.427200pt;}
.ws30_c00252{word-spacing:9.459200pt;}
.ws27_c00252{word-spacing:9.753600pt;}
.ws28_c00252{word-spacing:9.772800pt;}
.ws26_c00252{word-spacing:9.862400pt;}
.ws29_c00252{word-spacing:11.033600pt;}
.ws2a_c00252{word-spacing:11.072000pt;}
.ws9_c00252{word-spacing:16.806400pt;}
.ws23_c00252{word-spacing:20.032000pt;}
.ws24_c00252{word-spacing:20.064000pt;}
.ws10_c00252{word-spacing:20.339200pt;}
.ws2_c00252{word-spacing:28.960000pt;}
.ws3_c00252{word-spacing:28.966400pt;}
._0_c00252{width:0.998400pt;}
.fs0_c00252{font-size:64.000000pt;}
.y0_c00252{bottom:0.000000pt;}
.y2_c00252{bottom:41.627067pt;}
.y1_c00252{bottom:60.027067pt;}
.y1e_c00252{bottom:198.427067pt;}
.y1d_c00252{bottom:226.027067pt;}
.y1c_c00252{bottom:253.627067pt;}
.y1b_c00252{bottom:281.227067pt;}
.y1a_c00252{bottom:308.827067pt;}
.y19_c00252{bottom:336.347067pt;}
.y18_c00252{bottom:363.947067pt;}
.y17_c00252{bottom:391.547067pt;}
.y16_c00252{bottom:419.147067pt;}
.y15_c00252{bottom:446.747067pt;}
.y14_c00252{bottom:474.347067pt;}
.y13_c00252{bottom:501.947067pt;}
.y12_c00252{bottom:545.547067pt;}
.y11_c00252{bottom:573.147067pt;}
.y10_c00252{bottom:600.747067pt;}
.yf_c00252{bottom:628.347067pt;}
.ye_c00252{bottom:655.947067pt;}
.yd_c00252{bottom:683.547067pt;}
.yc_c00252{bottom:711.147067pt;}
.yb_c00252{bottom:738.747067pt;}
.ya_c00252{bottom:766.347067pt;}
.y9_c00252{bottom:793.947067pt;}
.y8_c00252{bottom:821.547067pt;}
.y7_c00252{bottom:849.147067pt;}
.y6_c00252{bottom:876.747067pt;}
.y5_c00252{bottom:904.347067pt;}
.y4_c00252{bottom:947.947067pt;}
.y3_c00252{bottom:975.547067pt;}
.h1_c00252{height:56.156250pt;}
.h2_c00252{height:57.375000pt;}
.h3_c00252{height:66.750000pt;}
.h0_c00252{height:1122.666667pt;}
.w1_c00252{width:793.333333pt;}
.w0_c00252{width:793.626667pt;}
.x0_c00252{left:0.000000pt;}
.x2_c00252{left:151.200000pt;}
.x1_c00252{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c7dcfab1c4ccb51c96fb2d40.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.093262;font-style:normal;font-weight:normal;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_c16a45588c25d3286a3ce704.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.ls6_c00253{letter-spacing:-0.072000px;}
.ls4_c00253{letter-spacing:-0.064800px;}
.ls5_c00253{letter-spacing:-0.057600px;}
.ls7_c00253{letter-spacing:-0.050400px;}
.ls1_c00253{letter-spacing:-0.043200px;}
.lsa_c00253{letter-spacing:-0.036000px;}
.ls8_c00253{letter-spacing:-0.028800px;}
.ls3_c00253{letter-spacing:-0.021600px;}
.ls2_c00253{letter-spacing:-0.014400px;}
.ls9_c00253{letter-spacing:-0.007200px;}
.ls0_c00253{letter-spacing:0.000000px;}
.lsb_c00253{letter-spacing:0.014400px;}
.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;}
}
.ws20_c00253{word-spacing:-4.860000px;}
.wsb_c00253{word-spacing:-4.852800px;}
.ws9_c00253{word-spacing:-4.766400px;}
.wsa_c00253{word-spacing:-4.680000px;}
.ws27_c00253{word-spacing:-2.685600px;}
.ws25_c00253{word-spacing:-2.037600px;}
.ws24_c00253{word-spacing:-2.008800px;}
.wsf_c00253{word-spacing:-1.360800px;}
.wse_c00253{word-spacing:-1.324800px;}
.ws2c_c00253{word-spacing:-0.158400px;}
.ws0_c00253{word-spacing:0.000000px;}
.ws10_c00253{word-spacing:0.093600px;}
.ws4_c00253{word-spacing:0.180000px;}
.ws21_c00253{word-spacing:0.273600px;}
.ws14_c00253{word-spacing:1.634400px;}
.ws1c_c00253{word-spacing:4.147200px;}
.ws1d_c00253{word-spacing:4.161600px;}
.ws7_c00253{word-spacing:5.976000px;}
.ws8_c00253{word-spacing:5.990400px;}
.ws1b_c00253{word-spacing:6.681600px;}
.ws19_c00253{word-spacing:6.746400px;}
.ws1a_c00253{word-spacing:6.861600px;}
.ws3_c00253{word-spacing:7.380000px;}
.ws2a_c00253{word-spacing:8.107200px;}
.ws2b_c00253{word-spacing:8.150400px;}
.ws16_c00253{word-spacing:8.452800px;}
.ws15_c00253{word-spacing:8.481600px;}
.ws5_c00253{word-spacing:8.928000px;}
.ws6_c00253{word-spacing:8.949600px;}
.ws2_c00253{word-spacing:9.532800px;}
.ws1_c00253{word-spacing:9.561600px;}
.ws13_c00253{word-spacing:11.707200px;}
.ws26_c00253{word-spacing:13.881600px;}
.ws22_c00253{word-spacing:18.835200px;}
.ws28_c00253{word-spacing:18.900000px;}
.ws23_c00253{word-spacing:18.907200px;}
.ws29_c00253{word-spacing:18.993600px;}
.ws2d_c00253{word-spacing:21.103200px;}
.wsd_c00253{word-spacing:26.481600px;}
.wsc_c00253{word-spacing:26.488800px;}
.ws11_c00253{word-spacing:28.634400px;}
.ws12_c00253{word-spacing:28.648800px;}
.ws1f_c00253{word-spacing:30.643200px;}
.ws1e_c00253{word-spacing:30.729600px;}
.ws18_c00253{word-spacing:76.838400px;}
.ws17_c00253{word-spacing:76.881600px;}
._1_c00253{margin-left:-28.440000px;}
._0_c00253{width:1.267200px;}
.fc0_c00253{color:rgb(0,0,0);}
.fs0_c00253{font-size:72.000000px;}
.y0_c00253{bottom:0.000000px;}
.y2_c00253{bottom:46.830450px;}
.y1_c00253{bottom:67.530450px;}
.y21_c00253{bottom:152.580450px;}
.y20_c00253{bottom:173.280450px;}
.y1f_c00253{bottom:193.980450px;}
.y1e_c00253{bottom:214.680450px;}
.y1d_c00253{bottom:235.380450px;}
.y1c_c00253{bottom:284.430450px;}
.y1b_c00253{bottom:315.390450px;}
.y1a_c00253{bottom:346.440450px;}
.y19_c00253{bottom:377.490450px;}
.y18_c00253{bottom:426.540450px;}
.y17_c00253{bottom:457.590450px;}
.y16_c00253{bottom:488.640450px;}
.y15_c00253{bottom:519.690450px;}
.y14_c00253{bottom:550.740450px;}
.y13_c00253{bottom:581.790450px;}
.y12_c00253{bottom:612.840450px;}
.y11_c00253{bottom:661.890450px;}
.y10_c00253{bottom:692.940450px;}
.yf_c00253{bottom:723.990450px;}
.ye_c00253{bottom:755.040450px;}
.yd_c00253{bottom:804.090450px;}
.yc_c00253{bottom:833.790450px;}
.yb_c00253{bottom:854.490450px;}
.ya_c00253{bottom:875.190450px;}
.y9_c00253{bottom:895.890450px;}
.y8_c00253{bottom:916.590450px;}
.y7_c00253{bottom:937.290450px;}
.y6_c00253{bottom:986.340450px;}
.y5_c00253{bottom:1035.390450px;}
.y4_c00253{bottom:1066.440450px;}
.y3_c00253{bottom:1097.490450px;}
.h1_c00253{height:63.175781px;}
.h2_c00253{height:64.546875px;}
.h0_c00253{height:1263.000000px;}
.w1_c00253{width:892.500000px;}
.w0_c00253{width:892.830000px;}
.x0_c00253{left:0.000000px;}
.x2_c00253{left:127.620000px;}
.x3_c00253{left:148.950000px;}
.x1_c00253{left:695.880000px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls6_c00253{letter-spacing:-0.064000pt;}
.ls4_c00253{letter-spacing:-0.057600pt;}
.ls5_c00253{letter-spacing:-0.051200pt;}
.ls7_c00253{letter-spacing:-0.044800pt;}
.ls1_c00253{letter-spacing:-0.038400pt;}
.lsa_c00253{letter-spacing:-0.032000pt;}
.ls8_c00253{letter-spacing:-0.025600pt;}
.ls3_c00253{letter-spacing:-0.019200pt;}
.ls2_c00253{letter-spacing:-0.012800pt;}
.ls9_c00253{letter-spacing:-0.006400pt;}
.ls0_c00253{letter-spacing:0.000000pt;}
.lsb_c00253{letter-spacing:0.012800pt;}
.ws20_c00253{word-spacing:-4.320000pt;}
.wsb_c00253{word-spacing:-4.313600pt;}
.ws9_c00253{word-spacing:-4.236800pt;}
.wsa_c00253{word-spacing:-4.160000pt;}
.ws27_c00253{word-spacing:-2.387200pt;}
.ws25_c00253{word-spacing:-1.811200pt;}
.ws24_c00253{word-spacing:-1.785600pt;}
.wsf_c00253{word-spacing:-1.209600pt;}
.wse_c00253{word-spacing:-1.177600pt;}
.ws2c_c00253{word-spacing:-0.140800pt;}
.ws0_c00253{word-spacing:0.000000pt;}
.ws10_c00253{word-spacing:0.083200pt;}
.ws4_c00253{word-spacing:0.160000pt;}
.ws21_c00253{word-spacing:0.243200pt;}
.ws14_c00253{word-spacing:1.452800pt;}
.ws1c_c00253{word-spacing:3.686400pt;}
.ws1d_c00253{word-spacing:3.699200pt;}
.ws7_c00253{word-spacing:5.312000pt;}
.ws8_c00253{word-spacing:5.324800pt;}
.ws1b_c00253{word-spacing:5.939200pt;}
.ws19_c00253{word-spacing:5.996800pt;}
.ws1a_c00253{word-spacing:6.099200pt;}
.ws3_c00253{word-spacing:6.560000pt;}
.ws2a_c00253{word-spacing:7.206400pt;}
.ws2b_c00253{word-spacing:7.244800pt;}
.ws16_c00253{word-spacing:7.513600pt;}
.ws15_c00253{word-spacing:7.539200pt;}
.ws5_c00253{word-spacing:7.936000pt;}
.ws6_c00253{word-spacing:7.955200pt;}
.ws2_c00253{word-spacing:8.473600pt;}
.ws1_c00253{word-spacing:8.499200pt;}
.ws13_c00253{word-spacing:10.406400pt;}
.ws26_c00253{word-spacing:12.339200pt;}
.ws22_c00253{word-spacing:16.742400pt;}
.ws28_c00253{word-spacing:16.800000pt;}
.ws23_c00253{word-spacing:16.806400pt;}
.ws29_c00253{word-spacing:16.883200pt;}
.ws2d_c00253{word-spacing:18.758400pt;}
.wsd_c00253{word-spacing:23.539200pt;}
.wsc_c00253{word-spacing:23.545600pt;}
.ws11_c00253{word-spacing:25.452800pt;}
.ws12_c00253{word-spacing:25.465600pt;}
.ws1f_c00253{word-spacing:27.238400pt;}
.ws1e_c00253{word-spacing:27.315200pt;}
.ws18_c00253{word-spacing:68.300800pt;}
.ws17_c00253{word-spacing:68.339200pt;}
._1_c00253{margin-left:-25.280000pt;}
._0_c00253{width:1.126400pt;}
.fs0_c00253{font-size:64.000000pt;}
.y0_c00253{bottom:0.000000pt;}
.y2_c00253{bottom:41.627067pt;}
.y1_c00253{bottom:60.027067pt;}
.y21_c00253{bottom:135.627067pt;}
.y20_c00253{bottom:154.027067pt;}
.y1f_c00253{bottom:172.427067pt;}
.y1e_c00253{bottom:190.827067pt;}
.y1d_c00253{bottom:209.227067pt;}
.y1c_c00253{bottom:252.827067pt;}
.y1b_c00253{bottom:280.347067pt;}
.y1a_c00253{bottom:307.947067pt;}
.y19_c00253{bottom:335.547067pt;}
.y18_c00253{bottom:379.147067pt;}
.y17_c00253{bottom:406.747067pt;}
.y16_c00253{bottom:434.347067pt;}
.y15_c00253{bottom:461.947067pt;}
.y14_c00253{bottom:489.547067pt;}
.y13_c00253{bottom:517.147067pt;}
.y12_c00253{bottom:544.747067pt;}
.y11_c00253{bottom:588.347067pt;}
.y10_c00253{bottom:615.947067pt;}
.yf_c00253{bottom:643.547067pt;}
.ye_c00253{bottom:671.147067pt;}
.yd_c00253{bottom:714.747067pt;}
.yc_c00253{bottom:741.147067pt;}
.yb_c00253{bottom:759.547067pt;}
.ya_c00253{bottom:777.947067pt;}
.y9_c00253{bottom:796.347067pt;}
.y8_c00253{bottom:814.747067pt;}
.y7_c00253{bottom:833.147067pt;}
.y6_c00253{bottom:876.747067pt;}
.y5_c00253{bottom:920.347067pt;}
.y4_c00253{bottom:947.947067pt;}
.y3_c00253{bottom:975.547067pt;}
.h1_c00253{height:56.156250pt;}
.h2_c00253{height:57.375000pt;}
.h0_c00253{height:1122.666667pt;}
.w1_c00253{width:793.333333pt;}
.w0_c00253{width:793.626667pt;}
.x0_c00253{left:0.000000pt;}
.x2_c00253{left:113.440000pt;}
.x3_c00253{left:132.400000pt;}
.x1_c00253{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8e45ef0e19c2e9bddcd10569.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.093262;font-style:normal;font-weight:normal;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_d030c90a5169e1ec9745060e.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.106934;font-style:normal;font-weight:normal;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_e7fe80f5e683a0e1872c5800.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls7_c00254{letter-spacing:-0.093600px;}
.lsb_c00254{letter-spacing:-0.072000px;}
.ls6_c00254{letter-spacing:-0.064800px;}
.ls3_c00254{letter-spacing:-0.057600px;}
.ls2_c00254{letter-spacing:-0.050400px;}
.ls8_c00254{letter-spacing:-0.043200px;}
.lsa_c00254{letter-spacing:-0.036000px;}
.ls9_c00254{letter-spacing:-0.028800px;}
.ls5_c00254{letter-spacing:-0.021600px;}
.ls4_c00254{letter-spacing:-0.014400px;}
.lsc_c00254{letter-spacing:-0.007200px;}
.ls1_c00254{letter-spacing:0.000000px;}
.ls0_c00254{letter-spacing:0.093600px;}
.lsd_c00254{letter-spacing:843.998400px;}
.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:-20.109600px;}
.ws1a_c00254{word-spacing:-4.881600px;}
.ws19_c00254{word-spacing:-4.874400px;}
.ws18_c00254{word-spacing:-4.860000px;}
.ws12_c00254{word-spacing:-4.528800px;}
.ws13_c00254{word-spacing:-4.449600px;}
.ws14_c00254{word-spacing:-1.166400px;}
.ws15_c00254{word-spacing:-1.094400px;}
.ws7_c00254{word-spacing:-0.885600px;}
.ws6_c00254{word-spacing:-0.856800px;}
.ws1_c00254{word-spacing:0.000000px;}
.ws3_c00254{word-spacing:0.172800px;}
.ws8_c00254{word-spacing:0.201600px;}
.ws4_c00254{word-spacing:0.446400px;}
.ws5_c00254{word-spacing:0.540000px;}
.ws17_c00254{word-spacing:1.195200px;}
.ws16_c00254{word-spacing:1.404000px;}
.wsf_c00254{word-spacing:5.572800px;}
.ws10_c00254{word-spacing:5.673600px;}
.ws2_c00254{word-spacing:7.048800px;}
.wsd_c00254{word-spacing:9.554400px;}
.ws9_c00254{word-spacing:10.656000px;}
.wsc_c00254{word-spacing:11.318400px;}
.wsb_c00254{word-spacing:11.692800px;}
.wsa_c00254{word-spacing:11.743200px;}
.ws11_c00254{word-spacing:15.624000px;}
.wse_c00254{word-spacing:29.340000px;}
._0_c00254{width:1.195200px;}
.fc0_c00254{color:rgb(0,0,0);}
.fs0_c00254{font-size:72.000000px;}
.y0_c00254{bottom:0.000000px;}
.y2_c00254{bottom:46.830450px;}
.y1_c00254{bottom:67.530450px;}
.y13_c00254{bottom:679.890450px;}
.y12_c00254{bottom:700.590450px;}
.y11_c00254{bottom:721.290450px;}
.y10_c00254{bottom:741.990450px;}
.yf_c00254{bottom:762.690450px;}
.ye_c00254{bottom:783.390450px;}
.yd_c00254{bottom:804.090450px;}
.yc_c00254{bottom:824.790450px;}
.yb_c00254{bottom:845.490450px;}
.ya_c00254{bottom:866.190450px;}
.y9_c00254{bottom:886.890450px;}
.y8_c00254{bottom:935.940450px;}
.y7_c00254{bottom:966.990450px;}
.y6_c00254{bottom:998.040450px;}
.y5_c00254{bottom:1047.090450px;}
.y4_c00254{bottom:1076.790450px;}
.y3_c00254{bottom:1097.490450px;}
.h1_c00254{height:63.175781px;}
.h2_c00254{height:64.546875px;}
.h3_c00254{height:75.093750px;}
.h0_c00254{height:1263.000000px;}
.w1_c00254{width:892.500000px;}
.w0_c00254{width:892.830000px;}
.x0_c00254{left:0.000000px;}
.x2_c00254{left:170.100000px;}
.x3_c00254{left:191.430000px;}
.x1_c00254{left:738.360000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls7_c00254{letter-spacing:-0.083200pt;}
.lsb_c00254{letter-spacing:-0.064000pt;}
.ls6_c00254{letter-spacing:-0.057600pt;}
.ls3_c00254{letter-spacing:-0.051200pt;}
.ls2_c00254{letter-spacing:-0.044800pt;}
.ls8_c00254{letter-spacing:-0.038400pt;}
.lsa_c00254{letter-spacing:-0.032000pt;}
.ls9_c00254{letter-spacing:-0.025600pt;}
.ls5_c00254{letter-spacing:-0.019200pt;}
.ls4_c00254{letter-spacing:-0.012800pt;}
.lsc_c00254{letter-spacing:-0.006400pt;}
.ls1_c00254{letter-spacing:0.000000pt;}
.ls0_c00254{letter-spacing:0.083200pt;}
.lsd_c00254{letter-spacing:750.220800pt;}
.ws0_c00254{word-spacing:-17.875200pt;}
.ws1a_c00254{word-spacing:-4.339200pt;}
.ws19_c00254{word-spacing:-4.332800pt;}
.ws18_c00254{word-spacing:-4.320000pt;}
.ws12_c00254{word-spacing:-4.025600pt;}
.ws13_c00254{word-spacing:-3.955200pt;}
.ws14_c00254{word-spacing:-1.036800pt;}
.ws15_c00254{word-spacing:-0.972800pt;}
.ws7_c00254{word-spacing:-0.787200pt;}
.ws6_c00254{word-spacing:-0.761600pt;}
.ws1_c00254{word-spacing:0.000000pt;}
.ws3_c00254{word-spacing:0.153600pt;}
.ws8_c00254{word-spacing:0.179200pt;}
.ws4_c00254{word-spacing:0.396800pt;}
.ws5_c00254{word-spacing:0.480000pt;}
.ws17_c00254{word-spacing:1.062400pt;}
.ws16_c00254{word-spacing:1.248000pt;}
.wsf_c00254{word-spacing:4.953600pt;}
.ws10_c00254{word-spacing:5.043200pt;}
.ws2_c00254{word-spacing:6.265600pt;}
.wsd_c00254{word-spacing:8.492800pt;}
.ws9_c00254{word-spacing:9.472000pt;}
.wsc_c00254{word-spacing:10.060800pt;}
.wsb_c00254{word-spacing:10.393600pt;}
.wsa_c00254{word-spacing:10.438400pt;}
.ws11_c00254{word-spacing:13.888000pt;}
.wse_c00254{word-spacing:26.080000pt;}
._0_c00254{width:1.062400pt;}
.fs0_c00254{font-size:64.000000pt;}
.y0_c00254{bottom:0.000000pt;}
.y2_c00254{bottom:41.627067pt;}
.y1_c00254{bottom:60.027067pt;}
.y13_c00254{bottom:604.347067pt;}
.y12_c00254{bottom:622.747067pt;}
.y11_c00254{bottom:641.147067pt;}
.y10_c00254{bottom:659.547067pt;}
.yf_c00254{bottom:677.947067pt;}
.ye_c00254{bottom:696.347067pt;}
.yd_c00254{bottom:714.747067pt;}
.yc_c00254{bottom:733.147067pt;}
.yb_c00254{bottom:751.547067pt;}
.ya_c00254{bottom:769.947067pt;}
.y9_c00254{bottom:788.347067pt;}
.y8_c00254{bottom:831.947067pt;}
.y7_c00254{bottom:859.547067pt;}
.y6_c00254{bottom:887.147067pt;}
.y5_c00254{bottom:930.747067pt;}
.y4_c00254{bottom:957.147067pt;}
.y3_c00254{bottom:975.547067pt;}
.h1_c00254{height:56.156250pt;}
.h2_c00254{height:57.375000pt;}
.h3_c00254{height:66.750000pt;}
.h0_c00254{height:1122.666667pt;}
.w1_c00254{width:793.333333pt;}
.w0_c00254{width:793.626667pt;}
.x0_c00254{left:0.000000pt;}
.x2_c00254{left:151.200000pt;}
.x3_c00254{left:170.160000pt;}
.x1_c00254{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1536e0fa142b0e0dd6926b0c.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.106934;font-style: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;}
.ls0_c00255{letter-spacing:0.000000px;}
.ls1_c00255{letter-spacing:843.998400px;}
.sc__c00255{text-shadow:none;}
.sc0_c00255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00255{-webkit-text-stroke:0px transparent;}
.sc0_c00255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00255{word-spacing:0.000000px;}
.fc0_c00255{color:rgb(0,0,0);}
.fs0_c00255{font-size:72.000000px;}
.y0_c00255{bottom:0.000000px;}
.y2_c00255{bottom:46.830450px;}
.y1_c00255{bottom:67.530450px;}
.y6_c00255{bottom:969.690450px;}
.y5_c00255{bottom:1018.740450px;}
.y4_c00255{bottom:1067.790450px;}
.y3_c00255{bottom:1097.490450px;}
.h1_c00255{height:63.175781px;}
.h2_c00255{height:64.546875px;}
.h0_c00255{height:1263.000000px;}
.w1_c00255{width:892.500000px;}
.w0_c00255{width:892.830000px;}
.x0_c00255{left:0.000000px;}
.x2_c00255{left:127.620000px;}
.x3_c00255{left:148.950000px;}
.x1_c00255{left:695.880000px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls0_c00255{letter-spacing:0.000000pt;}
.ls1_c00255{letter-spacing:750.220800pt;}
.ws0_c00255{word-spacing:0.000000pt;}
.fs0_c00255{font-size:64.000000pt;}
.y0_c00255{bottom:0.000000pt;}
.y2_c00255{bottom:41.627067pt;}
.y1_c00255{bottom:60.027067pt;}
.y6_c00255{bottom:861.947067pt;}
.y5_c00255{bottom:905.547067pt;}
.y4_c00255{bottom:949.147067pt;}
.y3_c00255{bottom:975.547067pt;}
.h1_c00255{height:56.156250pt;}
.h2_c00255{height:57.375000pt;}
.h0_c00255{height:1122.666667pt;}
.w1_c00255{width:793.333333pt;}
.w0_c00255{width:793.626667pt;}
.x0_c00255{left:0.000000pt;}
.x2_c00255{left:113.440000pt;}
.x3_c00255{left:132.400000pt;}
.x1_c00255{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9239659ef2c3f058ac8453bf.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.093262;font-style:normal;font-weight:normal;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_4bd7134370cac081134630b0.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00256;src:url('chunks/assets/font_369f75fea7a6cc9e0318d92a.woff2')format("woff");}.ff3_c00256{font-family:ff3_c00256;line-height:1.106934;font-style:normal;font-weight:normal;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_a2a8c1bc3e4300b9ea36fcaa.woff2')format("woff");}.ff4_c00256{font-family:ff4_c00256;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls10_c00256{letter-spacing:-0.079200px;}
.ls6_c00256{letter-spacing:-0.064800px;}
.ls7_c00256{letter-spacing:-0.057600px;}
.ls9_c00256{letter-spacing:-0.050400px;}
.lsc_c00256{letter-spacing:-0.043200px;}
.lsa_c00256{letter-spacing:-0.036000px;}
.lse_c00256{letter-spacing:-0.028800px;}
.ls5_c00256{letter-spacing:-0.021600px;}
.lsd_c00256{letter-spacing:-0.014400px;}
.ls8_c00256{letter-spacing:-0.007200px;}
.ls3_c00256{letter-spacing:0.000000px;}
.lsb_c00256{letter-spacing:0.007200px;}
.ls2_c00256{letter-spacing:0.014400px;}
.lsf_c00256{letter-spacing:0.028800px;}
.ls0_c00256{letter-spacing:0.041940px;}
.ls1_c00256{letter-spacing:0.043200px;}
.ls4_c00256{letter-spacing:0.075492px;}
.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;}
}
.ws7_c00256{word-spacing:-1.051200px;}
.ws6_c00256{word-spacing:-0.914400px;}
.wsf_c00256{word-spacing:-0.907200px;}
.ws5_c00256{word-spacing:-0.864000px;}
.ws10_c00256{word-spacing:-0.770400px;}
.ws22_c00256{word-spacing:-0.259200px;}
.ws23_c00256{word-spacing:-0.194400px;}
.ws0_c00256{word-spacing:0.000000px;}
.ws2_c00256{word-spacing:0.016776px;}
.ws1_c00256{word-spacing:0.050328px;}
.ws27_c00256{word-spacing:0.144000px;}
.ws20_c00256{word-spacing:0.172800px;}
.wse_c00256{word-spacing:0.180000px;}
.ws15_c00256{word-spacing:0.187200px;}
.ws24_c00256{word-spacing:0.201600px;}
.ws2d_c00256{word-spacing:0.216000px;}
.ws17_c00256{word-spacing:0.907200px;}
.ws16_c00256{word-spacing:0.928800px;}
.ws1d_c00256{word-spacing:2.642400px;}
.ws1e_c00256{word-spacing:2.714400px;}
.ws1f_c00256{word-spacing:2.736000px;}
.wsa_c00256{word-spacing:3.398400px;}
.ws9_c00256{word-spacing:3.434400px;}
.ws14_c00256{word-spacing:6.667200px;}
.ws13_c00256{word-spacing:6.681600px;}
.ws28_c00256{word-spacing:6.710400px;}
.ws11_c00256{word-spacing:8.107200px;}
.ws25_c00256{word-spacing:8.114400px;}
.ws26_c00256{word-spacing:8.128800px;}
.ws8_c00256{word-spacing:8.481600px;}
.ws3_c00256{word-spacing:10.980000px;}
.ws4_c00256{word-spacing:11.109600px;}
.ws29_c00256{word-spacing:12.002400px;}
.ws2a_c00256{word-spacing:12.067200px;}
.wsc_c00256{word-spacing:13.874400px;}
.wsd_c00256{word-spacing:13.881600px;}
.ws2c_c00256{word-spacing:22.838400px;}
.ws2b_c00256{word-spacing:22.903200px;}
.ws1c_c00256{word-spacing:23.198400px;}
.ws21_c00256{word-spacing:27.187200px;}
.ws19_c00256{word-spacing:29.714400px;}
.ws18_c00256{word-spacing:29.800800px;}
.ws12_c00256{word-spacing:30.088800px;}
.wsb_c00256{word-spacing:32.551200px;}
.ws1b_c00256{word-spacing:42.069600px;}
.ws1a_c00256{word-spacing:42.328800px;}
._1_c00256{width:1.224000px;}
._0_c00256{width:43.953120px;}
.fc0_c00256{color:rgb(0,0,0);}
.fs0_c00256{font-size:72.000000px;}
.fs1_c00256{font-size:83.880000px;}
.y0_c00256{bottom:0.000000px;}
.y2_c00256{bottom:46.830450px;}
.y1_c00256{bottom:67.530450px;}
.y23_c00256{bottom:187.230450px;}
.y22_c00256{bottom:207.930450px;}
.y21_c00256{bottom:228.630450px;}
.y20_c00256{bottom:249.330450px;}
.y1f_c00256{bottom:270.030450px;}
.y1e_c00256{bottom:290.730450px;}
.y1d_c00256{bottom:311.430450px;}
.y1c_c00256{bottom:332.040450px;}
.y1b_c00256{bottom:352.740450px;}
.y1a_c00256{bottom:373.440450px;}
.y19_c00256{bottom:394.140450px;}
.y18_c00256{bottom:414.840450px;}
.y17_c00256{bottom:435.540450px;}
.y16_c00256{bottom:456.240450px;}
.y15_c00256{bottom:505.290450px;}
.y14_c00256{bottom:536.340450px;}
.y13_c00256{bottom:567.390450px;}
.y12_c00256{bottom:598.440450px;}
.y11_c00256{bottom:647.490450px;}
.y10_c00256{bottom:678.540450px;}
.yf_c00256{bottom:709.590450px;}
.ye_c00256{bottom:740.640450px;}
.yd_c00256{bottom:771.690450px;}
.yc_c00256{bottom:820.740450px;}
.yb_c00256{bottom:851.790450px;}
.ya_c00256{bottom:882.840450px;}
.y9_c00256{bottom:913.890450px;}
.y8_c00256{bottom:944.940450px;}
.y7_c00256{bottom:975.990450px;}
.y6_c00256{bottom:1007.040450px;}
.y5_c00256{bottom:1046.184600px;}
.y4_c00256{bottom:1070.404950px;}
.y3_c00256{bottom:1094.520450px;}
.h1_c00256{height:63.175781px;}
.h3_c00256{height:64.546875px;}
.h4_c00256{height:75.093750px;}
.h2_c00256{height:87.484219px;}
.h0_c00256{height:1263.000000px;}
.w1_c00256{width:892.500000px;}
.w0_c00256{width:892.830000px;}
.x0_c00256{left:0.000000px;}
.x2_c00256{left:170.100000px;}
.x5_c00256{left:191.430000px;}
.x3_c00256{left:278.100000px;}
.x4_c00256{left:337.508010px;}
.x1_c00256{left:738.360000px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls10_c00256{letter-spacing:-0.070400pt;}
.ls6_c00256{letter-spacing:-0.057600pt;}
.ls7_c00256{letter-spacing:-0.051200pt;}
.ls9_c00256{letter-spacing:-0.044800pt;}
.lsc_c00256{letter-spacing:-0.038400pt;}
.lsa_c00256{letter-spacing:-0.032000pt;}
.lse_c00256{letter-spacing:-0.025600pt;}
.ls5_c00256{letter-spacing:-0.019200pt;}
.lsd_c00256{letter-spacing:-0.012800pt;}
.ls8_c00256{letter-spacing:-0.006400pt;}
.ls3_c00256{letter-spacing:0.000000pt;}
.lsb_c00256{letter-spacing:0.006400pt;}
.ls2_c00256{letter-spacing:0.012800pt;}
.lsf_c00256{letter-spacing:0.025600pt;}
.ls0_c00256{letter-spacing:0.037280pt;}
.ls1_c00256{letter-spacing:0.038400pt;}
.ls4_c00256{letter-spacing:0.067104pt;}
.ws7_c00256{word-spacing:-0.934400pt;}
.ws6_c00256{word-spacing:-0.812800pt;}
.wsf_c00256{word-spacing:-0.806400pt;}
.ws5_c00256{word-spacing:-0.768000pt;}
.ws10_c00256{word-spacing:-0.684800pt;}
.ws22_c00256{word-spacing:-0.230400pt;}
.ws23_c00256{word-spacing:-0.172800pt;}
.ws0_c00256{word-spacing:0.000000pt;}
.ws2_c00256{word-spacing:0.014912pt;}
.ws1_c00256{word-spacing:0.044736pt;}
.ws27_c00256{word-spacing:0.128000pt;}
.ws20_c00256{word-spacing:0.153600pt;}
.wse_c00256{word-spacing:0.160000pt;}
.ws15_c00256{word-spacing:0.166400pt;}
.ws24_c00256{word-spacing:0.179200pt;}
.ws2d_c00256{word-spacing:0.192000pt;}
.ws17_c00256{word-spacing:0.806400pt;}
.ws16_c00256{word-spacing:0.825600pt;}
.ws1d_c00256{word-spacing:2.348800pt;}
.ws1e_c00256{word-spacing:2.412800pt;}
.ws1f_c00256{word-spacing:2.432000pt;}
.wsa_c00256{word-spacing:3.020800pt;}
.ws9_c00256{word-spacing:3.052800pt;}
.ws14_c00256{word-spacing:5.926400pt;}
.ws13_c00256{word-spacing:5.939200pt;}
.ws28_c00256{word-spacing:5.964800pt;}
.ws11_c00256{word-spacing:7.206400pt;}
.ws25_c00256{word-spacing:7.212800pt;}
.ws26_c00256{word-spacing:7.225600pt;}
.ws8_c00256{word-spacing:7.539200pt;}
.ws3_c00256{word-spacing:9.760000pt;}
.ws4_c00256{word-spacing:9.875200pt;}
.ws29_c00256{word-spacing:10.668800pt;}
.ws2a_c00256{word-spacing:10.726400pt;}
.wsc_c00256{word-spacing:12.332800pt;}
.wsd_c00256{word-spacing:12.339200pt;}
.ws2c_c00256{word-spacing:20.300800pt;}
.ws2b_c00256{word-spacing:20.358400pt;}
.ws1c_c00256{word-spacing:20.620800pt;}
.ws21_c00256{word-spacing:24.166400pt;}
.ws19_c00256{word-spacing:26.412800pt;}
.ws18_c00256{word-spacing:26.489600pt;}
.ws12_c00256{word-spacing:26.745600pt;}
.wsb_c00256{word-spacing:28.934400pt;}
.ws1b_c00256{word-spacing:37.395200pt;}
.ws1a_c00256{word-spacing:37.625600pt;}
._1_c00256{width:1.088000pt;}
._0_c00256{width:39.069440pt;}
.fs0_c00256{font-size:64.000000pt;}
.fs1_c00256{font-size:74.560000pt;}
.y0_c00256{bottom:0.000000pt;}
.y2_c00256{bottom:41.627067pt;}
.y1_c00256{bottom:60.027067pt;}
.y23_c00256{bottom:166.427067pt;}
.y22_c00256{bottom:184.827067pt;}
.y21_c00256{bottom:203.227067pt;}
.y20_c00256{bottom:221.627067pt;}
.y1f_c00256{bottom:240.027067pt;}
.y1e_c00256{bottom:258.427067pt;}
.y1d_c00256{bottom:276.827067pt;}
.y1c_c00256{bottom:295.147067pt;}
.y1b_c00256{bottom:313.547067pt;}
.y1a_c00256{bottom:331.947067pt;}
.y19_c00256{bottom:350.347067pt;}
.y18_c00256{bottom:368.747067pt;}
.y17_c00256{bottom:387.147067pt;}
.y16_c00256{bottom:405.547067pt;}
.y15_c00256{bottom:449.147067pt;}
.y14_c00256{bottom:476.747067pt;}
.y13_c00256{bottom:504.347067pt;}
.y12_c00256{bottom:531.947067pt;}
.y11_c00256{bottom:575.547067pt;}
.y10_c00256{bottom:603.147067pt;}
.yf_c00256{bottom:630.747067pt;}
.ye_c00256{bottom:658.347067pt;}
.yd_c00256{bottom:685.947067pt;}
.yc_c00256{bottom:729.547067pt;}
.yb_c00256{bottom:757.147067pt;}
.ya_c00256{bottom:784.747067pt;}
.y9_c00256{bottom:812.347067pt;}
.y8_c00256{bottom:839.947067pt;}
.y7_c00256{bottom:867.547067pt;}
.y6_c00256{bottom:895.147067pt;}
.y5_c00256{bottom:929.941867pt;}
.y4_c00256{bottom:951.471067pt;}
.y3_c00256{bottom:972.907067pt;}
.h1_c00256{height:56.156250pt;}
.h3_c00256{height:57.375000pt;}
.h4_c00256{height:66.750000pt;}
.h2_c00256{height:77.763750pt;}
.h0_c00256{height:1122.666667pt;}
.w1_c00256{width:793.333333pt;}
.w0_c00256{width:793.626667pt;}
.x0_c00256{left:0.000000pt;}
.x2_c00256{left:151.200000pt;}
.x5_c00256{left:170.160000pt;}
.x3_c00256{left:247.200000pt;}
.x4_c00256{left:300.007120pt;}
.x1_c00256{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1b1b9c35dbc09e04158103ff.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.093262;font-style:normal;font-weight:normal;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_19d84b0cbdfec630622345c7.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.106934;font-style:normal;font-weight:normal;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_61d4cfbfa044bdddee7b47bc.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;line-height:0.666504;font-style: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;}
.lsb_c00257{letter-spacing:-0.079200px;}
.lsc_c00257{letter-spacing:-0.072000px;}
.ls5_c00257{letter-spacing:-0.064800px;}
.ls9_c00257{letter-spacing:-0.057600px;}
.ls8_c00257{letter-spacing:-0.050400px;}
.ls6_c00257{letter-spacing:-0.043200px;}
.ls2_c00257{letter-spacing:-0.036000px;}
.ls7_c00257{letter-spacing:-0.028800px;}
.ls3_c00257{letter-spacing:-0.021600px;}
.ls4_c00257{letter-spacing:-0.014400px;}
.lsa_c00257{letter-spacing:-0.007200px;}
.ls1_c00257{letter-spacing:0.000000px;}
.ls0_c00257{letter-spacing:0.007200px;}
.lsd_c00257{letter-spacing:0.021600px;}
.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;}
}
.ws12_c00257{word-spacing:-4.860000px;}
.ws11_c00257{word-spacing:-4.845600px;}
.ws2a_c00257{word-spacing:-4.140000px;}
.ws29_c00257{word-spacing:-3.412800px;}
.ws28_c00257{word-spacing:-3.405600px;}
.ws36_c00257{word-spacing:-3.038400px;}
.ws6_c00257{word-spacing:-2.347200px;}
.ws5_c00257{word-spacing:-2.340000px;}
.ws2_c00257{word-spacing:-1.980000px;}
.ws1_c00257{word-spacing:-1.965600px;}
.ws3f_c00257{word-spacing:-0.388800px;}
.ws3e_c00257{word-spacing:-0.050400px;}
.ws40_c00257{word-spacing:-0.028800px;}
.ws0_c00257{word-spacing:0.000000px;}
.ws1e_c00257{word-spacing:0.165600px;}
.ws27_c00257{word-spacing:0.172800px;}
.ws4_c00257{word-spacing:0.180000px;}
.ws10_c00257{word-spacing:0.187200px;}
.ws35_c00257{word-spacing:0.194400px;}
.ws15_c00257{word-spacing:0.208800px;}
.ws3b_c00257{word-spacing:0.223200px;}
.ws3_c00257{word-spacing:1.252800px;}
.ws19_c00257{word-spacing:1.296000px;}
.ws18_c00257{word-spacing:1.353600px;}
.ws23_c00257{word-spacing:1.598400px;}
.ws24_c00257{word-spacing:1.634400px;}
.ws7_c00257{word-spacing:1.641600px;}
.ws8_c00257{word-spacing:1.684800px;}
.wsa_c00257{word-spacing:4.464000px;}
.ws31_c00257{word-spacing:4.514400px;}
.wsb_c00257{word-spacing:4.543200px;}
.ws39_c00257{word-spacing:5.220000px;}
.wsf_c00257{word-spacing:5.227200px;}
.ws3a_c00257{word-spacing:5.234400px;}
.wse_c00257{word-spacing:5.241600px;}
.ws41_c00257{word-spacing:7.394400px;}
.ws42_c00257{word-spacing:7.473600px;}
.ws3d_c00257{word-spacing:10.987200px;}
.ws3c_c00257{word-spacing:11.008800px;}
.ws21_c00257{word-spacing:11.268000px;}
.ws22_c00257{word-spacing:11.397600px;}
.ws14_c00257{word-spacing:12.794400px;}
.ws13_c00257{word-spacing:12.801600px;}
.ws25_c00257{word-spacing:15.696000px;}
.ws16_c00257{word-spacing:17.460000px;}
.ws17_c00257{word-spacing:17.503200px;}
.ws1b_c00257{word-spacing:19.296000px;}
.ws1c_c00257{word-spacing:19.533600px;}
.ws1d_c00257{word-spacing:19.612800px;}
.wsd_c00257{word-spacing:21.355200px;}
.wsc_c00257{word-spacing:21.463200px;}
.ws1f_c00257{word-spacing:21.780000px;}
.ws20_c00257{word-spacing:21.794400px;}
.ws2b_c00257{word-spacing:21.830400px;}
.ws9_c00257{word-spacing:23.241600px;}
.ws32_c00257{word-spacing:23.587200px;}
.ws2d_c00257{word-spacing:25.372800px;}
.ws2e_c00257{word-spacing:25.488000px;}
.ws1a_c00257{word-spacing:26.848800px;}
.ws26_c00257{word-spacing:29.354400px;}
.ws2f_c00257{word-spacing:33.660000px;}
.ws30_c00257{word-spacing:33.768000px;}
.ws2c_c00257{word-spacing:36.554400px;}
.ws33_c00257{word-spacing:50.054400px;}
.ws34_c00257{word-spacing:50.263200px;}
.ws37_c00257{word-spacing:76.154400px;}
.ws38_c00257{word-spacing:76.161600px;}
._0_c00257{width:1.094400px;}
._5_c00257{width:18.360000px;}
._2_c00257{width:33.120000px;}
._3_c00257{width:39.240000px;}
._7_c00257{width:43.920000px;}
._6_c00257{width:50.400000px;}
._4_c00257{width:58.320000px;}
._1_c00257{width:59.760000px;}
.fc0_c00257{color:rgb(0,0,0);}
.fs0_c00257{font-size:72.000000px;}
.y0_c00257{bottom:0.000000px;}
.y2_c00257{bottom:46.830450px;}
.y1_c00257{bottom:67.530450px;}
.y30_c00257{bottom:146.100450px;}
.y2f_c00257{bottom:166.800450px;}
.y2e_c00257{bottom:187.500450px;}
.y2d_c00257{bottom:209.460450px;}
.y2c_c00257{bottom:230.160450px;}
.y2b_c00257{bottom:250.860450px;}
.y2a_c00257{bottom:271.470450px;}
.y29_c00257{bottom:293.430450px;}
.y28_c00257{bottom:314.130450px;}
.y27_c00257{bottom:334.830450px;}
.y26_c00257{bottom:355.530450px;}
.y25_c00257{bottom:377.490450px;}
.y24_c00257{bottom:398.190450px;}
.y23_c00257{bottom:418.890450px;}
.y22_c00257{bottom:439.500450px;}
.y21_c00257{bottom:461.460450px;}
.y20_c00257{bottom:482.160450px;}
.y1f_c00257{bottom:502.860450px;}
.y1e_c00257{bottom:523.470450px;}
.y1d_c00257{bottom:545.430450px;}
.y1c_c00257{bottom:566.130450px;}
.y1b_c00257{bottom:586.830450px;}
.y1a_c00257{bottom:608.790450px;}
.y19_c00257{bottom:629.490450px;}
.y18_c00257{bottom:650.190450px;}
.y17_c00257{bottom:670.800450px;}
.y16_c00257{bottom:692.760450px;}
.y15_c00257{bottom:713.460450px;}
.y14_c00257{bottom:734.160450px;}
.y13_c00257{bottom:754.860450px;}
.y12_c00257{bottom:775.560450px;}
.y11_c00257{bottom:796.260450px;}
.y10_c00257{bottom:818.220450px;}
.yf_c00257{bottom:838.920450px;}
.ye_c00257{bottom:859.530450px;}
.yd_c00257{bottom:890.490450px;}
.yc_c00257{bottom:911.190450px;}
.yb_c00257{bottom:931.890450px;}
.ya_c00257{bottom:952.590450px;}
.y9_c00257{bottom:973.290450px;}
.y8_c00257{bottom:993.990450px;}
.y7_c00257{bottom:1014.690450px;}
.y6_c00257{bottom:1035.390450px;}
.y5_c00257{bottom:1056.090450px;}
.y4_c00257{bottom:1076.790450px;}
.y3_c00257{bottom:1097.490450px;}
.h1_c00257{height:63.175781px;}
.h2_c00257{height:64.546875px;}
.h0_c00257{height:1263.000000px;}
.w1_c00257{width:892.500000px;}
.w0_c00257{width:892.830000px;}
.x0_c00257{left:0.000000px;}
.x2_c00257{left:127.620000px;}
.x3_c00257{left:148.950000px;}
.x4_c00257{left:175.950000px;}
.x5_c00257{left:202.950000px;}
.x1_c00257{left:695.880000px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.lsb_c00257{letter-spacing:-0.070400pt;}
.lsc_c00257{letter-spacing:-0.064000pt;}
.ls5_c00257{letter-spacing:-0.057600pt;}
.ls9_c00257{letter-spacing:-0.051200pt;}
.ls8_c00257{letter-spacing:-0.044800pt;}
.ls6_c00257{letter-spacing:-0.038400pt;}
.ls2_c00257{letter-spacing:-0.032000pt;}
.ls7_c00257{letter-spacing:-0.025600pt;}
.ls3_c00257{letter-spacing:-0.019200pt;}
.ls4_c00257{letter-spacing:-0.012800pt;}
.lsa_c00257{letter-spacing:-0.006400pt;}
.ls1_c00257{letter-spacing:0.000000pt;}
.ls0_c00257{letter-spacing:0.006400pt;}
.lsd_c00257{letter-spacing:0.019200pt;}
.ws12_c00257{word-spacing:-4.320000pt;}
.ws11_c00257{word-spacing:-4.307200pt;}
.ws2a_c00257{word-spacing:-3.680000pt;}
.ws29_c00257{word-spacing:-3.033600pt;}
.ws28_c00257{word-spacing:-3.027200pt;}
.ws36_c00257{word-spacing:-2.700800pt;}
.ws6_c00257{word-spacing:-2.086400pt;}
.ws5_c00257{word-spacing:-2.080000pt;}
.ws2_c00257{word-spacing:-1.760000pt;}
.ws1_c00257{word-spacing:-1.747200pt;}
.ws3f_c00257{word-spacing:-0.345600pt;}
.ws3e_c00257{word-spacing:-0.044800pt;}
.ws40_c00257{word-spacing:-0.025600pt;}
.ws0_c00257{word-spacing:0.000000pt;}
.ws1e_c00257{word-spacing:0.147200pt;}
.ws27_c00257{word-spacing:0.153600pt;}
.ws4_c00257{word-spacing:0.160000pt;}
.ws10_c00257{word-spacing:0.166400pt;}
.ws35_c00257{word-spacing:0.172800pt;}
.ws15_c00257{word-spacing:0.185600pt;}
.ws3b_c00257{word-spacing:0.198400pt;}
.ws3_c00257{word-spacing:1.113600pt;}
.ws19_c00257{word-spacing:1.152000pt;}
.ws18_c00257{word-spacing:1.203200pt;}
.ws23_c00257{word-spacing:1.420800pt;}
.ws24_c00257{word-spacing:1.452800pt;}
.ws7_c00257{word-spacing:1.459200pt;}
.ws8_c00257{word-spacing:1.497600pt;}
.wsa_c00257{word-spacing:3.968000pt;}
.ws31_c00257{word-spacing:4.012800pt;}
.wsb_c00257{word-spacing:4.038400pt;}
.ws39_c00257{word-spacing:4.640000pt;}
.wsf_c00257{word-spacing:4.646400pt;}
.ws3a_c00257{word-spacing:4.652800pt;}
.wse_c00257{word-spacing:4.659200pt;}
.ws41_c00257{word-spacing:6.572800pt;}
.ws42_c00257{word-spacing:6.643200pt;}
.ws3d_c00257{word-spacing:9.766400pt;}
.ws3c_c00257{word-spacing:9.785600pt;}
.ws21_c00257{word-spacing:10.016000pt;}
.ws22_c00257{word-spacing:10.131200pt;}
.ws14_c00257{word-spacing:11.372800pt;}
.ws13_c00257{word-spacing:11.379200pt;}
.ws25_c00257{word-spacing:13.952000pt;}
.ws16_c00257{word-spacing:15.520000pt;}
.ws17_c00257{word-spacing:15.558400pt;}
.ws1b_c00257{word-spacing:17.152000pt;}
.ws1c_c00257{word-spacing:17.363200pt;}
.ws1d_c00257{word-spacing:17.433600pt;}
.wsd_c00257{word-spacing:18.982400pt;}
.wsc_c00257{word-spacing:19.078400pt;}
.ws1f_c00257{word-spacing:19.360000pt;}
.ws20_c00257{word-spacing:19.372800pt;}
.ws2b_c00257{word-spacing:19.404800pt;}
.ws9_c00257{word-spacing:20.659200pt;}
.ws32_c00257{word-spacing:20.966400pt;}
.ws2d_c00257{word-spacing:22.553600pt;}
.ws2e_c00257{word-spacing:22.656000pt;}
.ws1a_c00257{word-spacing:23.865600pt;}
.ws26_c00257{word-spacing:26.092800pt;}
.ws2f_c00257{word-spacing:29.920000pt;}
.ws30_c00257{word-spacing:30.016000pt;}
.ws2c_c00257{word-spacing:32.492800pt;}
.ws33_c00257{word-spacing:44.492800pt;}
.ws34_c00257{word-spacing:44.678400pt;}
.ws37_c00257{word-spacing:67.692800pt;}
.ws38_c00257{word-spacing:67.699200pt;}
._0_c00257{width:0.972800pt;}
._5_c00257{width:16.320000pt;}
._2_c00257{width:29.440000pt;}
._3_c00257{width:34.880000pt;}
._7_c00257{width:39.040000pt;}
._6_c00257{width:44.800000pt;}
._4_c00257{width:51.840000pt;}
._1_c00257{width:53.120000pt;}
.fs0_c00257{font-size:64.000000pt;}
.y0_c00257{bottom:0.000000pt;}
.y2_c00257{bottom:41.627067pt;}
.y1_c00257{bottom:60.027067pt;}
.y30_c00257{bottom:129.867067pt;}
.y2f_c00257{bottom:148.267067pt;}
.y2e_c00257{bottom:166.667067pt;}
.y2d_c00257{bottom:186.187067pt;}
.y2c_c00257{bottom:204.587067pt;}
.y2b_c00257{bottom:222.987067pt;}
.y2a_c00257{bottom:241.307067pt;}
.y29_c00257{bottom:260.827067pt;}
.y28_c00257{bottom:279.227067pt;}
.y27_c00257{bottom:297.627067pt;}
.y26_c00257{bottom:316.027067pt;}
.y25_c00257{bottom:335.547067pt;}
.y24_c00257{bottom:353.947067pt;}
.y23_c00257{bottom:372.347067pt;}
.y22_c00257{bottom:390.667067pt;}
.y21_c00257{bottom:410.187067pt;}
.y20_c00257{bottom:428.587067pt;}
.y1f_c00257{bottom:446.987067pt;}
.y1e_c00257{bottom:465.307067pt;}
.y1d_c00257{bottom:484.827067pt;}
.y1c_c00257{bottom:503.227067pt;}
.y1b_c00257{bottom:521.627067pt;}
.y1a_c00257{bottom:541.147067pt;}
.y19_c00257{bottom:559.547067pt;}
.y18_c00257{bottom:577.947067pt;}
.y17_c00257{bottom:596.267067pt;}
.y16_c00257{bottom:615.787067pt;}
.y15_c00257{bottom:634.187067pt;}
.y14_c00257{bottom:652.587067pt;}
.y13_c00257{bottom:670.987067pt;}
.y12_c00257{bottom:689.387067pt;}
.y11_c00257{bottom:707.787067pt;}
.y10_c00257{bottom:727.307067pt;}
.yf_c00257{bottom:745.707067pt;}
.ye_c00257{bottom:764.027067pt;}
.yd_c00257{bottom:791.547067pt;}
.yc_c00257{bottom:809.947067pt;}
.yb_c00257{bottom:828.347067pt;}
.ya_c00257{bottom:846.747067pt;}
.y9_c00257{bottom:865.147067pt;}
.y8_c00257{bottom:883.547067pt;}
.y7_c00257{bottom:901.947067pt;}
.y6_c00257{bottom:920.347067pt;}
.y5_c00257{bottom:938.747067pt;}
.y4_c00257{bottom:957.147067pt;}
.y3_c00257{bottom:975.547067pt;}
.h1_c00257{height:56.156250pt;}
.h2_c00257{height:57.375000pt;}
.h0_c00257{height:1122.666667pt;}
.w1_c00257{width:793.333333pt;}
.w0_c00257{width:793.626667pt;}
.x0_c00257{left:0.000000pt;}
.x2_c00257{left:113.440000pt;}
.x3_c00257{left:132.400000pt;}
.x4_c00257{left:156.400000pt;}
.x5_c00257{left:180.400000pt;}
.x1_c00257{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9522c9218327caeccf8fa52b.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.093262;font-style:normal;font-weight:normal;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_28d7da69b2972a2e925d1dfa.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.106934;font-style:normal;font-weight:normal;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_61d4cfbfa044bdddee7b47bc.woff2')format("woff");}.ff3_c00258{font-family:ff3_c00258;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00258{vertical-align:0.000000px;}
.lsc_c00258{letter-spacing:-0.086400px;}
.ls5_c00258{letter-spacing:-0.064800px;}
.ls9_c00258{letter-spacing:-0.057600px;}
.ls4_c00258{letter-spacing:-0.050400px;}
.lsb_c00258{letter-spacing:-0.043200px;}
.ls8_c00258{letter-spacing:-0.036000px;}
.lsa_c00258{letter-spacing:-0.028800px;}
.lse_c00258{letter-spacing:-0.021600px;}
.ls7_c00258{letter-spacing:-0.014400px;}
.lsd_c00258{letter-spacing:-0.007200px;}
.ls3_c00258{letter-spacing:0.000000px;}
.ls0_c00258{letter-spacing:0.007200px;}
.ls1_c00258{letter-spacing:0.014400px;}
.ls6_c00258{letter-spacing:0.021600px;}
.ls2_c00258{letter-spacing:0.050400px;}
.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;}
}
.ws13_c00258{word-spacing:-3.405600px;}
.ws14_c00258{word-spacing:-3.391200px;}
.ws4_c00258{word-spacing:-2.707200px;}
.ws25_c00258{word-spacing:-2.692800px;}
.ws5_c00258{word-spacing:-2.685600px;}
.ws26_c00258{word-spacing:-2.512800px;}
.ws27_c00258{word-spacing:-2.484000px;}
.ws22_c00258{word-spacing:-1.576800px;}
.ws38_c00258{word-spacing:-0.900000px;}
.ws39_c00258{word-spacing:-0.813600px;}
.ws0_c00258{word-spacing:0.000000px;}
.ws1d_c00258{word-spacing:0.064800px;}
.ws1e_c00258{word-spacing:0.100800px;}
.ws3_c00258{word-spacing:0.136800px;}
.ws24_c00258{word-spacing:0.144000px;}
.ws33_c00258{word-spacing:0.180000px;}
.ws7_c00258{word-spacing:0.187200px;}
.ws2b_c00258{word-spacing:0.201600px;}
.ws36_c00258{word-spacing:0.482400px;}
.ws37_c00258{word-spacing:0.576000px;}
.wsc_c00258{word-spacing:1.627200px;}
.ws23_c00258{word-spacing:1.980000px;}
.ws29_c00258{word-spacing:2.700000px;}
.ws2a_c00258{word-spacing:2.721600px;}
.ws3a_c00258{word-spacing:2.757600px;}
.ws6_c00258{word-spacing:3.096000px;}
.ws1b_c00258{word-spacing:3.808800px;}
.ws1c_c00258{word-spacing:3.844800px;}
.ws19_c00258{word-spacing:4.507200px;}
.ws28_c00258{word-spacing:8.114400px;}
.ws15_c00258{word-spacing:8.467200px;}
.ws16_c00258{word-spacing:8.654400px;}
.ws8_c00258{word-spacing:8.791200px;}
.ws9_c00258{word-spacing:8.892000px;}
.ws2f_c00258{word-spacing:8.928000px;}
.ws30_c00258{word-spacing:8.964000px;}
.ws2d_c00258{word-spacing:9.151200px;}
.ws2c_c00258{word-spacing:9.194400px;}
.wsa_c00258{word-spacing:12.427200px;}
.wsb_c00258{word-spacing:12.528000px;}
.ws18_c00258{word-spacing:13.831200px;}
.ws2e_c00258{word-spacing:14.248800px;}
.ws1a_c00258{word-spacing:15.343200px;}
.ws20_c00258{word-spacing:16.041600px;}
.ws21_c00258{word-spacing:16.056000px;}
.ws35_c00258{word-spacing:17.748000px;}
.ws34_c00258{word-spacing:17.827200px;}
.ws32_c00258{word-spacing:22.068000px;}
.ws31_c00258{word-spacing:22.240800px;}
.ws17_c00258{word-spacing:25.048800px;}
.ws11_c00258{word-spacing:27.864000px;}
.ws12_c00258{word-spacing:27.921600px;}
.ws1f_c00258{word-spacing:29.361600px;}
.wsf_c00258{word-spacing:29.685600px;}
.ws10_c00258{word-spacing:29.728800px;}
.ws1_c00258{word-spacing:53.488800px;}
.ws2_c00258{word-spacing:53.503200px;}
.wsd_c00258{word-spacing:54.216000px;}
.wse_c00258{word-spacing:54.244800px;}
._5_c00258{width:1.022400px;}
._6_c00258{width:25.560000px;}
._2_c00258{width:27.000000px;}
._3_c00258{width:29.880000px;}
._4_c00258{width:41.112000px;}
._1_c00258{width:46.080000px;}
._0_c00258{width:57.600000px;}
.fc0_c00258{color:rgb(0,0,0);}
.fs0_c00258{font-size:72.000000px;}
.y0_c00258{bottom:0.000000px;}
.y2_c00258{bottom:46.830450px;}
.y1_c00258{bottom:67.530450px;}
.y2d_c00258{bottom:200.460450px;}
.y2c_c00258{bottom:230.160450px;}
.y2b_c00258{bottom:250.860450px;}
.y2a_c00258{bottom:271.560450px;}
.y29_c00258{bottom:292.260450px;}
.y28_c00258{bottom:312.960450px;}
.y27_c00258{bottom:333.660450px;}
.y26_c00258{bottom:363.360450px;}
.y25_c00258{bottom:384.060450px;}
.y24_c00258{bottom:404.760450px;}
.y23_c00258{bottom:425.460450px;}
.y22_c00258{bottom:446.070450px;}
.y21_c00258{bottom:468.030450px;}
.y20_c00258{bottom:488.730450px;}
.y1f_c00258{bottom:509.430450px;}
.y1e_c00258{bottom:530.130450px;}
.y1d_c00258{bottom:552.000450px;}
.y1c_c00258{bottom:572.700450px;}
.y1b_c00258{bottom:593.400450px;}
.y1a_c00258{bottom:614.100450px;}
.y19_c00258{bottom:634.800450px;}
.y18_c00258{bottom:656.760450px;}
.y17_c00258{bottom:677.460450px;}
.y16_c00258{bottom:698.160450px;}
.y15_c00258{bottom:718.860450px;}
.y14_c00258{bottom:739.470450px;}
.y13_c00258{bottom:761.430450px;}
.y12_c00258{bottom:782.130450px;}
.y11_c00258{bottom:804.090450px;}
.y10_c00258{bottom:824.790450px;}
.yf_c00258{bottom:845.490450px;}
.ye_c00258{bottom:866.100450px;}
.yd_c00258{bottom:888.060450px;}
.yc_c00258{bottom:908.760450px;}
.yb_c00258{bottom:929.460450px;}
.ya_c00258{bottom:950.160450px;}
.y9_c00258{bottom:970.860450px;}
.y8_c00258{bottom:991.470450px;}
.y7_c00258{bottom:1013.430450px;}
.y6_c00258{bottom:1034.130450px;}
.y5_c00258{bottom:1054.830450px;}
.y4_c00258{bottom:1076.790450px;}
.y3_c00258{bottom:1097.490450px;}
.h1_c00258{height:63.175781px;}
.h2_c00258{height:64.546875px;}
.h0_c00258{height:1263.000000px;}
.w1_c00258{width:892.500000px;}
.w0_c00258{width:892.830000px;}
.x0_c00258{left:0.000000px;}
.x2_c00258{left:170.100000px;}
.x5_c00258{left:191.430000px;}
.x4_c00258{left:218.430000px;}
.x3_c00258{left:245.430000px;}
.x1_c00258{left:738.360000px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.lsc_c00258{letter-spacing:-0.076800pt;}
.ls5_c00258{letter-spacing:-0.057600pt;}
.ls9_c00258{letter-spacing:-0.051200pt;}
.ls4_c00258{letter-spacing:-0.044800pt;}
.lsb_c00258{letter-spacing:-0.038400pt;}
.ls8_c00258{letter-spacing:-0.032000pt;}
.lsa_c00258{letter-spacing:-0.025600pt;}
.lse_c00258{letter-spacing:-0.019200pt;}
.ls7_c00258{letter-spacing:-0.012800pt;}
.lsd_c00258{letter-spacing:-0.006400pt;}
.ls3_c00258{letter-spacing:0.000000pt;}
.ls0_c00258{letter-spacing:0.006400pt;}
.ls1_c00258{letter-spacing:0.012800pt;}
.ls6_c00258{letter-spacing:0.019200pt;}
.ls2_c00258{letter-spacing:0.044800pt;}
.ws13_c00258{word-spacing:-3.027200pt;}
.ws14_c00258{word-spacing:-3.014400pt;}
.ws4_c00258{word-spacing:-2.406400pt;}
.ws25_c00258{word-spacing:-2.393600pt;}
.ws5_c00258{word-spacing:-2.387200pt;}
.ws26_c00258{word-spacing:-2.233600pt;}
.ws27_c00258{word-spacing:-2.208000pt;}
.ws22_c00258{word-spacing:-1.401600pt;}
.ws38_c00258{word-spacing:-0.800000pt;}
.ws39_c00258{word-spacing:-0.723200pt;}
.ws0_c00258{word-spacing:0.000000pt;}
.ws1d_c00258{word-spacing:0.057600pt;}
.ws1e_c00258{word-spacing:0.089600pt;}
.ws3_c00258{word-spacing:0.121600pt;}
.ws24_c00258{word-spacing:0.128000pt;}
.ws33_c00258{word-spacing:0.160000pt;}
.ws7_c00258{word-spacing:0.166400pt;}
.ws2b_c00258{word-spacing:0.179200pt;}
.ws36_c00258{word-spacing:0.428800pt;}
.ws37_c00258{word-spacing:0.512000pt;}
.wsc_c00258{word-spacing:1.446400pt;}
.ws23_c00258{word-spacing:1.760000pt;}
.ws29_c00258{word-spacing:2.400000pt;}
.ws2a_c00258{word-spacing:2.419200pt;}
.ws3a_c00258{word-spacing:2.451200pt;}
.ws6_c00258{word-spacing:2.752000pt;}
.ws1b_c00258{word-spacing:3.385600pt;}
.ws1c_c00258{word-spacing:3.417600pt;}
.ws19_c00258{word-spacing:4.006400pt;}
.ws28_c00258{word-spacing:7.212800pt;}
.ws15_c00258{word-spacing:7.526400pt;}
.ws16_c00258{word-spacing:7.692800pt;}
.ws8_c00258{word-spacing:7.814400pt;}
.ws9_c00258{word-spacing:7.904000pt;}
.ws2f_c00258{word-spacing:7.936000pt;}
.ws30_c00258{word-spacing:7.968000pt;}
.ws2d_c00258{word-spacing:8.134400pt;}
.ws2c_c00258{word-spacing:8.172800pt;}
.wsa_c00258{word-spacing:11.046400pt;}
.wsb_c00258{word-spacing:11.136000pt;}
.ws18_c00258{word-spacing:12.294400pt;}
.ws2e_c00258{word-spacing:12.665600pt;}
.ws1a_c00258{word-spacing:13.638400pt;}
.ws20_c00258{word-spacing:14.259200pt;}
.ws21_c00258{word-spacing:14.272000pt;}
.ws35_c00258{word-spacing:15.776000pt;}
.ws34_c00258{word-spacing:15.846400pt;}
.ws32_c00258{word-spacing:19.616000pt;}
.ws31_c00258{word-spacing:19.769600pt;}
.ws17_c00258{word-spacing:22.265600pt;}
.ws11_c00258{word-spacing:24.768000pt;}
.ws12_c00258{word-spacing:24.819200pt;}
.ws1f_c00258{word-spacing:26.099200pt;}
.wsf_c00258{word-spacing:26.387200pt;}
.ws10_c00258{word-spacing:26.425600pt;}
.ws1_c00258{word-spacing:47.545600pt;}
.ws2_c00258{word-spacing:47.558400pt;}
.wsd_c00258{word-spacing:48.192000pt;}
.wse_c00258{word-spacing:48.217600pt;}
._5_c00258{width:0.908800pt;}
._6_c00258{width:22.720000pt;}
._2_c00258{width:24.000000pt;}
._3_c00258{width:26.560000pt;}
._4_c00258{width:36.544000pt;}
._1_c00258{width:40.960000pt;}
._0_c00258{width:51.200000pt;}
.fs0_c00258{font-size:64.000000pt;}
.y0_c00258{bottom:0.000000pt;}
.y2_c00258{bottom:41.627067pt;}
.y1_c00258{bottom:60.027067pt;}
.y2d_c00258{bottom:178.187067pt;}
.y2c_c00258{bottom:204.587067pt;}
.y2b_c00258{bottom:222.987067pt;}
.y2a_c00258{bottom:241.387067pt;}
.y29_c00258{bottom:259.787067pt;}
.y28_c00258{bottom:278.187067pt;}
.y27_c00258{bottom:296.587067pt;}
.y26_c00258{bottom:322.987067pt;}
.y25_c00258{bottom:341.387067pt;}
.y24_c00258{bottom:359.787067pt;}
.y23_c00258{bottom:378.187067pt;}
.y22_c00258{bottom:396.507067pt;}
.y21_c00258{bottom:416.027067pt;}
.y20_c00258{bottom:434.427067pt;}
.y1f_c00258{bottom:452.827067pt;}
.y1e_c00258{bottom:471.227067pt;}
.y1d_c00258{bottom:490.667067pt;}
.y1c_c00258{bottom:509.067067pt;}
.y1b_c00258{bottom:527.467067pt;}
.y1a_c00258{bottom:545.867067pt;}
.y19_c00258{bottom:564.267067pt;}
.y18_c00258{bottom:583.787067pt;}
.y17_c00258{bottom:602.187067pt;}
.y16_c00258{bottom:620.587067pt;}
.y15_c00258{bottom:638.987067pt;}
.y14_c00258{bottom:657.307067pt;}
.y13_c00258{bottom:676.827067pt;}
.y12_c00258{bottom:695.227067pt;}
.y11_c00258{bottom:714.747067pt;}
.y10_c00258{bottom:733.147067pt;}
.yf_c00258{bottom:751.547067pt;}
.ye_c00258{bottom:769.867067pt;}
.yd_c00258{bottom:789.387067pt;}
.yc_c00258{bottom:807.787067pt;}
.yb_c00258{bottom:826.187067pt;}
.ya_c00258{bottom:844.587067pt;}
.y9_c00258{bottom:862.987067pt;}
.y8_c00258{bottom:881.307067pt;}
.y7_c00258{bottom:900.827067pt;}
.y6_c00258{bottom:919.227067pt;}
.y5_c00258{bottom:937.627067pt;}
.y4_c00258{bottom:957.147067pt;}
.y3_c00258{bottom:975.547067pt;}
.h1_c00258{height:56.156250pt;}
.h2_c00258{height:57.375000pt;}
.h0_c00258{height:1122.666667pt;}
.w1_c00258{width:793.333333pt;}
.w0_c00258{width:793.626667pt;}
.x0_c00258{left:0.000000pt;}
.x2_c00258{left:151.200000pt;}
.x5_c00258{left:170.160000pt;}
.x4_c00258{left:194.160000pt;}
.x3_c00258{left:218.160000pt;}
.x1_c00258{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ca17d19423edd246c1f99915.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.093262;font-style:normal;font-weight:normal;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_37b89fbae313adc0598a85f8.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00259{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00259{vertical-align:0.000000px;}
.lsc_c00259{letter-spacing:-0.100800px;}
.lsd_c00259{letter-spacing:-0.086400px;}
.ls8_c00259{letter-spacing:-0.079200px;}
.lsa_c00259{letter-spacing:-0.072000px;}
.ls5_c00259{letter-spacing:-0.064800px;}
.ls6_c00259{letter-spacing:-0.057600px;}
.ls2_c00259{letter-spacing:-0.050400px;}
.ls9_c00259{letter-spacing:-0.043200px;}
.ls3_c00259{letter-spacing:-0.036000px;}
.ls7_c00259{letter-spacing:-0.028800px;}
.ls1_c00259{letter-spacing:-0.021600px;}
.ls4_c00259{letter-spacing:-0.014400px;}
.lsb_c00259{letter-spacing:-0.007200px;}
.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;}
}
.wse_c00259{word-spacing:-4.586400px;}
.wsd_c00259{word-spacing:-4.514400px;}
.wsa_c00259{word-spacing:-2.772000px;}
.ws9_c00259{word-spacing:-2.707200px;}
.ws8_c00259{word-spacing:-2.671200px;}
.ws34_c00259{word-spacing:-1.584000px;}
.ws35_c00259{word-spacing:-1.555200px;}
.ws0_c00259{word-spacing:0.000000px;}
.ws2d_c00259{word-spacing:0.122400px;}
.ws1b_c00259{word-spacing:0.165600px;}
.ws33_c00259{word-spacing:0.180000px;}
.ws11_c00259{word-spacing:0.187200px;}
.ws2a_c00259{word-spacing:0.194400px;}
.ws17_c00259{word-spacing:0.468000px;}
.ws19_c00259{word-spacing:0.525600px;}
.ws23_c00259{word-spacing:0.561600px;}
.ws22_c00259{word-spacing:0.576000px;}
.ws18_c00259{word-spacing:0.590400px;}
.ws25_c00259{word-spacing:0.864000px;}
.ws24_c00259{word-spacing:0.878400px;}
.ws10_c00259{word-spacing:0.907200px;}
.wsf_c00259{word-spacing:1.000800px;}
.ws2f_c00259{word-spacing:1.231200px;}
.ws2e_c00259{word-spacing:1.288800px;}
.ws21_c00259{word-spacing:2.001600px;}
.ws5_c00259{word-spacing:2.275200px;}
.ws6_c00259{word-spacing:2.361600px;}
.ws26_c00259{word-spacing:5.220000px;}
.ws27_c00259{word-spacing:5.256000px;}
.ws29_c00259{word-spacing:6.645600px;}
.ws28_c00259{word-spacing:6.652800px;}
.ws14_c00259{word-spacing:7.660800px;}
.ws13_c00259{word-spacing:7.833600px;}
.ws16_c00259{word-spacing:8.330400px;}
.ws15_c00259{word-spacing:8.467200px;}
.ws20_c00259{word-spacing:8.841600px;}
.ws4_c00259{word-spacing:9.129600px;}
.ws3_c00259{word-spacing:9.201600px;}
.ws36_c00259{word-spacing:11.030400px;}
.ws31_c00259{word-spacing:17.121600px;}
.ws32_c00259{word-spacing:17.150400px;}
.ws1e_c00259{word-spacing:17.452800px;}
.ws1f_c00259{word-spacing:17.488800px;}
.wsc_c00259{word-spacing:20.678400px;}
.wsb_c00259{word-spacing:20.714400px;}
.ws2c_c00259{word-spacing:22.075200px;}
.ws2b_c00259{word-spacing:22.132800px;}
.ws1a_c00259{word-spacing:22.154400px;}
.ws1_c00259{word-spacing:26.460000px;}
.ws2_c00259{word-spacing:26.488800px;}
.ws30_c00259{word-spacing:27.518400px;}
.ws1d_c00259{word-spacing:27.900000px;}
.ws1c_c00259{word-spacing:27.957600px;}
.ws7_c00259{word-spacing:31.154400px;}
.ws12_c00259{word-spacing:38.793600px;}
._0_c00259{margin-left:-38.592000px;}
._1_c00259{width:1.296000px;}
.fc0_c00259{color:rgb(0,0,0);}
.fs0_c00259{font-size:72.000000px;}
.y0_c00259{bottom:0.000000px;}
.y2_c00259{bottom:46.830450px;}
.y1_c00259{bottom:67.530450px;}
.y25_c00259{bottom:172.830450px;}
.y24_c00259{bottom:203.880450px;}
.y23_c00259{bottom:234.930450px;}
.y22_c00259{bottom:283.980450px;}
.y21_c00259{bottom:315.030450px;}
.y20_c00259{bottom:346.080450px;}
.y1f_c00259{bottom:377.040450px;}
.y1e_c00259{bottom:408.090450px;}
.y1d_c00259{bottom:439.140450px;}
.y1c_c00259{bottom:468.840450px;}
.y1b_c00259{bottom:489.540450px;}
.y1a_c00259{bottom:510.240450px;}
.y19_c00259{bottom:530.940450px;}
.y18_c00259{bottom:551.640450px;}
.y17_c00259{bottom:572.340450px;}
.y16_c00259{bottom:593.040450px;}
.y15_c00259{bottom:613.740450px;}
.y14_c00259{bottom:634.440450px;}
.y13_c00259{bottom:655.140450px;}
.y12_c00259{bottom:675.840450px;}
.y11_c00259{bottom:696.540450px;}
.y10_c00259{bottom:717.240450px;}
.yf_c00259{bottom:737.940450px;}
.ye_c00259{bottom:758.640450px;}
.yd_c00259{bottom:779.340450px;}
.yc_c00259{bottom:800.040450px;}
.yb_c00259{bottom:849.090450px;}
.ya_c00259{bottom:880.140450px;}
.y9_c00259{bottom:911.190450px;}
.y8_c00259{bottom:942.240450px;}
.y7_c00259{bottom:973.290450px;}
.y6_c00259{bottom:1004.340450px;}
.y5_c00259{bottom:1035.390450px;}
.y4_c00259{bottom:1066.440450px;}
.y3_c00259{bottom:1097.490450px;}
.h1_c00259{height:63.175781px;}
.h2_c00259{height:64.546875px;}
.h0_c00259{height:1263.000000px;}
.w1_c00259{width:892.500000px;}
.w0_c00259{width:892.830000px;}
.x0_c00259{left:0.000000px;}
.x2_c00259{left:127.620000px;}
.x3_c00259{left:148.950000px;}
.x1_c00259{left:695.880000px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.lsc_c00259{letter-spacing:-0.089600pt;}
.lsd_c00259{letter-spacing:-0.076800pt;}
.ls8_c00259{letter-spacing:-0.070400pt;}
.lsa_c00259{letter-spacing:-0.064000pt;}
.ls5_c00259{letter-spacing:-0.057600pt;}
.ls6_c00259{letter-spacing:-0.051200pt;}
.ls2_c00259{letter-spacing:-0.044800pt;}
.ls9_c00259{letter-spacing:-0.038400pt;}
.ls3_c00259{letter-spacing:-0.032000pt;}
.ls7_c00259{letter-spacing:-0.025600pt;}
.ls1_c00259{letter-spacing:-0.019200pt;}
.ls4_c00259{letter-spacing:-0.012800pt;}
.lsb_c00259{letter-spacing:-0.006400pt;}
.ls0_c00259{letter-spacing:0.000000pt;}
.wse_c00259{word-spacing:-4.076800pt;}
.wsd_c00259{word-spacing:-4.012800pt;}
.wsa_c00259{word-spacing:-2.464000pt;}
.ws9_c00259{word-spacing:-2.406400pt;}
.ws8_c00259{word-spacing:-2.374400pt;}
.ws34_c00259{word-spacing:-1.408000pt;}
.ws35_c00259{word-spacing:-1.382400pt;}
.ws0_c00259{word-spacing:0.000000pt;}
.ws2d_c00259{word-spacing:0.108800pt;}
.ws1b_c00259{word-spacing:0.147200pt;}
.ws33_c00259{word-spacing:0.160000pt;}
.ws11_c00259{word-spacing:0.166400pt;}
.ws2a_c00259{word-spacing:0.172800pt;}
.ws17_c00259{word-spacing:0.416000pt;}
.ws19_c00259{word-spacing:0.467200pt;}
.ws23_c00259{word-spacing:0.499200pt;}
.ws22_c00259{word-spacing:0.512000pt;}
.ws18_c00259{word-spacing:0.524800pt;}
.ws25_c00259{word-spacing:0.768000pt;}
.ws24_c00259{word-spacing:0.780800pt;}
.ws10_c00259{word-spacing:0.806400pt;}
.wsf_c00259{word-spacing:0.889600pt;}
.ws2f_c00259{word-spacing:1.094400pt;}
.ws2e_c00259{word-spacing:1.145600pt;}
.ws21_c00259{word-spacing:1.779200pt;}
.ws5_c00259{word-spacing:2.022400pt;}
.ws6_c00259{word-spacing:2.099200pt;}
.ws26_c00259{word-spacing:4.640000pt;}
.ws27_c00259{word-spacing:4.672000pt;}
.ws29_c00259{word-spacing:5.907200pt;}
.ws28_c00259{word-spacing:5.913600pt;}
.ws14_c00259{word-spacing:6.809600pt;}
.ws13_c00259{word-spacing:6.963200pt;}
.ws16_c00259{word-spacing:7.404800pt;}
.ws15_c00259{word-spacing:7.526400pt;}
.ws20_c00259{word-spacing:7.859200pt;}
.ws4_c00259{word-spacing:8.115200pt;}
.ws3_c00259{word-spacing:8.179200pt;}
.ws36_c00259{word-spacing:9.804800pt;}
.ws31_c00259{word-spacing:15.219200pt;}
.ws32_c00259{word-spacing:15.244800pt;}
.ws1e_c00259{word-spacing:15.513600pt;}
.ws1f_c00259{word-spacing:15.545600pt;}
.wsc_c00259{word-spacing:18.380800pt;}
.wsb_c00259{word-spacing:18.412800pt;}
.ws2c_c00259{word-spacing:19.622400pt;}
.ws2b_c00259{word-spacing:19.673600pt;}
.ws1a_c00259{word-spacing:19.692800pt;}
.ws1_c00259{word-spacing:23.520000pt;}
.ws2_c00259{word-spacing:23.545600pt;}
.ws30_c00259{word-spacing:24.460800pt;}
.ws1d_c00259{word-spacing:24.800000pt;}
.ws1c_c00259{word-spacing:24.851200pt;}
.ws7_c00259{word-spacing:27.692800pt;}
.ws12_c00259{word-spacing:34.483200pt;}
._0_c00259{margin-left:-34.304000pt;}
._1_c00259{width:1.152000pt;}
.fs0_c00259{font-size:64.000000pt;}
.y0_c00259{bottom:0.000000pt;}
.y2_c00259{bottom:41.627067pt;}
.y1_c00259{bottom:60.027067pt;}
.y25_c00259{bottom:153.627067pt;}
.y24_c00259{bottom:181.227067pt;}
.y23_c00259{bottom:208.827067pt;}
.y22_c00259{bottom:252.427067pt;}
.y21_c00259{bottom:280.027067pt;}
.y20_c00259{bottom:307.627067pt;}
.y1f_c00259{bottom:335.147067pt;}
.y1e_c00259{bottom:362.747067pt;}
.y1d_c00259{bottom:390.347067pt;}
.y1c_c00259{bottom:416.747067pt;}
.y1b_c00259{bottom:435.147067pt;}
.y1a_c00259{bottom:453.547067pt;}
.y19_c00259{bottom:471.947067pt;}
.y18_c00259{bottom:490.347067pt;}
.y17_c00259{bottom:508.747067pt;}
.y16_c00259{bottom:527.147067pt;}
.y15_c00259{bottom:545.547067pt;}
.y14_c00259{bottom:563.947067pt;}
.y13_c00259{bottom:582.347067pt;}
.y12_c00259{bottom:600.747067pt;}
.y11_c00259{bottom:619.147067pt;}
.y10_c00259{bottom:637.547067pt;}
.yf_c00259{bottom:655.947067pt;}
.ye_c00259{bottom:674.347067pt;}
.yd_c00259{bottom:692.747067pt;}
.yc_c00259{bottom:711.147067pt;}
.yb_c00259{bottom:754.747067pt;}
.ya_c00259{bottom:782.347067pt;}
.y9_c00259{bottom:809.947067pt;}
.y8_c00259{bottom:837.547067pt;}
.y7_c00259{bottom:865.147067pt;}
.y6_c00259{bottom:892.747067pt;}
.y5_c00259{bottom:920.347067pt;}
.y4_c00259{bottom:947.947067pt;}
.y3_c00259{bottom:975.547067pt;}
.h1_c00259{height:56.156250pt;}
.h2_c00259{height:57.375000pt;}
.h0_c00259{height:1122.666667pt;}
.w1_c00259{width:793.333333pt;}
.w0_c00259{width:793.626667pt;}
.x0_c00259{left:0.000000pt;}
.x2_c00259{left:113.440000pt;}
.x3_c00259{left:132.400000pt;}
.x1_c00259{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0aaacdb224baac00e362f9ff.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.093262;font-style:normal;font-weight:normal;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_4ff1e592219888f6abbb9dc6.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls10_c00260{letter-spacing:-0.079200px;}
.lsc_c00260{letter-spacing:-0.072000px;}
.ls4_c00260{letter-spacing:-0.064800px;}
.ls5_c00260{letter-spacing:-0.057600px;}
.lsd_c00260{letter-spacing:-0.050400px;}
.ls7_c00260{letter-spacing:-0.043200px;}
.ls9_c00260{letter-spacing:-0.036000px;}
.ls6_c00260{letter-spacing:-0.028800px;}
.lsa_c00260{letter-spacing:-0.021600px;}
.lsb_c00260{letter-spacing:-0.014400px;}
.lsf_c00260{letter-spacing:-0.007200px;}
.ls3_c00260{letter-spacing:0.000000px;}
.ls8_c00260{letter-spacing:0.007200px;}
.lse_c00260{letter-spacing:0.021600px;}
.ls0_c00260{letter-spacing:0.036000px;}
.ls2_c00260{letter-spacing:6.120000px;}
.ls1_c00260{letter-spacing:14.760000px;}
.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:-20.052000px;}
.ws2f_c00260{word-spacing:-4.168800px;}
.ws30_c00260{word-spacing:-4.132800px;}
.wsa_c00260{word-spacing:-3.060000px;}
.wsb_c00260{word-spacing:-2.959200px;}
.ws19_c00260{word-spacing:-2.044800px;}
.ws18_c00260{word-spacing:-1.987200px;}
.ws10_c00260{word-spacing:-0.633600px;}
.wsf_c00260{word-spacing:-0.489600px;}
.ws1_c00260{word-spacing:0.000000px;}
.ws13_c00260{word-spacing:0.115200px;}
.ws14_c00260{word-spacing:0.129600px;}
.ws4_c00260{word-spacing:0.187200px;}
.ws24_c00260{word-spacing:0.194400px;}
.ws1f_c00260{word-spacing:0.482400px;}
.ws1e_c00260{word-spacing:0.640800px;}
.ws22_c00260{word-spacing:1.245600px;}
.ws23_c00260{word-spacing:1.339200px;}
.ws2a_c00260{word-spacing:1.648800px;}
.ws1a_c00260{word-spacing:2.232000px;}
.ws1b_c00260{word-spacing:2.368800px;}
.ws33_c00260{word-spacing:3.715200px;}
.ws34_c00260{word-spacing:3.780000px;}
.ws8_c00260{word-spacing:4.075200px;}
.ws9_c00260{word-spacing:4.154400px;}
.ws11_c00260{word-spacing:4.492800px;}
.ws12_c00260{word-spacing:4.514400px;}
.ws27_c00260{word-spacing:4.888800px;}
.wsd_c00260{word-spacing:5.572800px;}
.wsc_c00260{word-spacing:5.580000px;}
.wse_c00260{word-spacing:5.594400px;}
.ws26_c00260{word-spacing:6.991200px;}
.ws25_c00260{word-spacing:7.056000px;}
.ws29_c00260{word-spacing:8.798400px;}
.ws28_c00260{word-spacing:8.892000px;}
.ws3_c00260{word-spacing:9.936000px;}
.ws2_c00260{word-spacing:9.943200px;}
.ws36_c00260{word-spacing:11.592000px;}
.ws35_c00260{word-spacing:11.707200px;}
.ws1d_c00260{word-spacing:12.117600px;}
.ws1c_c00260{word-spacing:12.146400px;}
.ws2d_c00260{word-spacing:13.053600px;}
.ws2c_c00260{word-spacing:13.118400px;}
.ws2b_c00260{word-spacing:13.161600px;}
.ws2e_c00260{word-spacing:13.197600px;}
.ws7_c00260{word-spacing:15.991200px;}
.ws15_c00260{word-spacing:16.099200px;}
.ws6_c00260{word-spacing:16.185600px;}
.ws32_c00260{word-spacing:18.835200px;}
.ws20_c00260{word-spacing:18.885600px;}
.ws21_c00260{word-spacing:18.907200px;}
.ws31_c00260{word-spacing:18.936000px;}
.ws17_c00260{word-spacing:19.216800px;}
.ws16_c00260{word-spacing:19.288800px;}
.ws5_c00260{word-spacing:22.536000px;}
._0_c00260{width:1.015200px;}
.fc0_c00260{color:rgb(0,0,0);}
.fs0_c00260{font-size:72.000000px;}
.y0_c00260{bottom:0.000000px;}
.y2_c00260{bottom:46.830450px;}
.y1_c00260{bottom:67.530450px;}
.y20_c00260{bottom:143.130450px;}
.y1f_c00260{bottom:174.180450px;}
.y1e_c00260{bottom:205.230450px;}
.y1d_c00260{bottom:236.280450px;}
.y1c_c00260{bottom:267.330450px;}
.y1b_c00260{bottom:298.380450px;}
.y1a_c00260{bottom:329.430450px;}
.y19_c00260{bottom:360.390450px;}
.y18_c00260{bottom:391.440450px;}
.y17_c00260{bottom:422.490450px;}
.y16_c00260{bottom:453.540450px;}
.y15_c00260{bottom:502.590450px;}
.y14_c00260{bottom:533.640450px;}
.y13_c00260{bottom:564.690450px;}
.y12_c00260{bottom:595.740450px;}
.y11_c00260{bottom:626.790450px;}
.y10_c00260{bottom:657.840450px;}
.yf_c00260{bottom:688.890450px;}
.ye_c00260{bottom:719.940450px;}
.yd_c00260{bottom:750.990450px;}
.yc_c00260{bottom:800.040450px;}
.yb_c00260{bottom:831.090450px;}
.ya_c00260{bottom:862.140450px;}
.y9_c00260{bottom:893.190450px;}
.y8_c00260{bottom:924.240450px;}
.y7_c00260{bottom:955.290450px;}
.y6_c00260{bottom:986.340450px;}
.y5_c00260{bottom:1017.390450px;}
.y4_c00260{bottom:1066.440450px;}
.y3_c00260{bottom:1097.490450px;}
.h1_c00260{height:63.175781px;}
.h2_c00260{height:64.546875px;}
.h0_c00260{height:1263.000000px;}
.w1_c00260{width:892.500000px;}
.w0_c00260{width:892.830000px;}
.x0_c00260{left:0.000000px;}
.x2_c00260{left:170.100000px;}
.x1_c00260{left:738.360000px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls10_c00260{letter-spacing:-0.070400pt;}
.lsc_c00260{letter-spacing:-0.064000pt;}
.ls4_c00260{letter-spacing:-0.057600pt;}
.ls5_c00260{letter-spacing:-0.051200pt;}
.lsd_c00260{letter-spacing:-0.044800pt;}
.ls7_c00260{letter-spacing:-0.038400pt;}
.ls9_c00260{letter-spacing:-0.032000pt;}
.ls6_c00260{letter-spacing:-0.025600pt;}
.lsa_c00260{letter-spacing:-0.019200pt;}
.lsb_c00260{letter-spacing:-0.012800pt;}
.lsf_c00260{letter-spacing:-0.006400pt;}
.ls3_c00260{letter-spacing:0.000000pt;}
.ls8_c00260{letter-spacing:0.006400pt;}
.lse_c00260{letter-spacing:0.019200pt;}
.ls0_c00260{letter-spacing:0.032000pt;}
.ls2_c00260{letter-spacing:5.440000pt;}
.ls1_c00260{letter-spacing:13.120000pt;}
.ws0_c00260{word-spacing:-17.824000pt;}
.ws2f_c00260{word-spacing:-3.705600pt;}
.ws30_c00260{word-spacing:-3.673600pt;}
.wsa_c00260{word-spacing:-2.720000pt;}
.wsb_c00260{word-spacing:-2.630400pt;}
.ws19_c00260{word-spacing:-1.817600pt;}
.ws18_c00260{word-spacing:-1.766400pt;}
.ws10_c00260{word-spacing:-0.563200pt;}
.wsf_c00260{word-spacing:-0.435200pt;}
.ws1_c00260{word-spacing:0.000000pt;}
.ws13_c00260{word-spacing:0.102400pt;}
.ws14_c00260{word-spacing:0.115200pt;}
.ws4_c00260{word-spacing:0.166400pt;}
.ws24_c00260{word-spacing:0.172800pt;}
.ws1f_c00260{word-spacing:0.428800pt;}
.ws1e_c00260{word-spacing:0.569600pt;}
.ws22_c00260{word-spacing:1.107200pt;}
.ws23_c00260{word-spacing:1.190400pt;}
.ws2a_c00260{word-spacing:1.465600pt;}
.ws1a_c00260{word-spacing:1.984000pt;}
.ws1b_c00260{word-spacing:2.105600pt;}
.ws33_c00260{word-spacing:3.302400pt;}
.ws34_c00260{word-spacing:3.360000pt;}
.ws8_c00260{word-spacing:3.622400pt;}
.ws9_c00260{word-spacing:3.692800pt;}
.ws11_c00260{word-spacing:3.993600pt;}
.ws12_c00260{word-spacing:4.012800pt;}
.ws27_c00260{word-spacing:4.345600pt;}
.wsd_c00260{word-spacing:4.953600pt;}
.wsc_c00260{word-spacing:4.960000pt;}
.wse_c00260{word-spacing:4.972800pt;}
.ws26_c00260{word-spacing:6.214400pt;}
.ws25_c00260{word-spacing:6.272000pt;}
.ws29_c00260{word-spacing:7.820800pt;}
.ws28_c00260{word-spacing:7.904000pt;}
.ws3_c00260{word-spacing:8.832000pt;}
.ws2_c00260{word-spacing:8.838400pt;}
.ws36_c00260{word-spacing:10.304000pt;}
.ws35_c00260{word-spacing:10.406400pt;}
.ws1d_c00260{word-spacing:10.771200pt;}
.ws1c_c00260{word-spacing:10.796800pt;}
.ws2d_c00260{word-spacing:11.603200pt;}
.ws2c_c00260{word-spacing:11.660800pt;}
.ws2b_c00260{word-spacing:11.699200pt;}
.ws2e_c00260{word-spacing:11.731200pt;}
.ws7_c00260{word-spacing:14.214400pt;}
.ws15_c00260{word-spacing:14.310400pt;}
.ws6_c00260{word-spacing:14.387200pt;}
.ws32_c00260{word-spacing:16.742400pt;}
.ws20_c00260{word-spacing:16.787200pt;}
.ws21_c00260{word-spacing:16.806400pt;}
.ws31_c00260{word-spacing:16.832000pt;}
.ws17_c00260{word-spacing:17.081600pt;}
.ws16_c00260{word-spacing:17.145600pt;}
.ws5_c00260{word-spacing:20.032000pt;}
._0_c00260{width:0.902400pt;}
.fs0_c00260{font-size:64.000000pt;}
.y0_c00260{bottom:0.000000pt;}
.y2_c00260{bottom:41.627067pt;}
.y1_c00260{bottom:60.027067pt;}
.y20_c00260{bottom:127.227067pt;}
.y1f_c00260{bottom:154.827067pt;}
.y1e_c00260{bottom:182.427067pt;}
.y1d_c00260{bottom:210.027067pt;}
.y1c_c00260{bottom:237.627067pt;}
.y1b_c00260{bottom:265.227067pt;}
.y1a_c00260{bottom:292.827067pt;}
.y19_c00260{bottom:320.347067pt;}
.y18_c00260{bottom:347.947067pt;}
.y17_c00260{bottom:375.547067pt;}
.y16_c00260{bottom:403.147067pt;}
.y15_c00260{bottom:446.747067pt;}
.y14_c00260{bottom:474.347067pt;}
.y13_c00260{bottom:501.947067pt;}
.y12_c00260{bottom:529.547067pt;}
.y11_c00260{bottom:557.147067pt;}
.y10_c00260{bottom:584.747067pt;}
.yf_c00260{bottom:612.347067pt;}
.ye_c00260{bottom:639.947067pt;}
.yd_c00260{bottom:667.547067pt;}
.yc_c00260{bottom:711.147067pt;}
.yb_c00260{bottom:738.747067pt;}
.ya_c00260{bottom:766.347067pt;}
.y9_c00260{bottom:793.947067pt;}
.y8_c00260{bottom:821.547067pt;}
.y7_c00260{bottom:849.147067pt;}
.y6_c00260{bottom:876.747067pt;}
.y5_c00260{bottom:904.347067pt;}
.y4_c00260{bottom:947.947067pt;}
.y3_c00260{bottom:975.547067pt;}
.h1_c00260{height:56.156250pt;}
.h2_c00260{height:57.375000pt;}
.h0_c00260{height:1122.666667pt;}
.w1_c00260{width:793.333333pt;}
.w0_c00260{width:793.626667pt;}
.x0_c00260{left:0.000000pt;}
.x2_c00260{left:151.200000pt;}
.x1_c00260{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_042e6384f52f3042db6b7fff.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.093262;font-style:normal;font-weight:normal;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_6623cafc84305c1676432dcf.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls9_c00261{letter-spacing:-0.057600px;}
.ls3_c00261{letter-spacing:-0.050400px;}
.ls7_c00261{letter-spacing:-0.043200px;}
.ls4_c00261{letter-spacing:-0.036000px;}
.ls6_c00261{letter-spacing:-0.028800px;}
.ls5_c00261{letter-spacing:-0.014400px;}
.ls8_c00261{letter-spacing:-0.007200px;}
.ls2_c00261{letter-spacing:0.000000px;}
.ls0_c00261{letter-spacing:0.036000px;}
.ls1_c00261{letter-spacing:1.800000px;}
.lsa_c00261{letter-spacing:843.998400px;}
.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;}
}
.ws0_c00261{word-spacing:-20.052000px;}
.wsf_c00261{word-spacing:-0.144000px;}
.ws1_c00261{word-spacing:0.000000px;}
.ws11_c00261{word-spacing:0.165600px;}
.ws9_c00261{word-spacing:0.172800px;}
.ws6_c00261{word-spacing:0.187200px;}
.ws8_c00261{word-spacing:0.194400px;}
.ws10_c00261{word-spacing:0.208800px;}
.ws3_c00261{word-spacing:2.354400px;}
.ws2_c00261{word-spacing:2.368800px;}
.wsd_c00261{word-spacing:3.261600px;}
.wsc_c00261{word-spacing:3.441600px;}
.ws7_c00261{word-spacing:13.874400px;}
.wsa_c00261{word-spacing:15.753600px;}
.wsb_c00261{word-spacing:15.775200px;}
.ws5_c00261{word-spacing:24.940800px;}
.wse_c00261{word-spacing:25.005600px;}
.ws4_c00261{word-spacing:25.048800px;}
._0_c00261{width:1.332000px;}
.fc0_c00261{color:rgb(0,0,0);}
.fs0_c00261{font-size:72.000000px;}
.y0_c00261{bottom:0.000000px;}
.y2_c00261{bottom:46.830450px;}
.y1_c00261{bottom:67.530450px;}
.y10_c00261{bottom:621.840450px;}
.yf_c00261{bottom:670.890450px;}
.ye_c00261{bottom:719.940450px;}
.yd_c00261{bottom:750.990450px;}
.yc_c00261{bottom:782.040450px;}
.yb_c00261{bottom:813.090450px;}
.ya_c00261{bottom:844.140450px;}
.y9_c00261{bottom:893.190450px;}
.y8_c00261{bottom:924.240450px;}
.y7_c00261{bottom:955.290450px;}
.y6_c00261{bottom:1004.340450px;}
.y5_c00261{bottom:1035.390450px;}
.y4_c00261{bottom:1066.440450px;}
.y3_c00261{bottom:1097.490450px;}
.h1_c00261{height:63.175781px;}
.h2_c00261{height:64.546875px;}
.h0_c00261{height:1263.000000px;}
.w1_c00261{width:892.500000px;}
.w0_c00261{width:892.830000px;}
.x0_c00261{left:0.000000px;}
.x2_c00261{left:127.620000px;}
.x1_c00261{left:695.880000px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls9_c00261{letter-spacing:-0.051200pt;}
.ls3_c00261{letter-spacing:-0.044800pt;}
.ls7_c00261{letter-spacing:-0.038400pt;}
.ls4_c00261{letter-spacing:-0.032000pt;}
.ls6_c00261{letter-spacing:-0.025600pt;}
.ls5_c00261{letter-spacing:-0.012800pt;}
.ls8_c00261{letter-spacing:-0.006400pt;}
.ls2_c00261{letter-spacing:0.000000pt;}
.ls0_c00261{letter-spacing:0.032000pt;}
.ls1_c00261{letter-spacing:1.600000pt;}
.lsa_c00261{letter-spacing:750.220800pt;}
.ws0_c00261{word-spacing:-17.824000pt;}
.wsf_c00261{word-spacing:-0.128000pt;}
.ws1_c00261{word-spacing:0.000000pt;}
.ws11_c00261{word-spacing:0.147200pt;}
.ws9_c00261{word-spacing:0.153600pt;}
.ws6_c00261{word-spacing:0.166400pt;}
.ws8_c00261{word-spacing:0.172800pt;}
.ws10_c00261{word-spacing:0.185600pt;}
.ws3_c00261{word-spacing:2.092800pt;}
.ws2_c00261{word-spacing:2.105600pt;}
.wsd_c00261{word-spacing:2.899200pt;}
.wsc_c00261{word-spacing:3.059200pt;}
.ws7_c00261{word-spacing:12.332800pt;}
.wsa_c00261{word-spacing:14.003200pt;}
.wsb_c00261{word-spacing:14.022400pt;}
.ws5_c00261{word-spacing:22.169600pt;}
.wse_c00261{word-spacing:22.227200pt;}
.ws4_c00261{word-spacing:22.265600pt;}
._0_c00261{width:1.184000pt;}
.fs0_c00261{font-size:64.000000pt;}
.y0_c00261{bottom:0.000000pt;}
.y2_c00261{bottom:41.627067pt;}
.y1_c00261{bottom:60.027067pt;}
.y10_c00261{bottom:552.747067pt;}
.yf_c00261{bottom:596.347067pt;}
.ye_c00261{bottom:639.947067pt;}
.yd_c00261{bottom:667.547067pt;}
.yc_c00261{bottom:695.147067pt;}
.yb_c00261{bottom:722.747067pt;}
.ya_c00261{bottom:750.347067pt;}
.y9_c00261{bottom:793.947067pt;}
.y8_c00261{bottom:821.547067pt;}
.y7_c00261{bottom:849.147067pt;}
.y6_c00261{bottom:892.747067pt;}
.y5_c00261{bottom:920.347067pt;}
.y4_c00261{bottom:947.947067pt;}
.y3_c00261{bottom:975.547067pt;}
.h1_c00261{height:56.156250pt;}
.h2_c00261{height:57.375000pt;}
.h0_c00261{height:1122.666667pt;}
.w1_c00261{width:793.333333pt;}
.w0_c00261{width:793.626667pt;}
.x0_c00261{left:0.000000pt;}
.x2_c00261{left:113.440000pt;}
.x1_c00261{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_af0c2eb617871f8df47ea339.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.093262;font-style:normal;font-weight:normal;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_31e1c3fa6d8804312e533db2.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00262;src:url('chunks/assets/font_16f7f768576eec3f2265c8c9.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:1.106934;font-style:normal;font-weight:normal;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_c874f171a5af49a8cf2852f0.woff2')format("woff");}.ff4_c00262{font-family:ff4_c00262;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls8_c00262{letter-spacing:-0.086400px;}
.lsa_c00262{letter-spacing:-0.072000px;}
.lsd_c00262{letter-spacing:-0.064800px;}
.ls6_c00262{letter-spacing:-0.057600px;}
.ls7_c00262{letter-spacing:-0.050400px;}
.ls5_c00262{letter-spacing:-0.043200px;}
.ls4_c00262{letter-spacing:-0.036000px;}
.ls9_c00262{letter-spacing:-0.028800px;}
.lse_c00262{letter-spacing:-0.021600px;}
.lsb_c00262{letter-spacing:-0.014400px;}
.lsf_c00262{letter-spacing:-0.007200px;}
.ls3_c00262{letter-spacing:0.000000px;}
.ls1_c00262{letter-spacing:0.014400px;}
.lsc_c00262{letter-spacing:0.036000px;}
.ls0_c00262{letter-spacing:0.058716px;}
.ls2_c00262{letter-spacing:0.072000px;}
.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:-20.088000px;}
.ws0_c00262{word-spacing:-20.030400px;}
.ws9_c00262{word-spacing:-1.584000px;}
.wsa_c00262{word-spacing:-1.555200px;}
.ws16_c00262{word-spacing:-0.792000px;}
.ws18_c00262{word-spacing:-0.532800px;}
.ws1d_c00262{word-spacing:-0.309600px;}
.ws1b_c00262{word-spacing:-0.216000px;}
.ws6_c00262{word-spacing:-0.158400px;}
.ws1c_c00262{word-spacing:-0.144000px;}
.ws7_c00262{word-spacing:-0.028800px;}
.ws2_c00262{word-spacing:0.000000px;}
.ws3_c00262{word-spacing:0.033552px;}
.ws28_c00262{word-spacing:0.165600px;}
.ws32_c00262{word-spacing:0.172800px;}
.wsb_c00262{word-spacing:0.187200px;}
.ws27_c00262{word-spacing:0.273600px;}
.wsc_c00262{word-spacing:0.439200px;}
.ws20_c00262{word-spacing:1.202400px;}
.ws21_c00262{word-spacing:1.231200px;}
.ws2a_c00262{word-spacing:1.238400px;}
.ws29_c00262{word-spacing:1.288800px;}
.ws23_c00262{word-spacing:2.527200px;}
.ws22_c00262{word-spacing:2.620800px;}
.ws24_c00262{word-spacing:2.764800px;}
.ws8_c00262{word-spacing:3.794400px;}
.ws30_c00262{word-spacing:4.104000px;}
.ws31_c00262{word-spacing:4.154400px;}
.ws2d_c00262{word-spacing:7.020000px;}
.ws2c_c00262{word-spacing:7.041600px;}
.ws1a_c00262{word-spacing:8.834400px;}
.ws19_c00262{word-spacing:8.892000px;}
.ws14_c00262{word-spacing:12.067200px;}
.ws13_c00262{word-spacing:12.088800px;}
.ws10_c00262{word-spacing:13.010400px;}
.wsf_c00262{word-spacing:13.154400px;}
.ws2f_c00262{word-spacing:13.795200px;}
.ws26_c00262{word-spacing:13.860000px;}
.ws2e_c00262{word-spacing:13.874400px;}
.ws25_c00262{word-spacing:13.903200px;}
.ws11_c00262{word-spacing:14.241600px;}
.ws12_c00262{word-spacing:14.335200px;}
.ws4_c00262{word-spacing:14.594400px;}
.wse_c00262{word-spacing:17.020800px;}
.wsd_c00262{word-spacing:17.121600px;}
.ws1f_c00262{word-spacing:18.892800px;}
.ws1e_c00262{word-spacing:18.914400px;}
.ws17_c00262{word-spacing:19.641600px;}
.ws15_c00262{word-spacing:20.714400px;}
.ws5_c00262{word-spacing:23.594400px;}
.ws2b_c00262{word-spacing:25.740000px;}
._1_c00262{width:1.080000px;}
._0_c00262{width:43.953120px;}
.fc0_c00262{color:rgb(0,0,0);}
.fs0_c00262{font-size:72.000000px;}
.fs1_c00262{font-size:83.880000px;}
.y0_c00262{bottom:0.000000px;}
.y2_c00262{bottom:46.830450px;}
.y1_c00262{bottom:67.530450px;}
.y23_c00262{bottom:149.070450px;}
.y22_c00262{bottom:169.770450px;}
.y21_c00262{bottom:190.470450px;}
.y20_c00262{bottom:211.170450px;}
.y1f_c00262{bottom:231.870450px;}
.y1e_c00262{bottom:252.570450px;}
.y1d_c00262{bottom:301.620450px;}
.y1c_c00262{bottom:332.670450px;}
.y1b_c00262{bottom:363.720450px;}
.y1a_c00262{bottom:394.770450px;}
.y19_c00262{bottom:425.820450px;}
.y18_c00262{bottom:474.870450px;}
.y17_c00262{bottom:504.570450px;}
.y16_c00262{bottom:525.270450px;}
.y15_c00262{bottom:545.970450px;}
.y14_c00262{bottom:566.670450px;}
.y13_c00262{bottom:587.370450px;}
.y12_c00262{bottom:608.070450px;}
.y11_c00262{bottom:628.770450px;}
.y10_c00262{bottom:649.470450px;}
.yf_c00262{bottom:670.170450px;}
.ye_c00262{bottom:690.870450px;}
.yd_c00262{bottom:739.920450px;}
.yc_c00262{bottom:770.970450px;}
.yb_c00262{bottom:802.020450px;}
.ya_c00262{bottom:851.070450px;}
.y9_c00262{bottom:882.120450px;}
.y8_c00262{bottom:913.170450px;}
.y7_c00262{bottom:944.220450px;}
.y6_c00262{bottom:975.270450px;}
.y5_c00262{bottom:1006.320450px;}
.y4_c00262{bottom:1055.370450px;}
.y3_c00262{bottom:1094.520450px;}
.h1_c00262{height:63.175781px;}
.h3_c00262{height:64.546875px;}
.h4_c00262{height:75.093750px;}
.h2_c00262{height:87.484219px;}
.h0_c00262{height:1263.000000px;}
.w1_c00262{width:892.500000px;}
.w0_c00262{width:892.830000px;}
.x0_c00262{left:0.000000px;}
.x2_c00262{left:170.100000px;}
.x4_c00262{left:191.430000px;}
.x3_c00262{left:278.100000px;}
.x1_c00262{left:738.360000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls8_c00262{letter-spacing:-0.076800pt;}
.lsa_c00262{letter-spacing:-0.064000pt;}
.lsd_c00262{letter-spacing:-0.057600pt;}
.ls6_c00262{letter-spacing:-0.051200pt;}
.ls7_c00262{letter-spacing:-0.044800pt;}
.ls5_c00262{letter-spacing:-0.038400pt;}
.ls4_c00262{letter-spacing:-0.032000pt;}
.ls9_c00262{letter-spacing:-0.025600pt;}
.lse_c00262{letter-spacing:-0.019200pt;}
.lsb_c00262{letter-spacing:-0.012800pt;}
.lsf_c00262{letter-spacing:-0.006400pt;}
.ls3_c00262{letter-spacing:0.000000pt;}
.ls1_c00262{letter-spacing:0.012800pt;}
.lsc_c00262{letter-spacing:0.032000pt;}
.ls0_c00262{letter-spacing:0.052192pt;}
.ls2_c00262{letter-spacing:0.064000pt;}
.ws1_c00262{word-spacing:-17.856000pt;}
.ws0_c00262{word-spacing:-17.804800pt;}
.ws9_c00262{word-spacing:-1.408000pt;}
.wsa_c00262{word-spacing:-1.382400pt;}
.ws16_c00262{word-spacing:-0.704000pt;}
.ws18_c00262{word-spacing:-0.473600pt;}
.ws1d_c00262{word-spacing:-0.275200pt;}
.ws1b_c00262{word-spacing:-0.192000pt;}
.ws6_c00262{word-spacing:-0.140800pt;}
.ws1c_c00262{word-spacing:-0.128000pt;}
.ws7_c00262{word-spacing:-0.025600pt;}
.ws2_c00262{word-spacing:0.000000pt;}
.ws3_c00262{word-spacing:0.029824pt;}
.ws28_c00262{word-spacing:0.147200pt;}
.ws32_c00262{word-spacing:0.153600pt;}
.wsb_c00262{word-spacing:0.166400pt;}
.ws27_c00262{word-spacing:0.243200pt;}
.wsc_c00262{word-spacing:0.390400pt;}
.ws20_c00262{word-spacing:1.068800pt;}
.ws21_c00262{word-spacing:1.094400pt;}
.ws2a_c00262{word-spacing:1.100800pt;}
.ws29_c00262{word-spacing:1.145600pt;}
.ws23_c00262{word-spacing:2.246400pt;}
.ws22_c00262{word-spacing:2.329600pt;}
.ws24_c00262{word-spacing:2.457600pt;}
.ws8_c00262{word-spacing:3.372800pt;}
.ws30_c00262{word-spacing:3.648000pt;}
.ws31_c00262{word-spacing:3.692800pt;}
.ws2d_c00262{word-spacing:6.240000pt;}
.ws2c_c00262{word-spacing:6.259200pt;}
.ws1a_c00262{word-spacing:7.852800pt;}
.ws19_c00262{word-spacing:7.904000pt;}
.ws14_c00262{word-spacing:10.726400pt;}
.ws13_c00262{word-spacing:10.745600pt;}
.ws10_c00262{word-spacing:11.564800pt;}
.wsf_c00262{word-spacing:11.692800pt;}
.ws2f_c00262{word-spacing:12.262400pt;}
.ws26_c00262{word-spacing:12.320000pt;}
.ws2e_c00262{word-spacing:12.332800pt;}
.ws25_c00262{word-spacing:12.358400pt;}
.ws11_c00262{word-spacing:12.659200pt;}
.ws12_c00262{word-spacing:12.742400pt;}
.ws4_c00262{word-spacing:12.972800pt;}
.wse_c00262{word-spacing:15.129600pt;}
.wsd_c00262{word-spacing:15.219200pt;}
.ws1f_c00262{word-spacing:16.793600pt;}
.ws1e_c00262{word-spacing:16.812800pt;}
.ws17_c00262{word-spacing:17.459200pt;}
.ws15_c00262{word-spacing:18.412800pt;}
.ws5_c00262{word-spacing:20.972800pt;}
.ws2b_c00262{word-spacing:22.880000pt;}
._1_c00262{width:0.960000pt;}
._0_c00262{width:39.069440pt;}
.fs0_c00262{font-size:64.000000pt;}
.fs1_c00262{font-size:74.560000pt;}
.y0_c00262{bottom:0.000000pt;}
.y2_c00262{bottom:41.627067pt;}
.y1_c00262{bottom:60.027067pt;}
.y23_c00262{bottom:132.507067pt;}
.y22_c00262{bottom:150.907067pt;}
.y21_c00262{bottom:169.307067pt;}
.y20_c00262{bottom:187.707067pt;}
.y1f_c00262{bottom:206.107067pt;}
.y1e_c00262{bottom:224.507067pt;}
.y1d_c00262{bottom:268.107067pt;}
.y1c_c00262{bottom:295.707067pt;}
.y1b_c00262{bottom:323.307067pt;}
.y1a_c00262{bottom:350.907067pt;}
.y19_c00262{bottom:378.507067pt;}
.y18_c00262{bottom:422.107067pt;}
.y17_c00262{bottom:448.507067pt;}
.y16_c00262{bottom:466.907067pt;}
.y15_c00262{bottom:485.307067pt;}
.y14_c00262{bottom:503.707067pt;}
.y13_c00262{bottom:522.107067pt;}
.y12_c00262{bottom:540.507067pt;}
.y11_c00262{bottom:558.907067pt;}
.y10_c00262{bottom:577.307067pt;}
.yf_c00262{bottom:595.707067pt;}
.ye_c00262{bottom:614.107067pt;}
.yd_c00262{bottom:657.707067pt;}
.yc_c00262{bottom:685.307067pt;}
.yb_c00262{bottom:712.907067pt;}
.ya_c00262{bottom:756.507067pt;}
.y9_c00262{bottom:784.107067pt;}
.y8_c00262{bottom:811.707067pt;}
.y7_c00262{bottom:839.307067pt;}
.y6_c00262{bottom:866.907067pt;}
.y5_c00262{bottom:894.507067pt;}
.y4_c00262{bottom:938.107067pt;}
.y3_c00262{bottom:972.907067pt;}
.h1_c00262{height:56.156250pt;}
.h3_c00262{height:57.375000pt;}
.h4_c00262{height:66.750000pt;}
.h2_c00262{height:77.763750pt;}
.h0_c00262{height:1122.666667pt;}
.w1_c00262{width:793.333333pt;}
.w0_c00262{width:793.626667pt;}
.x0_c00262{left:0.000000pt;}
.x2_c00262{left:151.200000pt;}
.x4_c00262{left:170.160000pt;}
.x3_c00262{left:247.200000pt;}
.x1_c00262{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c5ff0f7fc33a3623741df946.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.093262;font-style:normal;font-weight:normal;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_00d98adac09b4c4bb5b1171f.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.ls7_c00263{letter-spacing:-0.079200px;}
.lsa_c00263{letter-spacing:-0.072000px;}
.ls5_c00263{letter-spacing:-0.064800px;}
.ls8_c00263{letter-spacing:-0.057600px;}
.ls4_c00263{letter-spacing:-0.050400px;}
.ls2_c00263{letter-spacing:-0.043200px;}
.ls1_c00263{letter-spacing:-0.036000px;}
.ls3_c00263{letter-spacing:-0.028800px;}
.ls6_c00263{letter-spacing:-0.021600px;}
.lsc_c00263{letter-spacing:-0.014400px;}
.ls0_c00263{letter-spacing:0.000000px;}
.ls9_c00263{letter-spacing:0.007200px;}
.lsb_c00263{letter-spacing:0.014400px;}
.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;}
}
.wsa_c00263{word-spacing:-3.751200px;}
.ws9_c00263{word-spacing:-3.736800px;}
.ws25_c00263{word-spacing:-3.420000px;}
.ws24_c00263{word-spacing:-3.405600px;}
.ws18_c00263{word-spacing:-3.060000px;}
.ws1b_c00263{word-spacing:-2.685600px;}
.ws27_c00263{word-spacing:-1.965600px;}
.ws26_c00263{word-spacing:-1.879200px;}
.ws2c_c00263{word-spacing:-0.547200px;}
.ws3_c00263{word-spacing:-0.532800px;}
.ws4_c00263{word-spacing:-0.511200px;}
.ws2d_c00263{word-spacing:-0.482400px;}
.ws0_c00263{word-spacing:0.000000px;}
.ws22_c00263{word-spacing:0.086400px;}
.ws23_c00263{word-spacing:0.129600px;}
.ws1c_c00263{word-spacing:0.144000px;}
.ws8_c00263{word-spacing:0.194400px;}
.wsc_c00263{word-spacing:0.460800px;}
.wsb_c00263{word-spacing:0.489600px;}
.ws21_c00263{word-spacing:1.648800px;}
.wsf_c00263{word-spacing:1.944000px;}
.ws31_c00263{word-spacing:1.980000px;}
.ws30_c00263{word-spacing:2.030400px;}
.ws10_c00263{word-spacing:2.037600px;}
.ws11_c00263{word-spacing:3.664800px;}
.ws12_c00263{word-spacing:3.859200px;}
.ws1d_c00263{word-spacing:5.169600px;}
.wsd_c00263{word-spacing:5.580000px;}
.ws2b_c00263{word-spacing:5.594400px;}
.wse_c00263{word-spacing:5.652000px;}
.ws2_c00263{word-spacing:9.849600px;}
.ws1_c00263{word-spacing:9.914400px;}
.ws14_c00263{word-spacing:10.980000px;}
.ws13_c00263{word-spacing:10.994400px;}
.ws20_c00263{word-spacing:13.888800px;}
.ws1f_c00263{word-spacing:13.896000px;}
.ws7_c00263{word-spacing:17.143200px;}
.ws6_c00263{word-spacing:17.287200px;}
.ws28_c00263{word-spacing:19.620000px;}
.ws29_c00263{word-spacing:19.634400px;}
.ws2a_c00263{word-spacing:19.980000px;}
.ws5_c00263{word-spacing:21.434400px;}
.ws1e_c00263{word-spacing:21.780000px;}
.ws16_c00263{word-spacing:25.027200px;}
.ws15_c00263{word-spacing:25.128000px;}
.ws1a_c00263{word-spacing:33.580800px;}
.ws19_c00263{word-spacing:33.710400px;}
.ws17_c00263{word-spacing:51.688800px;}
.ws2e_c00263{word-spacing:69.660000px;}
.ws2f_c00263{word-spacing:69.688800px;}
._0_c00263{width:1.008000px;}
.fc0_c00263{color:rgb(0,0,0);}
.fs0_c00263{font-size:72.000000px;}
.y0_c00263{bottom:0.000000px;}
.y2_c00263{bottom:46.830450px;}
.y1_c00263{bottom:67.530450px;}
.y22_c00263{bottom:135.480450px;}
.y21_c00263{bottom:156.180450px;}
.y20_c00263{bottom:176.880450px;}
.y1f_c00263{bottom:197.580450px;}
.y1e_c00263{bottom:218.280450px;}
.y1d_c00263{bottom:238.980450px;}
.y1c_c00263{bottom:259.680450px;}
.y1b_c00263{bottom:280.380450px;}
.y1a_c00263{bottom:329.430450px;}
.y19_c00263{bottom:360.390450px;}
.y18_c00263{bottom:391.440450px;}
.y17_c00263{bottom:422.490450px;}
.y16_c00263{bottom:453.540450px;}
.y15_c00263{bottom:502.590450px;}
.y14_c00263{bottom:533.640450px;}
.y13_c00263{bottom:564.690450px;}
.y12_c00263{bottom:595.740450px;}
.y11_c00263{bottom:644.790450px;}
.y10_c00263{bottom:675.840450px;}
.yf_c00263{bottom:706.890450px;}
.ye_c00263{bottom:737.940450px;}
.yd_c00263{bottom:768.990450px;}
.yc_c00263{bottom:800.040450px;}
.yb_c00263{bottom:831.090450px;}
.ya_c00263{bottom:862.140450px;}
.y9_c00263{bottom:893.190450px;}
.y8_c00263{bottom:924.240450px;}
.y7_c00263{bottom:973.290450px;}
.y6_c00263{bottom:1004.340450px;}
.y5_c00263{bottom:1035.390450px;}
.y4_c00263{bottom:1066.440450px;}
.y3_c00263{bottom:1097.490450px;}
.h1_c00263{height:63.175781px;}
.h2_c00263{height:64.546875px;}
.h0_c00263{height:1263.000000px;}
.w1_c00263{width:892.500000px;}
.w0_c00263{width:892.830000px;}
.x0_c00263{left:0.000000px;}
.x2_c00263{left:127.620000px;}
.x3_c00263{left:148.950000px;}
.x1_c00263{left:695.880000px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls7_c00263{letter-spacing:-0.070400pt;}
.lsa_c00263{letter-spacing:-0.064000pt;}
.ls5_c00263{letter-spacing:-0.057600pt;}
.ls8_c00263{letter-spacing:-0.051200pt;}
.ls4_c00263{letter-spacing:-0.044800pt;}
.ls2_c00263{letter-spacing:-0.038400pt;}
.ls1_c00263{letter-spacing:-0.032000pt;}
.ls3_c00263{letter-spacing:-0.025600pt;}
.ls6_c00263{letter-spacing:-0.019200pt;}
.lsc_c00263{letter-spacing:-0.012800pt;}
.ls0_c00263{letter-spacing:0.000000pt;}
.ls9_c00263{letter-spacing:0.006400pt;}
.lsb_c00263{letter-spacing:0.012800pt;}
.wsa_c00263{word-spacing:-3.334400pt;}
.ws9_c00263{word-spacing:-3.321600pt;}
.ws25_c00263{word-spacing:-3.040000pt;}
.ws24_c00263{word-spacing:-3.027200pt;}
.ws18_c00263{word-spacing:-2.720000pt;}
.ws1b_c00263{word-spacing:-2.387200pt;}
.ws27_c00263{word-spacing:-1.747200pt;}
.ws26_c00263{word-spacing:-1.670400pt;}
.ws2c_c00263{word-spacing:-0.486400pt;}
.ws3_c00263{word-spacing:-0.473600pt;}
.ws4_c00263{word-spacing:-0.454400pt;}
.ws2d_c00263{word-spacing:-0.428800pt;}
.ws0_c00263{word-spacing:0.000000pt;}
.ws22_c00263{word-spacing:0.076800pt;}
.ws23_c00263{word-spacing:0.115200pt;}
.ws1c_c00263{word-spacing:0.128000pt;}
.ws8_c00263{word-spacing:0.172800pt;}
.wsc_c00263{word-spacing:0.409600pt;}
.wsb_c00263{word-spacing:0.435200pt;}
.ws21_c00263{word-spacing:1.465600pt;}
.wsf_c00263{word-spacing:1.728000pt;}
.ws31_c00263{word-spacing:1.760000pt;}
.ws30_c00263{word-spacing:1.804800pt;}
.ws10_c00263{word-spacing:1.811200pt;}
.ws11_c00263{word-spacing:3.257600pt;}
.ws12_c00263{word-spacing:3.430400pt;}
.ws1d_c00263{word-spacing:4.595200pt;}
.wsd_c00263{word-spacing:4.960000pt;}
.ws2b_c00263{word-spacing:4.972800pt;}
.wse_c00263{word-spacing:5.024000pt;}
.ws2_c00263{word-spacing:8.755200pt;}
.ws1_c00263{word-spacing:8.812800pt;}
.ws14_c00263{word-spacing:9.760000pt;}
.ws13_c00263{word-spacing:9.772800pt;}
.ws20_c00263{word-spacing:12.345600pt;}
.ws1f_c00263{word-spacing:12.352000pt;}
.ws7_c00263{word-spacing:15.238400pt;}
.ws6_c00263{word-spacing:15.366400pt;}
.ws28_c00263{word-spacing:17.440000pt;}
.ws29_c00263{word-spacing:17.452800pt;}
.ws2a_c00263{word-spacing:17.760000pt;}
.ws5_c00263{word-spacing:19.052800pt;}
.ws1e_c00263{word-spacing:19.360000pt;}
.ws16_c00263{word-spacing:22.246400pt;}
.ws15_c00263{word-spacing:22.336000pt;}
.ws1a_c00263{word-spacing:29.849600pt;}
.ws19_c00263{word-spacing:29.964800pt;}
.ws17_c00263{word-spacing:45.945600pt;}
.ws2e_c00263{word-spacing:61.920000pt;}
.ws2f_c00263{word-spacing:61.945600pt;}
._0_c00263{width:0.896000pt;}
.fs0_c00263{font-size:64.000000pt;}
.y0_c00263{bottom:0.000000pt;}
.y2_c00263{bottom:41.627067pt;}
.y1_c00263{bottom:60.027067pt;}
.y22_c00263{bottom:120.427067pt;}
.y21_c00263{bottom:138.827067pt;}
.y20_c00263{bottom:157.227067pt;}
.y1f_c00263{bottom:175.627067pt;}
.y1e_c00263{bottom:194.027067pt;}
.y1d_c00263{bottom:212.427067pt;}
.y1c_c00263{bottom:230.827067pt;}
.y1b_c00263{bottom:249.227067pt;}
.y1a_c00263{bottom:292.827067pt;}
.y19_c00263{bottom:320.347067pt;}
.y18_c00263{bottom:347.947067pt;}
.y17_c00263{bottom:375.547067pt;}
.y16_c00263{bottom:403.147067pt;}
.y15_c00263{bottom:446.747067pt;}
.y14_c00263{bottom:474.347067pt;}
.y13_c00263{bottom:501.947067pt;}
.y12_c00263{bottom:529.547067pt;}
.y11_c00263{bottom:573.147067pt;}
.y10_c00263{bottom:600.747067pt;}
.yf_c00263{bottom:628.347067pt;}
.ye_c00263{bottom:655.947067pt;}
.yd_c00263{bottom:683.547067pt;}
.yc_c00263{bottom:711.147067pt;}
.yb_c00263{bottom:738.747067pt;}
.ya_c00263{bottom:766.347067pt;}
.y9_c00263{bottom:793.947067pt;}
.y8_c00263{bottom:821.547067pt;}
.y7_c00263{bottom:865.147067pt;}
.y6_c00263{bottom:892.747067pt;}
.y5_c00263{bottom:920.347067pt;}
.y4_c00263{bottom:947.947067pt;}
.y3_c00263{bottom:975.547067pt;}
.h1_c00263{height:56.156250pt;}
.h2_c00263{height:57.375000pt;}
.h0_c00263{height:1122.666667pt;}
.w1_c00263{width:793.333333pt;}
.w0_c00263{width:793.626667pt;}
.x0_c00263{left:0.000000pt;}
.x2_c00263{left:113.440000pt;}
.x3_c00263{left:132.400000pt;}
.x1_c00263{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1536e0fa142b0e0dd6926b0c.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.093262;font-style:normal;font-weight:normal;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_943ece5114017756c63c513c.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00264{vertical-align:0.000000px;}
.lsa_c00264{letter-spacing:-0.108000px;}
.lsb_c00264{letter-spacing:-0.100800px;}
.ls9_c00264{letter-spacing:-0.064800px;}
.ls3_c00264{letter-spacing:-0.057600px;}
.ls5_c00264{letter-spacing:-0.050400px;}
.ls8_c00264{letter-spacing:-0.043200px;}
.ls7_c00264{letter-spacing:-0.036000px;}
.ls6_c00264{letter-spacing:-0.028800px;}
.ls1_c00264{letter-spacing:-0.021600px;}
.ls2_c00264{letter-spacing:-0.014400px;}
.ls4_c00264{letter-spacing:-0.007200px;}
.ls0_c00264{letter-spacing:0.000000px;}
.lsc_c00264{letter-spacing:0.021600px;}
.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;}
}
.wsb_c00264{word-spacing:-4.536000px;}
.wsc_c00264{word-spacing:-4.485600px;}
.ws1b_c00264{word-spacing:-3.405600px;}
.ws1c_c00264{word-spacing:-3.391200px;}
.ws2b_c00264{word-spacing:-2.347200px;}
.ws1a_c00264{word-spacing:-2.332800px;}
.ws2a_c00264{word-spacing:-2.296800px;}
.ws19_c00264{word-spacing:-2.239200px;}
.ws11_c00264{word-spacing:-0.892800px;}
.ws24_c00264{word-spacing:-0.885600px;}
.ws25_c00264{word-spacing:-0.871200px;}
.ws10_c00264{word-spacing:-0.777600px;}
.ws26_c00264{word-spacing:-0.612000px;}
.ws27_c00264{word-spacing:-0.525600px;}
.ws23_c00264{word-spacing:-0.496800px;}
.ws22_c00264{word-spacing:-0.460800px;}
.ws0_c00264{word-spacing:0.000000px;}
.ws9_c00264{word-spacing:0.064800px;}
.ws31_c00264{word-spacing:0.136800px;}
.ws17_c00264{word-spacing:0.172800px;}
.ws18_c00264{word-spacing:0.273600px;}
.ws1_c00264{word-spacing:1.260000px;}
.ws20_c00264{word-spacing:2.340000px;}
.ws2f_c00264{word-spacing:2.347200px;}
.ws21_c00264{word-spacing:2.448000px;}
.ws14_c00264{word-spacing:4.147200px;}
.ws13_c00264{word-spacing:4.154400px;}
.ws1e_c00264{word-spacing:4.802400px;}
.ws30_c00264{word-spacing:4.867200px;}
.ws1d_c00264{word-spacing:4.903200px;}
.ws1f_c00264{word-spacing:4.946400px;}
.wsa_c00264{word-spacing:7.754400px;}
.ws29_c00264{word-spacing:9.180000px;}
.ws28_c00264{word-spacing:9.273600px;}
.ws2_c00264{word-spacing:12.052800px;}
.ws3_c00264{word-spacing:12.096000px;}
.ws4_c00264{word-spacing:12.765600px;}
.ws5_c00264{word-spacing:12.996000px;}
.ws2c_c00264{word-spacing:15.328800px;}
.wse_c00264{word-spacing:17.640000px;}
.wsf_c00264{word-spacing:17.848800px;}
.wsd_c00264{word-spacing:21.074400px;}
.ws12_c00264{word-spacing:21.088800px;}
.ws15_c00264{word-spacing:28.188000px;}
.ws16_c00264{word-spacing:28.245600px;}
.ws7_c00264{word-spacing:29.685600px;}
.ws8_c00264{word-spacing:29.793600px;}
.ws2d_c00264{word-spacing:40.053600px;}
.ws2e_c00264{word-spacing:40.082400px;}
.ws6_c00264{word-spacing:40.168800px;}
._0_c00264{width:1.375200px;}
.fc0_c00264{color:rgb(0,0,0);}
.fs0_c00264{font-size:72.000000px;}
.y0_c00264{bottom:0.000000px;}
.y2_c00264{bottom:46.830450px;}
.y1_c00264{bottom:67.530450px;}
.y22_c00264{bottom:187.230450px;}
.y21_c00264{bottom:216.930450px;}
.y20_c00264{bottom:237.630450px;}
.y1f_c00264{bottom:258.330450px;}
.y1e_c00264{bottom:279.030450px;}
.y1d_c00264{bottom:299.730450px;}
.y1c_c00264{bottom:320.430450px;}
.y1b_c00264{bottom:369.390450px;}
.y1a_c00264{bottom:400.440450px;}
.y19_c00264{bottom:431.490450px;}
.y18_c00264{bottom:462.540450px;}
.y17_c00264{bottom:493.590450px;}
.y16_c00264{bottom:524.640450px;}
.y15_c00264{bottom:555.690450px;}
.y14_c00264{bottom:586.740450px;}
.y13_c00264{bottom:617.790450px;}
.y12_c00264{bottom:666.840450px;}
.y11_c00264{bottom:697.890450px;}
.y10_c00264{bottom:728.940450px;}
.yf_c00264{bottom:759.990450px;}
.ye_c00264{bottom:791.040450px;}
.yd_c00264{bottom:822.090450px;}
.yc_c00264{bottom:853.140450px;}
.yb_c00264{bottom:884.190450px;}
.ya_c00264{bottom:915.240450px;}
.y9_c00264{bottom:964.290450px;}
.y8_c00264{bottom:993.990450px;}
.y7_c00264{bottom:1014.690450px;}
.y6_c00264{bottom:1035.390450px;}
.y5_c00264{bottom:1056.090450px;}
.y4_c00264{bottom:1076.790450px;}
.y3_c00264{bottom:1097.490450px;}
.h1_c00264{height:63.175781px;}
.h2_c00264{height:64.546875px;}
.h0_c00264{height:1263.000000px;}
.w1_c00264{width:892.500000px;}
.w0_c00264{width:892.830000px;}
.x0_c00264{left:0.000000px;}
.x2_c00264{left:170.100000px;}
.x3_c00264{left:191.430000px;}
.x1_c00264{left:738.360000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.lsa_c00264{letter-spacing:-0.096000pt;}
.lsb_c00264{letter-spacing:-0.089600pt;}
.ls9_c00264{letter-spacing:-0.057600pt;}
.ls3_c00264{letter-spacing:-0.051200pt;}
.ls5_c00264{letter-spacing:-0.044800pt;}
.ls8_c00264{letter-spacing:-0.038400pt;}
.ls7_c00264{letter-spacing:-0.032000pt;}
.ls6_c00264{letter-spacing:-0.025600pt;}
.ls1_c00264{letter-spacing:-0.019200pt;}
.ls2_c00264{letter-spacing:-0.012800pt;}
.ls4_c00264{letter-spacing:-0.006400pt;}
.ls0_c00264{letter-spacing:0.000000pt;}
.lsc_c00264{letter-spacing:0.019200pt;}
.wsb_c00264{word-spacing:-4.032000pt;}
.wsc_c00264{word-spacing:-3.987200pt;}
.ws1b_c00264{word-spacing:-3.027200pt;}
.ws1c_c00264{word-spacing:-3.014400pt;}
.ws2b_c00264{word-spacing:-2.086400pt;}
.ws1a_c00264{word-spacing:-2.073600pt;}
.ws2a_c00264{word-spacing:-2.041600pt;}
.ws19_c00264{word-spacing:-1.990400pt;}
.ws11_c00264{word-spacing:-0.793600pt;}
.ws24_c00264{word-spacing:-0.787200pt;}
.ws25_c00264{word-spacing:-0.774400pt;}
.ws10_c00264{word-spacing:-0.691200pt;}
.ws26_c00264{word-spacing:-0.544000pt;}
.ws27_c00264{word-spacing:-0.467200pt;}
.ws23_c00264{word-spacing:-0.441600pt;}
.ws22_c00264{word-spacing:-0.409600pt;}
.ws0_c00264{word-spacing:0.000000pt;}
.ws9_c00264{word-spacing:0.057600pt;}
.ws31_c00264{word-spacing:0.121600pt;}
.ws17_c00264{word-spacing:0.153600pt;}
.ws18_c00264{word-spacing:0.243200pt;}
.ws1_c00264{word-spacing:1.120000pt;}
.ws20_c00264{word-spacing:2.080000pt;}
.ws2f_c00264{word-spacing:2.086400pt;}
.ws21_c00264{word-spacing:2.176000pt;}
.ws14_c00264{word-spacing:3.686400pt;}
.ws13_c00264{word-spacing:3.692800pt;}
.ws1e_c00264{word-spacing:4.268800pt;}
.ws30_c00264{word-spacing:4.326400pt;}
.ws1d_c00264{word-spacing:4.358400pt;}
.ws1f_c00264{word-spacing:4.396800pt;}
.wsa_c00264{word-spacing:6.892800pt;}
.ws29_c00264{word-spacing:8.160000pt;}
.ws28_c00264{word-spacing:8.243200pt;}
.ws2_c00264{word-spacing:10.713600pt;}
.ws3_c00264{word-spacing:10.752000pt;}
.ws4_c00264{word-spacing:11.347200pt;}
.ws5_c00264{word-spacing:11.552000pt;}
.ws2c_c00264{word-spacing:13.625600pt;}
.wse_c00264{word-spacing:15.680000pt;}
.wsf_c00264{word-spacing:15.865600pt;}
.wsd_c00264{word-spacing:18.732800pt;}
.ws12_c00264{word-spacing:18.745600pt;}
.ws15_c00264{word-spacing:25.056000pt;}
.ws16_c00264{word-spacing:25.107200pt;}
.ws7_c00264{word-spacing:26.387200pt;}
.ws8_c00264{word-spacing:26.483200pt;}
.ws2d_c00264{word-spacing:35.603200pt;}
.ws2e_c00264{word-spacing:35.628800pt;}
.ws6_c00264{word-spacing:35.705600pt;}
._0_c00264{width:1.222400pt;}
.fs0_c00264{font-size:64.000000pt;}
.y0_c00264{bottom:0.000000pt;}
.y2_c00264{bottom:41.627067pt;}
.y1_c00264{bottom:60.027067pt;}
.y22_c00264{bottom:166.427067pt;}
.y21_c00264{bottom:192.827067pt;}
.y20_c00264{bottom:211.227067pt;}
.y1f_c00264{bottom:229.627067pt;}
.y1e_c00264{bottom:248.027067pt;}
.y1d_c00264{bottom:266.427067pt;}
.y1c_c00264{bottom:284.827067pt;}
.y1b_c00264{bottom:328.347067pt;}
.y1a_c00264{bottom:355.947067pt;}
.y19_c00264{bottom:383.547067pt;}
.y18_c00264{bottom:411.147067pt;}
.y17_c00264{bottom:438.747067pt;}
.y16_c00264{bottom:466.347067pt;}
.y15_c00264{bottom:493.947067pt;}
.y14_c00264{bottom:521.547067pt;}
.y13_c00264{bottom:549.147067pt;}
.y12_c00264{bottom:592.747067pt;}
.y11_c00264{bottom:620.347067pt;}
.y10_c00264{bottom:647.947067pt;}
.yf_c00264{bottom:675.547067pt;}
.ye_c00264{bottom:703.147067pt;}
.yd_c00264{bottom:730.747067pt;}
.yc_c00264{bottom:758.347067pt;}
.yb_c00264{bottom:785.947067pt;}
.ya_c00264{bottom:813.547067pt;}
.y9_c00264{bottom:857.147067pt;}
.y8_c00264{bottom:883.547067pt;}
.y7_c00264{bottom:901.947067pt;}
.y6_c00264{bottom:920.347067pt;}
.y5_c00264{bottom:938.747067pt;}
.y4_c00264{bottom:957.147067pt;}
.y3_c00264{bottom:975.547067pt;}
.h1_c00264{height:56.156250pt;}
.h2_c00264{height:57.375000pt;}
.h0_c00264{height:1122.666667pt;}
.w1_c00264{width:793.333333pt;}
.w0_c00264{width:793.626667pt;}
.x0_c00264{left:0.000000pt;}
.x2_c00264{left:151.200000pt;}
.x3_c00264{left:170.160000pt;}
.x1_c00264{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_042e6384f52f3042db6b7fff.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.093262;font-style:normal;font-weight:normal;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_7027f4fea48e7d82742a5df7.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:1.106934;font-style:normal;font-weight:normal;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_2284bf7b84906272f38c48d9.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00265;src:url('chunks/assets/font_477fe6ceb0f240d2780d9b12.woff2')format("woff");}.ff4_c00265{font-family:ff4_c00265;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00265;src:url('chunks/assets/font_2ba55f10604c201cc5f9372b.woff2')format("woff");}.ff5_c00265{font-family:ff5_c00265;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00265{letter-spacing:-0.806400px;}
.ls7_c00265{letter-spacing:-0.064800px;}
.ls8_c00265{letter-spacing:-0.057600px;}
.ls6_c00265{letter-spacing:-0.050400px;}
.ls3_c00265{letter-spacing:-0.043200px;}
.ls9_c00265{letter-spacing:-0.036000px;}
.ls2_c00265{letter-spacing:-0.028800px;}
.ls5_c00265{letter-spacing:-0.021600px;}
.ls4_c00265{letter-spacing:-0.014400px;}
.ls1_c00265{letter-spacing:-0.007200px;}
.ls0_c00265{letter-spacing:0.000000px;}
.lsa_c00265{letter-spacing:0.144000px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00265{word-spacing:-20.016000px;}
.ws19_c00265{word-spacing:-3.427200px;}
.wsb_c00265{word-spacing:-3.420000px;}
.wsd_c00265{word-spacing:-3.412800px;}
.wsc_c00265{word-spacing:-3.391200px;}
.ws20_c00265{word-spacing:-2.404800px;}
.ws21_c00265{word-spacing:-2.383200px;}
.ws18_c00265{word-spacing:-1.281600px;}
.ws1e_c00265{word-spacing:-1.267200px;}
.ws17_c00265{word-spacing:-1.231200px;}
.ws4_c00265{word-spacing:-0.878400px;}
.ws1_c00265{word-spacing:0.000000px;}
.ws24_c00265{word-spacing:0.021600px;}
.ws2b_c00265{word-spacing:0.050400px;}
.ws27_c00265{word-spacing:0.079200px;}
.ws25_c00265{word-spacing:0.093600px;}
.ws22_c00265{word-spacing:0.115200px;}
.ws16_c00265{word-spacing:0.122400px;}
.ws2e_c00265{word-spacing:0.144000px;}
.ws1a_c00265{word-spacing:0.151200px;}
.ws5_c00265{word-spacing:0.158400px;}
.ws1f_c00265{word-spacing:0.172800px;}
.ws11_c00265{word-spacing:0.180000px;}
.ws1b_c00265{word-spacing:0.187200px;}
.ws15_c00265{word-spacing:0.194400px;}
.ws10_c00265{word-spacing:0.201600px;}
.ws26_c00265{word-spacing:0.230400px;}
.ws2_c00265{word-spacing:1.605600px;}
.ws3_c00265{word-spacing:1.627200px;}
.ws13_c00265{word-spacing:2.217600px;}
.ws14_c00265{word-spacing:2.368800px;}
.ws2a_c00265{word-spacing:3.074400px;}
.ws2c_c00265{word-spacing:3.736800px;}
.ws2d_c00265{word-spacing:3.823200px;}
.ws1c_c00265{word-spacing:5.889600px;}
.ws1d_c00265{word-spacing:5.983200px;}
.ws23_c00265{word-spacing:8.136000px;}
.ws2f_c00265{word-spacing:10.641600px;}
.ws8_c00265{word-spacing:14.148000px;}
.ws7_c00265{word-spacing:14.227200px;}
.ws12_c00265{word-spacing:21.780000px;}
.ws29_c00265{word-spacing:22.485600px;}
.ws28_c00265{word-spacing:22.579200px;}
.wse_c00265{word-spacing:26.841600px;}
.wsf_c00265{word-spacing:26.863200px;}
.ws6_c00265{word-spacing:39.067200px;}
.wsa_c00265{word-spacing:43.012800px;}
.ws9_c00265{word-spacing:43.020000px;}
._0_c00265{width:1.008000px;}
._1_c00265{width:7.920000px;}
.fc0_c00265{color:rgb(0,0,0);}
.fs0_c00265{font-size:72.000000px;}
.y0_c00265{bottom:0.000000px;}
.y2_c00265{bottom:46.830450px;}
.y1_c00265{bottom:67.530450px;}
.y28_c00265{bottom:193.530450px;}
.y27_c00265{bottom:223.230450px;}
.y26_c00265{bottom:243.930450px;}
.y25_c00265{bottom:264.630450px;}
.y24_c00265{bottom:285.330450px;}
.y23_c00265{bottom:306.030450px;}
.y22_c00265{bottom:326.730450px;}
.y21_c00265{bottom:347.430450px;}
.y20_c00265{bottom:368.040450px;}
.y1f_c00265{bottom:388.740450px;}
.y1e_c00265{bottom:409.440450px;}
.y1d_c00265{bottom:430.140450px;}
.y1c_c00265{bottom:450.840450px;}
.y1b_c00265{bottom:471.450450px;}
.y1a_c00265{bottom:492.240450px;}
.y19_c00265{bottom:512.940450px;}
.y18_c00265{bottom:533.640450px;}
.y17_c00265{bottom:554.340450px;}
.y16_c00265{bottom:575.040450px;}
.y15_c00265{bottom:595.740450px;}
.y14_c00265{bottom:616.440450px;}
.y13_c00265{bottom:637.140450px;}
.y12_c00265{bottom:657.840450px;}
.y11_c00265{bottom:678.540450px;}
.y10_c00265{bottom:699.240450px;}
.yf_c00265{bottom:719.940450px;}
.ye_c00265{bottom:740.640450px;}
.yd_c00265{bottom:761.340450px;}
.yc_c00265{bottom:782.040450px;}
.yb_c00265{bottom:831.090450px;}
.ya_c00265{bottom:862.140450px;}
.y9_c00265{bottom:893.190450px;}
.y8_c00265{bottom:924.240450px;}
.y7_c00265{bottom:955.290450px;}
.y6_c00265{bottom:986.340450px;}
.y5_c00265{bottom:1035.390450px;}
.y4_c00265{bottom:1066.440450px;}
.y3_c00265{bottom:1097.490450px;}
.h1_c00265{height:63.175781px;}
.h2_c00265{height:64.546875px;}
.h3_c00265{height:75.093750px;}
.h0_c00265{height:1263.000000px;}
.w1_c00265{width:892.500000px;}
.w0_c00265{width:892.830000px;}
.x0_c00265{left:0.000000px;}
.x2_c00265{left:127.620000px;}
.x3_c00265{left:148.950000px;}
.x1_c00265{left:695.880000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.lsb_c00265{letter-spacing:-0.716800pt;}
.ls7_c00265{letter-spacing:-0.057600pt;}
.ls8_c00265{letter-spacing:-0.051200pt;}
.ls6_c00265{letter-spacing:-0.044800pt;}
.ls3_c00265{letter-spacing:-0.038400pt;}
.ls9_c00265{letter-spacing:-0.032000pt;}
.ls2_c00265{letter-spacing:-0.025600pt;}
.ls5_c00265{letter-spacing:-0.019200pt;}
.ls4_c00265{letter-spacing:-0.012800pt;}
.ls1_c00265{letter-spacing:-0.006400pt;}
.ls0_c00265{letter-spacing:0.000000pt;}
.lsa_c00265{letter-spacing:0.128000pt;}
.ws0_c00265{word-spacing:-17.792000pt;}
.ws19_c00265{word-spacing:-3.046400pt;}
.wsb_c00265{word-spacing:-3.040000pt;}
.wsd_c00265{word-spacing:-3.033600pt;}
.wsc_c00265{word-spacing:-3.014400pt;}
.ws20_c00265{word-spacing:-2.137600pt;}
.ws21_c00265{word-spacing:-2.118400pt;}
.ws18_c00265{word-spacing:-1.139200pt;}
.ws1e_c00265{word-spacing:-1.126400pt;}
.ws17_c00265{word-spacing:-1.094400pt;}
.ws4_c00265{word-spacing:-0.780800pt;}
.ws1_c00265{word-spacing:0.000000pt;}
.ws24_c00265{word-spacing:0.019200pt;}
.ws2b_c00265{word-spacing:0.044800pt;}
.ws27_c00265{word-spacing:0.070400pt;}
.ws25_c00265{word-spacing:0.083200pt;}
.ws22_c00265{word-spacing:0.102400pt;}
.ws16_c00265{word-spacing:0.108800pt;}
.ws2e_c00265{word-spacing:0.128000pt;}
.ws1a_c00265{word-spacing:0.134400pt;}
.ws5_c00265{word-spacing:0.140800pt;}
.ws1f_c00265{word-spacing:0.153600pt;}
.ws11_c00265{word-spacing:0.160000pt;}
.ws1b_c00265{word-spacing:0.166400pt;}
.ws15_c00265{word-spacing:0.172800pt;}
.ws10_c00265{word-spacing:0.179200pt;}
.ws26_c00265{word-spacing:0.204800pt;}
.ws2_c00265{word-spacing:1.427200pt;}
.ws3_c00265{word-spacing:1.446400pt;}
.ws13_c00265{word-spacing:1.971200pt;}
.ws14_c00265{word-spacing:2.105600pt;}
.ws2a_c00265{word-spacing:2.732800pt;}
.ws2c_c00265{word-spacing:3.321600pt;}
.ws2d_c00265{word-spacing:3.398400pt;}
.ws1c_c00265{word-spacing:5.235200pt;}
.ws1d_c00265{word-spacing:5.318400pt;}
.ws23_c00265{word-spacing:7.232000pt;}
.ws2f_c00265{word-spacing:9.459200pt;}
.ws8_c00265{word-spacing:12.576000pt;}
.ws7_c00265{word-spacing:12.646400pt;}
.ws12_c00265{word-spacing:19.360000pt;}
.ws29_c00265{word-spacing:19.987200pt;}
.ws28_c00265{word-spacing:20.070400pt;}
.wse_c00265{word-spacing:23.859200pt;}
.wsf_c00265{word-spacing:23.878400pt;}
.ws6_c00265{word-spacing:34.726400pt;}
.wsa_c00265{word-spacing:38.233600pt;}
.ws9_c00265{word-spacing:38.240000pt;}
._0_c00265{width:0.896000pt;}
._1_c00265{width:7.040000pt;}
.fs0_c00265{font-size:64.000000pt;}
.y0_c00265{bottom:0.000000pt;}
.y2_c00265{bottom:41.627067pt;}
.y1_c00265{bottom:60.027067pt;}
.y28_c00265{bottom:172.027067pt;}
.y27_c00265{bottom:198.427067pt;}
.y26_c00265{bottom:216.827067pt;}
.y25_c00265{bottom:235.227067pt;}
.y24_c00265{bottom:253.627067pt;}
.y23_c00265{bottom:272.027067pt;}
.y22_c00265{bottom:290.427067pt;}
.y21_c00265{bottom:308.827067pt;}
.y20_c00265{bottom:327.147067pt;}
.y1f_c00265{bottom:345.547067pt;}
.y1e_c00265{bottom:363.947067pt;}
.y1d_c00265{bottom:382.347067pt;}
.y1c_c00265{bottom:400.747067pt;}
.y1b_c00265{bottom:419.067067pt;}
.y1a_c00265{bottom:437.547067pt;}
.y19_c00265{bottom:455.947067pt;}
.y18_c00265{bottom:474.347067pt;}
.y17_c00265{bottom:492.747067pt;}
.y16_c00265{bottom:511.147067pt;}
.y15_c00265{bottom:529.547067pt;}
.y14_c00265{bottom:547.947067pt;}
.y13_c00265{bottom:566.347067pt;}
.y12_c00265{bottom:584.747067pt;}
.y11_c00265{bottom:603.147067pt;}
.y10_c00265{bottom:621.547067pt;}
.yf_c00265{bottom:639.947067pt;}
.ye_c00265{bottom:658.347067pt;}
.yd_c00265{bottom:676.747067pt;}
.yc_c00265{bottom:695.147067pt;}
.yb_c00265{bottom:738.747067pt;}
.ya_c00265{bottom:766.347067pt;}
.y9_c00265{bottom:793.947067pt;}
.y8_c00265{bottom:821.547067pt;}
.y7_c00265{bottom:849.147067pt;}
.y6_c00265{bottom:876.747067pt;}
.y5_c00265{bottom:920.347067pt;}
.y4_c00265{bottom:947.947067pt;}
.y3_c00265{bottom:975.547067pt;}
.h1_c00265{height:56.156250pt;}
.h2_c00265{height:57.375000pt;}
.h3_c00265{height:66.750000pt;}
.h0_c00265{height:1122.666667pt;}
.w1_c00265{width:793.333333pt;}
.w0_c00265{width:793.626667pt;}
.x0_c00265{left:0.000000pt;}
.x2_c00265{left:113.440000pt;}
.x3_c00265{left:132.400000pt;}
.x1_c00265{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cf5930775081b175f8ab95a0.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.093262;font-style:normal;font-weight:normal;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_ef73db7becb1435760f2310b.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.ls8_c00266{letter-spacing:-0.086400px;}
.lsc_c00266{letter-spacing:-0.072000px;}
.ls9_c00266{letter-spacing:-0.064800px;}
.ls6_c00266{letter-spacing:-0.057600px;}
.ls5_c00266{letter-spacing:-0.050400px;}
.ls2_c00266{letter-spacing:-0.043200px;}
.ls4_c00266{letter-spacing:-0.036000px;}
.ls7_c00266{letter-spacing:-0.028800px;}
.ls1_c00266{letter-spacing:-0.021600px;}
.ls3_c00266{letter-spacing:-0.014400px;}
.lsa_c00266{letter-spacing:-0.007200px;}
.ls0_c00266{letter-spacing:0.000000px;}
.lsb_c00266{letter-spacing:0.021600px;}
.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;}
}
.ws2f_c00266{word-spacing:-4.154400px;}
.ws2e_c00266{word-spacing:-4.082400px;}
.wsd_c00266{word-spacing:-3.024000px;}
.wsc_c00266{word-spacing:-2.966400px;}
.ws2a_c00266{word-spacing:-1.944000px;}
.ws29_c00266{word-spacing:-1.886400px;}
.ws0_c00266{word-spacing:0.000000px;}
.ws35_c00266{word-spacing:0.115200px;}
.ws22_c00266{word-spacing:0.122400px;}
.ws36_c00266{word-spacing:0.158400px;}
.ws20_c00266{word-spacing:0.165600px;}
.ws21_c00266{word-spacing:0.187200px;}
.ws1f_c00266{word-spacing:0.194400px;}
.ws5_c00266{word-spacing:0.201600px;}
.ws12_c00266{word-spacing:0.288000px;}
.ws30_c00266{word-spacing:0.295200px;}
.ws8_c00266{word-spacing:0.748800px;}
.ws9_c00266{word-spacing:0.878400px;}
.ws7_c00266{word-spacing:0.914400px;}
.ws14_c00266{word-spacing:1.310400px;}
.ws13_c00266{word-spacing:1.332000px;}
.ws1d_c00266{word-spacing:1.519200px;}
.ws26_c00266{word-spacing:1.627200px;}
.ws25_c00266{word-spacing:1.641600px;}
.ws1e_c00266{word-spacing:1.663200px;}
.ws33_c00266{word-spacing:2.347200px;}
.ws34_c00266{word-spacing:2.390400px;}
.wsb_c00266{word-spacing:3.088800px;}
.wsa_c00266{word-spacing:3.096000px;}
.ws2_c00266{word-spacing:4.456800px;}
.ws1_c00266{word-spacing:4.500000px;}
.ws18_c00266{word-spacing:5.299200px;}
.ws17_c00266{word-spacing:5.407200px;}
.wsf_c00266{word-spacing:5.587200px;}
.wse_c00266{word-spacing:5.688000px;}
.ws31_c00266{word-spacing:8.848800px;}
.ws32_c00266{word-spacing:8.856000px;}
.ws1b_c00266{word-spacing:13.838400px;}
.ws1c_c00266{word-spacing:13.860000px;}
.ws2b_c00266{word-spacing:15.307200px;}
.ws24_c00266{word-spacing:15.904800px;}
.ws23_c00266{word-spacing:16.012800px;}
.ws16_c00266{word-spacing:21.816000px;}
.ws15_c00266{word-spacing:21.844800px;}
.ws6_c00266{word-spacing:23.580000px;}
.ws10_c00266{word-spacing:25.689600px;}
.ws11_c00266{word-spacing:25.740000px;}
.ws28_c00266{word-spacing:26.820000px;}
.ws27_c00266{word-spacing:26.848800px;}
.ws3_c00266{word-spacing:38.217600px;}
.ws4_c00266{word-spacing:38.361600px;}
.ws2c_c00266{word-spacing:40.514400px;}
.ws2d_c00266{word-spacing:40.615200px;}
.ws1a_c00266{word-spacing:62.460000px;}
.ws19_c00266{word-spacing:62.575200px;}
._0_c00266{width:1.123200px;}
.fc0_c00266{color:rgb(0,0,0);}
.fs0_c00266{font-size:72.000000px;}
.y0_c00266{bottom:0.000000px;}
.y2_c00266{bottom:46.830450px;}
.y1_c00266{bottom:67.530450px;}
.y21_c00266{bottom:171.930450px;}
.y20_c00266{bottom:202.980450px;}
.y1f_c00266{bottom:234.030450px;}
.y1e_c00266{bottom:283.080450px;}
.y1d_c00266{bottom:312.690450px;}
.y1c_c00266{bottom:333.390450px;}
.y1b_c00266{bottom:354.090450px;}
.y1a_c00266{bottom:374.790450px;}
.y19_c00266{bottom:423.840450px;}
.y18_c00266{bottom:454.890450px;}
.y17_c00266{bottom:485.940450px;}
.y16_c00266{bottom:516.990450px;}
.y15_c00266{bottom:548.040450px;}
.y14_c00266{bottom:597.090450px;}
.y13_c00266{bottom:626.790450px;}
.y12_c00266{bottom:647.490450px;}
.y11_c00266{bottom:668.190450px;}
.y10_c00266{bottom:688.890450px;}
.yf_c00266{bottom:709.590450px;}
.ye_c00266{bottom:730.290450px;}
.yd_c00266{bottom:750.990450px;}
.yc_c00266{bottom:800.040450px;}
.yb_c00266{bottom:831.090450px;}
.ya_c00266{bottom:862.140450px;}
.y9_c00266{bottom:893.190450px;}
.y8_c00266{bottom:924.240450px;}
.y7_c00266{bottom:955.290450px;}
.y6_c00266{bottom:986.340450px;}
.y5_c00266{bottom:1035.390450px;}
.y4_c00266{bottom:1066.440450px;}
.y3_c00266{bottom:1097.490450px;}
.h1_c00266{height:63.175781px;}
.h2_c00266{height:64.546875px;}
.h0_c00266{height:1263.000000px;}
.w1_c00266{width:892.500000px;}
.w0_c00266{width:892.830000px;}
.x0_c00266{left:0.000000px;}
.x2_c00266{left:170.100000px;}
.x3_c00266{left:191.430000px;}
.x1_c00266{left:738.360000px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls8_c00266{letter-spacing:-0.076800pt;}
.lsc_c00266{letter-spacing:-0.064000pt;}
.ls9_c00266{letter-spacing:-0.057600pt;}
.ls6_c00266{letter-spacing:-0.051200pt;}
.ls5_c00266{letter-spacing:-0.044800pt;}
.ls2_c00266{letter-spacing:-0.038400pt;}
.ls4_c00266{letter-spacing:-0.032000pt;}
.ls7_c00266{letter-spacing:-0.025600pt;}
.ls1_c00266{letter-spacing:-0.019200pt;}
.ls3_c00266{letter-spacing:-0.012800pt;}
.lsa_c00266{letter-spacing:-0.006400pt;}
.ls0_c00266{letter-spacing:0.000000pt;}
.lsb_c00266{letter-spacing:0.019200pt;}
.ws2f_c00266{word-spacing:-3.692800pt;}
.ws2e_c00266{word-spacing:-3.628800pt;}
.wsd_c00266{word-spacing:-2.688000pt;}
.wsc_c00266{word-spacing:-2.636800pt;}
.ws2a_c00266{word-spacing:-1.728000pt;}
.ws29_c00266{word-spacing:-1.676800pt;}
.ws0_c00266{word-spacing:0.000000pt;}
.ws35_c00266{word-spacing:0.102400pt;}
.ws22_c00266{word-spacing:0.108800pt;}
.ws36_c00266{word-spacing:0.140800pt;}
.ws20_c00266{word-spacing:0.147200pt;}
.ws21_c00266{word-spacing:0.166400pt;}
.ws1f_c00266{word-spacing:0.172800pt;}
.ws5_c00266{word-spacing:0.179200pt;}
.ws12_c00266{word-spacing:0.256000pt;}
.ws30_c00266{word-spacing:0.262400pt;}
.ws8_c00266{word-spacing:0.665600pt;}
.ws9_c00266{word-spacing:0.780800pt;}
.ws7_c00266{word-spacing:0.812800pt;}
.ws14_c00266{word-spacing:1.164800pt;}
.ws13_c00266{word-spacing:1.184000pt;}
.ws1d_c00266{word-spacing:1.350400pt;}
.ws26_c00266{word-spacing:1.446400pt;}
.ws25_c00266{word-spacing:1.459200pt;}
.ws1e_c00266{word-spacing:1.478400pt;}
.ws33_c00266{word-spacing:2.086400pt;}
.ws34_c00266{word-spacing:2.124800pt;}
.wsb_c00266{word-spacing:2.745600pt;}
.wsa_c00266{word-spacing:2.752000pt;}
.ws2_c00266{word-spacing:3.961600pt;}
.ws1_c00266{word-spacing:4.000000pt;}
.ws18_c00266{word-spacing:4.710400pt;}
.ws17_c00266{word-spacing:4.806400pt;}
.wsf_c00266{word-spacing:4.966400pt;}
.wse_c00266{word-spacing:5.056000pt;}
.ws31_c00266{word-spacing:7.865600pt;}
.ws32_c00266{word-spacing:7.872000pt;}
.ws1b_c00266{word-spacing:12.300800pt;}
.ws1c_c00266{word-spacing:12.320000pt;}
.ws2b_c00266{word-spacing:13.606400pt;}
.ws24_c00266{word-spacing:14.137600pt;}
.ws23_c00266{word-spacing:14.233600pt;}
.ws16_c00266{word-spacing:19.392000pt;}
.ws15_c00266{word-spacing:19.417600pt;}
.ws6_c00266{word-spacing:20.960000pt;}
.ws10_c00266{word-spacing:22.835200pt;}
.ws11_c00266{word-spacing:22.880000pt;}
.ws28_c00266{word-spacing:23.840000pt;}
.ws27_c00266{word-spacing:23.865600pt;}
.ws3_c00266{word-spacing:33.971200pt;}
.ws4_c00266{word-spacing:34.099200pt;}
.ws2c_c00266{word-spacing:36.012800pt;}
.ws2d_c00266{word-spacing:36.102400pt;}
.ws1a_c00266{word-spacing:55.520000pt;}
.ws19_c00266{word-spacing:55.622400pt;}
._0_c00266{width:0.998400pt;}
.fs0_c00266{font-size:64.000000pt;}
.y0_c00266{bottom:0.000000pt;}
.y2_c00266{bottom:41.627067pt;}
.y1_c00266{bottom:60.027067pt;}
.y21_c00266{bottom:152.827067pt;}
.y20_c00266{bottom:180.427067pt;}
.y1f_c00266{bottom:208.027067pt;}
.y1e_c00266{bottom:251.627067pt;}
.y1d_c00266{bottom:277.947067pt;}
.y1c_c00266{bottom:296.347067pt;}
.y1b_c00266{bottom:314.747067pt;}
.y1a_c00266{bottom:333.147067pt;}
.y19_c00266{bottom:376.747067pt;}
.y18_c00266{bottom:404.347067pt;}
.y17_c00266{bottom:431.947067pt;}
.y16_c00266{bottom:459.547067pt;}
.y15_c00266{bottom:487.147067pt;}
.y14_c00266{bottom:530.747067pt;}
.y13_c00266{bottom:557.147067pt;}
.y12_c00266{bottom:575.547067pt;}
.y11_c00266{bottom:593.947067pt;}
.y10_c00266{bottom:612.347067pt;}
.yf_c00266{bottom:630.747067pt;}
.ye_c00266{bottom:649.147067pt;}
.yd_c00266{bottom:667.547067pt;}
.yc_c00266{bottom:711.147067pt;}
.yb_c00266{bottom:738.747067pt;}
.ya_c00266{bottom:766.347067pt;}
.y9_c00266{bottom:793.947067pt;}
.y8_c00266{bottom:821.547067pt;}
.y7_c00266{bottom:849.147067pt;}
.y6_c00266{bottom:876.747067pt;}
.y5_c00266{bottom:920.347067pt;}
.y4_c00266{bottom:947.947067pt;}
.y3_c00266{bottom:975.547067pt;}
.h1_c00266{height:56.156250pt;}
.h2_c00266{height:57.375000pt;}
.h0_c00266{height:1122.666667pt;}
.w1_c00266{width:793.333333pt;}
.w0_c00266{width:793.626667pt;}
.x0_c00266{left:0.000000pt;}
.x2_c00266{left:151.200000pt;}
.x3_c00266{left:170.160000pt;}
.x1_c00266{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9bd771ffe11d03386a1451dc.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.093262;font-style:normal;font-weight:normal;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_ee2f9482b51ceefa2f736445.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.ls8_c00267{letter-spacing:-0.079200px;}
.ls3_c00267{letter-spacing:-0.057600px;}
.ls1_c00267{letter-spacing:-0.050400px;}
.ls4_c00267{letter-spacing:-0.043200px;}
.ls6_c00267{letter-spacing:-0.036000px;}
.ls7_c00267{letter-spacing:-0.028800px;}
.ls5_c00267{letter-spacing:-0.021600px;}
.ls2_c00267{letter-spacing:-0.014400px;}
.ls0_c00267{letter-spacing:0.000000px;}
.ls9_c00267{letter-spacing:843.998400px;}
.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;}
}
.ws7_c00267{word-spacing:-3.240000px;}
.ws6_c00267{word-spacing:-3.038400px;}
.ws5_c00267{word-spacing:-3.024000px;}
.wse_c00267{word-spacing:-2.678400px;}
.wsd_c00267{word-spacing:-2.570400px;}
.ws8_c00267{word-spacing:-2.318400px;}
.ws9_c00267{word-spacing:-2.239200px;}
.ws0_c00267{word-spacing:0.000000px;}
.wsf_c00267{word-spacing:0.194400px;}
.ws18_c00267{word-spacing:0.381600px;}
.ws3_c00267{word-spacing:0.532800px;}
.ws4_c00267{word-spacing:0.568800px;}
.ws11_c00267{word-spacing:6.940800px;}
.ws10_c00267{word-spacing:7.056000px;}
.ws14_c00267{word-spacing:9.561600px;}
.ws15_c00267{word-spacing:9.597600px;}
.ws12_c00267{word-spacing:12.787200px;}
.ws13_c00267{word-spacing:12.801600px;}
.ws16_c00267{word-spacing:15.544800px;}
.ws17_c00267{word-spacing:15.674400px;}
.wsc_c00267{word-spacing:18.216000px;}
.wsa_c00267{word-spacing:18.280800px;}
.wsb_c00267{word-spacing:18.288000px;}
.ws2_c00267{word-spacing:24.638400px;}
.ws1_c00267{word-spacing:24.775200px;}
._0_c00267{width:1.065600px;}
.fc0_c00267{color:rgb(0,0,0);}
.fs0_c00267{font-size:72.000000px;}
.y0_c00267{bottom:0.000000px;}
.y2_c00267{bottom:46.830450px;}
.y1_c00267{bottom:67.530450px;}
.y12_c00267{bottom:659.190450px;}
.y11_c00267{bottom:708.240450px;}
.y10_c00267{bottom:737.940450px;}
.yf_c00267{bottom:758.640450px;}
.ye_c00267{bottom:779.340450px;}
.yd_c00267{bottom:800.040450px;}
.yc_c00267{bottom:820.740450px;}
.yb_c00267{bottom:841.440450px;}
.ya_c00267{bottom:862.140450px;}
.y9_c00267{bottom:911.190450px;}
.y8_c00267{bottom:942.240450px;}
.y7_c00267{bottom:973.290450px;}
.y6_c00267{bottom:1004.340450px;}
.y5_c00267{bottom:1035.390450px;}
.y4_c00267{bottom:1066.440450px;}
.y3_c00267{bottom:1097.490450px;}
.h1_c00267{height:63.175781px;}
.h2_c00267{height:64.546875px;}
.h0_c00267{height:1263.000000px;}
.w1_c00267{width:892.500000px;}
.w0_c00267{width:892.830000px;}
.x0_c00267{left:0.000000px;}
.x2_c00267{left:127.620000px;}
.x3_c00267{left:148.950000px;}
.x1_c00267{left:695.880000px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls8_c00267{letter-spacing:-0.070400pt;}
.ls3_c00267{letter-spacing:-0.051200pt;}
.ls1_c00267{letter-spacing:-0.044800pt;}
.ls4_c00267{letter-spacing:-0.038400pt;}
.ls6_c00267{letter-spacing:-0.032000pt;}
.ls7_c00267{letter-spacing:-0.025600pt;}
.ls5_c00267{letter-spacing:-0.019200pt;}
.ls2_c00267{letter-spacing:-0.012800pt;}
.ls0_c00267{letter-spacing:0.000000pt;}
.ls9_c00267{letter-spacing:750.220800pt;}
.ws7_c00267{word-spacing:-2.880000pt;}
.ws6_c00267{word-spacing:-2.700800pt;}
.ws5_c00267{word-spacing:-2.688000pt;}
.wse_c00267{word-spacing:-2.380800pt;}
.wsd_c00267{word-spacing:-2.284800pt;}
.ws8_c00267{word-spacing:-2.060800pt;}
.ws9_c00267{word-spacing:-1.990400pt;}
.ws0_c00267{word-spacing:0.000000pt;}
.wsf_c00267{word-spacing:0.172800pt;}
.ws18_c00267{word-spacing:0.339200pt;}
.ws3_c00267{word-spacing:0.473600pt;}
.ws4_c00267{word-spacing:0.505600pt;}
.ws11_c00267{word-spacing:6.169600pt;}
.ws10_c00267{word-spacing:6.272000pt;}
.ws14_c00267{word-spacing:8.499200pt;}
.ws15_c00267{word-spacing:8.531200pt;}
.ws12_c00267{word-spacing:11.366400pt;}
.ws13_c00267{word-spacing:11.379200pt;}
.ws16_c00267{word-spacing:13.817600pt;}
.ws17_c00267{word-spacing:13.932800pt;}
.wsc_c00267{word-spacing:16.192000pt;}
.wsa_c00267{word-spacing:16.249600pt;}
.wsb_c00267{word-spacing:16.256000pt;}
.ws2_c00267{word-spacing:21.900800pt;}
.ws1_c00267{word-spacing:22.022400pt;}
._0_c00267{width:0.947200pt;}
.fs0_c00267{font-size:64.000000pt;}
.y0_c00267{bottom:0.000000pt;}
.y2_c00267{bottom:41.627067pt;}
.y1_c00267{bottom:60.027067pt;}
.y12_c00267{bottom:585.947067pt;}
.y11_c00267{bottom:629.547067pt;}
.y10_c00267{bottom:655.947067pt;}
.yf_c00267{bottom:674.347067pt;}
.ye_c00267{bottom:692.747067pt;}
.yd_c00267{bottom:711.147067pt;}
.yc_c00267{bottom:729.547067pt;}
.yb_c00267{bottom:747.947067pt;}
.ya_c00267{bottom:766.347067pt;}
.y9_c00267{bottom:809.947067pt;}
.y8_c00267{bottom:837.547067pt;}
.y7_c00267{bottom:865.147067pt;}
.y6_c00267{bottom:892.747067pt;}
.y5_c00267{bottom:920.347067pt;}
.y4_c00267{bottom:947.947067pt;}
.y3_c00267{bottom:975.547067pt;}
.h1_c00267{height:56.156250pt;}
.h2_c00267{height:57.375000pt;}
.h0_c00267{height:1122.666667pt;}
.w1_c00267{width:793.333333pt;}
.w0_c00267{width:793.626667pt;}
.x0_c00267{left:0.000000pt;}
.x2_c00267{left:113.440000pt;}
.x3_c00267{left:132.400000pt;}
.x1_c00267{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_de4934a0334b1b10245f421e.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.093262;font-style:normal;font-weight:normal;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_1a65bcef796765d00ae0660d.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00268;src:url('chunks/assets/font_e421400a349add25a24ffa56.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;line-height:1.106934;font-style:normal;font-weight:normal;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_61d4cfbfa044bdddee7b47bc.woff2')format("woff");}.ff4_c00268{font-family:ff4_c00268;line-height:0.666504;font-style:normal;font-weight:normal;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_7a5b1e699626eae10349ea23.woff2')format("woff");}.ff5_c00268{font-family:ff5_c00268;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsa_c00268{letter-spacing:-0.086400px;}
.lsd_c00268{letter-spacing:-0.072000px;}
.lsc_c00268{letter-spacing:-0.064800px;}
.ls4_c00268{letter-spacing:-0.057600px;}
.lsf_c00268{letter-spacing:-0.050400px;}
.ls7_c00268{letter-spacing:-0.043200px;}
.ls6_c00268{letter-spacing:-0.036000px;}
.ls8_c00268{letter-spacing:-0.028800px;}
.ls5_c00268{letter-spacing:-0.021600px;}
.ls9_c00268{letter-spacing:-0.014400px;}
.ls10_c00268{letter-spacing:-0.007200px;}
.ls2_c00268{letter-spacing:0.000000px;}
.ls1_c00268{letter-spacing:0.028800px;}
.lsb_c00268{letter-spacing:0.036000px;}
.ls0_c00268{letter-spacing:0.041940px;}
.ls3_c00268{letter-spacing:0.067104px;}
.lse_c00268{letter-spacing:0.360000px;}
.sc__c00268{text-shadow:none;}
.sc0_c00268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00268{-webkit-text-stroke:0px transparent;}
.sc0_c00268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws20_c00268{word-spacing:-3.772800px;}
.ws21_c00268{word-spacing:-3.744000px;}
.ws1c_c00268{word-spacing:-3.484800px;}
.ws1d_c00268{word-spacing:-3.405600px;}
.ws1a_c00268{word-spacing:-0.158400px;}
.ws1b_c00268{word-spacing:-0.144000px;}
.ws24_c00268{word-spacing:-0.100800px;}
.ws25_c00268{word-spacing:-0.086400px;}
.ws0_c00268{word-spacing:0.000000px;}
.ws1_c00268{word-spacing:0.050328px;}
.ws22_c00268{word-spacing:0.079200px;}
.ws27_c00268{word-spacing:0.165600px;}
.wsd_c00268{word-spacing:0.172800px;}
.wse_c00268{word-spacing:0.180000px;}
.ws1f_c00268{word-spacing:0.194400px;}
.ws23_c00268{word-spacing:0.273600px;}
.ws1e_c00268{word-spacing:0.950400px;}
.ws19_c00268{word-spacing:3.052800px;}
.ws18_c00268{word-spacing:3.074400px;}
.ws9_c00268{word-spacing:4.154400px;}
.ws11_c00268{word-spacing:5.522400px;}
.wsf_c00268{word-spacing:5.580000px;}
.ws10_c00268{word-spacing:5.824800px;}
.wsc_c00268{word-spacing:8.546400px;}
.ws5_c00268{word-spacing:9.504000px;}
.ws6_c00268{word-spacing:9.561600px;}
.wsa_c00268{word-spacing:9.907200px;}
.wsb_c00268{word-spacing:9.914400px;}
.ws7_c00268{word-spacing:17.834400px;}
.ws8_c00268{word-spacing:17.856000px;}
.ws13_c00268{word-spacing:18.921600px;}
.ws12_c00268{word-spacing:18.993600px;}
.ws2_c00268{word-spacing:20.340000px;}
.ws26_c00268{word-spacing:20.728800px;}
.ws4_c00268{word-spacing:22.514400px;}
.ws3_c00268{word-spacing:22.586400px;}
.ws15_c00268{word-spacing:26.834400px;}
.ws14_c00268{word-spacing:26.942400px;}
.ws17_c00268{word-spacing:28.202400px;}
.ws16_c00268{word-spacing:28.231200px;}
._1_c00268{width:1.044000px;}
._4_c00268{width:26.712000px;}
._0_c00268{width:43.953120px;}
._3_c00268{width:49.320000px;}
._2_c00268{width:54.720000px;}
.fc0_c00268{color:rgb(0,0,0);}
.fs0_c00268{font-size:72.000000px;}
.fs1_c00268{font-size:83.880000px;}
.y0_c00268{bottom:0.000000px;}
.y2_c00268{bottom:46.830450px;}
.y1_c00268{bottom:67.530450px;}
.y20_c00268{bottom:156.540450px;}
.y1f_c00268{bottom:187.590450px;}
.y1e_c00268{bottom:218.550450px;}
.y1d_c00268{bottom:250.860450px;}
.y1c_c00268{bottom:281.910450px;}
.y1b_c00268{bottom:312.960450px;}
.y1a_c00268{bottom:345.270450px;}
.y19_c00268{bottom:376.230450px;}
.y18_c00268{bottom:408.540450px;}
.y17_c00268{bottom:439.590450px;}
.y16_c00268{bottom:470.640450px;}
.y15_c00268{bottom:501.690450px;}
.y14_c00268{bottom:532.650450px;}
.y13_c00268{bottom:564.960450px;}
.y12_c00268{bottom:596.010450px;}
.y11_c00268{bottom:627.060450px;}
.y10_c00268{bottom:658.110450px;}
.yf_c00268{bottom:690.330450px;}
.ye_c00268{bottom:740.640450px;}
.yd_c00268{bottom:771.690450px;}
.yc_c00268{bottom:802.740450px;}
.yb_c00268{bottom:833.790450px;}
.ya_c00268{bottom:864.840450px;}
.y9_c00268{bottom:895.890450px;}
.y8_c00268{bottom:926.940450px;}
.y7_c00268{bottom:957.990450px;}
.y6_c00268{bottom:1007.040450px;}
.y5_c00268{bottom:1046.184600px;}
.y4_c00268{bottom:1070.404950px;}
.y3_c00268{bottom:1094.520450px;}
.h1_c00268{height:63.175781px;}
.h3_c00268{height:64.546875px;}
.h4_c00268{height:75.093750px;}
.h2_c00268{height:87.484219px;}
.h0_c00268{height:1263.000000px;}
.w1_c00268{width:892.500000px;}
.w0_c00268{width:892.830000px;}
.x0_c00268{left:0.000000px;}
.x2_c00268{left:170.100000px;}
.x5_c00268{left:197.100000px;}
.x6_c00268{left:224.100000px;}
.x3_c00268{left:278.100000px;}
.x4_c00268{left:337.508010px;}
.x1_c00268{left:738.360000px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.lsa_c00268{letter-spacing:-0.076800pt;}
.lsd_c00268{letter-spacing:-0.064000pt;}
.lsc_c00268{letter-spacing:-0.057600pt;}
.ls4_c00268{letter-spacing:-0.051200pt;}
.lsf_c00268{letter-spacing:-0.044800pt;}
.ls7_c00268{letter-spacing:-0.038400pt;}
.ls6_c00268{letter-spacing:-0.032000pt;}
.ls8_c00268{letter-spacing:-0.025600pt;}
.ls5_c00268{letter-spacing:-0.019200pt;}
.ls9_c00268{letter-spacing:-0.012800pt;}
.ls10_c00268{letter-spacing:-0.006400pt;}
.ls2_c00268{letter-spacing:0.000000pt;}
.ls1_c00268{letter-spacing:0.025600pt;}
.lsb_c00268{letter-spacing:0.032000pt;}
.ls0_c00268{letter-spacing:0.037280pt;}
.ls3_c00268{letter-spacing:0.059648pt;}
.lse_c00268{letter-spacing:0.320000pt;}
.ws20_c00268{word-spacing:-3.353600pt;}
.ws21_c00268{word-spacing:-3.328000pt;}
.ws1c_c00268{word-spacing:-3.097600pt;}
.ws1d_c00268{word-spacing:-3.027200pt;}
.ws1a_c00268{word-spacing:-0.140800pt;}
.ws1b_c00268{word-spacing:-0.128000pt;}
.ws24_c00268{word-spacing:-0.089600pt;}
.ws25_c00268{word-spacing:-0.076800pt;}
.ws0_c00268{word-spacing:0.000000pt;}
.ws1_c00268{word-spacing:0.044736pt;}
.ws22_c00268{word-spacing:0.070400pt;}
.ws27_c00268{word-spacing:0.147200pt;}
.wsd_c00268{word-spacing:0.153600pt;}
.wse_c00268{word-spacing:0.160000pt;}
.ws1f_c00268{word-spacing:0.172800pt;}
.ws23_c00268{word-spacing:0.243200pt;}
.ws1e_c00268{word-spacing:0.844800pt;}
.ws19_c00268{word-spacing:2.713600pt;}
.ws18_c00268{word-spacing:2.732800pt;}
.ws9_c00268{word-spacing:3.692800pt;}
.ws11_c00268{word-spacing:4.908800pt;}
.wsf_c00268{word-spacing:4.960000pt;}
.ws10_c00268{word-spacing:5.177600pt;}
.wsc_c00268{word-spacing:7.596800pt;}
.ws5_c00268{word-spacing:8.448000pt;}
.ws6_c00268{word-spacing:8.499200pt;}
.wsa_c00268{word-spacing:8.806400pt;}
.wsb_c00268{word-spacing:8.812800pt;}
.ws7_c00268{word-spacing:15.852800pt;}
.ws8_c00268{word-spacing:15.872000pt;}
.ws13_c00268{word-spacing:16.819200pt;}
.ws12_c00268{word-spacing:16.883200pt;}
.ws2_c00268{word-spacing:18.080000pt;}
.ws26_c00268{word-spacing:18.425600pt;}
.ws4_c00268{word-spacing:20.012800pt;}
.ws3_c00268{word-spacing:20.076800pt;}
.ws15_c00268{word-spacing:23.852800pt;}
.ws14_c00268{word-spacing:23.948800pt;}
.ws17_c00268{word-spacing:25.068800pt;}
.ws16_c00268{word-spacing:25.094400pt;}
._1_c00268{width:0.928000pt;}
._4_c00268{width:23.744000pt;}
._0_c00268{width:39.069440pt;}
._3_c00268{width:43.840000pt;}
._2_c00268{width:48.640000pt;}
.fs0_c00268{font-size:64.000000pt;}
.fs1_c00268{font-size:74.560000pt;}
.y0_c00268{bottom:0.000000pt;}
.y2_c00268{bottom:41.627067pt;}
.y1_c00268{bottom:60.027067pt;}
.y20_c00268{bottom:139.147067pt;}
.y1f_c00268{bottom:166.747067pt;}
.y1e_c00268{bottom:194.267067pt;}
.y1d_c00268{bottom:222.987067pt;}
.y1c_c00268{bottom:250.587067pt;}
.y1b_c00268{bottom:278.187067pt;}
.y1a_c00268{bottom:306.907067pt;}
.y19_c00268{bottom:334.427067pt;}
.y18_c00268{bottom:363.147067pt;}
.y17_c00268{bottom:390.747067pt;}
.y16_c00268{bottom:418.347067pt;}
.y15_c00268{bottom:445.947067pt;}
.y14_c00268{bottom:473.467067pt;}
.y13_c00268{bottom:502.187067pt;}
.y12_c00268{bottom:529.787067pt;}
.y11_c00268{bottom:557.387067pt;}
.y10_c00268{bottom:584.987067pt;}
.yf_c00268{bottom:613.627067pt;}
.ye_c00268{bottom:658.347067pt;}
.yd_c00268{bottom:685.947067pt;}
.yc_c00268{bottom:713.547067pt;}
.yb_c00268{bottom:741.147067pt;}
.ya_c00268{bottom:768.747067pt;}
.y9_c00268{bottom:796.347067pt;}
.y8_c00268{bottom:823.947067pt;}
.y7_c00268{bottom:851.547067pt;}
.y6_c00268{bottom:895.147067pt;}
.y5_c00268{bottom:929.941867pt;}
.y4_c00268{bottom:951.471067pt;}
.y3_c00268{bottom:972.907067pt;}
.h1_c00268{height:56.156250pt;}
.h3_c00268{height:57.375000pt;}
.h4_c00268{height:66.750000pt;}
.h2_c00268{height:77.763750pt;}
.h0_c00268{height:1122.666667pt;}
.w1_c00268{width:793.333333pt;}
.w0_c00268{width:793.626667pt;}
.x0_c00268{left:0.000000pt;}
.x2_c00268{left:151.200000pt;}
.x5_c00268{left:175.200000pt;}
.x6_c00268{left:199.200000pt;}
.x3_c00268{left:247.200000pt;}
.x4_c00268{left:300.007120pt;}
.x1_c00268{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a23fc756f8b4fd77014081f7.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.093262;font-style:normal;font-weight:normal;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_61d4cfbfa044bdddee7b47bc.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:0.666504;font-style:normal;font-weight:normal;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_be8127e0eae9ac6fa4d4859b.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:1.106934;font-style:normal;font-weight:normal;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_8e386896dd940ec8cfa2645f.woff2')format("woff");}.ff4_c00269{font-family:ff4_c00269;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00269{letter-spacing:-0.079200px;}
.ls2_c00269{letter-spacing:-0.064800px;}
.ls8_c00269{letter-spacing:-0.057600px;}
.ls1_c00269{letter-spacing:-0.050400px;}
.ls5_c00269{letter-spacing:-0.043200px;}
.lsb_c00269{letter-spacing:-0.036000px;}
.ls6_c00269{letter-spacing:-0.028800px;}
.ls3_c00269{letter-spacing:-0.021600px;}
.ls4_c00269{letter-spacing:-0.014400px;}
.ls9_c00269{letter-spacing:-0.007200px;}
.ls0_c00269{letter-spacing:0.000000px;}
.lsa_c00269{letter-spacing:0.014400px;}
.ls7_c00269{letter-spacing:0.036000px;}
.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;}
}
.ws16_c00269{word-spacing:-2.016000px;}
.ws14_c00269{word-spacing:-1.972800px;}
.ws24_c00269{word-spacing:-1.922400px;}
.ws15_c00269{word-spacing:-1.886400px;}
.ws29_c00269{word-spacing:-0.561600px;}
.ws2a_c00269{word-spacing:-0.381600px;}
.ws0_c00269{word-spacing:0.000000px;}
.wsc_c00269{word-spacing:0.079200px;}
.ws17_c00269{word-spacing:0.165600px;}
.ws23_c00269{word-spacing:0.172800px;}
.wsd_c00269{word-spacing:0.180000px;}
.ws7_c00269{word-spacing:0.187200px;}
.ws8_c00269{word-spacing:0.223200px;}
.ws18_c00269{word-spacing:0.266400px;}
.ws1c_c00269{word-spacing:2.203200px;}
.ws1b_c00269{word-spacing:2.246400px;}
.ws1_c00269{word-spacing:2.368800px;}
.ws12_c00269{word-spacing:2.728800px;}
.ws13_c00269{word-spacing:2.743200px;}
.ws11_c00269{word-spacing:4.867200px;}
.ws1a_c00269{word-spacing:5.976000px;}
.ws26_c00269{word-spacing:9.172800px;}
.ws25_c00269{word-spacing:9.288000px;}
.ws21_c00269{word-spacing:9.892800px;}
.ws22_c00269{word-spacing:9.964800px;}
.ws28_c00269{word-spacing:10.627200px;}
.ws27_c00269{word-spacing:10.634400px;}
.ws1f_c00269{word-spacing:10.972800px;}
.ws20_c00269{word-spacing:11.073600px;}
.ws1e_c00269{word-spacing:15.674400px;}
.ws1d_c00269{word-spacing:15.703200px;}
.ws2_c00269{word-spacing:26.121600px;}
.ws3_c00269{word-spacing:26.143200px;}
.ws4_c00269{word-spacing:26.460000px;}
.ws19_c00269{word-spacing:26.812800px;}
.wsf_c00269{word-spacing:27.547200px;}
.wse_c00269{word-spacing:27.561600px;}
.ws10_c00269{word-spacing:27.705600px;}
.ws5_c00269{word-spacing:36.532800px;}
.ws6_c00269{word-spacing:36.561600px;}
.ws9_c00269{word-spacing:41.940000px;}
.wsa_c00269{word-spacing:41.976000px;}
.wsb_c00269{word-spacing:54.900000px;}
._2_c00269{margin-left:-26.568000px;}
._1_c00269{width:1.015200px;}
._0_c00269{width:52.560000px;}
.fc0_c00269{color:rgb(0,0,0);}
.fs0_c00269{font-size:72.000000px;}
.y0_c00269{bottom:0.000000px;}
.y2_c00269{bottom:46.830450px;}
.y1_c00269{bottom:67.530450px;}
.y1f_c00269{bottom:226.470450px;}
.y1e_c00269{bottom:256.170450px;}
.y1d_c00269{bottom:276.870450px;}
.y1c_c00269{bottom:297.570450px;}
.y1b_c00269{bottom:318.270450px;}
.y1a_c00269{bottom:338.970450px;}
.y19_c00269{bottom:388.020450px;}
.y18_c00269{bottom:437.070450px;}
.y17_c00269{bottom:466.770450px;}
.y16_c00269{bottom:487.470450px;}
.y15_c00269{bottom:508.170450px;}
.y14_c00269{bottom:528.870450px;}
.y13_c00269{bottom:549.570450px;}
.y12_c00269{bottom:570.270450px;}
.y11_c00269{bottom:590.970450px;}
.y10_c00269{bottom:640.020450px;}
.yf_c00269{bottom:689.070450px;}
.ye_c00269{bottom:720.120450px;}
.yd_c00269{bottom:751.170450px;}
.yc_c00269{bottom:782.220450px;}
.yb_c00269{bottom:813.270450px;}
.ya_c00269{bottom:862.320450px;}
.y9_c00269{bottom:893.370450px;}
.y8_c00269{bottom:924.330450px;}
.y7_c00269{bottom:954.030450px;}
.y6_c00269{bottom:1003.080450px;}
.y5_c00269{bottom:1034.130450px;}
.y4_c00269{bottom:1065.180450px;}
.y3_c00269{bottom:1096.230450px;}
.h1_c00269{height:63.175781px;}
.h2_c00269{height:64.546875px;}
.h3_c00269{height:75.093750px;}
.h0_c00269{height:1263.000000px;}
.w1_c00269{width:892.500000px;}
.w0_c00269{width:892.830000px;}
.x0_c00269{left:0.000000px;}
.x2_c00269{left:127.620000px;}
.x5_c00269{left:148.950000px;}
.x3_c00269{left:154.620000px;}
.x4_c00269{left:181.620000px;}
.x1_c00269{left:695.880000px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.lsc_c00269{letter-spacing:-0.070400pt;}
.ls2_c00269{letter-spacing:-0.057600pt;}
.ls8_c00269{letter-spacing:-0.051200pt;}
.ls1_c00269{letter-spacing:-0.044800pt;}
.ls5_c00269{letter-spacing:-0.038400pt;}
.lsb_c00269{letter-spacing:-0.032000pt;}
.ls6_c00269{letter-spacing:-0.025600pt;}
.ls3_c00269{letter-spacing:-0.019200pt;}
.ls4_c00269{letter-spacing:-0.012800pt;}
.ls9_c00269{letter-spacing:-0.006400pt;}
.ls0_c00269{letter-spacing:0.000000pt;}
.lsa_c00269{letter-spacing:0.012800pt;}
.ls7_c00269{letter-spacing:0.032000pt;}
.ws16_c00269{word-spacing:-1.792000pt;}
.ws14_c00269{word-spacing:-1.753600pt;}
.ws24_c00269{word-spacing:-1.708800pt;}
.ws15_c00269{word-spacing:-1.676800pt;}
.ws29_c00269{word-spacing:-0.499200pt;}
.ws2a_c00269{word-spacing:-0.339200pt;}
.ws0_c00269{word-spacing:0.000000pt;}
.wsc_c00269{word-spacing:0.070400pt;}
.ws17_c00269{word-spacing:0.147200pt;}
.ws23_c00269{word-spacing:0.153600pt;}
.wsd_c00269{word-spacing:0.160000pt;}
.ws7_c00269{word-spacing:0.166400pt;}
.ws8_c00269{word-spacing:0.198400pt;}
.ws18_c00269{word-spacing:0.236800pt;}
.ws1c_c00269{word-spacing:1.958400pt;}
.ws1b_c00269{word-spacing:1.996800pt;}
.ws1_c00269{word-spacing:2.105600pt;}
.ws12_c00269{word-spacing:2.425600pt;}
.ws13_c00269{word-spacing:2.438400pt;}
.ws11_c00269{word-spacing:4.326400pt;}
.ws1a_c00269{word-spacing:5.312000pt;}
.ws26_c00269{word-spacing:8.153600pt;}
.ws25_c00269{word-spacing:8.256000pt;}
.ws21_c00269{word-spacing:8.793600pt;}
.ws22_c00269{word-spacing:8.857600pt;}
.ws28_c00269{word-spacing:9.446400pt;}
.ws27_c00269{word-spacing:9.452800pt;}
.ws1f_c00269{word-spacing:9.753600pt;}
.ws20_c00269{word-spacing:9.843200pt;}
.ws1e_c00269{word-spacing:13.932800pt;}
.ws1d_c00269{word-spacing:13.958400pt;}
.ws2_c00269{word-spacing:23.219200pt;}
.ws3_c00269{word-spacing:23.238400pt;}
.ws4_c00269{word-spacing:23.520000pt;}
.ws19_c00269{word-spacing:23.833600pt;}
.wsf_c00269{word-spacing:24.486400pt;}
.wse_c00269{word-spacing:24.499200pt;}
.ws10_c00269{word-spacing:24.627200pt;}
.ws5_c00269{word-spacing:32.473600pt;}
.ws6_c00269{word-spacing:32.499200pt;}
.ws9_c00269{word-spacing:37.280000pt;}
.wsa_c00269{word-spacing:37.312000pt;}
.wsb_c00269{word-spacing:48.800000pt;}
._2_c00269{margin-left:-23.616000pt;}
._1_c00269{width:0.902400pt;}
._0_c00269{width:46.720000pt;}
.fs0_c00269{font-size:64.000000pt;}
.y0_c00269{bottom:0.000000pt;}
.y2_c00269{bottom:41.627067pt;}
.y1_c00269{bottom:60.027067pt;}
.y1f_c00269{bottom:201.307067pt;}
.y1e_c00269{bottom:227.707067pt;}
.y1d_c00269{bottom:246.107067pt;}
.y1c_c00269{bottom:264.507067pt;}
.y1b_c00269{bottom:282.907067pt;}
.y1a_c00269{bottom:301.307067pt;}
.y19_c00269{bottom:344.907067pt;}
.y18_c00269{bottom:388.507067pt;}
.y17_c00269{bottom:414.907067pt;}
.y16_c00269{bottom:433.307067pt;}
.y15_c00269{bottom:451.707067pt;}
.y14_c00269{bottom:470.107067pt;}
.y13_c00269{bottom:488.507067pt;}
.y12_c00269{bottom:506.907067pt;}
.y11_c00269{bottom:525.307067pt;}
.y10_c00269{bottom:568.907067pt;}
.yf_c00269{bottom:612.507067pt;}
.ye_c00269{bottom:640.107067pt;}
.yd_c00269{bottom:667.707067pt;}
.yc_c00269{bottom:695.307067pt;}
.yb_c00269{bottom:722.907067pt;}
.ya_c00269{bottom:766.507067pt;}
.y9_c00269{bottom:794.107067pt;}
.y8_c00269{bottom:821.627067pt;}
.y7_c00269{bottom:848.027067pt;}
.y6_c00269{bottom:891.627067pt;}
.y5_c00269{bottom:919.227067pt;}
.y4_c00269{bottom:946.827067pt;}
.y3_c00269{bottom:974.427067pt;}
.h1_c00269{height:56.156250pt;}
.h2_c00269{height:57.375000pt;}
.h3_c00269{height:66.750000pt;}
.h0_c00269{height:1122.666667pt;}
.w1_c00269{width:793.333333pt;}
.w0_c00269{width:793.626667pt;}
.x0_c00269{left:0.000000pt;}
.x2_c00269{left:113.440000pt;}
.x5_c00269{left:132.400000pt;}
.x3_c00269{left:137.440000pt;}
.x4_c00269{left:161.440000pt;}
.x1_c00269{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_79c10387674845492a104a58.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.093262;font-style:normal;font-weight:normal;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_0ee34c76be7884b6b8159166.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.106934;font-style:normal;font-weight:normal;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_cd371973fedf57194085f3c4.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsf_c00270{letter-spacing:-0.144000px;}
.lsa_c00270{letter-spacing:-0.122400px;}
.ls7_c00270{letter-spacing:-0.072000px;}
.lsb_c00270{letter-spacing:-0.064800px;}
.ls9_c00270{letter-spacing:-0.057600px;}
.ls6_c00270{letter-spacing:-0.050400px;}
.ls4_c00270{letter-spacing:-0.043200px;}
.ls5_c00270{letter-spacing:-0.036000px;}
.lsc_c00270{letter-spacing:-0.028800px;}
.ls8_c00270{letter-spacing:-0.021600px;}
.lsd_c00270{letter-spacing:-0.014400px;}
.lse_c00270{letter-spacing:-0.007200px;}
.ls3_c00270{letter-spacing:0.000000px;}
.ls0_c00270{letter-spacing:0.014400px;}
.ls1_c00270{letter-spacing:0.021600px;}
.ls2_c00270{letter-spacing:0.036000px;}
.sc__c00270{text-shadow:none;}
.sc0_c00270{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00270{-webkit-text-stroke:0px transparent;}
.sc0_c00270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00270{word-spacing:-20.052000px;}
.ws0_c00270{word-spacing:-20.037600px;}
.ws1_c00270{word-spacing:-20.001600px;}
.ws11_c00270{word-spacing:-2.311200px;}
.wsa_c00270{word-spacing:-1.569600px;}
.ws35_c00270{word-spacing:-1.094400px;}
.ws2d_c00270{word-spacing:-0.900000px;}
.ws34_c00270{word-spacing:-0.856800px;}
.ws2e_c00270{word-spacing:-0.799200px;}
.ws36_c00270{word-spacing:-0.777600px;}
.ws2c_c00270{word-spacing:-0.007200px;}
.ws3_c00270{word-spacing:0.000000px;}
.ws22_c00270{word-spacing:0.165600px;}
.ws13_c00270{word-spacing:0.180000px;}
.ws21_c00270{word-spacing:0.187200px;}
.ws27_c00270{word-spacing:0.194400px;}
.ws31_c00270{word-spacing:0.201600px;}
.ws12_c00270{word-spacing:0.208800px;}
.ws14_c00270{word-spacing:0.525600px;}
.wsf_c00270{word-spacing:0.561600px;}
.ws10_c00270{word-spacing:0.576000px;}
.ws19_c00270{word-spacing:1.159200px;}
.ws1a_c00270{word-spacing:1.281600px;}
.ws24_c00270{word-spacing:3.412800px;}
.wse_c00270{word-spacing:3.434400px;}
.wsd_c00270{word-spacing:3.448800px;}
.ws25_c00270{word-spacing:3.542400px;}
.ws5_c00270{word-spacing:4.816800px;}
.ws4_c00270{word-spacing:4.824000px;}
.ws2b_c00270{word-spacing:8.092800px;}
.ws23_c00270{word-spacing:8.128800px;}
.ws1e_c00270{word-spacing:8.438400px;}
.ws1d_c00270{word-spacing:8.467200px;}
.ws1c_c00270{word-spacing:8.575200px;}
.ws2a_c00270{word-spacing:8.834400px;}
.ws28_c00270{word-spacing:10.224000px;}
.ws29_c00270{word-spacing:10.296000px;}
.ws32_c00270{word-spacing:12.794400px;}
.ws33_c00270{word-spacing:12.888000px;}
.ws26_c00270{word-spacing:14.241600px;}
.ws8_c00270{word-spacing:15.674400px;}
.ws9_c00270{word-spacing:15.753600px;}
.ws1b_c00270{word-spacing:16.012800px;}
.ws15_c00270{word-spacing:18.180000px;}
.ws6_c00270{word-spacing:18.554400px;}
.ws7_c00270{word-spacing:18.568800px;}
.ws20_c00270{word-spacing:22.132800px;}
.ws1f_c00270{word-spacing:22.154400px;}
.ws18_c00270{word-spacing:25.387200px;}
.ws17_c00270{word-spacing:25.401600px;}
.ws16_c00270{word-spacing:25.502400px;}
.wsc_c00270{word-spacing:32.544000px;}
.wsb_c00270{word-spacing:32.580000px;}
.ws2f_c00270{word-spacing:43.747200px;}
.ws30_c00270{word-spacing:43.869600px;}
._2_c00270{margin-left:-2.224800px;}
._1_c00270{margin-left:-1.108800px;}
._0_c00270{width:1.008000px;}
.fc0_c00270{color:rgb(0,0,0);}
.fs0_c00270{font-size:72.000000px;}
.y0_c00270{bottom:0.000000px;}
.y2_c00270{bottom:46.830450px;}
.y1_c00270{bottom:67.530450px;}
.y28_c00270{bottom:185.880450px;}
.y27_c00270{bottom:206.580450px;}
.y26_c00270{bottom:227.280450px;}
.y25_c00270{bottom:247.980450px;}
.y24_c00270{bottom:268.680450px;}
.y23_c00270{bottom:289.380450px;}
.y22_c00270{bottom:310.080450px;}
.y21_c00270{bottom:330.690450px;}
.y20_c00270{bottom:351.390450px;}
.y1f_c00270{bottom:400.440450px;}
.y1e_c00270{bottom:431.490450px;}
.y1d_c00270{bottom:462.540450px;}
.y1c_c00270{bottom:493.590450px;}
.y1b_c00270{bottom:542.640450px;}
.y1a_c00270{bottom:572.340450px;}
.y19_c00270{bottom:593.040450px;}
.y18_c00270{bottom:613.740450px;}
.y17_c00270{bottom:634.440450px;}
.y16_c00270{bottom:655.140450px;}
.y15_c00270{bottom:675.840450px;}
.y14_c00270{bottom:696.540450px;}
.y13_c00270{bottom:717.240450px;}
.y12_c00270{bottom:737.940450px;}
.y11_c00270{bottom:758.640450px;}
.y10_c00270{bottom:779.340450px;}
.yf_c00270{bottom:800.040450px;}
.ye_c00270{bottom:820.740450px;}
.yd_c00270{bottom:841.440450px;}
.yc_c00270{bottom:862.140450px;}
.yb_c00270{bottom:882.840450px;}
.ya_c00270{bottom:903.540450px;}
.y9_c00270{bottom:924.240450px;}
.y8_c00270{bottom:944.940450px;}
.y7_c00270{bottom:965.640450px;}
.y6_c00270{bottom:986.340450px;}
.y5_c00270{bottom:1035.390450px;}
.y4_c00270{bottom:1066.440450px;}
.y3_c00270{bottom:1097.490450px;}
.h1_c00270{height:63.175781px;}
.h2_c00270{height:64.546875px;}
.h3_c00270{height:75.093750px;}
.h0_c00270{height:1263.000000px;}
.w1_c00270{width:892.500000px;}
.w0_c00270{width:892.830000px;}
.x0_c00270{left:0.000000px;}
.x2_c00270{left:170.100000px;}
.x3_c00270{left:191.430000px;}
.x1_c00270{left:738.360000px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.lsf_c00270{letter-spacing:-0.128000pt;}
.lsa_c00270{letter-spacing:-0.108800pt;}
.ls7_c00270{letter-spacing:-0.064000pt;}
.lsb_c00270{letter-spacing:-0.057600pt;}
.ls9_c00270{letter-spacing:-0.051200pt;}
.ls6_c00270{letter-spacing:-0.044800pt;}
.ls4_c00270{letter-spacing:-0.038400pt;}
.ls5_c00270{letter-spacing:-0.032000pt;}
.lsc_c00270{letter-spacing:-0.025600pt;}
.ls8_c00270{letter-spacing:-0.019200pt;}
.lsd_c00270{letter-spacing:-0.012800pt;}
.lse_c00270{letter-spacing:-0.006400pt;}
.ls3_c00270{letter-spacing:0.000000pt;}
.ls0_c00270{letter-spacing:0.012800pt;}
.ls1_c00270{letter-spacing:0.019200pt;}
.ls2_c00270{letter-spacing:0.032000pt;}
.ws2_c00270{word-spacing:-17.824000pt;}
.ws0_c00270{word-spacing:-17.811200pt;}
.ws1_c00270{word-spacing:-17.779200pt;}
.ws11_c00270{word-spacing:-2.054400pt;}
.wsa_c00270{word-spacing:-1.395200pt;}
.ws35_c00270{word-spacing:-0.972800pt;}
.ws2d_c00270{word-spacing:-0.800000pt;}
.ws34_c00270{word-spacing:-0.761600pt;}
.ws2e_c00270{word-spacing:-0.710400pt;}
.ws36_c00270{word-spacing:-0.691200pt;}
.ws2c_c00270{word-spacing:-0.006400pt;}
.ws3_c00270{word-spacing:0.000000pt;}
.ws22_c00270{word-spacing:0.147200pt;}
.ws13_c00270{word-spacing:0.160000pt;}
.ws21_c00270{word-spacing:0.166400pt;}
.ws27_c00270{word-spacing:0.172800pt;}
.ws31_c00270{word-spacing:0.179200pt;}
.ws12_c00270{word-spacing:0.185600pt;}
.ws14_c00270{word-spacing:0.467200pt;}
.wsf_c00270{word-spacing:0.499200pt;}
.ws10_c00270{word-spacing:0.512000pt;}
.ws19_c00270{word-spacing:1.030400pt;}
.ws1a_c00270{word-spacing:1.139200pt;}
.ws24_c00270{word-spacing:3.033600pt;}
.wse_c00270{word-spacing:3.052800pt;}
.wsd_c00270{word-spacing:3.065600pt;}
.ws25_c00270{word-spacing:3.148800pt;}
.ws5_c00270{word-spacing:4.281600pt;}
.ws4_c00270{word-spacing:4.288000pt;}
.ws2b_c00270{word-spacing:7.193600pt;}
.ws23_c00270{word-spacing:7.225600pt;}
.ws1e_c00270{word-spacing:7.500800pt;}
.ws1d_c00270{word-spacing:7.526400pt;}
.ws1c_c00270{word-spacing:7.622400pt;}
.ws2a_c00270{word-spacing:7.852800pt;}
.ws28_c00270{word-spacing:9.088000pt;}
.ws29_c00270{word-spacing:9.152000pt;}
.ws32_c00270{word-spacing:11.372800pt;}
.ws33_c00270{word-spacing:11.456000pt;}
.ws26_c00270{word-spacing:12.659200pt;}
.ws8_c00270{word-spacing:13.932800pt;}
.ws9_c00270{word-spacing:14.003200pt;}
.ws1b_c00270{word-spacing:14.233600pt;}
.ws15_c00270{word-spacing:16.160000pt;}
.ws6_c00270{word-spacing:16.492800pt;}
.ws7_c00270{word-spacing:16.505600pt;}
.ws20_c00270{word-spacing:19.673600pt;}
.ws1f_c00270{word-spacing:19.692800pt;}
.ws18_c00270{word-spacing:22.566400pt;}
.ws17_c00270{word-spacing:22.579200pt;}
.ws16_c00270{word-spacing:22.668800pt;}
.wsc_c00270{word-spacing:28.928000pt;}
.wsb_c00270{word-spacing:28.960000pt;}
.ws2f_c00270{word-spacing:38.886400pt;}
.ws30_c00270{word-spacing:38.995200pt;}
._2_c00270{margin-left:-1.977600pt;}
._1_c00270{margin-left:-0.985600pt;}
._0_c00270{width:0.896000pt;}
.fs0_c00270{font-size:64.000000pt;}
.y0_c00270{bottom:0.000000pt;}
.y2_c00270{bottom:41.627067pt;}
.y1_c00270{bottom:60.027067pt;}
.y28_c00270{bottom:165.227067pt;}
.y27_c00270{bottom:183.627067pt;}
.y26_c00270{bottom:202.027067pt;}
.y25_c00270{bottom:220.427067pt;}
.y24_c00270{bottom:238.827067pt;}
.y23_c00270{bottom:257.227067pt;}
.y22_c00270{bottom:275.627067pt;}
.y21_c00270{bottom:293.947067pt;}
.y20_c00270{bottom:312.347067pt;}
.y1f_c00270{bottom:355.947067pt;}
.y1e_c00270{bottom:383.547067pt;}
.y1d_c00270{bottom:411.147067pt;}
.y1c_c00270{bottom:438.747067pt;}
.y1b_c00270{bottom:482.347067pt;}
.y1a_c00270{bottom:508.747067pt;}
.y19_c00270{bottom:527.147067pt;}
.y18_c00270{bottom:545.547067pt;}
.y17_c00270{bottom:563.947067pt;}
.y16_c00270{bottom:582.347067pt;}
.y15_c00270{bottom:600.747067pt;}
.y14_c00270{bottom:619.147067pt;}
.y13_c00270{bottom:637.547067pt;}
.y12_c00270{bottom:655.947067pt;}
.y11_c00270{bottom:674.347067pt;}
.y10_c00270{bottom:692.747067pt;}
.yf_c00270{bottom:711.147067pt;}
.ye_c00270{bottom:729.547067pt;}
.yd_c00270{bottom:747.947067pt;}
.yc_c00270{bottom:766.347067pt;}
.yb_c00270{bottom:784.747067pt;}
.ya_c00270{bottom:803.147067pt;}
.y9_c00270{bottom:821.547067pt;}
.y8_c00270{bottom:839.947067pt;}
.y7_c00270{bottom:858.347067pt;}
.y6_c00270{bottom:876.747067pt;}
.y5_c00270{bottom:920.347067pt;}
.y4_c00270{bottom:947.947067pt;}
.y3_c00270{bottom:975.547067pt;}
.h1_c00270{height:56.156250pt;}
.h2_c00270{height:57.375000pt;}
.h3_c00270{height:66.750000pt;}
.h0_c00270{height:1122.666667pt;}
.w1_c00270{width:793.333333pt;}
.w0_c00270{width:793.626667pt;}
.x0_c00270{left:0.000000pt;}
.x2_c00270{left:151.200000pt;}
.x3_c00270{left:170.160000pt;}
.x1_c00270{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b9e47771cf9126c303523440.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.093262;font-style:normal;font-weight:normal;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_093922bd11a7654d295a9416.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00271{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00271{vertical-align:0.000000px;}
.lsc_c00271{letter-spacing:-0.086400px;}
.ls8_c00271{letter-spacing:-0.079200px;}
.lsb_c00271{letter-spacing:-0.072000px;}
.ls3_c00271{letter-spacing:-0.064800px;}
.lsa_c00271{letter-spacing:-0.057600px;}
.ls2_c00271{letter-spacing:-0.050400px;}
.ls4_c00271{letter-spacing:-0.043200px;}
.ls7_c00271{letter-spacing:-0.036000px;}
.ls6_c00271{letter-spacing:-0.028800px;}
.ls5_c00271{letter-spacing:-0.021600px;}
.ls9_c00271{letter-spacing:-0.014400px;}
.ls1_c00271{letter-spacing:0.000000px;}
.lsd_c00271{letter-spacing:0.007200px;}
.ls0_c00271{letter-spacing:0.043200px;}
.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;}
}
.ws29_c00271{word-spacing:-4.521600px;}
.ws2a_c00271{word-spacing:-4.392000px;}
.ws20_c00271{word-spacing:-1.684800px;}
.ws21_c00271{word-spacing:-1.598400px;}
.ws34_c00271{word-spacing:-1.324800px;}
.ws32_c00271{word-spacing:-1.303200px;}
.ws33_c00271{word-spacing:-1.267200px;}
.ws31_c00271{word-spacing:-1.216800px;}
.wsa_c00271{word-spacing:-0.885600px;}
.ws1c_c00271{word-spacing:-0.849600px;}
.ws1d_c00271{word-spacing:-0.835200px;}
.ws0_c00271{word-spacing:0.000000px;}
.ws10_c00271{word-spacing:0.057600px;}
.ws5_c00271{word-spacing:0.108000px;}
.ws11_c00271{word-spacing:0.115200px;}
.wsb_c00271{word-spacing:0.172800px;}
.ws1b_c00271{word-spacing:0.180000px;}
.ws22_c00271{word-spacing:0.187200px;}
.ws6_c00271{word-spacing:0.201600px;}
.ws18_c00271{word-spacing:0.252000px;}
.ws15_c00271{word-spacing:1.634400px;}
.ws2d_c00271{word-spacing:2.016000px;}
.ws38_c00271{word-spacing:5.630400px;}
.ws37_c00271{word-spacing:5.666400px;}
.ws16_c00271{word-spacing:7.768800px;}
.ws17_c00271{word-spacing:7.776000px;}
.ws14_c00271{word-spacing:8.812800px;}
.ws1f_c00271{word-spacing:9.201600px;}
.ws1e_c00271{word-spacing:9.295200px;}
.ws2f_c00271{word-spacing:11.642400px;}
.ws30_c00271{word-spacing:11.721600px;}
.ws2e_c00271{word-spacing:14.580000px;}
.ws2c_c00271{word-spacing:15.271200px;}
.ws2b_c00271{word-spacing:15.393600px;}
.wsf_c00271{word-spacing:15.638400px;}
.ws27_c00271{word-spacing:15.890400px;}
.ws28_c00271{word-spacing:16.120800px;}
.ws26_c00271{word-spacing:16.394400px;}
.ws25_c00271{word-spacing:16.459200px;}
.ws35_c00271{word-spacing:18.813600px;}
.ws36_c00271{word-spacing:18.936000px;}
.ws1_c00271{word-spacing:21.088800px;}
.ws2_c00271{word-spacing:21.103200px;}
.ws8_c00271{word-spacing:22.154400px;}
.ws9_c00271{word-spacing:22.197600px;}
.ws19_c00271{word-spacing:24.328800px;}
.ws3_c00271{word-spacing:25.668000px;}
.ws4_c00271{word-spacing:25.761600px;}
.ws12_c00271{word-spacing:31.860000px;}
.ws13_c00271{word-spacing:31.874400px;}
.ws1a_c00271{word-spacing:34.776000px;}
.ws23_c00271{word-spacing:35.467200px;}
.ws24_c00271{word-spacing:35.481600px;}
.ws7_c00271{word-spacing:36.907200px;}
.wsd_c00271{word-spacing:39.038400px;}
.wse_c00271{word-spacing:39.060000px;}
.wsc_c00271{word-spacing:57.067200px;}
._0_c00271{width:1.036800px;}
.fc0_c00271{color:rgb(0,0,0);}
.fs0_c00271{font-size:72.000000px;}
.y0_c00271{bottom:0.000000px;}
.y2_c00271{bottom:46.830450px;}
.y1_c00271{bottom:67.530450px;}
.y2a_c00271{bottom:144.480450px;}
.y29_c00271{bottom:165.180450px;}
.y28_c00271{bottom:185.880450px;}
.y27_c00271{bottom:206.580450px;}
.y26_c00271{bottom:227.280450px;}
.y25_c00271{bottom:247.980450px;}
.y24_c00271{bottom:268.680450px;}
.y23_c00271{bottom:289.380450px;}
.y22_c00271{bottom:310.080450px;}
.y21_c00271{bottom:330.690450px;}
.y20_c00271{bottom:351.390450px;}
.y1f_c00271{bottom:372.090450px;}
.y1e_c00271{bottom:421.140450px;}
.y1d_c00271{bottom:452.190450px;}
.y1c_c00271{bottom:483.240450px;}
.y1b_c00271{bottom:514.290450px;}
.y1a_c00271{bottom:563.340450px;}
.y19_c00271{bottom:594.390450px;}
.y18_c00271{bottom:625.440450px;}
.y17_c00271{bottom:674.490450px;}
.y16_c00271{bottom:704.190450px;}
.y15_c00271{bottom:724.890450px;}
.y14_c00271{bottom:745.590450px;}
.y13_c00271{bottom:766.290450px;}
.y12_c00271{bottom:786.990450px;}
.y11_c00271{bottom:807.690450px;}
.y10_c00271{bottom:828.390450px;}
.yf_c00271{bottom:849.090450px;}
.ye_c00271{bottom:869.790450px;}
.yd_c00271{bottom:890.490450px;}
.yc_c00271{bottom:911.190450px;}
.yb_c00271{bottom:931.890450px;}
.ya_c00271{bottom:952.590450px;}
.y9_c00271{bottom:973.290450px;}
.y8_c00271{bottom:993.990450px;}
.y7_c00271{bottom:1014.690450px;}
.y6_c00271{bottom:1035.390450px;}
.y5_c00271{bottom:1056.090450px;}
.y4_c00271{bottom:1076.790450px;}
.y3_c00271{bottom:1097.490450px;}
.h1_c00271{height:63.175781px;}
.h2_c00271{height:64.546875px;}
.h0_c00271{height:1263.000000px;}
.w1_c00271{width:892.500000px;}
.w0_c00271{width:892.830000px;}
.x0_c00271{left:0.000000px;}
.x2_c00271{left:127.620000px;}
.x3_c00271{left:148.950000px;}
.x1_c00271{left:695.880000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.lsc_c00271{letter-spacing:-0.076800pt;}
.ls8_c00271{letter-spacing:-0.070400pt;}
.lsb_c00271{letter-spacing:-0.064000pt;}
.ls3_c00271{letter-spacing:-0.057600pt;}
.lsa_c00271{letter-spacing:-0.051200pt;}
.ls2_c00271{letter-spacing:-0.044800pt;}
.ls4_c00271{letter-spacing:-0.038400pt;}
.ls7_c00271{letter-spacing:-0.032000pt;}
.ls6_c00271{letter-spacing:-0.025600pt;}
.ls5_c00271{letter-spacing:-0.019200pt;}
.ls9_c00271{letter-spacing:-0.012800pt;}
.ls1_c00271{letter-spacing:0.000000pt;}
.lsd_c00271{letter-spacing:0.006400pt;}
.ls0_c00271{letter-spacing:0.038400pt;}
.ws29_c00271{word-spacing:-4.019200pt;}
.ws2a_c00271{word-spacing:-3.904000pt;}
.ws20_c00271{word-spacing:-1.497600pt;}
.ws21_c00271{word-spacing:-1.420800pt;}
.ws34_c00271{word-spacing:-1.177600pt;}
.ws32_c00271{word-spacing:-1.158400pt;}
.ws33_c00271{word-spacing:-1.126400pt;}
.ws31_c00271{word-spacing:-1.081600pt;}
.wsa_c00271{word-spacing:-0.787200pt;}
.ws1c_c00271{word-spacing:-0.755200pt;}
.ws1d_c00271{word-spacing:-0.742400pt;}
.ws0_c00271{word-spacing:0.000000pt;}
.ws10_c00271{word-spacing:0.051200pt;}
.ws5_c00271{word-spacing:0.096000pt;}
.ws11_c00271{word-spacing:0.102400pt;}
.wsb_c00271{word-spacing:0.153600pt;}
.ws1b_c00271{word-spacing:0.160000pt;}
.ws22_c00271{word-spacing:0.166400pt;}
.ws6_c00271{word-spacing:0.179200pt;}
.ws18_c00271{word-spacing:0.224000pt;}
.ws15_c00271{word-spacing:1.452800pt;}
.ws2d_c00271{word-spacing:1.792000pt;}
.ws38_c00271{word-spacing:5.004800pt;}
.ws37_c00271{word-spacing:5.036800pt;}
.ws16_c00271{word-spacing:6.905600pt;}
.ws17_c00271{word-spacing:6.912000pt;}
.ws14_c00271{word-spacing:7.833600pt;}
.ws1f_c00271{word-spacing:8.179200pt;}
.ws1e_c00271{word-spacing:8.262400pt;}
.ws2f_c00271{word-spacing:10.348800pt;}
.ws30_c00271{word-spacing:10.419200pt;}
.ws2e_c00271{word-spacing:12.960000pt;}
.ws2c_c00271{word-spacing:13.574400pt;}
.ws2b_c00271{word-spacing:13.683200pt;}
.wsf_c00271{word-spacing:13.900800pt;}
.ws27_c00271{word-spacing:14.124800pt;}
.ws28_c00271{word-spacing:14.329600pt;}
.ws26_c00271{word-spacing:14.572800pt;}
.ws25_c00271{word-spacing:14.630400pt;}
.ws35_c00271{word-spacing:16.723200pt;}
.ws36_c00271{word-spacing:16.832000pt;}
.ws1_c00271{word-spacing:18.745600pt;}
.ws2_c00271{word-spacing:18.758400pt;}
.ws8_c00271{word-spacing:19.692800pt;}
.ws9_c00271{word-spacing:19.731200pt;}
.ws19_c00271{word-spacing:21.625600pt;}
.ws3_c00271{word-spacing:22.816000pt;}
.ws4_c00271{word-spacing:22.899200pt;}
.ws12_c00271{word-spacing:28.320000pt;}
.ws13_c00271{word-spacing:28.332800pt;}
.ws1a_c00271{word-spacing:30.912000pt;}
.ws23_c00271{word-spacing:31.526400pt;}
.ws24_c00271{word-spacing:31.539200pt;}
.ws7_c00271{word-spacing:32.806400pt;}
.wsd_c00271{word-spacing:34.700800pt;}
.wse_c00271{word-spacing:34.720000pt;}
.wsc_c00271{word-spacing:50.726400pt;}
._0_c00271{width:0.921600pt;}
.fs0_c00271{font-size:64.000000pt;}
.y0_c00271{bottom:0.000000pt;}
.y2_c00271{bottom:41.627067pt;}
.y1_c00271{bottom:60.027067pt;}
.y2a_c00271{bottom:128.427067pt;}
.y29_c00271{bottom:146.827067pt;}
.y28_c00271{bottom:165.227067pt;}
.y27_c00271{bottom:183.627067pt;}
.y26_c00271{bottom:202.027067pt;}
.y25_c00271{bottom:220.427067pt;}
.y24_c00271{bottom:238.827067pt;}
.y23_c00271{bottom:257.227067pt;}
.y22_c00271{bottom:275.627067pt;}
.y21_c00271{bottom:293.947067pt;}
.y20_c00271{bottom:312.347067pt;}
.y1f_c00271{bottom:330.747067pt;}
.y1e_c00271{bottom:374.347067pt;}
.y1d_c00271{bottom:401.947067pt;}
.y1c_c00271{bottom:429.547067pt;}
.y1b_c00271{bottom:457.147067pt;}
.y1a_c00271{bottom:500.747067pt;}
.y19_c00271{bottom:528.347067pt;}
.y18_c00271{bottom:555.947067pt;}
.y17_c00271{bottom:599.547067pt;}
.y16_c00271{bottom:625.947067pt;}
.y15_c00271{bottom:644.347067pt;}
.y14_c00271{bottom:662.747067pt;}
.y13_c00271{bottom:681.147067pt;}
.y12_c00271{bottom:699.547067pt;}
.y11_c00271{bottom:717.947067pt;}
.y10_c00271{bottom:736.347067pt;}
.yf_c00271{bottom:754.747067pt;}
.ye_c00271{bottom:773.147067pt;}
.yd_c00271{bottom:791.547067pt;}
.yc_c00271{bottom:809.947067pt;}
.yb_c00271{bottom:828.347067pt;}
.ya_c00271{bottom:846.747067pt;}
.y9_c00271{bottom:865.147067pt;}
.y8_c00271{bottom:883.547067pt;}
.y7_c00271{bottom:901.947067pt;}
.y6_c00271{bottom:920.347067pt;}
.y5_c00271{bottom:938.747067pt;}
.y4_c00271{bottom:957.147067pt;}
.y3_c00271{bottom:975.547067pt;}
.h1_c00271{height:56.156250pt;}
.h2_c00271{height:57.375000pt;}
.h0_c00271{height:1122.666667pt;}
.w1_c00271{width:793.333333pt;}
.w0_c00271{width:793.626667pt;}
.x0_c00271{left:0.000000pt;}
.x2_c00271{left:113.440000pt;}
.x3_c00271{left:132.400000pt;}
.x1_c00271{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_478ed73e8ca21bebc325a9b5.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.093262;font-style:normal;font-weight:normal;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_16109b086ea49c4ecef3ffec.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.ls1_c00272{letter-spacing:-0.072000px;}
.lsc_c00272{letter-spacing:-0.064800px;}
.ls7_c00272{letter-spacing:-0.057600px;}
.ls3_c00272{letter-spacing:-0.050400px;}
.ls9_c00272{letter-spacing:-0.043200px;}
.ls6_c00272{letter-spacing:-0.036000px;}
.ls2_c00272{letter-spacing:-0.028800px;}
.lsb_c00272{letter-spacing:-0.021600px;}
.ls8_c00272{letter-spacing:-0.014400px;}
.lsa_c00272{letter-spacing:-0.007200px;}
.ls0_c00272{letter-spacing:0.000000px;}
.ls5_c00272{letter-spacing:0.007200px;}
.ls4_c00272{letter-spacing:0.014400px;}
.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;}
}
.ws5_c00272{word-spacing:-2.008800px;}
.ws4_c00272{word-spacing:-1.972800px;}
.ws28_c00272{word-spacing:-1.612800px;}
.ws29_c00272{word-spacing:-1.512000px;}
.wsb_c00272{word-spacing:-0.936000px;}
.ws22_c00272{word-spacing:-0.554400px;}
.ws21_c00272{word-spacing:-0.518400px;}
.ws0_c00272{word-spacing:0.000000px;}
.ws1d_c00272{word-spacing:0.100800px;}
.wsc_c00272{word-spacing:0.122400px;}
.ws2e_c00272{word-spacing:0.324000px;}
.ws17_c00272{word-spacing:0.489600px;}
.ws27_c00272{word-spacing:0.525600px;}
.ws18_c00272{word-spacing:0.561600px;}
.ws15_c00272{word-spacing:0.907200px;}
.ws1_c00272{word-spacing:1.310400px;}
.ws7_c00272{word-spacing:3.074400px;}
.ws8_c00272{word-spacing:3.204000px;}
.ws20_c00272{word-spacing:3.808800px;}
.ws12_c00272{word-spacing:4.075200px;}
.ws11_c00272{word-spacing:4.125600px;}
.ws6_c00272{word-spacing:4.154400px;}
.ws2d_c00272{word-spacing:4.168800px;}
.ws2_c00272{word-spacing:4.507200px;}
.ws3_c00272{word-spacing:4.528800px;}
.ws10_c00272{word-spacing:4.881600px;}
.ws16_c00272{word-spacing:10.620000px;}
.ws26_c00272{word-spacing:10.972800px;}
.ws25_c00272{word-spacing:10.987200px;}
.ws1a_c00272{word-spacing:17.035200px;}
.wse_c00272{word-spacing:17.121600px;}
.wsd_c00272{word-spacing:17.128800px;}
.wsf_c00272{word-spacing:17.150400px;}
.ws19_c00272{word-spacing:17.251200px;}
.ws1b_c00272{word-spacing:19.627200px;}
.ws1c_c00272{word-spacing:19.641600px;}
.ws1f_c00272{word-spacing:25.624800px;}
.ws1e_c00272{word-spacing:25.790400px;}
.ws13_c00272{word-spacing:27.568800px;}
.ws24_c00272{word-spacing:27.583200px;}
.ws14_c00272{word-spacing:27.612000px;}
.ws23_c00272{word-spacing:27.669600px;}
.wsa_c00272{word-spacing:32.140800px;}
.ws9_c00272{word-spacing:32.248800px;}
.ws2a_c00272{word-spacing:36.900000px;}
.ws2b_c00272{word-spacing:45.180000px;}
.ws2c_c00272{word-spacing:45.216000px;}
._0_c00272{width:1.000800px;}
.fc0_c00272{color:rgb(0,0,0);}
.fs0_c00272{font-size:72.000000px;}
.y0_c00272{bottom:0.000000px;}
.y2_c00272{bottom:46.830450px;}
.y1_c00272{bottom:67.530450px;}
.y25_c00272{bottom:209.280450px;}
.y24_c00272{bottom:238.980450px;}
.y23_c00272{bottom:259.680450px;}
.y22_c00272{bottom:280.380450px;}
.y21_c00272{bottom:301.080450px;}
.y20_c00272{bottom:321.690450px;}
.y1f_c00272{bottom:342.390450px;}
.y1e_c00272{bottom:363.090450px;}
.y1d_c00272{bottom:383.790450px;}
.y1c_c00272{bottom:404.490450px;}
.y1b_c00272{bottom:453.540450px;}
.y1a_c00272{bottom:484.590450px;}
.y19_c00272{bottom:515.640450px;}
.y18_c00272{bottom:545.340450px;}
.y17_c00272{bottom:566.040450px;}
.y16_c00272{bottom:586.740450px;}
.y15_c00272{bottom:607.440450px;}
.y14_c00272{bottom:628.140450px;}
.y13_c00272{bottom:648.840450px;}
.y12_c00272{bottom:669.540450px;}
.y11_c00272{bottom:690.240450px;}
.y10_c00272{bottom:710.940450px;}
.yf_c00272{bottom:731.640450px;}
.ye_c00272{bottom:752.340450px;}
.yd_c00272{bottom:773.040450px;}
.yc_c00272{bottom:822.090450px;}
.yb_c00272{bottom:853.140450px;}
.ya_c00272{bottom:884.190450px;}
.y9_c00272{bottom:915.240450px;}
.y8_c00272{bottom:946.290450px;}
.y7_c00272{bottom:977.340450px;}
.y6_c00272{bottom:1026.390450px;}
.y5_c00272{bottom:1056.090450px;}
.y4_c00272{bottom:1076.790450px;}
.y3_c00272{bottom:1097.490450px;}
.h1_c00272{height:63.175781px;}
.h2_c00272{height:64.546875px;}
.h0_c00272{height:1263.000000px;}
.w1_c00272{width:892.500000px;}
.w0_c00272{width:892.830000px;}
.x0_c00272{left:0.000000px;}
.x2_c00272{left:170.100000px;}
.x3_c00272{left:191.430000px;}
.x1_c00272{left:738.360000px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls1_c00272{letter-spacing:-0.064000pt;}
.lsc_c00272{letter-spacing:-0.057600pt;}
.ls7_c00272{letter-spacing:-0.051200pt;}
.ls3_c00272{letter-spacing:-0.044800pt;}
.ls9_c00272{letter-spacing:-0.038400pt;}
.ls6_c00272{letter-spacing:-0.032000pt;}
.ls2_c00272{letter-spacing:-0.025600pt;}
.lsb_c00272{letter-spacing:-0.019200pt;}
.ls8_c00272{letter-spacing:-0.012800pt;}
.lsa_c00272{letter-spacing:-0.006400pt;}
.ls0_c00272{letter-spacing:0.000000pt;}
.ls5_c00272{letter-spacing:0.006400pt;}
.ls4_c00272{letter-spacing:0.012800pt;}
.ws5_c00272{word-spacing:-1.785600pt;}
.ws4_c00272{word-spacing:-1.753600pt;}
.ws28_c00272{word-spacing:-1.433600pt;}
.ws29_c00272{word-spacing:-1.344000pt;}
.wsb_c00272{word-spacing:-0.832000pt;}
.ws22_c00272{word-spacing:-0.492800pt;}
.ws21_c00272{word-spacing:-0.460800pt;}
.ws0_c00272{word-spacing:0.000000pt;}
.ws1d_c00272{word-spacing:0.089600pt;}
.wsc_c00272{word-spacing:0.108800pt;}
.ws2e_c00272{word-spacing:0.288000pt;}
.ws17_c00272{word-spacing:0.435200pt;}
.ws27_c00272{word-spacing:0.467200pt;}
.ws18_c00272{word-spacing:0.499200pt;}
.ws15_c00272{word-spacing:0.806400pt;}
.ws1_c00272{word-spacing:1.164800pt;}
.ws7_c00272{word-spacing:2.732800pt;}
.ws8_c00272{word-spacing:2.848000pt;}
.ws20_c00272{word-spacing:3.385600pt;}
.ws12_c00272{word-spacing:3.622400pt;}
.ws11_c00272{word-spacing:3.667200pt;}
.ws6_c00272{word-spacing:3.692800pt;}
.ws2d_c00272{word-spacing:3.705600pt;}
.ws2_c00272{word-spacing:4.006400pt;}
.ws3_c00272{word-spacing:4.025600pt;}
.ws10_c00272{word-spacing:4.339200pt;}
.ws16_c00272{word-spacing:9.440000pt;}
.ws26_c00272{word-spacing:9.753600pt;}
.ws25_c00272{word-spacing:9.766400pt;}
.ws1a_c00272{word-spacing:15.142400pt;}
.wse_c00272{word-spacing:15.219200pt;}
.wsd_c00272{word-spacing:15.225600pt;}
.wsf_c00272{word-spacing:15.244800pt;}
.ws19_c00272{word-spacing:15.334400pt;}
.ws1b_c00272{word-spacing:17.446400pt;}
.ws1c_c00272{word-spacing:17.459200pt;}
.ws1f_c00272{word-spacing:22.777600pt;}
.ws1e_c00272{word-spacing:22.924800pt;}
.ws13_c00272{word-spacing:24.505600pt;}
.ws24_c00272{word-spacing:24.518400pt;}
.ws14_c00272{word-spacing:24.544000pt;}
.ws23_c00272{word-spacing:24.595200pt;}
.wsa_c00272{word-spacing:28.569600pt;}
.ws9_c00272{word-spacing:28.665600pt;}
.ws2a_c00272{word-spacing:32.800000pt;}
.ws2b_c00272{word-spacing:40.160000pt;}
.ws2c_c00272{word-spacing:40.192000pt;}
._0_c00272{width:0.889600pt;}
.fs0_c00272{font-size:64.000000pt;}
.y0_c00272{bottom:0.000000pt;}
.y2_c00272{bottom:41.627067pt;}
.y1_c00272{bottom:60.027067pt;}
.y25_c00272{bottom:186.027067pt;}
.y24_c00272{bottom:212.427067pt;}
.y23_c00272{bottom:230.827067pt;}
.y22_c00272{bottom:249.227067pt;}
.y21_c00272{bottom:267.627067pt;}
.y20_c00272{bottom:285.947067pt;}
.y1f_c00272{bottom:304.347067pt;}
.y1e_c00272{bottom:322.747067pt;}
.y1d_c00272{bottom:341.147067pt;}
.y1c_c00272{bottom:359.547067pt;}
.y1b_c00272{bottom:403.147067pt;}
.y1a_c00272{bottom:430.747067pt;}
.y19_c00272{bottom:458.347067pt;}
.y18_c00272{bottom:484.747067pt;}
.y17_c00272{bottom:503.147067pt;}
.y16_c00272{bottom:521.547067pt;}
.y15_c00272{bottom:539.947067pt;}
.y14_c00272{bottom:558.347067pt;}
.y13_c00272{bottom:576.747067pt;}
.y12_c00272{bottom:595.147067pt;}
.y11_c00272{bottom:613.547067pt;}
.y10_c00272{bottom:631.947067pt;}
.yf_c00272{bottom:650.347067pt;}
.ye_c00272{bottom:668.747067pt;}
.yd_c00272{bottom:687.147067pt;}
.yc_c00272{bottom:730.747067pt;}
.yb_c00272{bottom:758.347067pt;}
.ya_c00272{bottom:785.947067pt;}
.y9_c00272{bottom:813.547067pt;}
.y8_c00272{bottom:841.147067pt;}
.y7_c00272{bottom:868.747067pt;}
.y6_c00272{bottom:912.347067pt;}
.y5_c00272{bottom:938.747067pt;}
.y4_c00272{bottom:957.147067pt;}
.y3_c00272{bottom:975.547067pt;}
.h1_c00272{height:56.156250pt;}
.h2_c00272{height:57.375000pt;}
.h0_c00272{height:1122.666667pt;}
.w1_c00272{width:793.333333pt;}
.w0_c00272{width:793.626667pt;}
.x0_c00272{left:0.000000pt;}
.x2_c00272{left:151.200000pt;}
.x3_c00272{left:170.160000pt;}
.x1_c00272{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dee2cf6c5b08ef3a343dda87.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.093262;font-style:normal;font-weight:normal;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_1d197b99169d071f1556e9a1.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.106934;font-style: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;}
.lsa_c00273{letter-spacing:-0.072000px;}
.ls3_c00273{letter-spacing:-0.064800px;}
.ls4_c00273{letter-spacing:-0.057600px;}
.ls5_c00273{letter-spacing:-0.050400px;}
.ls2_c00273{letter-spacing:-0.043200px;}
.ls1_c00273{letter-spacing:-0.036000px;}
.ls6_c00273{letter-spacing:-0.028800px;}
.ls9_c00273{letter-spacing:-0.021600px;}
.ls8_c00273{letter-spacing:-0.014400px;}
.ls7_c00273{letter-spacing:-0.007200px;}
.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;}
}
.ws20_c00273{word-spacing:-4.125600px;}
.ws21_c00273{word-spacing:-4.118400px;}
.ws12_c00273{word-spacing:-2.325600px;}
.ws13_c00273{word-spacing:-2.289600px;}
.ws11_c00273{word-spacing:-2.224800px;}
.wsc_c00273{word-spacing:-1.641600px;}
.wsb_c00273{word-spacing:-1.627200px;}
.wsa_c00273{word-spacing:-1.454400px;}
.ws2a_c00273{word-spacing:-0.475200px;}
.ws29_c00273{word-spacing:-0.453600px;}
.ws0_c00273{word-spacing:0.000000px;}
.ws34_c00273{word-spacing:0.122400px;}
.ws1b_c00273{word-spacing:0.129600px;}
.ws8_c00273{word-spacing:0.165600px;}
.ws22_c00273{word-spacing:0.172800px;}
.ws1a_c00273{word-spacing:0.194400px;}
.ws28_c00273{word-spacing:0.331200px;}
.ws27_c00273{word-spacing:0.568800px;}
.ws26_c00273{word-spacing:0.928800px;}
.ws25_c00273{word-spacing:0.979200px;}
.ws23_c00273{word-spacing:1.620000px;}
.ws2b_c00273{word-spacing:1.641600px;}
.ws24_c00273{word-spacing:1.656000px;}
.ws9_c00273{word-spacing:2.016000px;}
.ws3_c00273{word-spacing:2.671200px;}
.ws4_c00273{word-spacing:2.721600px;}
.ws35_c00273{word-spacing:2.736000px;}
.wsd_c00273{word-spacing:3.052800px;}
.wse_c00273{word-spacing:3.139200px;}
.ws30_c00273{word-spacing:3.808800px;}
.ws31_c00273{word-spacing:3.830400px;}
.ws1_c00273{word-spacing:7.754400px;}
.ws2_c00273{word-spacing:7.761600px;}
.ws6_c00273{word-spacing:8.128800px;}
.ws7_c00273{word-spacing:8.164800px;}
.ws5_c00273{word-spacing:9.936000px;}
.ws10_c00273{word-spacing:14.220000px;}
.wsf_c00273{word-spacing:14.256000px;}
.ws2f_c00273{word-spacing:16.459200px;}
.ws2e_c00273{word-spacing:16.473600px;}
.ws37_c00273{word-spacing:16.747200px;}
.ws1f_c00273{word-spacing:16.840800px;}
.ws1e_c00273{word-spacing:16.891200px;}
.ws32_c00273{word-spacing:17.719200px;}
.ws33_c00273{word-spacing:17.827200px;}
.ws16_c00273{word-spacing:18.180000px;}
.ws17_c00273{word-spacing:18.194400px;}
.ws2c_c00273{word-spacing:19.994400px;}
.ws14_c00273{word-spacing:21.772800px;}
.ws15_c00273{word-spacing:21.801600px;}
.ws2d_c00273{word-spacing:27.201600px;}
.ws1c_c00273{word-spacing:40.132800px;}
.ws1d_c00273{word-spacing:40.161600px;}
.ws36_c00273{word-spacing:46.274400px;}
.ws18_c00273{word-spacing:46.605600px;}
.ws19_c00273{word-spacing:46.627200px;}
.fc0_c00273{color:rgb(0,0,0);}
.fs0_c00273{font-size:72.000000px;}
.y0_c00273{bottom:0.000000px;}
.y2_c00273{bottom:46.830450px;}
.y1_c00273{bottom:67.530450px;}
.y26_c00273{bottom:158.880450px;}
.y25_c00273{bottom:189.930450px;}
.y24_c00273{bottom:220.980450px;}
.y23_c00273{bottom:270.030450px;}
.y22_c00273{bottom:299.730450px;}
.y21_c00273{bottom:320.430450px;}
.y20_c00273{bottom:341.040450px;}
.y1f_c00273{bottom:361.740450px;}
.y1e_c00273{bottom:382.440450px;}
.y1d_c00273{bottom:403.140450px;}
.y1c_c00273{bottom:423.840450px;}
.y1b_c00273{bottom:444.540450px;}
.y1a_c00273{bottom:465.240450px;}
.y19_c00273{bottom:485.940450px;}
.y18_c00273{bottom:506.640450px;}
.y17_c00273{bottom:555.690450px;}
.y16_c00273{bottom:586.740450px;}
.y15_c00273{bottom:617.790450px;}
.y14_c00273{bottom:666.840450px;}
.y13_c00273{bottom:696.540450px;}
.y12_c00273{bottom:717.240450px;}
.y11_c00273{bottom:737.940450px;}
.y10_c00273{bottom:758.640450px;}
.yf_c00273{bottom:779.340450px;}
.ye_c00273{bottom:800.040450px;}
.yd_c00273{bottom:820.740450px;}
.yc_c00273{bottom:841.440450px;}
.yb_c00273{bottom:862.140450px;}
.ya_c00273{bottom:882.840450px;}
.y9_c00273{bottom:903.540450px;}
.y8_c00273{bottom:924.240450px;}
.y7_c00273{bottom:973.290450px;}
.y6_c00273{bottom:1004.340450px;}
.y5_c00273{bottom:1035.390450px;}
.y4_c00273{bottom:1066.440450px;}
.y3_c00273{bottom:1097.490450px;}
.h1_c00273{height:63.175781px;}
.h2_c00273{height:64.546875px;}
.h0_c00273{height:1263.000000px;}
.w1_c00273{width:892.500000px;}
.w0_c00273{width:892.830000px;}
.x0_c00273{left:0.000000px;}
.x2_c00273{left:127.620000px;}
.x3_c00273{left:148.950000px;}
.x1_c00273{left:695.880000px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.lsa_c00273{letter-spacing:-0.064000pt;}
.ls3_c00273{letter-spacing:-0.057600pt;}
.ls4_c00273{letter-spacing:-0.051200pt;}
.ls5_c00273{letter-spacing:-0.044800pt;}
.ls2_c00273{letter-spacing:-0.038400pt;}
.ls1_c00273{letter-spacing:-0.032000pt;}
.ls6_c00273{letter-spacing:-0.025600pt;}
.ls9_c00273{letter-spacing:-0.019200pt;}
.ls8_c00273{letter-spacing:-0.012800pt;}
.ls7_c00273{letter-spacing:-0.006400pt;}
.ls0_c00273{letter-spacing:0.000000pt;}
.ws20_c00273{word-spacing:-3.667200pt;}
.ws21_c00273{word-spacing:-3.660800pt;}
.ws12_c00273{word-spacing:-2.067200pt;}
.ws13_c00273{word-spacing:-2.035200pt;}
.ws11_c00273{word-spacing:-1.977600pt;}
.wsc_c00273{word-spacing:-1.459200pt;}
.wsb_c00273{word-spacing:-1.446400pt;}
.wsa_c00273{word-spacing:-1.292800pt;}
.ws2a_c00273{word-spacing:-0.422400pt;}
.ws29_c00273{word-spacing:-0.403200pt;}
.ws0_c00273{word-spacing:0.000000pt;}
.ws34_c00273{word-spacing:0.108800pt;}
.ws1b_c00273{word-spacing:0.115200pt;}
.ws8_c00273{word-spacing:0.147200pt;}
.ws22_c00273{word-spacing:0.153600pt;}
.ws1a_c00273{word-spacing:0.172800pt;}
.ws28_c00273{word-spacing:0.294400pt;}
.ws27_c00273{word-spacing:0.505600pt;}
.ws26_c00273{word-spacing:0.825600pt;}
.ws25_c00273{word-spacing:0.870400pt;}
.ws23_c00273{word-spacing:1.440000pt;}
.ws2b_c00273{word-spacing:1.459200pt;}
.ws24_c00273{word-spacing:1.472000pt;}
.ws9_c00273{word-spacing:1.792000pt;}
.ws3_c00273{word-spacing:2.374400pt;}
.ws4_c00273{word-spacing:2.419200pt;}
.ws35_c00273{word-spacing:2.432000pt;}
.wsd_c00273{word-spacing:2.713600pt;}
.wse_c00273{word-spacing:2.790400pt;}
.ws30_c00273{word-spacing:3.385600pt;}
.ws31_c00273{word-spacing:3.404800pt;}
.ws1_c00273{word-spacing:6.892800pt;}
.ws2_c00273{word-spacing:6.899200pt;}
.ws6_c00273{word-spacing:7.225600pt;}
.ws7_c00273{word-spacing:7.257600pt;}
.ws5_c00273{word-spacing:8.832000pt;}
.ws10_c00273{word-spacing:12.640000pt;}
.wsf_c00273{word-spacing:12.672000pt;}
.ws2f_c00273{word-spacing:14.630400pt;}
.ws2e_c00273{word-spacing:14.643200pt;}
.ws37_c00273{word-spacing:14.886400pt;}
.ws1f_c00273{word-spacing:14.969600pt;}
.ws1e_c00273{word-spacing:15.014400pt;}
.ws32_c00273{word-spacing:15.750400pt;}
.ws33_c00273{word-spacing:15.846400pt;}
.ws16_c00273{word-spacing:16.160000pt;}
.ws17_c00273{word-spacing:16.172800pt;}
.ws2c_c00273{word-spacing:17.772800pt;}
.ws14_c00273{word-spacing:19.353600pt;}
.ws15_c00273{word-spacing:19.379200pt;}
.ws2d_c00273{word-spacing:24.179200pt;}
.ws1c_c00273{word-spacing:35.673600pt;}
.ws1d_c00273{word-spacing:35.699200pt;}
.ws36_c00273{word-spacing:41.132800pt;}
.ws18_c00273{word-spacing:41.427200pt;}
.ws19_c00273{word-spacing:41.446400pt;}
.fs0_c00273{font-size:64.000000pt;}
.y0_c00273{bottom:0.000000pt;}
.y2_c00273{bottom:41.627067pt;}
.y1_c00273{bottom:60.027067pt;}
.y26_c00273{bottom:141.227067pt;}
.y25_c00273{bottom:168.827067pt;}
.y24_c00273{bottom:196.427067pt;}
.y23_c00273{bottom:240.027067pt;}
.y22_c00273{bottom:266.427067pt;}
.y21_c00273{bottom:284.827067pt;}
.y20_c00273{bottom:303.147067pt;}
.y1f_c00273{bottom:321.547067pt;}
.y1e_c00273{bottom:339.947067pt;}
.y1d_c00273{bottom:358.347067pt;}
.y1c_c00273{bottom:376.747067pt;}
.y1b_c00273{bottom:395.147067pt;}
.y1a_c00273{bottom:413.547067pt;}
.y19_c00273{bottom:431.947067pt;}
.y18_c00273{bottom:450.347067pt;}
.y17_c00273{bottom:493.947067pt;}
.y16_c00273{bottom:521.547067pt;}
.y15_c00273{bottom:549.147067pt;}
.y14_c00273{bottom:592.747067pt;}
.y13_c00273{bottom:619.147067pt;}
.y12_c00273{bottom:637.547067pt;}
.y11_c00273{bottom:655.947067pt;}
.y10_c00273{bottom:674.347067pt;}
.yf_c00273{bottom:692.747067pt;}
.ye_c00273{bottom:711.147067pt;}
.yd_c00273{bottom:729.547067pt;}
.yc_c00273{bottom:747.947067pt;}
.yb_c00273{bottom:766.347067pt;}
.ya_c00273{bottom:784.747067pt;}
.y9_c00273{bottom:803.147067pt;}
.y8_c00273{bottom:821.547067pt;}
.y7_c00273{bottom:865.147067pt;}
.y6_c00273{bottom:892.747067pt;}
.y5_c00273{bottom:920.347067pt;}
.y4_c00273{bottom:947.947067pt;}
.y3_c00273{bottom:975.547067pt;}
.h1_c00273{height:56.156250pt;}
.h2_c00273{height:57.375000pt;}
.h0_c00273{height:1122.666667pt;}
.w1_c00273{width:793.333333pt;}
.w0_c00273{width:793.626667pt;}
.x0_c00273{left:0.000000pt;}
.x2_c00273{left:113.440000pt;}
.x3_c00273{left:132.400000pt;}
.x1_c00273{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9239659ef2c3f058ac8453bf.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.093262;font-style:normal;font-weight:normal;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_bd3b35740ee4c023b314ac64.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.106934;font-style:normal;font-weight:normal;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_bb97504abe5ec49404e2cde2.woff2')format("woff");}.ff3_c00274{font-family:ff3_c00274;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00274{letter-spacing:-0.158400px;}
.ls2_c00274{letter-spacing:-0.072000px;}
.ls9_c00274{letter-spacing:-0.064800px;}
.ls3_c00274{letter-spacing:-0.057600px;}
.lsa_c00274{letter-spacing:-0.050400px;}
.ls4_c00274{letter-spacing:-0.043200px;}
.ls8_c00274{letter-spacing:-0.036000px;}
.ls7_c00274{letter-spacing:-0.028800px;}
.ls5_c00274{letter-spacing:-0.021600px;}
.lsc_c00274{letter-spacing:-0.014400px;}
.ls6_c00274{letter-spacing:-0.007200px;}
.ls1_c00274{letter-spacing:0.000000px;}
.ls0_c00274{letter-spacing:0.007200px;}
.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;}
}
.ws1f_c00274{word-spacing:-4.881600px;}
.ws1e_c00274{word-spacing:-4.852800px;}
.ws11_c00274{word-spacing:-1.188000px;}
.ws10_c00274{word-spacing:-1.065600px;}
.ws5_c00274{word-spacing:-0.900000px;}
.ws0_c00274{word-spacing:0.000000px;}
.ws12_c00274{word-spacing:0.072000px;}
.ws9_c00274{word-spacing:0.115200px;}
.ws29_c00274{word-spacing:0.158400px;}
.ws7_c00274{word-spacing:0.165600px;}
.ws6_c00274{word-spacing:0.180000px;}
.wsa_c00274{word-spacing:0.187200px;}
.ws18_c00274{word-spacing:0.194400px;}
.ws17_c00274{word-spacing:0.309600px;}
.ws13_c00274{word-spacing:0.943200px;}
.ws14_c00274{word-spacing:0.993600px;}
.ws1a_c00274{word-spacing:2.325600px;}
.ws1b_c00274{word-spacing:2.332800px;}
.ws19_c00274{word-spacing:2.354400px;}
.ws22_c00274{word-spacing:2.714400px;}
.ws25_c00274{word-spacing:4.168800px;}
.ws24_c00274{word-spacing:4.183200px;}
.ws1d_c00274{word-spacing:4.471200px;}
.ws1c_c00274{word-spacing:4.485600px;}
.ws4_c00274{word-spacing:4.924800px;}
.ws3_c00274{word-spacing:4.953600px;}
.wsf_c00274{word-spacing:5.227200px;}
.ws20_c00274{word-spacing:5.522400px;}
.ws21_c00274{word-spacing:5.587200px;}
.ws8_c00274{word-spacing:8.100000px;}
.wsd_c00274{word-spacing:9.230400px;}
.ws27_c00274{word-spacing:15.285600px;}
.ws28_c00274{word-spacing:15.343200px;}
.ws23_c00274{word-spacing:19.274400px;}
.ws26_c00274{word-spacing:21.499200px;}
.ws2_c00274{word-spacing:24.696000px;}
.ws1_c00274{word-spacing:24.710400px;}
.wsc_c00274{word-spacing:25.027200px;}
.wsb_c00274{word-spacing:25.041600px;}
.ws15_c00274{word-spacing:27.885600px;}
.ws16_c00274{word-spacing:29.714400px;}
.wse_c00274{word-spacing:43.027200px;}
._0_c00274{margin-left:-24.840000px;}
._1_c00274{width:1.080000px;}
.fc0_c00274{color:rgb(0,0,0);}
.fs0_c00274{font-size:72.000000px;}
.y0_c00274{bottom:0.000000px;}
.y2_c00274{bottom:46.830450px;}
.y1_c00274{bottom:67.530450px;}
.y20_c00274{bottom:184.980450px;}
.y1f_c00274{bottom:216.030450px;}
.y1e_c00274{bottom:247.080450px;}
.y1d_c00274{bottom:296.040450px;}
.y1c_c00274{bottom:325.740450px;}
.y1b_c00274{bottom:346.440450px;}
.y1a_c00274{bottom:367.140450px;}
.y19_c00274{bottom:387.840450px;}
.y18_c00274{bottom:408.540450px;}
.y17_c00274{bottom:457.590450px;}
.y16_c00274{bottom:488.640450px;}
.y15_c00274{bottom:519.690450px;}
.y14_c00274{bottom:550.740450px;}
.y13_c00274{bottom:599.790450px;}
.y12_c00274{bottom:630.750450px;}
.y11_c00274{bottom:661.890450px;}
.y10_c00274{bottom:692.940450px;}
.yf_c00274{bottom:741.990450px;}
.ye_c00274{bottom:771.690450px;}
.yd_c00274{bottom:792.390450px;}
.yc_c00274{bottom:813.090450px;}
.yb_c00274{bottom:833.790450px;}
.ya_c00274{bottom:854.490450px;}
.y9_c00274{bottom:875.190450px;}
.y8_c00274{bottom:924.240450px;}
.y7_c00274{bottom:955.290450px;}
.y6_c00274{bottom:1004.340450px;}
.y5_c00274{bottom:1035.390450px;}
.y4_c00274{bottom:1066.440450px;}
.y3_c00274{bottom:1097.490450px;}
.h1_c00274{height:63.175781px;}
.h2_c00274{height:64.546875px;}
.h3_c00274{height:75.093750px;}
.h0_c00274{height:1263.000000px;}
.w1_c00274{width:892.500000px;}
.w0_c00274{width:892.830000px;}
.x0_c00274{left:0.000000px;}
.x2_c00274{left:170.100000px;}
.x3_c00274{left:191.430000px;}
.x1_c00274{left:738.360000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.lsb_c00274{letter-spacing:-0.140800pt;}
.ls2_c00274{letter-spacing:-0.064000pt;}
.ls9_c00274{letter-spacing:-0.057600pt;}
.ls3_c00274{letter-spacing:-0.051200pt;}
.lsa_c00274{letter-spacing:-0.044800pt;}
.ls4_c00274{letter-spacing:-0.038400pt;}
.ls8_c00274{letter-spacing:-0.032000pt;}
.ls7_c00274{letter-spacing:-0.025600pt;}
.ls5_c00274{letter-spacing:-0.019200pt;}
.lsc_c00274{letter-spacing:-0.012800pt;}
.ls6_c00274{letter-spacing:-0.006400pt;}
.ls1_c00274{letter-spacing:0.000000pt;}
.ls0_c00274{letter-spacing:0.006400pt;}
.ws1f_c00274{word-spacing:-4.339200pt;}
.ws1e_c00274{word-spacing:-4.313600pt;}
.ws11_c00274{word-spacing:-1.056000pt;}
.ws10_c00274{word-spacing:-0.947200pt;}
.ws5_c00274{word-spacing:-0.800000pt;}
.ws0_c00274{word-spacing:0.000000pt;}
.ws12_c00274{word-spacing:0.064000pt;}
.ws9_c00274{word-spacing:0.102400pt;}
.ws29_c00274{word-spacing:0.140800pt;}
.ws7_c00274{word-spacing:0.147200pt;}
.ws6_c00274{word-spacing:0.160000pt;}
.wsa_c00274{word-spacing:0.166400pt;}
.ws18_c00274{word-spacing:0.172800pt;}
.ws17_c00274{word-spacing:0.275200pt;}
.ws13_c00274{word-spacing:0.838400pt;}
.ws14_c00274{word-spacing:0.883200pt;}
.ws1a_c00274{word-spacing:2.067200pt;}
.ws1b_c00274{word-spacing:2.073600pt;}
.ws19_c00274{word-spacing:2.092800pt;}
.ws22_c00274{word-spacing:2.412800pt;}
.ws25_c00274{word-spacing:3.705600pt;}
.ws24_c00274{word-spacing:3.718400pt;}
.ws1d_c00274{word-spacing:3.974400pt;}
.ws1c_c00274{word-spacing:3.987200pt;}
.ws4_c00274{word-spacing:4.377600pt;}
.ws3_c00274{word-spacing:4.403200pt;}
.wsf_c00274{word-spacing:4.646400pt;}
.ws20_c00274{word-spacing:4.908800pt;}
.ws21_c00274{word-spacing:4.966400pt;}
.ws8_c00274{word-spacing:7.200000pt;}
.wsd_c00274{word-spacing:8.204800pt;}
.ws27_c00274{word-spacing:13.587200pt;}
.ws28_c00274{word-spacing:13.638400pt;}
.ws23_c00274{word-spacing:17.132800pt;}
.ws26_c00274{word-spacing:19.110400pt;}
.ws2_c00274{word-spacing:21.952000pt;}
.ws1_c00274{word-spacing:21.964800pt;}
.wsc_c00274{word-spacing:22.246400pt;}
.wsb_c00274{word-spacing:22.259200pt;}
.ws15_c00274{word-spacing:24.787200pt;}
.ws16_c00274{word-spacing:26.412800pt;}
.wse_c00274{word-spacing:38.246400pt;}
._0_c00274{margin-left:-22.080000pt;}
._1_c00274{width:0.960000pt;}
.fs0_c00274{font-size:64.000000pt;}
.y0_c00274{bottom:0.000000pt;}
.y2_c00274{bottom:41.627067pt;}
.y1_c00274{bottom:60.027067pt;}
.y20_c00274{bottom:164.427067pt;}
.y1f_c00274{bottom:192.027067pt;}
.y1e_c00274{bottom:219.627067pt;}
.y1d_c00274{bottom:263.147067pt;}
.y1c_c00274{bottom:289.547067pt;}
.y1b_c00274{bottom:307.947067pt;}
.y1a_c00274{bottom:326.347067pt;}
.y19_c00274{bottom:344.747067pt;}
.y18_c00274{bottom:363.147067pt;}
.y17_c00274{bottom:406.747067pt;}
.y16_c00274{bottom:434.347067pt;}
.y15_c00274{bottom:461.947067pt;}
.y14_c00274{bottom:489.547067pt;}
.y13_c00274{bottom:533.147067pt;}
.y12_c00274{bottom:560.667067pt;}
.y11_c00274{bottom:588.347067pt;}
.y10_c00274{bottom:615.947067pt;}
.yf_c00274{bottom:659.547067pt;}
.ye_c00274{bottom:685.947067pt;}
.yd_c00274{bottom:704.347067pt;}
.yc_c00274{bottom:722.747067pt;}
.yb_c00274{bottom:741.147067pt;}
.ya_c00274{bottom:759.547067pt;}
.y9_c00274{bottom:777.947067pt;}
.y8_c00274{bottom:821.547067pt;}
.y7_c00274{bottom:849.147067pt;}
.y6_c00274{bottom:892.747067pt;}
.y5_c00274{bottom:920.347067pt;}
.y4_c00274{bottom:947.947067pt;}
.y3_c00274{bottom:975.547067pt;}
.h1_c00274{height:56.156250pt;}
.h2_c00274{height:57.375000pt;}
.h3_c00274{height:66.750000pt;}
.h0_c00274{height:1122.666667pt;}
.w1_c00274{width:793.333333pt;}
.w0_c00274{width:793.626667pt;}
.x0_c00274{left:0.000000pt;}
.x2_c00274{left:151.200000pt;}
.x3_c00274{left:170.160000pt;}
.x1_c00274{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cf5930775081b175f8ab95a0.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.093262;font-style:normal;font-weight:normal;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_ea2aae8ae312421827f0e1d7.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:1.106934;font-style:normal;font-weight:normal;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_7a5b1e699626eae10349ea23.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00275;src:url('chunks/assets/font_a2468196dfe6a806117adec2.woff2')format("woff");}.ff4_c00275{font-family:ff4_c00275;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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.151200px;}
.lse_c00275{letter-spacing:-0.100800px;}
.lsf_c00275{letter-spacing:-0.093600px;}
.lsb_c00275{letter-spacing:-0.079200px;}
.lsc_c00275{letter-spacing:-0.072000px;}
.ls8_c00275{letter-spacing:-0.064800px;}
.lsd_c00275{letter-spacing:-0.057600px;}
.lsa_c00275{letter-spacing:-0.050400px;}
.ls5_c00275{letter-spacing:-0.043200px;}
.ls3_c00275{letter-spacing:-0.036000px;}
.ls2_c00275{letter-spacing:-0.028800px;}
.ls7_c00275{letter-spacing:-0.021600px;}
.ls6_c00275{letter-spacing:-0.014400px;}
.ls9_c00275{letter-spacing:-0.007200px;}
.ls0_c00275{letter-spacing:0.000000px;}
.ls4_c00275{letter-spacing:0.504000px;}
.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;}
}
.ws23_c00275{word-spacing:-4.536000px;}
.ws21_c00275{word-spacing:-4.521600px;}
.ws22_c00275{word-spacing:-4.478400px;}
.ws20_c00275{word-spacing:-4.363200px;}
.ws7_c00275{word-spacing:-2.779200px;}
.ws8_c00275{word-spacing:-2.700000px;}
.ws25_c00275{word-spacing:-2.512800px;}
.ws39_c00275{word-spacing:-2.455200px;}
.ws26_c00275{word-spacing:-2.311200px;}
.ws38_c00275{word-spacing:-2.304000px;}
.ws1f_c00275{word-spacing:-2.088000px;}
.ws27_c00275{word-spacing:-1.965600px;}
.ws28_c00275{word-spacing:-1.951200px;}
.ws1e_c00275{word-spacing:-1.900800px;}
.wse_c00275{word-spacing:-1.620000px;}
.wsd_c00275{word-spacing:-1.591200px;}
.ws1d_c00275{word-spacing:-1.267200px;}
.ws1c_c00275{word-spacing:-1.238400px;}
.ws4_c00275{word-spacing:-0.345600px;}
.ws0_c00275{word-spacing:0.000000px;}
.ws6_c00275{word-spacing:0.187200px;}
.ws5_c00275{word-spacing:0.201600px;}
.ws24_c00275{word-spacing:0.396000px;}
.ws2e_c00275{word-spacing:2.577600px;}
.ws2c_c00275{word-spacing:2.678400px;}
.ws2d_c00275{word-spacing:2.728800px;}
.ws9_c00275{word-spacing:3.513600px;}
.wsf_c00275{word-spacing:5.968800px;}
.ws10_c00275{word-spacing:5.983200px;}
.ws29_c00275{word-spacing:6.962400px;}
.ws2a_c00275{word-spacing:7.012800px;}
.ws18_c00275{word-spacing:7.041600px;}
.ws19_c00275{word-spacing:7.048800px;}
.ws2b_c00275{word-spacing:10.987200px;}
.wsa_c00275{word-spacing:11.332800px;}
.ws35_c00275{word-spacing:11.354400px;}
.wsb_c00275{word-spacing:12.081600px;}
.ws16_c00275{word-spacing:12.808800px;}
.ws14_c00275{word-spacing:14.601600px;}
.ws15_c00275{word-spacing:14.608800px;}
.ws3_c00275{word-spacing:16.826400px;}
.ws1_c00275{word-spacing:16.869600px;}
.ws2_c00275{word-spacing:16.891200px;}
.ws1a_c00275{word-spacing:17.827200px;}
.ws1b_c00275{word-spacing:17.856000px;}
.ws36_c00275{word-spacing:18.532800px;}
.ws37_c00275{word-spacing:18.597600px;}
.ws30_c00275{word-spacing:20.260800px;}
.ws2f_c00275{word-spacing:20.383200px;}
.ws33_c00275{word-spacing:23.565600px;}
.ws34_c00275{word-spacing:23.608800px;}
.ws12_c00275{word-spacing:29.318400px;}
.ws13_c00275{word-spacing:29.376000px;}
.ws11_c00275{word-spacing:29.390400px;}
.wsc_c00275{word-spacing:35.445600px;}
.ws17_c00275{word-spacing:45.208800px;}
.ws32_c00275{word-spacing:45.799200px;}
.ws31_c00275{word-spacing:45.900000px;}
._1_c00275{margin-left:-1.008000px;}
._0_c00275{width:1.152000px;}
.fc0_c00275{color:rgb(0,0,0);}
.fs0_c00275{font-size:72.000000px;}
.y0_c00275{bottom:0.000000px;}
.y2_c00275{bottom:46.830450px;}
.y1_c00275{bottom:67.530450px;}
.y25_c00275{bottom:139.530450px;}
.y24_c00275{bottom:160.230450px;}
.y23_c00275{bottom:180.930450px;}
.y22_c00275{bottom:201.630450px;}
.y21_c00275{bottom:250.680450px;}
.y20_c00275{bottom:281.730450px;}
.y1f_c00275{bottom:312.690450px;}
.y1e_c00275{bottom:343.740450px;}
.y1d_c00275{bottom:392.790450px;}
.y1c_c00275{bottom:423.840450px;}
.y1b_c00275{bottom:454.890450px;}
.y1a_c00275{bottom:485.940450px;}
.y19_c00275{bottom:516.990450px;}
.y18_c00275{bottom:566.040450px;}
.y17_c00275{bottom:597.090450px;}
.y16_c00275{bottom:628.140450px;}
.y15_c00275{bottom:677.190450px;}
.y14_c00275{bottom:706.890450px;}
.y13_c00275{bottom:727.590450px;}
.y12_c00275{bottom:748.290450px;}
.y11_c00275{bottom:768.990450px;}
.y10_c00275{bottom:789.690450px;}
.yf_c00275{bottom:810.390450px;}
.ye_c00275{bottom:831.090450px;}
.yd_c00275{bottom:851.790450px;}
.yc_c00275{bottom:872.490450px;}
.yb_c00275{bottom:893.190450px;}
.ya_c00275{bottom:913.890450px;}
.y9_c00275{bottom:934.590450px;}
.y8_c00275{bottom:955.290450px;}
.y7_c00275{bottom:975.990450px;}
.y6_c00275{bottom:996.690450px;}
.y5_c00275{bottom:1017.390450px;}
.y4_c00275{bottom:1066.440450px;}
.y3_c00275{bottom:1097.490450px;}
.h1_c00275{height:63.175781px;}
.h3_c00275{height:64.546875px;}
.h2_c00275{height:75.093750px;}
.h0_c00275{height:1263.000000px;}
.w1_c00275{width:892.500000px;}
.w0_c00275{width:892.830000px;}
.x0_c00275{left:0.000000px;}
.x2_c00275{left:127.620000px;}
.x3_c00275{left:148.950000px;}
.x1_c00275{left:695.880000px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls1_c00275{letter-spacing:-0.134400pt;}
.lse_c00275{letter-spacing:-0.089600pt;}
.lsf_c00275{letter-spacing:-0.083200pt;}
.lsb_c00275{letter-spacing:-0.070400pt;}
.lsc_c00275{letter-spacing:-0.064000pt;}
.ls8_c00275{letter-spacing:-0.057600pt;}
.lsd_c00275{letter-spacing:-0.051200pt;}
.lsa_c00275{letter-spacing:-0.044800pt;}
.ls5_c00275{letter-spacing:-0.038400pt;}
.ls3_c00275{letter-spacing:-0.032000pt;}
.ls2_c00275{letter-spacing:-0.025600pt;}
.ls7_c00275{letter-spacing:-0.019200pt;}
.ls6_c00275{letter-spacing:-0.012800pt;}
.ls9_c00275{letter-spacing:-0.006400pt;}
.ls0_c00275{letter-spacing:0.000000pt;}
.ls4_c00275{letter-spacing:0.448000pt;}
.ws23_c00275{word-spacing:-4.032000pt;}
.ws21_c00275{word-spacing:-4.019200pt;}
.ws22_c00275{word-spacing:-3.980800pt;}
.ws20_c00275{word-spacing:-3.878400pt;}
.ws7_c00275{word-spacing:-2.470400pt;}
.ws8_c00275{word-spacing:-2.400000pt;}
.ws25_c00275{word-spacing:-2.233600pt;}
.ws39_c00275{word-spacing:-2.182400pt;}
.ws26_c00275{word-spacing:-2.054400pt;}
.ws38_c00275{word-spacing:-2.048000pt;}
.ws1f_c00275{word-spacing:-1.856000pt;}
.ws27_c00275{word-spacing:-1.747200pt;}
.ws28_c00275{word-spacing:-1.734400pt;}
.ws1e_c00275{word-spacing:-1.689600pt;}
.wse_c00275{word-spacing:-1.440000pt;}
.wsd_c00275{word-spacing:-1.414400pt;}
.ws1d_c00275{word-spacing:-1.126400pt;}
.ws1c_c00275{word-spacing:-1.100800pt;}
.ws4_c00275{word-spacing:-0.307200pt;}
.ws0_c00275{word-spacing:0.000000pt;}
.ws6_c00275{word-spacing:0.166400pt;}
.ws5_c00275{word-spacing:0.179200pt;}
.ws24_c00275{word-spacing:0.352000pt;}
.ws2e_c00275{word-spacing:2.291200pt;}
.ws2c_c00275{word-spacing:2.380800pt;}
.ws2d_c00275{word-spacing:2.425600pt;}
.ws9_c00275{word-spacing:3.123200pt;}
.wsf_c00275{word-spacing:5.305600pt;}
.ws10_c00275{word-spacing:5.318400pt;}
.ws29_c00275{word-spacing:6.188800pt;}
.ws2a_c00275{word-spacing:6.233600pt;}
.ws18_c00275{word-spacing:6.259200pt;}
.ws19_c00275{word-spacing:6.265600pt;}
.ws2b_c00275{word-spacing:9.766400pt;}
.wsa_c00275{word-spacing:10.073600pt;}
.ws35_c00275{word-spacing:10.092800pt;}
.wsb_c00275{word-spacing:10.739200pt;}
.ws16_c00275{word-spacing:11.385600pt;}
.ws14_c00275{word-spacing:12.979200pt;}
.ws15_c00275{word-spacing:12.985600pt;}
.ws3_c00275{word-spacing:14.956800pt;}
.ws1_c00275{word-spacing:14.995200pt;}
.ws2_c00275{word-spacing:15.014400pt;}
.ws1a_c00275{word-spacing:15.846400pt;}
.ws1b_c00275{word-spacing:15.872000pt;}
.ws36_c00275{word-spacing:16.473600pt;}
.ws37_c00275{word-spacing:16.531200pt;}
.ws30_c00275{word-spacing:18.009600pt;}
.ws2f_c00275{word-spacing:18.118400pt;}
.ws33_c00275{word-spacing:20.947200pt;}
.ws34_c00275{word-spacing:20.985600pt;}
.ws12_c00275{word-spacing:26.060800pt;}
.ws13_c00275{word-spacing:26.112000pt;}
.ws11_c00275{word-spacing:26.124800pt;}
.wsc_c00275{word-spacing:31.507200pt;}
.ws17_c00275{word-spacing:40.185600pt;}
.ws32_c00275{word-spacing:40.710400pt;}
.ws31_c00275{word-spacing:40.800000pt;}
._1_c00275{margin-left:-0.896000pt;}
._0_c00275{width:1.024000pt;}
.fs0_c00275{font-size:64.000000pt;}
.y0_c00275{bottom:0.000000pt;}
.y2_c00275{bottom:41.627067pt;}
.y1_c00275{bottom:60.027067pt;}
.y25_c00275{bottom:124.027067pt;}
.y24_c00275{bottom:142.427067pt;}
.y23_c00275{bottom:160.827067pt;}
.y22_c00275{bottom:179.227067pt;}
.y21_c00275{bottom:222.827067pt;}
.y20_c00275{bottom:250.427067pt;}
.y1f_c00275{bottom:277.947067pt;}
.y1e_c00275{bottom:305.547067pt;}
.y1d_c00275{bottom:349.147067pt;}
.y1c_c00275{bottom:376.747067pt;}
.y1b_c00275{bottom:404.347067pt;}
.y1a_c00275{bottom:431.947067pt;}
.y19_c00275{bottom:459.547067pt;}
.y18_c00275{bottom:503.147067pt;}
.y17_c00275{bottom:530.747067pt;}
.y16_c00275{bottom:558.347067pt;}
.y15_c00275{bottom:601.947067pt;}
.y14_c00275{bottom:628.347067pt;}
.y13_c00275{bottom:646.747067pt;}
.y12_c00275{bottom:665.147067pt;}
.y11_c00275{bottom:683.547067pt;}
.y10_c00275{bottom:701.947067pt;}
.yf_c00275{bottom:720.347067pt;}
.ye_c00275{bottom:738.747067pt;}
.yd_c00275{bottom:757.147067pt;}
.yc_c00275{bottom:775.547067pt;}
.yb_c00275{bottom:793.947067pt;}
.ya_c00275{bottom:812.347067pt;}
.y9_c00275{bottom:830.747067pt;}
.y8_c00275{bottom:849.147067pt;}
.y7_c00275{bottom:867.547067pt;}
.y6_c00275{bottom:885.947067pt;}
.y5_c00275{bottom:904.347067pt;}
.y4_c00275{bottom:947.947067pt;}
.y3_c00275{bottom:975.547067pt;}
.h1_c00275{height:56.156250pt;}
.h3_c00275{height:57.375000pt;}
.h2_c00275{height:66.750000pt;}
.h0_c00275{height:1122.666667pt;}
.w1_c00275{width:793.333333pt;}
.w0_c00275{width:793.626667pt;}
.x0_c00275{left:0.000000pt;}
.x2_c00275{left:113.440000pt;}
.x3_c00275{left:132.400000pt;}
.x1_c00275{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b9e47771cf9126c303523440.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.093262;font-style:normal;font-weight:normal;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_bdf5ffa4be54046099104e43.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.106934;font-style:normal;font-weight:normal;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_4873171f60d95b8f645d2265.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls2_c00276{letter-spacing:-0.086400px;}
.ls8_c00276{letter-spacing:-0.057600px;}
.lsa_c00276{letter-spacing:-0.050400px;}
.ls3_c00276{letter-spacing:-0.043200px;}
.ls6_c00276{letter-spacing:-0.036000px;}
.ls7_c00276{letter-spacing:-0.028800px;}
.ls1_c00276{letter-spacing:-0.021600px;}
.ls5_c00276{letter-spacing:-0.014400px;}
.ls4_c00276{letter-spacing:-0.007200px;}
.ls0_c00276{letter-spacing:0.000000px;}
.lsb_c00276{letter-spacing:0.014400px;}
.ls9_c00276{letter-spacing:0.021600px;}
.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;}
}
.ws2a_c00276{word-spacing:-3.405600px;}
.wsd_c00276{word-spacing:-1.980000px;}
.ws2c_c00276{word-spacing:-1.958400px;}
.ws17_c00276{word-spacing:-1.605600px;}
.ws18_c00276{word-spacing:-1.504800px;}
.ws0_c00276{word-spacing:0.000000px;}
.ws12_c00276{word-spacing:0.136800px;}
.ws7_c00276{word-spacing:0.165600px;}
.ws25_c00276{word-spacing:0.194400px;}
.ws1b_c00276{word-spacing:0.280800px;}
.wsb_c00276{word-spacing:0.439200px;}
.wsc_c00276{word-spacing:0.540000px;}
.ws13_c00276{word-spacing:2.340000px;}
.ws10_c00276{word-spacing:2.347200px;}
.ws11_c00276{word-spacing:2.491200px;}
.wse_c00276{word-spacing:3.700800px;}
.ws16_c00276{word-spacing:3.780000px;}
.wsf_c00276{word-spacing:3.794400px;}
.wsa_c00276{word-spacing:5.227200px;}
.ws26_c00276{word-spacing:5.248800px;}
.ws9_c00276{word-spacing:5.335200px;}
.ws8_c00276{word-spacing:5.356800px;}
.ws24_c00276{word-spacing:6.984000px;}
.ws23_c00276{word-spacing:7.092000px;}
.ws15_c00276{word-spacing:11.361600px;}
.ws14_c00276{word-spacing:11.455200px;}
.ws4_c00276{word-spacing:12.088800px;}
.ws3_c00276{word-spacing:12.168000px;}
.ws2b_c00276{word-spacing:14.940000px;}
.ws1a_c00276{word-spacing:14.947200px;}
.ws19_c00276{word-spacing:14.983200px;}
.ws1_c00276{word-spacing:17.726400px;}
.ws22_c00276{word-spacing:17.834400px;}
.ws1e_c00276{word-spacing:17.841600px;}
.ws1f_c00276{word-spacing:17.848800px;}
.ws2_c00276{word-spacing:17.884800px;}
.ws21_c00276{word-spacing:17.899200px;}
.ws28_c00276{word-spacing:18.165600px;}
.ws29_c00276{word-spacing:18.194400px;}
.ws27_c00276{word-spacing:18.208800px;}
.ws20_c00276{word-spacing:19.296000px;}
.ws5_c00276{word-spacing:31.392000px;}
.ws6_c00276{word-spacing:31.478400px;}
.ws2d_c00276{word-spacing:37.641600px;}
.ws1d_c00276{word-spacing:41.817600px;}
.ws1c_c00276{word-spacing:41.932800px;}
._0_c00276{width:1.108800px;}
.fc0_c00276{color:rgb(0,0,0);}
.fs0_c00276{font-size:72.000000px;}
.y0_c00276{bottom:0.000000px;}
.y2_c00276{bottom:46.830450px;}
.y1_c00276{bottom:67.530450px;}
.y1f_c00276{bottom:188.580450px;}
.y1e_c00276{bottom:219.630450px;}
.y1d_c00276{bottom:250.680450px;}
.y1c_c00276{bottom:281.730450px;}
.y1b_c00276{bottom:312.690450px;}
.y1a_c00276{bottom:343.740450px;}
.y19_c00276{bottom:392.790450px;}
.y18_c00276{bottom:423.840450px;}
.y17_c00276{bottom:454.800450px;}
.y16_c00276{bottom:485.850450px;}
.y15_c00276{bottom:516.990450px;}
.y14_c00276{bottom:548.040450px;}
.y13_c00276{bottom:597.090450px;}
.y12_c00276{bottom:628.140450px;}
.y11_c00276{bottom:659.190450px;}
.y10_c00276{bottom:690.240450px;}
.yf_c00276{bottom:721.290450px;}
.ye_c00276{bottom:752.340450px;}
.yd_c00276{bottom:801.390450px;}
.yc_c00276{bottom:832.440450px;}
.yb_c00276{bottom:863.400450px;}
.ya_c00276{bottom:894.540450px;}
.y9_c00276{bottom:925.590450px;}
.y8_c00276{bottom:956.640450px;}
.y7_c00276{bottom:1005.690450px;}
.y6_c00276{bottom:1035.390450px;}
.y5_c00276{bottom:1056.090450px;}
.y4_c00276{bottom:1076.790450px;}
.y3_c00276{bottom:1097.490450px;}
.h1_c00276{height:63.175781px;}
.h2_c00276{height:64.546875px;}
.h3_c00276{height:75.093750px;}
.h0_c00276{height:1263.000000px;}
.w1_c00276{width:892.500000px;}
.w0_c00276{width:892.830000px;}
.x0_c00276{left:0.000000px;}
.x2_c00276{left:170.100000px;}
.x3_c00276{left:191.430000px;}
.x1_c00276{left:738.360000px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls2_c00276{letter-spacing:-0.076800pt;}
.ls8_c00276{letter-spacing:-0.051200pt;}
.lsa_c00276{letter-spacing:-0.044800pt;}
.ls3_c00276{letter-spacing:-0.038400pt;}
.ls6_c00276{letter-spacing:-0.032000pt;}
.ls7_c00276{letter-spacing:-0.025600pt;}
.ls1_c00276{letter-spacing:-0.019200pt;}
.ls5_c00276{letter-spacing:-0.012800pt;}
.ls4_c00276{letter-spacing:-0.006400pt;}
.ls0_c00276{letter-spacing:0.000000pt;}
.lsb_c00276{letter-spacing:0.012800pt;}
.ls9_c00276{letter-spacing:0.019200pt;}
.ws2a_c00276{word-spacing:-3.027200pt;}
.wsd_c00276{word-spacing:-1.760000pt;}
.ws2c_c00276{word-spacing:-1.740800pt;}
.ws17_c00276{word-spacing:-1.427200pt;}
.ws18_c00276{word-spacing:-1.337600pt;}
.ws0_c00276{word-spacing:0.000000pt;}
.ws12_c00276{word-spacing:0.121600pt;}
.ws7_c00276{word-spacing:0.147200pt;}
.ws25_c00276{word-spacing:0.172800pt;}
.ws1b_c00276{word-spacing:0.249600pt;}
.wsb_c00276{word-spacing:0.390400pt;}
.wsc_c00276{word-spacing:0.480000pt;}
.ws13_c00276{word-spacing:2.080000pt;}
.ws10_c00276{word-spacing:2.086400pt;}
.ws11_c00276{word-spacing:2.214400pt;}
.wse_c00276{word-spacing:3.289600pt;}
.ws16_c00276{word-spacing:3.360000pt;}
.wsf_c00276{word-spacing:3.372800pt;}
.wsa_c00276{word-spacing:4.646400pt;}
.ws26_c00276{word-spacing:4.665600pt;}
.ws9_c00276{word-spacing:4.742400pt;}
.ws8_c00276{word-spacing:4.761600pt;}
.ws24_c00276{word-spacing:6.208000pt;}
.ws23_c00276{word-spacing:6.304000pt;}
.ws15_c00276{word-spacing:10.099200pt;}
.ws14_c00276{word-spacing:10.182400pt;}
.ws4_c00276{word-spacing:10.745600pt;}
.ws3_c00276{word-spacing:10.816000pt;}
.ws2b_c00276{word-spacing:13.280000pt;}
.ws1a_c00276{word-spacing:13.286400pt;}
.ws19_c00276{word-spacing:13.318400pt;}
.ws1_c00276{word-spacing:15.756800pt;}
.ws22_c00276{word-spacing:15.852800pt;}
.ws1e_c00276{word-spacing:15.859200pt;}
.ws1f_c00276{word-spacing:15.865600pt;}
.ws2_c00276{word-spacing:15.897600pt;}
.ws21_c00276{word-spacing:15.910400pt;}
.ws28_c00276{word-spacing:16.147200pt;}
.ws29_c00276{word-spacing:16.172800pt;}
.ws27_c00276{word-spacing:16.185600pt;}
.ws20_c00276{word-spacing:17.152000pt;}
.ws5_c00276{word-spacing:27.904000pt;}
.ws6_c00276{word-spacing:27.980800pt;}
.ws2d_c00276{word-spacing:33.459200pt;}
.ws1d_c00276{word-spacing:37.171200pt;}
.ws1c_c00276{word-spacing:37.273600pt;}
._0_c00276{width:0.985600pt;}
.fs0_c00276{font-size:64.000000pt;}
.y0_c00276{bottom:0.000000pt;}
.y2_c00276{bottom:41.627067pt;}
.y1_c00276{bottom:60.027067pt;}
.y1f_c00276{bottom:167.627067pt;}
.y1e_c00276{bottom:195.227067pt;}
.y1d_c00276{bottom:222.827067pt;}
.y1c_c00276{bottom:250.427067pt;}
.y1b_c00276{bottom:277.947067pt;}
.y1a_c00276{bottom:305.547067pt;}
.y19_c00276{bottom:349.147067pt;}
.y18_c00276{bottom:376.747067pt;}
.y17_c00276{bottom:404.267067pt;}
.y16_c00276{bottom:431.867067pt;}
.y15_c00276{bottom:459.547067pt;}
.y14_c00276{bottom:487.147067pt;}
.y13_c00276{bottom:530.747067pt;}
.y12_c00276{bottom:558.347067pt;}
.y11_c00276{bottom:585.947067pt;}
.y10_c00276{bottom:613.547067pt;}
.yf_c00276{bottom:641.147067pt;}
.ye_c00276{bottom:668.747067pt;}
.yd_c00276{bottom:712.347067pt;}
.yc_c00276{bottom:739.947067pt;}
.yb_c00276{bottom:767.467067pt;}
.ya_c00276{bottom:795.147067pt;}
.y9_c00276{bottom:822.747067pt;}
.y8_c00276{bottom:850.347067pt;}
.y7_c00276{bottom:893.947067pt;}
.y6_c00276{bottom:920.347067pt;}
.y5_c00276{bottom:938.747067pt;}
.y4_c00276{bottom:957.147067pt;}
.y3_c00276{bottom:975.547067pt;}
.h1_c00276{height:56.156250pt;}
.h2_c00276{height:57.375000pt;}
.h3_c00276{height:66.750000pt;}
.h0_c00276{height:1122.666667pt;}
.w1_c00276{width:793.333333pt;}
.w0_c00276{width:793.626667pt;}
.x0_c00276{left:0.000000pt;}
.x2_c00276{left:151.200000pt;}
.x3_c00276{left:170.160000pt;}
.x1_c00276{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_874ecf909579c3e7dbefd376.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.093262;font-style:normal;font-weight:normal;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_a844eb12030257ed1f868849.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.lse_c00277{letter-spacing:-0.079200px;}
.lsb_c00277{letter-spacing:-0.072000px;}
.lsd_c00277{letter-spacing:-0.064800px;}
.ls5_c00277{letter-spacing:-0.057600px;}
.ls9_c00277{letter-spacing:-0.050400px;}
.lsa_c00277{letter-spacing:-0.043200px;}
.ls7_c00277{letter-spacing:-0.036000px;}
.ls2_c00277{letter-spacing:-0.028800px;}
.ls3_c00277{letter-spacing:-0.021600px;}
.ls6_c00277{letter-spacing:-0.014400px;}
.lsc_c00277{letter-spacing:-0.007200px;}
.ls1_c00277{letter-spacing:0.000000px;}
.ls8_c00277{letter-spacing:0.007200px;}
.ls4_c00277{letter-spacing:0.014400px;}
.ls0_c00277{letter-spacing:0.021600px;}
.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;}
}
.ws2_c00277{word-spacing:-3.247200px;}
.ws3_c00277{word-spacing:-3.060000px;}
.ws0_c00277{word-spacing:0.000000px;}
.ws1b_c00277{word-spacing:0.050400px;}
.ws29_c00277{word-spacing:0.079200px;}
.wsb_c00277{word-spacing:0.115200px;}
.ws4_c00277{word-spacing:0.144000px;}
.ws9_c00277{word-spacing:0.151200px;}
.wsa_c00277{word-spacing:0.172800px;}
.ws12_c00277{word-spacing:0.180000px;}
.wsc_c00277{word-spacing:0.187200px;}
.ws1d_c00277{word-spacing:0.208800px;}
.ws5_c00277{word-spacing:0.216000px;}
.ws8_c00277{word-spacing:0.266400px;}
.ws1a_c00277{word-spacing:0.288000px;}
.ws1c_c00277{word-spacing:0.381600px;}
.ws22_c00277{word-spacing:1.980000px;}
.ws20_c00277{word-spacing:1.987200px;}
.ws21_c00277{word-spacing:2.008800px;}
.ws1_c00277{word-spacing:5.587200px;}
.ws11_c00277{word-spacing:5.947200px;}
.ws1f_c00277{word-spacing:6.652800px;}
.ws1e_c00277{word-spacing:6.667200px;}
.ws23_c00277{word-spacing:6.681600px;}
.ws24_c00277{word-spacing:6.717600px;}
.ws26_c00277{word-spacing:8.359200px;}
.ws25_c00277{word-spacing:8.460000px;}
.ws18_c00277{word-spacing:10.267200px;}
.ws19_c00277{word-spacing:10.375200px;}
.ws16_c00277{word-spacing:10.605600px;}
.ws17_c00277{word-spacing:10.648800px;}
.ws2e_c00277{word-spacing:10.936800px;}
.ws2d_c00277{word-spacing:10.972800px;}
.ws2f_c00277{word-spacing:11.001600px;}
.ws27_c00277{word-spacing:11.332800px;}
.ws28_c00277{word-spacing:11.376000px;}
.ws13_c00277{word-spacing:17.481600px;}
.ws7_c00277{word-spacing:19.252800px;}
.ws6_c00277{word-spacing:19.260000px;}
.ws2b_c00277{word-spacing:19.627200px;}
.ws2a_c00277{word-spacing:19.641600px;}
.wse_c00277{word-spacing:24.264000px;}
.wsd_c00277{word-spacing:24.278400px;}
.ws14_c00277{word-spacing:24.300000px;}
.ws15_c00277{word-spacing:24.357600px;}
.wsf_c00277{word-spacing:33.300000px;}
.ws10_c00277{word-spacing:33.422400px;}
.ws2c_c00277{word-spacing:39.816000px;}
._0_c00277{width:1.065600px;}
.fc0_c00277{color:rgb(0,0,0);}
.fs0_c00277{font-size:72.000000px;}
.y0_c00277{bottom:0.000000px;}
.y2_c00277{bottom:46.830450px;}
.y1_c00277{bottom:67.530450px;}
.y29_c00277{bottom:154.830450px;}
.y28_c00277{bottom:185.880450px;}
.y27_c00277{bottom:216.930450px;}
.y26_c00277{bottom:247.980450px;}
.y25_c00277{bottom:297.030450px;}
.y24_c00277{bottom:328.080450px;}
.y23_c00277{bottom:359.040450px;}
.y22_c00277{bottom:408.090450px;}
.y21_c00277{bottom:437.790450px;}
.y20_c00277{bottom:458.490450px;}
.y1f_c00277{bottom:479.190450px;}
.y1e_c00277{bottom:499.890450px;}
.y1d_c00277{bottom:520.590450px;}
.y1c_c00277{bottom:541.290450px;}
.y1b_c00277{bottom:561.990450px;}
.y1a_c00277{bottom:582.690450px;}
.y19_c00277{bottom:603.390450px;}
.y18_c00277{bottom:624.090450px;}
.y17_c00277{bottom:644.790450px;}
.y16_c00277{bottom:665.490450px;}
.y15_c00277{bottom:686.190450px;}
.y14_c00277{bottom:706.890450px;}
.y13_c00277{bottom:727.590450px;}
.y12_c00277{bottom:748.290450px;}
.y11_c00277{bottom:768.990450px;}
.y10_c00277{bottom:789.690450px;}
.yf_c00277{bottom:810.390450px;}
.ye_c00277{bottom:831.090450px;}
.yd_c00277{bottom:851.790450px;}
.yc_c00277{bottom:872.490450px;}
.yb_c00277{bottom:893.190450px;}
.ya_c00277{bottom:913.890450px;}
.y9_c00277{bottom:934.590450px;}
.y8_c00277{bottom:955.290450px;}
.y7_c00277{bottom:975.990450px;}
.y6_c00277{bottom:996.690450px;}
.y5_c00277{bottom:1017.390450px;}
.y4_c00277{bottom:1066.440450px;}
.y3_c00277{bottom:1097.490450px;}
.h1_c00277{height:63.175781px;}
.h2_c00277{height:64.546875px;}
.h0_c00277{height:1263.000000px;}
.w1_c00277{width:892.500000px;}
.w0_c00277{width:892.830000px;}
.x0_c00277{left:0.000000px;}
.x2_c00277{left:127.620000px;}
.x3_c00277{left:148.950000px;}
.x1_c00277{left:695.880000px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.lse_c00277{letter-spacing:-0.070400pt;}
.lsb_c00277{letter-spacing:-0.064000pt;}
.lsd_c00277{letter-spacing:-0.057600pt;}
.ls5_c00277{letter-spacing:-0.051200pt;}
.ls9_c00277{letter-spacing:-0.044800pt;}
.lsa_c00277{letter-spacing:-0.038400pt;}
.ls7_c00277{letter-spacing:-0.032000pt;}
.ls2_c00277{letter-spacing:-0.025600pt;}
.ls3_c00277{letter-spacing:-0.019200pt;}
.ls6_c00277{letter-spacing:-0.012800pt;}
.lsc_c00277{letter-spacing:-0.006400pt;}
.ls1_c00277{letter-spacing:0.000000pt;}
.ls8_c00277{letter-spacing:0.006400pt;}
.ls4_c00277{letter-spacing:0.012800pt;}
.ls0_c00277{letter-spacing:0.019200pt;}
.ws2_c00277{word-spacing:-2.886400pt;}
.ws3_c00277{word-spacing:-2.720000pt;}
.ws0_c00277{word-spacing:0.000000pt;}
.ws1b_c00277{word-spacing:0.044800pt;}
.ws29_c00277{word-spacing:0.070400pt;}
.wsb_c00277{word-spacing:0.102400pt;}
.ws4_c00277{word-spacing:0.128000pt;}
.ws9_c00277{word-spacing:0.134400pt;}
.wsa_c00277{word-spacing:0.153600pt;}
.ws12_c00277{word-spacing:0.160000pt;}
.wsc_c00277{word-spacing:0.166400pt;}
.ws1d_c00277{word-spacing:0.185600pt;}
.ws5_c00277{word-spacing:0.192000pt;}
.ws8_c00277{word-spacing:0.236800pt;}
.ws1a_c00277{word-spacing:0.256000pt;}
.ws1c_c00277{word-spacing:0.339200pt;}
.ws22_c00277{word-spacing:1.760000pt;}
.ws20_c00277{word-spacing:1.766400pt;}
.ws21_c00277{word-spacing:1.785600pt;}
.ws1_c00277{word-spacing:4.966400pt;}
.ws11_c00277{word-spacing:5.286400pt;}
.ws1f_c00277{word-spacing:5.913600pt;}
.ws1e_c00277{word-spacing:5.926400pt;}
.ws23_c00277{word-spacing:5.939200pt;}
.ws24_c00277{word-spacing:5.971200pt;}
.ws26_c00277{word-spacing:7.430400pt;}
.ws25_c00277{word-spacing:7.520000pt;}
.ws18_c00277{word-spacing:9.126400pt;}
.ws19_c00277{word-spacing:9.222400pt;}
.ws16_c00277{word-spacing:9.427200pt;}
.ws17_c00277{word-spacing:9.465600pt;}
.ws2e_c00277{word-spacing:9.721600pt;}
.ws2d_c00277{word-spacing:9.753600pt;}
.ws2f_c00277{word-spacing:9.779200pt;}
.ws27_c00277{word-spacing:10.073600pt;}
.ws28_c00277{word-spacing:10.112000pt;}
.ws13_c00277{word-spacing:15.539200pt;}
.ws7_c00277{word-spacing:17.113600pt;}
.ws6_c00277{word-spacing:17.120000pt;}
.ws2b_c00277{word-spacing:17.446400pt;}
.ws2a_c00277{word-spacing:17.459200pt;}
.wse_c00277{word-spacing:21.568000pt;}
.wsd_c00277{word-spacing:21.580800pt;}
.ws14_c00277{word-spacing:21.600000pt;}
.ws15_c00277{word-spacing:21.651200pt;}
.wsf_c00277{word-spacing:29.600000pt;}
.ws10_c00277{word-spacing:29.708800pt;}
.ws2c_c00277{word-spacing:35.392000pt;}
._0_c00277{width:0.947200pt;}
.fs0_c00277{font-size:64.000000pt;}
.y0_c00277{bottom:0.000000pt;}
.y2_c00277{bottom:41.627067pt;}
.y1_c00277{bottom:60.027067pt;}
.y29_c00277{bottom:137.627067pt;}
.y28_c00277{bottom:165.227067pt;}
.y27_c00277{bottom:192.827067pt;}
.y26_c00277{bottom:220.427067pt;}
.y25_c00277{bottom:264.027067pt;}
.y24_c00277{bottom:291.627067pt;}
.y23_c00277{bottom:319.147067pt;}
.y22_c00277{bottom:362.747067pt;}
.y21_c00277{bottom:389.147067pt;}
.y20_c00277{bottom:407.547067pt;}
.y1f_c00277{bottom:425.947067pt;}
.y1e_c00277{bottom:444.347067pt;}
.y1d_c00277{bottom:462.747067pt;}
.y1c_c00277{bottom:481.147067pt;}
.y1b_c00277{bottom:499.547067pt;}
.y1a_c00277{bottom:517.947067pt;}
.y19_c00277{bottom:536.347067pt;}
.y18_c00277{bottom:554.747067pt;}
.y17_c00277{bottom:573.147067pt;}
.y16_c00277{bottom:591.547067pt;}
.y15_c00277{bottom:609.947067pt;}
.y14_c00277{bottom:628.347067pt;}
.y13_c00277{bottom:646.747067pt;}
.y12_c00277{bottom:665.147067pt;}
.y11_c00277{bottom:683.547067pt;}
.y10_c00277{bottom:701.947067pt;}
.yf_c00277{bottom:720.347067pt;}
.ye_c00277{bottom:738.747067pt;}
.yd_c00277{bottom:757.147067pt;}
.yc_c00277{bottom:775.547067pt;}
.yb_c00277{bottom:793.947067pt;}
.ya_c00277{bottom:812.347067pt;}
.y9_c00277{bottom:830.747067pt;}
.y8_c00277{bottom:849.147067pt;}
.y7_c00277{bottom:867.547067pt;}
.y6_c00277{bottom:885.947067pt;}
.y5_c00277{bottom:904.347067pt;}
.y4_c00277{bottom:947.947067pt;}
.y3_c00277{bottom:975.547067pt;}
.h1_c00277{height:56.156250pt;}
.h2_c00277{height:57.375000pt;}
.h0_c00277{height:1122.666667pt;}
.w1_c00277{width:793.333333pt;}
.w0_c00277{width:793.626667pt;}
.x0_c00277{left:0.000000pt;}
.x2_c00277{left:113.440000pt;}
.x3_c00277{left:132.400000pt;}
.x1_c00277{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d10887d9140077ea897fbde4.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.093262;font-style:normal;font-weight:normal;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_7a58e5789aaf4715a1accf6c.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00278{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00278{vertical-align:0.000000px;}
.lsc_c00278{letter-spacing:-0.079200px;}
.lsb_c00278{letter-spacing:-0.072000px;}
.lsa_c00278{letter-spacing:-0.064800px;}
.ls3_c00278{letter-spacing:-0.057600px;}
.ls9_c00278{letter-spacing:-0.050400px;}
.ls1_c00278{letter-spacing:-0.043200px;}
.ls5_c00278{letter-spacing:-0.036000px;}
.ls2_c00278{letter-spacing:-0.028800px;}
.ls6_c00278{letter-spacing:-0.021600px;}
.ls7_c00278{letter-spacing:-0.014400px;}
.ls4_c00278{letter-spacing:-0.007200px;}
.ls0_c00278{letter-spacing:0.000000px;}
.ls8_c00278{letter-spacing:0.007200px;}
.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;}
}
.ws15_c00278{word-spacing:-4.492800px;}
.ws2c_c00278{word-spacing:-2.793600px;}
.ws32_c00278{word-spacing:-2.707200px;}
.ws2b_c00278{word-spacing:-2.678400px;}
.ws33_c00278{word-spacing:-2.671200px;}
.wsc_c00278{word-spacing:-2.412000px;}
.wsd_c00278{word-spacing:-2.311200px;}
.ws28_c00278{word-spacing:-1.915200px;}
.ws27_c00278{word-spacing:-1.821600px;}
.ws0_c00278{word-spacing:0.000000px;}
.ws4_c00278{word-spacing:0.093600px;}
.ws11_c00278{word-spacing:0.122400px;}
.ws18_c00278{word-spacing:0.165600px;}
.ws1b_c00278{word-spacing:0.172800px;}
.ws10_c00278{word-spacing:0.237600px;}
.ws2a_c00278{word-spacing:0.482400px;}
.ws29_c00278{word-spacing:0.669600px;}
.ws24_c00278{word-spacing:0.907200px;}
.ws25_c00278{word-spacing:0.957600px;}
.ws1f_c00278{word-spacing:1.274400px;}
.ws1e_c00278{word-spacing:1.288800px;}
.wsf_c00278{word-spacing:2.383200px;}
.wse_c00278{word-spacing:2.412000px;}
.ws21_c00278{word-spacing:4.075200px;}
.ws20_c00278{word-spacing:4.154400px;}
.ws13_c00278{word-spacing:5.212800px;}
.ws2_c00278{word-spacing:5.227200px;}
.ws3_c00278{word-spacing:5.256000px;}
.ws12_c00278{word-spacing:5.349600px;}
.ws8_c00278{word-spacing:5.932800px;}
.ws7_c00278{word-spacing:5.940000px;}
.ws30_c00278{word-spacing:7.401600px;}
.ws31_c00278{word-spacing:7.408800px;}
.ws17_c00278{word-spacing:10.526400px;}
.ws16_c00278{word-spacing:10.648800px;}
.ws2e_c00278{word-spacing:11.347200px;}
.ws2d_c00278{word-spacing:11.368800px;}
.wsb_c00278{word-spacing:12.031200px;}
.ws22_c00278{word-spacing:13.514400px;}
.ws23_c00278{word-spacing:13.550400px;}
.ws14_c00278{word-spacing:13.852800px;}
.ws2f_c00278{word-spacing:13.946400px;}
.ws1_c00278{word-spacing:17.841600px;}
.ws6_c00278{word-spacing:19.980000px;}
.ws5_c00278{word-spacing:19.994400px;}
.ws1a_c00278{word-spacing:22.377600px;}
.ws19_c00278{word-spacing:22.456800px;}
.wsa_c00278{word-spacing:23.191200px;}
.ws9_c00278{word-spacing:23.212800px;}
.ws26_c00278{word-spacing:29.707200px;}
.ws1d_c00278{word-spacing:33.897600px;}
.ws1c_c00278{word-spacing:33.926400px;}
._0_c00278{width:1.123200px;}
.fc0_c00278{color:rgb(0,0,0);}
.fs0_c00278{font-size:72.000000px;}
.y0_c00278{bottom:0.000000px;}
.y2_c00278{bottom:46.830450px;}
.y1_c00278{bottom:67.530450px;}
.y26_c00278{bottom:148.530450px;}
.y25_c00278{bottom:179.580450px;}
.y24_c00278{bottom:210.630450px;}
.y23_c00278{bottom:241.680450px;}
.y22_c00278{bottom:272.730450px;}
.y21_c00278{bottom:303.690450px;}
.y20_c00278{bottom:334.740450px;}
.y1f_c00278{bottom:383.790450px;}
.y1e_c00278{bottom:413.490450px;}
.y1d_c00278{bottom:434.190450px;}
.y1c_c00278{bottom:454.890450px;}
.y1b_c00278{bottom:475.590450px;}
.y1a_c00278{bottom:496.290450px;}
.y19_c00278{bottom:516.990450px;}
.y18_c00278{bottom:537.690450px;}
.y17_c00278{bottom:558.390450px;}
.y16_c00278{bottom:607.440450px;}
.y15_c00278{bottom:638.490450px;}
.y14_c00278{bottom:687.540450px;}
.y13_c00278{bottom:717.240450px;}
.y12_c00278{bottom:737.940450px;}
.y11_c00278{bottom:758.640450px;}
.y10_c00278{bottom:779.340450px;}
.yf_c00278{bottom:800.040450px;}
.ye_c00278{bottom:820.740450px;}
.yd_c00278{bottom:841.440450px;}
.yc_c00278{bottom:862.140450px;}
.yb_c00278{bottom:882.840450px;}
.ya_c00278{bottom:903.540450px;}
.y9_c00278{bottom:924.240450px;}
.y8_c00278{bottom:944.940450px;}
.y7_c00278{bottom:965.640450px;}
.y6_c00278{bottom:986.340450px;}
.y5_c00278{bottom:1035.390450px;}
.y4_c00278{bottom:1066.440450px;}
.y3_c00278{bottom:1097.490450px;}
.h1_c00278{height:63.175781px;}
.h2_c00278{height:64.546875px;}
.h0_c00278{height:1263.000000px;}
.w1_c00278{width:892.500000px;}
.w0_c00278{width:892.830000px;}
.x0_c00278{left:0.000000px;}
.x2_c00278{left:170.100000px;}
.x3_c00278{left:191.430000px;}
.x1_c00278{left:738.360000px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.lsc_c00278{letter-spacing:-0.070400pt;}
.lsb_c00278{letter-spacing:-0.064000pt;}
.lsa_c00278{letter-spacing:-0.057600pt;}
.ls3_c00278{letter-spacing:-0.051200pt;}
.ls9_c00278{letter-spacing:-0.044800pt;}
.ls1_c00278{letter-spacing:-0.038400pt;}
.ls5_c00278{letter-spacing:-0.032000pt;}
.ls2_c00278{letter-spacing:-0.025600pt;}
.ls6_c00278{letter-spacing:-0.019200pt;}
.ls7_c00278{letter-spacing:-0.012800pt;}
.ls4_c00278{letter-spacing:-0.006400pt;}
.ls0_c00278{letter-spacing:0.000000pt;}
.ls8_c00278{letter-spacing:0.006400pt;}
.ws15_c00278{word-spacing:-3.993600pt;}
.ws2c_c00278{word-spacing:-2.483200pt;}
.ws32_c00278{word-spacing:-2.406400pt;}
.ws2b_c00278{word-spacing:-2.380800pt;}
.ws33_c00278{word-spacing:-2.374400pt;}
.wsc_c00278{word-spacing:-2.144000pt;}
.wsd_c00278{word-spacing:-2.054400pt;}
.ws28_c00278{word-spacing:-1.702400pt;}
.ws27_c00278{word-spacing:-1.619200pt;}
.ws0_c00278{word-spacing:0.000000pt;}
.ws4_c00278{word-spacing:0.083200pt;}
.ws11_c00278{word-spacing:0.108800pt;}
.ws18_c00278{word-spacing:0.147200pt;}
.ws1b_c00278{word-spacing:0.153600pt;}
.ws10_c00278{word-spacing:0.211200pt;}
.ws2a_c00278{word-spacing:0.428800pt;}
.ws29_c00278{word-spacing:0.595200pt;}
.ws24_c00278{word-spacing:0.806400pt;}
.ws25_c00278{word-spacing:0.851200pt;}
.ws1f_c00278{word-spacing:1.132800pt;}
.ws1e_c00278{word-spacing:1.145600pt;}
.wsf_c00278{word-spacing:2.118400pt;}
.wse_c00278{word-spacing:2.144000pt;}
.ws21_c00278{word-spacing:3.622400pt;}
.ws20_c00278{word-spacing:3.692800pt;}
.ws13_c00278{word-spacing:4.633600pt;}
.ws2_c00278{word-spacing:4.646400pt;}
.ws3_c00278{word-spacing:4.672000pt;}
.ws12_c00278{word-spacing:4.755200pt;}
.ws8_c00278{word-spacing:5.273600pt;}
.ws7_c00278{word-spacing:5.280000pt;}
.ws30_c00278{word-spacing:6.579200pt;}
.ws31_c00278{word-spacing:6.585600pt;}
.ws17_c00278{word-spacing:9.356800pt;}
.ws16_c00278{word-spacing:9.465600pt;}
.ws2e_c00278{word-spacing:10.086400pt;}
.ws2d_c00278{word-spacing:10.105600pt;}
.wsb_c00278{word-spacing:10.694400pt;}
.ws22_c00278{word-spacing:12.012800pt;}
.ws23_c00278{word-spacing:12.044800pt;}
.ws14_c00278{word-spacing:12.313600pt;}
.ws2f_c00278{word-spacing:12.396800pt;}
.ws1_c00278{word-spacing:15.859200pt;}
.ws6_c00278{word-spacing:17.760000pt;}
.ws5_c00278{word-spacing:17.772800pt;}
.ws1a_c00278{word-spacing:19.891200pt;}
.ws19_c00278{word-spacing:19.961600pt;}
.wsa_c00278{word-spacing:20.614400pt;}
.ws9_c00278{word-spacing:20.633600pt;}
.ws26_c00278{word-spacing:26.406400pt;}
.ws1d_c00278{word-spacing:30.131200pt;}
.ws1c_c00278{word-spacing:30.156800pt;}
._0_c00278{width:0.998400pt;}
.fs0_c00278{font-size:64.000000pt;}
.y0_c00278{bottom:0.000000pt;}
.y2_c00278{bottom:41.627067pt;}
.y1_c00278{bottom:60.027067pt;}
.y26_c00278{bottom:132.027067pt;}
.y25_c00278{bottom:159.627067pt;}
.y24_c00278{bottom:187.227067pt;}
.y23_c00278{bottom:214.827067pt;}
.y22_c00278{bottom:242.427067pt;}
.y21_c00278{bottom:269.947067pt;}
.y20_c00278{bottom:297.547067pt;}
.y1f_c00278{bottom:341.147067pt;}
.y1e_c00278{bottom:367.547067pt;}
.y1d_c00278{bottom:385.947067pt;}
.y1c_c00278{bottom:404.347067pt;}
.y1b_c00278{bottom:422.747067pt;}
.y1a_c00278{bottom:441.147067pt;}
.y19_c00278{bottom:459.547067pt;}
.y18_c00278{bottom:477.947067pt;}
.y17_c00278{bottom:496.347067pt;}
.y16_c00278{bottom:539.947067pt;}
.y15_c00278{bottom:567.547067pt;}
.y14_c00278{bottom:611.147067pt;}
.y13_c00278{bottom:637.547067pt;}
.y12_c00278{bottom:655.947067pt;}
.y11_c00278{bottom:674.347067pt;}
.y10_c00278{bottom:692.747067pt;}
.yf_c00278{bottom:711.147067pt;}
.ye_c00278{bottom:729.547067pt;}
.yd_c00278{bottom:747.947067pt;}
.yc_c00278{bottom:766.347067pt;}
.yb_c00278{bottom:784.747067pt;}
.ya_c00278{bottom:803.147067pt;}
.y9_c00278{bottom:821.547067pt;}
.y8_c00278{bottom:839.947067pt;}
.y7_c00278{bottom:858.347067pt;}
.y6_c00278{bottom:876.747067pt;}
.y5_c00278{bottom:920.347067pt;}
.y4_c00278{bottom:947.947067pt;}
.y3_c00278{bottom:975.547067pt;}
.h1_c00278{height:56.156250pt;}
.h2_c00278{height:57.375000pt;}
.h0_c00278{height:1122.666667pt;}
.w1_c00278{width:793.333333pt;}
.w0_c00278{width:793.626667pt;}
.x0_c00278{left:0.000000pt;}
.x2_c00278{left:151.200000pt;}
.x3_c00278{left:170.160000pt;}
.x1_c00278{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_15b6451ff236fb473e045eb1.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.093262;font-style:normal;font-weight:normal;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_81c400e22c09164267efd239.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.106934;font-style: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;}
.ls3_c00279{letter-spacing:-0.057600px;}
.ls4_c00279{letter-spacing:-0.050400px;}
.ls1_c00279{letter-spacing:-0.043200px;}
.ls5_c00279{letter-spacing:-0.036000px;}
.ls2_c00279{letter-spacing:-0.028800px;}
.ls7_c00279{letter-spacing:-0.021600px;}
.ls6_c00279{letter-spacing:-0.014400px;}
.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;}
}
.ws4_c00279{word-spacing:-3.794400px;}
.ws3_c00279{word-spacing:-3.780000px;}
.ws9_c00279{word-spacing:-3.765600px;}
.ws0_c00279{word-spacing:0.000000px;}
.wsd_c00279{word-spacing:0.244800px;}
.ws6_c00279{word-spacing:3.787200px;}
.ws5_c00279{word-spacing:3.808800px;}
.ws2_c00279{word-spacing:13.507200px;}
.ws1_c00279{word-spacing:13.593600px;}
.ws7_c00279{word-spacing:20.570400px;}
.ws8_c00279{word-spacing:20.620800px;}
.wsa_c00279{word-spacing:21.758400px;}
.wsc_c00279{word-spacing:21.801600px;}
.wsb_c00279{word-spacing:21.952800px;}
._0_c00279{width:1.008000px;}
.fc0_c00279{color:rgb(0,0,0);}
.fs0_c00279{font-size:72.000000px;}
.y0_c00279{bottom:0.000000px;}
.y2_c00279{bottom:46.830450px;}
.y1_c00279{bottom:67.530450px;}
.y9_c00279{bottom:911.190450px;}
.y8_c00279{bottom:942.240450px;}
.y7_c00279{bottom:973.290450px;}
.y6_c00279{bottom:1004.340450px;}
.y5_c00279{bottom:1035.390450px;}
.y4_c00279{bottom:1066.440450px;}
.y3_c00279{bottom:1097.490450px;}
.h1_c00279{height:63.175781px;}
.h2_c00279{height:64.546875px;}
.h0_c00279{height:1263.000000px;}
.w1_c00279{width:892.500000px;}
.w0_c00279{width:892.830000px;}
.x0_c00279{left:0.000000px;}
.x2_c00279{left:127.620000px;}
.x1_c00279{left:695.880000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls3_c00279{letter-spacing:-0.051200pt;}
.ls4_c00279{letter-spacing:-0.044800pt;}
.ls1_c00279{letter-spacing:-0.038400pt;}
.ls5_c00279{letter-spacing:-0.032000pt;}
.ls2_c00279{letter-spacing:-0.025600pt;}
.ls7_c00279{letter-spacing:-0.019200pt;}
.ls6_c00279{letter-spacing:-0.012800pt;}
.ls0_c00279{letter-spacing:0.000000pt;}
.ws4_c00279{word-spacing:-3.372800pt;}
.ws3_c00279{word-spacing:-3.360000pt;}
.ws9_c00279{word-spacing:-3.347200pt;}
.ws0_c00279{word-spacing:0.000000pt;}
.wsd_c00279{word-spacing:0.217600pt;}
.ws6_c00279{word-spacing:3.366400pt;}
.ws5_c00279{word-spacing:3.385600pt;}
.ws2_c00279{word-spacing:12.006400pt;}
.ws1_c00279{word-spacing:12.083200pt;}
.ws7_c00279{word-spacing:18.284800pt;}
.ws8_c00279{word-spacing:18.329600pt;}
.wsa_c00279{word-spacing:19.340800pt;}
.wsc_c00279{word-spacing:19.379200pt;}
.wsb_c00279{word-spacing:19.513600pt;}
._0_c00279{width:0.896000pt;}
.fs0_c00279{font-size:64.000000pt;}
.y0_c00279{bottom:0.000000pt;}
.y2_c00279{bottom:41.627067pt;}
.y1_c00279{bottom:60.027067pt;}
.y9_c00279{bottom:809.947067pt;}
.y8_c00279{bottom:837.547067pt;}
.y7_c00279{bottom:865.147067pt;}
.y6_c00279{bottom:892.747067pt;}
.y5_c00279{bottom:920.347067pt;}
.y4_c00279{bottom:947.947067pt;}
.y3_c00279{bottom:975.547067pt;}
.h1_c00279{height:56.156250pt;}
.h2_c00279{height:57.375000pt;}
.h0_c00279{height:1122.666667pt;}
.w1_c00279{width:793.333333pt;}
.w0_c00279{width:793.626667pt;}
.x0_c00279{left:0.000000pt;}
.x2_c00279{left:113.440000pt;}
.x1_c00279{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c9287e626e2dc90ef724bd9c.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.093262;font-style:normal;font-weight:normal;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_64b1b88d59ad4c4137c3d65a.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00280;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00280;src:url('chunks/assets/font_ac5202e04d8aad380599305a.woff2')format("woff");}.ff4_c00280{font-family:ff4_c00280;line-height:1.106934;font-style:normal;font-weight:normal;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_c5f2797b471b044045f0db8a.woff2')format("woff");}.ff5_c00280{font-family:ff5_c00280;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00280{letter-spacing:-0.201600px;}
.ls7_c00280{letter-spacing:-0.093600px;}
.lse_c00280{letter-spacing:-0.086400px;}
.lsf_c00280{letter-spacing:-0.079200px;}
.lsa_c00280{letter-spacing:-0.072000px;}
.ls8_c00280{letter-spacing:-0.050400px;}
.ls5_c00280{letter-spacing:-0.043200px;}
.lsd_c00280{letter-spacing:-0.036000px;}
.ls6_c00280{letter-spacing:-0.028800px;}
.ls4_c00280{letter-spacing:-0.021600px;}
.lsb_c00280{letter-spacing:-0.014400px;}
.ls9_c00280{letter-spacing:-0.007200px;}
.ls2_c00280{letter-spacing:0.000000px;}
.ls1_c00280{letter-spacing:0.021600px;}
.ls3_c00280{letter-spacing:0.033552px;}
.ls0_c00280{letter-spacing:0.067104px;}
.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;}
}
.ws20_c00280{word-spacing:-3.031200px;}
.ws21_c00280{word-spacing:-3.009600px;}
.ws2b_c00280{word-spacing:-0.158400px;}
.ws2a_c00280{word-spacing:-0.151200px;}
.ws0_c00280{word-spacing:0.000000px;}
.ws1_c00280{word-spacing:0.025164px;}
.ws12_c00280{word-spacing:0.100800px;}
.wsc_c00280{word-spacing:0.158400px;}
.ws15_c00280{word-spacing:0.165600px;}
.ws3_c00280{word-spacing:0.180000px;}
.ws4_c00280{word-spacing:0.201600px;}
.ws2_c00280{word-spacing:0.234864px;}
.ws13_c00280{word-spacing:0.244800px;}
.ws14_c00280{word-spacing:0.302400px;}
.ws8_c00280{word-spacing:1.224000px;}
.ws9_c00280{word-spacing:1.281600px;}
.ws1d_c00280{word-spacing:2.332800px;}
.ws1e_c00280{word-spacing:2.347200px;}
.ws23_c00280{word-spacing:2.685600px;}
.ws24_c00280{word-spacing:2.721600px;}
.wsb_c00280{word-spacing:3.312000px;}
.ws10_c00280{word-spacing:3.333600px;}
.wsa_c00280{word-spacing:3.441600px;}
.ws11_c00280{word-spacing:3.492000px;}
.ws5_c00280{word-spacing:4.190400px;}
.ws28_c00280{word-spacing:6.220800px;}
.ws27_c00280{word-spacing:6.328800px;}
.wsd_c00280{word-spacing:8.107200px;}
.ws2d_c00280{word-spacing:10.267200px;}
.ws2c_c00280{word-spacing:10.310400px;}
.ws1f_c00280{word-spacing:12.808800px;}
.ws1b_c00280{word-spacing:13.564800px;}
.ws1c_c00280{word-spacing:13.615200px;}
.wse_c00280{word-spacing:15.285600px;}
.wsf_c00280{word-spacing:15.350400px;}
.ws1a_c00280{word-spacing:23.248800px;}
.ws19_c00280{word-spacing:23.284800px;}
.ws29_c00280{word-spacing:24.724800px;}
.ws22_c00280{word-spacing:26.841600px;}
.ws30_c00280{word-spacing:31.456800px;}
.ws31_c00280{word-spacing:31.492800px;}
.ws25_c00280{word-spacing:31.838400px;}
.ws26_c00280{word-spacing:31.867200px;}
.ws2f_c00280{word-spacing:38.354400px;}
.ws6_c00280{word-spacing:38.613600px;}
.ws7_c00280{word-spacing:38.772000px;}
.ws2e_c00280{word-spacing:40.168800px;}
.ws17_c00280{word-spacing:46.605600px;}
.ws18_c00280{word-spacing:46.627200px;}
.ws16_c00280{word-spacing:49.514400px;}
._1_c00280{width:1.065600px;}
._0_c00280{width:153.332640px;}
.fc0_c00280{color:rgb(0,0,0);}
.fs0_c00280{font-size:72.000000px;}
.fs1_c00280{font-size:83.880000px;}
.y0_c00280{bottom:0.000000px;}
.y2_c00280{bottom:46.830450px;}
.y1_c00280{bottom:67.530450px;}
.y27_c00280{bottom:139.350450px;}
.y26_c00280{bottom:170.400450px;}
.y25_c00280{bottom:201.450450px;}
.y24_c00280{bottom:232.500450px;}
.y23_c00280{bottom:263.550450px;}
.y22_c00280{bottom:294.600450px;}
.y21_c00280{bottom:325.650450px;}
.y20_c00280{bottom:346.350450px;}
.y1f_c00280{bottom:367.050450px;}
.y1e_c00280{bottom:387.750450px;}
.y1d_c00280{bottom:408.450450px;}
.y1c_c00280{bottom:429.150450px;}
.y1b_c00280{bottom:449.850450px;}
.y1a_c00280{bottom:470.550450px;}
.y19_c00280{bottom:491.250450px;}
.y18_c00280{bottom:511.950450px;}
.y17_c00280{bottom:532.650450px;}
.y16_c00280{bottom:553.350450px;}
.y15_c00280{bottom:574.050450px;}
.y14_c00280{bottom:594.750450px;}
.y13_c00280{bottom:634.710450px;}
.y12_c00280{bottom:665.850450px;}
.y11_c00280{bottom:696.900450px;}
.y10_c00280{bottom:727.860450px;}
.yf_c00280{bottom:758.910450px;}
.ye_c00280{bottom:798.960450px;}
.yd_c00280{bottom:819.660450px;}
.yc_c00280{bottom:840.360450px;}
.yb_c00280{bottom:861.060450px;}
.ya_c00280{bottom:881.760450px;}
.y9_c00280{bottom:921.810450px;}
.y8_c00280{bottom:952.860450px;}
.y7_c00280{bottom:983.910450px;}
.y6_c00280{bottom:1014.960450px;}
.y5_c00280{bottom:1044.570450px;}
.y4_c00280{bottom:1070.404950px;}
.y3_c00280{bottom:1094.520450px;}
.h1_c00280{height:63.175781px;}
.h4_c00280{height:64.546875px;}
.h3_c00280{height:75.093750px;}
.h2_c00280{height:87.484219px;}
.h0_c00280{height:1263.000000px;}
.w1_c00280{width:892.500000px;}
.w0_c00280{width:892.830000px;}
.x0_c00280{left:0.000000px;}
.x2_c00280{left:170.100000px;}
.x5_c00280{left:191.430000px;}
.x3_c00280{left:197.100000px;}
.x4_c00280{left:229.498650px;}
.x1_c00280{left:738.360000px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.lsc_c00280{letter-spacing:-0.179200pt;}
.ls7_c00280{letter-spacing:-0.083200pt;}
.lse_c00280{letter-spacing:-0.076800pt;}
.lsf_c00280{letter-spacing:-0.070400pt;}
.lsa_c00280{letter-spacing:-0.064000pt;}
.ls8_c00280{letter-spacing:-0.044800pt;}
.ls5_c00280{letter-spacing:-0.038400pt;}
.lsd_c00280{letter-spacing:-0.032000pt;}
.ls6_c00280{letter-spacing:-0.025600pt;}
.ls4_c00280{letter-spacing:-0.019200pt;}
.lsb_c00280{letter-spacing:-0.012800pt;}
.ls9_c00280{letter-spacing:-0.006400pt;}
.ls2_c00280{letter-spacing:0.000000pt;}
.ls1_c00280{letter-spacing:0.019200pt;}
.ls3_c00280{letter-spacing:0.029824pt;}
.ls0_c00280{letter-spacing:0.059648pt;}
.ws20_c00280{word-spacing:-2.694400pt;}
.ws21_c00280{word-spacing:-2.675200pt;}
.ws2b_c00280{word-spacing:-0.140800pt;}
.ws2a_c00280{word-spacing:-0.134400pt;}
.ws0_c00280{word-spacing:0.000000pt;}
.ws1_c00280{word-spacing:0.022368pt;}
.ws12_c00280{word-spacing:0.089600pt;}
.wsc_c00280{word-spacing:0.140800pt;}
.ws15_c00280{word-spacing:0.147200pt;}
.ws3_c00280{word-spacing:0.160000pt;}
.ws4_c00280{word-spacing:0.179200pt;}
.ws2_c00280{word-spacing:0.208768pt;}
.ws13_c00280{word-spacing:0.217600pt;}
.ws14_c00280{word-spacing:0.268800pt;}
.ws8_c00280{word-spacing:1.088000pt;}
.ws9_c00280{word-spacing:1.139200pt;}
.ws1d_c00280{word-spacing:2.073600pt;}
.ws1e_c00280{word-spacing:2.086400pt;}
.ws23_c00280{word-spacing:2.387200pt;}
.ws24_c00280{word-spacing:2.419200pt;}
.wsb_c00280{word-spacing:2.944000pt;}
.ws10_c00280{word-spacing:2.963200pt;}
.wsa_c00280{word-spacing:3.059200pt;}
.ws11_c00280{word-spacing:3.104000pt;}
.ws5_c00280{word-spacing:3.724800pt;}
.ws28_c00280{word-spacing:5.529600pt;}
.ws27_c00280{word-spacing:5.625600pt;}
.wsd_c00280{word-spacing:7.206400pt;}
.ws2d_c00280{word-spacing:9.126400pt;}
.ws2c_c00280{word-spacing:9.164800pt;}
.ws1f_c00280{word-spacing:11.385600pt;}
.ws1b_c00280{word-spacing:12.057600pt;}
.ws1c_c00280{word-spacing:12.102400pt;}
.wse_c00280{word-spacing:13.587200pt;}
.wsf_c00280{word-spacing:13.644800pt;}
.ws1a_c00280{word-spacing:20.665600pt;}
.ws19_c00280{word-spacing:20.697600pt;}
.ws29_c00280{word-spacing:21.977600pt;}
.ws22_c00280{word-spacing:23.859200pt;}
.ws30_c00280{word-spacing:27.961600pt;}
.ws31_c00280{word-spacing:27.993600pt;}
.ws25_c00280{word-spacing:28.300800pt;}
.ws26_c00280{word-spacing:28.326400pt;}
.ws2f_c00280{word-spacing:34.092800pt;}
.ws6_c00280{word-spacing:34.323200pt;}
.ws7_c00280{word-spacing:34.464000pt;}
.ws2e_c00280{word-spacing:35.705600pt;}
.ws17_c00280{word-spacing:41.427200pt;}
.ws18_c00280{word-spacing:41.446400pt;}
.ws16_c00280{word-spacing:44.012800pt;}
._1_c00280{width:0.947200pt;}
._0_c00280{width:136.295680pt;}
.fs0_c00280{font-size:64.000000pt;}
.fs1_c00280{font-size:74.560000pt;}
.y0_c00280{bottom:0.000000pt;}
.y2_c00280{bottom:41.627067pt;}
.y1_c00280{bottom:60.027067pt;}
.y27_c00280{bottom:123.867067pt;}
.y26_c00280{bottom:151.467067pt;}
.y25_c00280{bottom:179.067067pt;}
.y24_c00280{bottom:206.667067pt;}
.y23_c00280{bottom:234.267067pt;}
.y22_c00280{bottom:261.867067pt;}
.y21_c00280{bottom:289.467067pt;}
.y20_c00280{bottom:307.867067pt;}
.y1f_c00280{bottom:326.267067pt;}
.y1e_c00280{bottom:344.667067pt;}
.y1d_c00280{bottom:363.067067pt;}
.y1c_c00280{bottom:381.467067pt;}
.y1b_c00280{bottom:399.867067pt;}
.y1a_c00280{bottom:418.267067pt;}
.y19_c00280{bottom:436.667067pt;}
.y18_c00280{bottom:455.067067pt;}
.y17_c00280{bottom:473.467067pt;}
.y16_c00280{bottom:491.867067pt;}
.y15_c00280{bottom:510.267067pt;}
.y14_c00280{bottom:528.667067pt;}
.y13_c00280{bottom:564.187067pt;}
.y12_c00280{bottom:591.867067pt;}
.y11_c00280{bottom:619.467067pt;}
.y10_c00280{bottom:646.987067pt;}
.yf_c00280{bottom:674.587067pt;}
.ye_c00280{bottom:710.187067pt;}
.yd_c00280{bottom:728.587067pt;}
.yc_c00280{bottom:746.987067pt;}
.yb_c00280{bottom:765.387067pt;}
.ya_c00280{bottom:783.787067pt;}
.y9_c00280{bottom:819.387067pt;}
.y8_c00280{bottom:846.987067pt;}
.y7_c00280{bottom:874.587067pt;}
.y6_c00280{bottom:902.187067pt;}
.y5_c00280{bottom:928.507067pt;}
.y4_c00280{bottom:951.471067pt;}
.y3_c00280{bottom:972.907067pt;}
.h1_c00280{height:56.156250pt;}
.h4_c00280{height:57.375000pt;}
.h3_c00280{height:66.750000pt;}
.h2_c00280{height:77.763750pt;}
.h0_c00280{height:1122.666667pt;}
.w1_c00280{width:793.333333pt;}
.w0_c00280{width:793.626667pt;}
.x0_c00280{left:0.000000pt;}
.x2_c00280{left:151.200000pt;}
.x5_c00280{left:170.160000pt;}
.x3_c00280{left:175.200000pt;}
.x4_c00280{left:203.998800pt;}
.x1_c00280{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a04d97c1253ff93f5c0f65e2.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.093262;font-style:normal;font-weight:normal;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_743bdf7ff43c0c2009292703.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.106934;font-style:normal;font-weight:normal;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_95af0798e9e391c055efbed7.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls13_c00281{letter-spacing:-0.201600px;}
.lsc_c00281{letter-spacing:-0.194400px;}
.ls11_c00281{letter-spacing:-0.086400px;}
.lsd_c00281{letter-spacing:-0.079200px;}
.ls10_c00281{letter-spacing:-0.064800px;}
.lsb_c00281{letter-spacing:-0.057600px;}
.ls8_c00281{letter-spacing:-0.050400px;}
.ls6_c00281{letter-spacing:-0.043200px;}
.ls5_c00281{letter-spacing:-0.036000px;}
.ls9_c00281{letter-spacing:-0.028800px;}
.lsa_c00281{letter-spacing:-0.021600px;}
.ls7_c00281{letter-spacing:-0.014400px;}
.ls12_c00281{letter-spacing:-0.007200px;}
.ls4_c00281{letter-spacing:0.000000px;}
.ls14_c00281{letter-spacing:0.007200px;}
.lsf_c00281{letter-spacing:0.014400px;}
.ls2_c00281{letter-spacing:0.021600px;}
.ls0_c00281{letter-spacing:0.028800px;}
.ls3_c00281{letter-spacing:0.144000px;}
.ls1_c00281{letter-spacing:31.464000px;}
.lse_c00281{letter-spacing:31.478400px;}
.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;}
}
.ws11_c00281{word-spacing:-4.521600px;}
.ws10_c00281{word-spacing:-4.492800px;}
.ws3_c00281{word-spacing:-4.485600px;}
.ws4_c00281{word-spacing:-4.478400px;}
.ws2_c00281{word-spacing:-3.844800px;}
.ws1_c00281{word-spacing:-3.816000px;}
.ws6_c00281{word-spacing:-1.987200px;}
.ws5_c00281{word-spacing:-1.915200px;}
.ws24_c00281{word-spacing:-1.260000px;}
.ws23_c00281{word-spacing:-1.231200px;}
.ws0_c00281{word-spacing:0.000000px;}
.ws35_c00281{word-spacing:0.136800px;}
.ws38_c00281{word-spacing:0.151200px;}
.ws33_c00281{word-spacing:0.165600px;}
.ws2e_c00281{word-spacing:0.180000px;}
.ws34_c00281{word-spacing:0.187200px;}
.ws2d_c00281{word-spacing:0.216000px;}
.ws8_c00281{word-spacing:0.324000px;}
.ws22_c00281{word-spacing:1.915200px;}
.ws18_c00281{word-spacing:1.980000px;}
.ws17_c00281{word-spacing:1.994400px;}
.ws21_c00281{word-spacing:2.001600px;}
.wsb_c00281{word-spacing:2.707200px;}
.wsa_c00281{word-spacing:2.728800px;}
.ws31_c00281{word-spacing:2.757600px;}
.wsc_c00281{word-spacing:2.844000px;}
.ws13_c00281{word-spacing:3.700800px;}
.ws16_c00281{word-spacing:3.772800px;}
.ws15_c00281{word-spacing:3.787200px;}
.ws14_c00281{word-spacing:3.801600px;}
.ws12_c00281{word-spacing:3.808800px;}
.ws1e_c00281{word-spacing:4.824000px;}
.ws1f_c00281{word-spacing:5.133600px;}
.ws20_c00281{word-spacing:5.140800px;}
.ws1c_c00281{word-spacing:5.227200px;}
.ws1d_c00281{word-spacing:5.234400px;}
.ws2a_c00281{word-spacing:6.645600px;}
.ws29_c00281{word-spacing:6.717600px;}
.ws30_c00281{word-spacing:7.293600px;}
.ws2f_c00281{word-spacing:7.387200px;}
.ws32_c00281{word-spacing:8.532000px;}
.ws36_c00281{word-spacing:8.820000px;}
.ws37_c00281{word-spacing:8.863200px;}
.ws2c_c00281{word-spacing:12.052800px;}
.ws2b_c00281{word-spacing:12.067200px;}
.wsd_c00281{word-spacing:12.412800px;}
.wsf_c00281{word-spacing:12.420000px;}
.wse_c00281{word-spacing:12.434400px;}
.ws1b_c00281{word-spacing:13.852800px;}
.ws26_c00281{word-spacing:17.856000px;}
.ws7_c00281{word-spacing:18.201600px;}
.ws9_c00281{word-spacing:23.212800px;}
.ws25_c00281{word-spacing:24.674400px;}
.ws19_c00281{word-spacing:31.132800px;}
.ws1a_c00281{word-spacing:31.154400px;}
.ws27_c00281{word-spacing:31.449600px;}
.ws28_c00281{word-spacing:31.492800px;}
._0_c00281{width:1.195200px;}
.fc0_c00281{color:rgb(0,0,0);}
.fs0_c00281{font-size:72.000000px;}
.y0_c00281{bottom:0.000000px;}
.y2_c00281{bottom:46.830450px;}
.y1_c00281{bottom:67.530450px;}
.y21_c00281{bottom:139.080450px;}
.y20_c00281{bottom:179.130450px;}
.y1f_c00281{bottom:210.180450px;}
.y1e_c00281{bottom:250.230450px;}
.y1d_c00281{bottom:281.190450px;}
.y1c_c00281{bottom:312.330450px;}
.y1b_c00281{bottom:343.380450px;}
.y1a_c00281{bottom:374.430450px;}
.y19_c00281{bottom:405.390450px;}
.y18_c00281{bottom:436.440450px;}
.y17_c00281{bottom:467.400450px;}
.y16_c00281{bottom:498.540450px;}
.y15_c00281{bottom:529.590450px;}
.y14_c00281{bottom:560.640450px;}
.y13_c00281{bottom:591.690450px;}
.y12_c00281{bottom:622.740450px;}
.y11_c00281{bottom:653.790450px;}
.y10_c00281{bottom:684.840450px;}
.yf_c00281{bottom:715.890450px;}
.ye_c00281{bottom:746.850450px;}
.yd_c00281{bottom:777.990450px;}
.yc_c00281{bottom:809.040450px;}
.yb_c00281{bottom:840.000450px;}
.ya_c00281{bottom:871.140450px;}
.y9_c00281{bottom:902.190450px;}
.y8_c00281{bottom:933.240450px;}
.y7_c00281{bottom:973.290450px;}
.y6_c00281{bottom:1004.340450px;}
.y5_c00281{bottom:1035.390450px;}
.y4_c00281{bottom:1066.440450px;}
.y3_c00281{bottom:1097.490450px;}
.h1_c00281{height:63.175781px;}
.h2_c00281{height:64.546875px;}
.h3_c00281{height:75.093750px;}
.h0_c00281{height:1263.000000px;}
.w1_c00281{width:892.500000px;}
.w0_c00281{width:892.830000px;}
.x0_c00281{left:0.000000px;}
.x2_c00281{left:127.620000px;}
.x1_c00281{left:695.880000px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls13_c00281{letter-spacing:-0.179200pt;}
.lsc_c00281{letter-spacing:-0.172800pt;}
.ls11_c00281{letter-spacing:-0.076800pt;}
.lsd_c00281{letter-spacing:-0.070400pt;}
.ls10_c00281{letter-spacing:-0.057600pt;}
.lsb_c00281{letter-spacing:-0.051200pt;}
.ls8_c00281{letter-spacing:-0.044800pt;}
.ls6_c00281{letter-spacing:-0.038400pt;}
.ls5_c00281{letter-spacing:-0.032000pt;}
.ls9_c00281{letter-spacing:-0.025600pt;}
.lsa_c00281{letter-spacing:-0.019200pt;}
.ls7_c00281{letter-spacing:-0.012800pt;}
.ls12_c00281{letter-spacing:-0.006400pt;}
.ls4_c00281{letter-spacing:0.000000pt;}
.ls14_c00281{letter-spacing:0.006400pt;}
.lsf_c00281{letter-spacing:0.012800pt;}
.ls2_c00281{letter-spacing:0.019200pt;}
.ls0_c00281{letter-spacing:0.025600pt;}
.ls3_c00281{letter-spacing:0.128000pt;}
.ls1_c00281{letter-spacing:27.968000pt;}
.lse_c00281{letter-spacing:27.980800pt;}
.ws11_c00281{word-spacing:-4.019200pt;}
.ws10_c00281{word-spacing:-3.993600pt;}
.ws3_c00281{word-spacing:-3.987200pt;}
.ws4_c00281{word-spacing:-3.980800pt;}
.ws2_c00281{word-spacing:-3.417600pt;}
.ws1_c00281{word-spacing:-3.392000pt;}
.ws6_c00281{word-spacing:-1.766400pt;}
.ws5_c00281{word-spacing:-1.702400pt;}
.ws24_c00281{word-spacing:-1.120000pt;}
.ws23_c00281{word-spacing:-1.094400pt;}
.ws0_c00281{word-spacing:0.000000pt;}
.ws35_c00281{word-spacing:0.121600pt;}
.ws38_c00281{word-spacing:0.134400pt;}
.ws33_c00281{word-spacing:0.147200pt;}
.ws2e_c00281{word-spacing:0.160000pt;}
.ws34_c00281{word-spacing:0.166400pt;}
.ws2d_c00281{word-spacing:0.192000pt;}
.ws8_c00281{word-spacing:0.288000pt;}
.ws22_c00281{word-spacing:1.702400pt;}
.ws18_c00281{word-spacing:1.760000pt;}
.ws17_c00281{word-spacing:1.772800pt;}
.ws21_c00281{word-spacing:1.779200pt;}
.wsb_c00281{word-spacing:2.406400pt;}
.wsa_c00281{word-spacing:2.425600pt;}
.ws31_c00281{word-spacing:2.451200pt;}
.wsc_c00281{word-spacing:2.528000pt;}
.ws13_c00281{word-spacing:3.289600pt;}
.ws16_c00281{word-spacing:3.353600pt;}
.ws15_c00281{word-spacing:3.366400pt;}
.ws14_c00281{word-spacing:3.379200pt;}
.ws12_c00281{word-spacing:3.385600pt;}
.ws1e_c00281{word-spacing:4.288000pt;}
.ws1f_c00281{word-spacing:4.563200pt;}
.ws20_c00281{word-spacing:4.569600pt;}
.ws1c_c00281{word-spacing:4.646400pt;}
.ws1d_c00281{word-spacing:4.652800pt;}
.ws2a_c00281{word-spacing:5.907200pt;}
.ws29_c00281{word-spacing:5.971200pt;}
.ws30_c00281{word-spacing:6.483200pt;}
.ws2f_c00281{word-spacing:6.566400pt;}
.ws32_c00281{word-spacing:7.584000pt;}
.ws36_c00281{word-spacing:7.840000pt;}
.ws37_c00281{word-spacing:7.878400pt;}
.ws2c_c00281{word-spacing:10.713600pt;}
.ws2b_c00281{word-spacing:10.726400pt;}
.wsd_c00281{word-spacing:11.033600pt;}
.wsf_c00281{word-spacing:11.040000pt;}
.wse_c00281{word-spacing:11.052800pt;}
.ws1b_c00281{word-spacing:12.313600pt;}
.ws26_c00281{word-spacing:15.872000pt;}
.ws7_c00281{word-spacing:16.179200pt;}
.ws9_c00281{word-spacing:20.633600pt;}
.ws25_c00281{word-spacing:21.932800pt;}
.ws19_c00281{word-spacing:27.673600pt;}
.ws1a_c00281{word-spacing:27.692800pt;}
.ws27_c00281{word-spacing:27.955200pt;}
.ws28_c00281{word-spacing:27.993600pt;}
._0_c00281{width:1.062400pt;}
.fs0_c00281{font-size:64.000000pt;}
.y0_c00281{bottom:0.000000pt;}
.y2_c00281{bottom:41.627067pt;}
.y1_c00281{bottom:60.027067pt;}
.y21_c00281{bottom:123.627067pt;}
.y20_c00281{bottom:159.227067pt;}
.y1f_c00281{bottom:186.827067pt;}
.y1e_c00281{bottom:222.427067pt;}
.y1d_c00281{bottom:249.947067pt;}
.y1c_c00281{bottom:277.627067pt;}
.y1b_c00281{bottom:305.227067pt;}
.y1a_c00281{bottom:332.827067pt;}
.y19_c00281{bottom:360.347067pt;}
.y18_c00281{bottom:387.947067pt;}
.y17_c00281{bottom:415.467067pt;}
.y16_c00281{bottom:443.147067pt;}
.y15_c00281{bottom:470.747067pt;}
.y14_c00281{bottom:498.347067pt;}
.y13_c00281{bottom:525.947067pt;}
.y12_c00281{bottom:553.547067pt;}
.y11_c00281{bottom:581.147067pt;}
.y10_c00281{bottom:608.747067pt;}
.yf_c00281{bottom:636.347067pt;}
.ye_c00281{bottom:663.867067pt;}
.yd_c00281{bottom:691.547067pt;}
.yc_c00281{bottom:719.147067pt;}
.yb_c00281{bottom:746.667067pt;}
.ya_c00281{bottom:774.347067pt;}
.y9_c00281{bottom:801.947067pt;}
.y8_c00281{bottom:829.547067pt;}
.y7_c00281{bottom:865.147067pt;}
.y6_c00281{bottom:892.747067pt;}
.y5_c00281{bottom:920.347067pt;}
.y4_c00281{bottom:947.947067pt;}
.y3_c00281{bottom:975.547067pt;}
.h1_c00281{height:56.156250pt;}
.h2_c00281{height:57.375000pt;}
.h3_c00281{height:66.750000pt;}
.h0_c00281{height:1122.666667pt;}
.w1_c00281{width:793.333333pt;}
.w0_c00281{width:793.626667pt;}
.x0_c00281{left:0.000000pt;}
.x2_c00281{left:113.440000pt;}
.x1_c00281{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f719001d8ff1383deb18e107.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.093262;font-style:normal;font-weight:normal;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_a1b720cbc77290fef7d729ed.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00282;src:url('chunks/assets/font_b1923a27c7919f377fefae82.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00282{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00282{vertical-align:0.000000px;}
.ls8_c00282{letter-spacing:-0.093600px;}
.ls4_c00282{letter-spacing:-0.072000px;}
.ls9_c00282{letter-spacing:-0.064800px;}
.ls3_c00282{letter-spacing:-0.057600px;}
.ls5_c00282{letter-spacing:-0.050400px;}
.lsc_c00282{letter-spacing:-0.043200px;}
.lsa_c00282{letter-spacing:-0.036000px;}
.ls2_c00282{letter-spacing:-0.028800px;}
.ls6_c00282{letter-spacing:-0.021600px;}
.ls7_c00282{letter-spacing:-0.014400px;}
.lsd_c00282{letter-spacing:-0.007200px;}
.ls1_c00282{letter-spacing:0.000000px;}
.lse_c00282{letter-spacing:0.007200px;}
.lsb_c00282{letter-spacing:0.021600px;}
.ls0_c00282{letter-spacing:0.075492px;}
.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;}
}
.wsa_c00282{word-spacing:-3.866400px;}
.ws9_c00282{word-spacing:-3.686400px;}
.ws6_c00282{word-spacing:-3.024000px;}
.ws5_c00282{word-spacing:-3.009600px;}
.ws1d_c00282{word-spacing:-2.332800px;}
.ws1e_c00282{word-spacing:-2.268000px;}
.ws24_c00282{word-spacing:-0.259200px;}
.ws23_c00282{word-spacing:-0.151200px;}
.ws0_c00282{word-spacing:0.000000px;}
.ws1a_c00282{word-spacing:0.136800px;}
.ws25_c00282{word-spacing:0.165600px;}
.wsd_c00282{word-spacing:0.187200px;}
.ws30_c00282{word-spacing:0.201600px;}
.ws2f_c00282{word-spacing:0.266400px;}
.ws29_c00282{word-spacing:0.727200px;}
.ws28_c00282{word-spacing:0.907200px;}
.ws1f_c00282{word-spacing:3.808800px;}
.ws20_c00282{word-spacing:3.859200px;}
.wsc_c00282{word-spacing:4.132800px;}
.wsb_c00282{word-spacing:4.168800px;}
.ws13_c00282{word-spacing:4.514400px;}
.ws2e_c00282{word-spacing:4.536000px;}
.ws12_c00282{word-spacing:4.543200px;}
.ws31_c00282{word-spacing:5.076000px;}
.ws32_c00282{word-spacing:5.292000px;}
.ws18_c00282{word-spacing:6.292800px;}
.ws19_c00282{word-spacing:6.314400px;}
.ws1c_c00282{word-spacing:6.624000px;}
.ws1b_c00282{word-spacing:6.688800px;}
.wsf_c00282{word-spacing:7.668000px;}
.wse_c00282{word-spacing:7.768800px;}
.ws22_c00282{word-spacing:11.361600px;}
.ws2b_c00282{word-spacing:11.721600px;}
.ws2a_c00282{word-spacing:11.728800px;}
.ws21_c00282{word-spacing:12.398400px;}
.ws11_c00282{word-spacing:13.478400px;}
.ws10_c00282{word-spacing:13.521600px;}
.ws2d_c00282{word-spacing:17.798400px;}
.ws2c_c00282{word-spacing:17.884800px;}
.ws27_c00282{word-spacing:18.223200px;}
.ws17_c00282{word-spacing:20.736000px;}
.ws16_c00282{word-spacing:20.880000px;}
.ws33_c00282{word-spacing:21.794400px;}
.ws34_c00282{word-spacing:21.808800px;}
.ws26_c00282{word-spacing:23.220000px;}
.ws15_c00282{word-spacing:24.292800px;}
.ws14_c00282{word-spacing:24.480000px;}
.ws7_c00282{word-spacing:25.322400px;}
.ws8_c00282{word-spacing:25.387200px;}
.ws2_c00282{word-spacing:29.347200px;}
.ws3_c00282{word-spacing:36.900000px;}
.ws4_c00282{word-spacing:36.936000px;}
.ws1_c00282{word-spacing:187.580844px;}
._0_c00282{margin-left:-187.639560px;}
.fc0_c00282{color:rgb(0,0,0);}
.fs0_c00282{font-size:72.000000px;}
.fs1_c00282{font-size:83.880000px;}
.y0_c00282{bottom:0.000000px;}
.y2_c00282{bottom:46.830450px;}
.y1_c00282{bottom:67.530450px;}
.y26_c00282{bottom:167.970450px;}
.y25_c00282{bottom:199.020450px;}
.y24_c00282{bottom:219.720450px;}
.y23_c00282{bottom:240.420450px;}
.y22_c00282{bottom:261.120450px;}
.y21_c00282{bottom:281.820450px;}
.y20_c00282{bottom:302.520450px;}
.y1f_c00282{bottom:323.220450px;}
.y1e_c00282{bottom:343.920450px;}
.y1d_c00282{bottom:364.620450px;}
.y1c_c00282{bottom:385.320450px;}
.y1b_c00282{bottom:425.370450px;}
.y1a_c00282{bottom:456.420450px;}
.y19_c00282{bottom:487.470450px;}
.y18_c00282{bottom:518.520450px;}
.y17_c00282{bottom:549.570450px;}
.y16_c00282{bottom:580.620450px;}
.y15_c00282{bottom:611.670450px;}
.y14_c00282{bottom:632.370450px;}
.y13_c00282{bottom:653.070450px;}
.y12_c00282{bottom:673.770450px;}
.y11_c00282{bottom:694.470450px;}
.y10_c00282{bottom:715.170450px;}
.yf_c00282{bottom:735.870450px;}
.ye_c00282{bottom:756.570450px;}
.yd_c00282{bottom:777.270450px;}
.yc_c00282{bottom:797.970450px;}
.yb_c00282{bottom:838.020450px;}
.ya_c00282{bottom:869.070450px;}
.y9_c00282{bottom:900.120450px;}
.y8_c00282{bottom:931.170450px;}
.y7_c00282{bottom:962.220450px;}
.y6_c00282{bottom:993.270450px;}
.y5_c00282{bottom:1024.320450px;}
.y4_c00282{bottom:1064.370450px;}
.y3_c00282{bottom:1094.520450px;}
.h1_c00282{height:63.175781px;}
.h3_c00282{height:64.546875px;}
.h2_c00282{height:87.484219px;}
.h0_c00282{height:1263.000000px;}
.w1_c00282{width:892.500000px;}
.w0_c00282{width:892.830000px;}
.x0_c00282{left:0.000000px;}
.x2_c00282{left:170.100000px;}
.x4_c00282{left:191.430000px;}
.x3_c00282{left:224.100000px;}
.x1_c00282{left:738.360000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls8_c00282{letter-spacing:-0.083200pt;}
.ls4_c00282{letter-spacing:-0.064000pt;}
.ls9_c00282{letter-spacing:-0.057600pt;}
.ls3_c00282{letter-spacing:-0.051200pt;}
.ls5_c00282{letter-spacing:-0.044800pt;}
.lsc_c00282{letter-spacing:-0.038400pt;}
.lsa_c00282{letter-spacing:-0.032000pt;}
.ls2_c00282{letter-spacing:-0.025600pt;}
.ls6_c00282{letter-spacing:-0.019200pt;}
.ls7_c00282{letter-spacing:-0.012800pt;}
.lsd_c00282{letter-spacing:-0.006400pt;}
.ls1_c00282{letter-spacing:0.000000pt;}
.lse_c00282{letter-spacing:0.006400pt;}
.lsb_c00282{letter-spacing:0.019200pt;}
.ls0_c00282{letter-spacing:0.067104pt;}
.wsa_c00282{word-spacing:-3.436800pt;}
.ws9_c00282{word-spacing:-3.276800pt;}
.ws6_c00282{word-spacing:-2.688000pt;}
.ws5_c00282{word-spacing:-2.675200pt;}
.ws1d_c00282{word-spacing:-2.073600pt;}
.ws1e_c00282{word-spacing:-2.016000pt;}
.ws24_c00282{word-spacing:-0.230400pt;}
.ws23_c00282{word-spacing:-0.134400pt;}
.ws0_c00282{word-spacing:0.000000pt;}
.ws1a_c00282{word-spacing:0.121600pt;}
.ws25_c00282{word-spacing:0.147200pt;}
.wsd_c00282{word-spacing:0.166400pt;}
.ws30_c00282{word-spacing:0.179200pt;}
.ws2f_c00282{word-spacing:0.236800pt;}
.ws29_c00282{word-spacing:0.646400pt;}
.ws28_c00282{word-spacing:0.806400pt;}
.ws1f_c00282{word-spacing:3.385600pt;}
.ws20_c00282{word-spacing:3.430400pt;}
.wsc_c00282{word-spacing:3.673600pt;}
.wsb_c00282{word-spacing:3.705600pt;}
.ws13_c00282{word-spacing:4.012800pt;}
.ws2e_c00282{word-spacing:4.032000pt;}
.ws12_c00282{word-spacing:4.038400pt;}
.ws31_c00282{word-spacing:4.512000pt;}
.ws32_c00282{word-spacing:4.704000pt;}
.ws18_c00282{word-spacing:5.593600pt;}
.ws19_c00282{word-spacing:5.612800pt;}
.ws1c_c00282{word-spacing:5.888000pt;}
.ws1b_c00282{word-spacing:5.945600pt;}
.wsf_c00282{word-spacing:6.816000pt;}
.wse_c00282{word-spacing:6.905600pt;}
.ws22_c00282{word-spacing:10.099200pt;}
.ws2b_c00282{word-spacing:10.419200pt;}
.ws2a_c00282{word-spacing:10.425600pt;}
.ws21_c00282{word-spacing:11.020800pt;}
.ws11_c00282{word-spacing:11.980800pt;}
.ws10_c00282{word-spacing:12.019200pt;}
.ws2d_c00282{word-spacing:15.820800pt;}
.ws2c_c00282{word-spacing:15.897600pt;}
.ws27_c00282{word-spacing:16.198400pt;}
.ws17_c00282{word-spacing:18.432000pt;}
.ws16_c00282{word-spacing:18.560000pt;}
.ws33_c00282{word-spacing:19.372800pt;}
.ws34_c00282{word-spacing:19.385600pt;}
.ws26_c00282{word-spacing:20.640000pt;}
.ws15_c00282{word-spacing:21.593600pt;}
.ws14_c00282{word-spacing:21.760000pt;}
.ws7_c00282{word-spacing:22.508800pt;}
.ws8_c00282{word-spacing:22.566400pt;}
.ws2_c00282{word-spacing:26.086400pt;}
.ws3_c00282{word-spacing:32.800000pt;}
.ws4_c00282{word-spacing:32.832000pt;}
.ws1_c00282{word-spacing:166.738528pt;}
._0_c00282{margin-left:-166.790720pt;}
.fs0_c00282{font-size:64.000000pt;}
.fs1_c00282{font-size:74.560000pt;}
.y0_c00282{bottom:0.000000pt;}
.y2_c00282{bottom:41.627067pt;}
.y1_c00282{bottom:60.027067pt;}
.y26_c00282{bottom:149.307067pt;}
.y25_c00282{bottom:176.907067pt;}
.y24_c00282{bottom:195.307067pt;}
.y23_c00282{bottom:213.707067pt;}
.y22_c00282{bottom:232.107067pt;}
.y21_c00282{bottom:250.507067pt;}
.y20_c00282{bottom:268.907067pt;}
.y1f_c00282{bottom:287.307067pt;}
.y1e_c00282{bottom:305.707067pt;}
.y1d_c00282{bottom:324.107067pt;}
.y1c_c00282{bottom:342.507067pt;}
.y1b_c00282{bottom:378.107067pt;}
.y1a_c00282{bottom:405.707067pt;}
.y19_c00282{bottom:433.307067pt;}
.y18_c00282{bottom:460.907067pt;}
.y17_c00282{bottom:488.507067pt;}
.y16_c00282{bottom:516.107067pt;}
.y15_c00282{bottom:543.707067pt;}
.y14_c00282{bottom:562.107067pt;}
.y13_c00282{bottom:580.507067pt;}
.y12_c00282{bottom:598.907067pt;}
.y11_c00282{bottom:617.307067pt;}
.y10_c00282{bottom:635.707067pt;}
.yf_c00282{bottom:654.107067pt;}
.ye_c00282{bottom:672.507067pt;}
.yd_c00282{bottom:690.907067pt;}
.yc_c00282{bottom:709.307067pt;}
.yb_c00282{bottom:744.907067pt;}
.ya_c00282{bottom:772.507067pt;}
.y9_c00282{bottom:800.107067pt;}
.y8_c00282{bottom:827.707067pt;}
.y7_c00282{bottom:855.307067pt;}
.y6_c00282{bottom:882.907067pt;}
.y5_c00282{bottom:910.507067pt;}
.y4_c00282{bottom:946.107067pt;}
.y3_c00282{bottom:972.907067pt;}
.h1_c00282{height:56.156250pt;}
.h3_c00282{height:57.375000pt;}
.h2_c00282{height:77.763750pt;}
.h0_c00282{height:1122.666667pt;}
.w1_c00282{width:793.333333pt;}
.w0_c00282{width:793.626667pt;}
.x0_c00282{left:0.000000pt;}
.x2_c00282{left:151.200000pt;}
.x4_c00282{left:170.160000pt;}
.x3_c00282{left:199.200000pt;}
.x1_c00282{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_884dc2e015ca0e7c3f7e4069.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.093262;font-style:normal;font-weight:normal;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_e5ce145f4529960cc78a4dc2.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.106934;font-style: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;}
.ls8_c00283{letter-spacing:-0.072000px;}
.lsb_c00283{letter-spacing:-0.064800px;}
.ls7_c00283{letter-spacing:-0.057600px;}
.ls2_c00283{letter-spacing:-0.050400px;}
.lsa_c00283{letter-spacing:-0.043200px;}
.ls1_c00283{letter-spacing:-0.036000px;}
.ls4_c00283{letter-spacing:-0.028800px;}
.ls9_c00283{letter-spacing:-0.021600px;}
.ls5_c00283{letter-spacing:-0.014400px;}
.ls6_c00283{letter-spacing:-0.007200px;}
.ls0_c00283{letter-spacing:0.000000px;}
.ls3_c00283{letter-spacing:0.007200px;}
.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;}
}
.ws23_c00283{word-spacing:-1.288800px;}
.ws2b_c00283{word-spacing:-1.260000px;}
.ws24_c00283{word-spacing:-1.245600px;}
.wsc_c00283{word-spacing:-1.224000px;}
.ws2f_c00283{word-spacing:-1.015200px;}
.ws35_c00283{word-spacing:-0.936000px;}
.ws2c_c00283{word-spacing:-0.907200px;}
.ws2e_c00283{word-spacing:-0.900000px;}
.ws30_c00283{word-spacing:-0.878400px;}
.ws2d_c00283{word-spacing:-0.849600px;}
.ws0_c00283{word-spacing:0.000000px;}
.ws4_c00283{word-spacing:0.057600px;}
.ws12_c00283{word-spacing:0.086400px;}
.ws29_c00283{word-spacing:0.115200px;}
.wsb_c00283{word-spacing:0.165600px;}
.ws32_c00283{word-spacing:0.172800px;}
.ws13_c00283{word-spacing:0.180000px;}
.ws11_c00283{word-spacing:0.187200px;}
.ws3_c00283{word-spacing:0.208800px;}
.ws6_c00283{word-spacing:0.489600px;}
.ws2a_c00283{word-spacing:0.540000px;}
.ws5_c00283{word-spacing:0.554400px;}
.ws22_c00283{word-spacing:0.842400px;}
.ws21_c00283{word-spacing:0.914400px;}
.ws15_c00283{word-spacing:1.267200px;}
.ws14_c00283{word-spacing:1.288800px;}
.ws36_c00283{word-spacing:3.448800px;}
.ws26_c00283{word-spacing:6.652800px;}
.ws25_c00283{word-spacing:6.746400px;}
.ws1b_c00283{word-spacing:8.100000px;}
.ws1a_c00283{word-spacing:8.128800px;}
.ws20_c00283{word-spacing:8.445600px;}
.ws1e_c00283{word-spacing:8.460000px;}
.ws1f_c00283{word-spacing:8.560800px;}
.wsa_c00283{word-spacing:8.812800px;}
.ws9_c00283{word-spacing:8.841600px;}
.ws10_c00283{word-spacing:9.907200px;}
.wsf_c00283{word-spacing:9.964800px;}
.ws27_c00283{word-spacing:10.281600px;}
.ws28_c00283{word-spacing:10.303200px;}
.ws1_c00283{word-spacing:11.642400px;}
.ws2_c00283{word-spacing:11.714400px;}
.wsd_c00283{word-spacing:17.136000px;}
.wse_c00283{word-spacing:17.150400px;}
.ws33_c00283{word-spacing:19.620000px;}
.ws34_c00283{word-spacing:19.677600px;}
.ws18_c00283{word-spacing:23.839200px;}
.ws19_c00283{word-spacing:23.889600px;}
.ws31_c00283{word-spacing:25.034400px;}
.ws1d_c00283{word-spacing:26.452800px;}
.ws1c_c00283{word-spacing:26.640000px;}
.ws16_c00283{word-spacing:27.180000px;}
.ws17_c00283{word-spacing:27.187200px;}
.ws7_c00283{word-spacing:43.387200px;}
.ws8_c00283{word-spacing:43.408800px;}
._0_c00283{width:1.044000px;}
.fc0_c00283{color:rgb(0,0,0);}
.fs0_c00283{font-size:72.000000px;}
.y0_c00283{bottom:0.000000px;}
.y2_c00283{bottom:46.830450px;}
.y1_c00283{bottom:67.530450px;}
.y25_c00283{bottom:159.780450px;}
.y24_c00283{bottom:190.830450px;}
.y23_c00283{bottom:221.880450px;}
.y22_c00283{bottom:242.580450px;}
.y21_c00283{bottom:263.280450px;}
.y20_c00283{bottom:283.980450px;}
.y1f_c00283{bottom:304.680450px;}
.y1e_c00283{bottom:325.380450px;}
.y1d_c00283{bottom:346.080450px;}
.y1c_c00283{bottom:366.690450px;}
.y1b_c00283{bottom:387.390450px;}
.y1a_c00283{bottom:427.440450px;}
.y19_c00283{bottom:458.490450px;}
.y18_c00283{bottom:489.540450px;}
.y17_c00283{bottom:520.590450px;}
.y16_c00283{bottom:551.640450px;}
.y15_c00283{bottom:582.690450px;}
.y14_c00283{bottom:613.740450px;}
.y13_c00283{bottom:644.790450px;}
.y12_c00283{bottom:675.840450px;}
.y11_c00283{bottom:706.890450px;}
.y10_c00283{bottom:737.940450px;}
.yf_c00283{bottom:768.990450px;}
.ye_c00283{bottom:789.690450px;}
.yd_c00283{bottom:810.390450px;}
.yc_c00283{bottom:831.090450px;}
.yb_c00283{bottom:851.790450px;}
.ya_c00283{bottom:872.490450px;}
.y9_c00283{bottom:893.190450px;}
.y8_c00283{bottom:933.240450px;}
.y7_c00283{bottom:964.290450px;}
.y6_c00283{bottom:995.340450px;}
.y5_c00283{bottom:1026.390450px;}
.y4_c00283{bottom:1066.440450px;}
.y3_c00283{bottom:1097.490450px;}
.h1_c00283{height:63.175781px;}
.h2_c00283{height:64.546875px;}
.h0_c00283{height:1263.000000px;}
.w1_c00283{width:892.500000px;}
.w0_c00283{width:892.830000px;}
.x0_c00283{left:0.000000px;}
.x2_c00283{left:127.620000px;}
.x3_c00283{left:148.950000px;}
.x1_c00283{left:695.880000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls8_c00283{letter-spacing:-0.064000pt;}
.lsb_c00283{letter-spacing:-0.057600pt;}
.ls7_c00283{letter-spacing:-0.051200pt;}
.ls2_c00283{letter-spacing:-0.044800pt;}
.lsa_c00283{letter-spacing:-0.038400pt;}
.ls1_c00283{letter-spacing:-0.032000pt;}
.ls4_c00283{letter-spacing:-0.025600pt;}
.ls9_c00283{letter-spacing:-0.019200pt;}
.ls5_c00283{letter-spacing:-0.012800pt;}
.ls6_c00283{letter-spacing:-0.006400pt;}
.ls0_c00283{letter-spacing:0.000000pt;}
.ls3_c00283{letter-spacing:0.006400pt;}
.ws23_c00283{word-spacing:-1.145600pt;}
.ws2b_c00283{word-spacing:-1.120000pt;}
.ws24_c00283{word-spacing:-1.107200pt;}
.wsc_c00283{word-spacing:-1.088000pt;}
.ws2f_c00283{word-spacing:-0.902400pt;}
.ws35_c00283{word-spacing:-0.832000pt;}
.ws2c_c00283{word-spacing:-0.806400pt;}
.ws2e_c00283{word-spacing:-0.800000pt;}
.ws30_c00283{word-spacing:-0.780800pt;}
.ws2d_c00283{word-spacing:-0.755200pt;}
.ws0_c00283{word-spacing:0.000000pt;}
.ws4_c00283{word-spacing:0.051200pt;}
.ws12_c00283{word-spacing:0.076800pt;}
.ws29_c00283{word-spacing:0.102400pt;}
.wsb_c00283{word-spacing:0.147200pt;}
.ws32_c00283{word-spacing:0.153600pt;}
.ws13_c00283{word-spacing:0.160000pt;}
.ws11_c00283{word-spacing:0.166400pt;}
.ws3_c00283{word-spacing:0.185600pt;}
.ws6_c00283{word-spacing:0.435200pt;}
.ws2a_c00283{word-spacing:0.480000pt;}
.ws5_c00283{word-spacing:0.492800pt;}
.ws22_c00283{word-spacing:0.748800pt;}
.ws21_c00283{word-spacing:0.812800pt;}
.ws15_c00283{word-spacing:1.126400pt;}
.ws14_c00283{word-spacing:1.145600pt;}
.ws36_c00283{word-spacing:3.065600pt;}
.ws26_c00283{word-spacing:5.913600pt;}
.ws25_c00283{word-spacing:5.996800pt;}
.ws1b_c00283{word-spacing:7.200000pt;}
.ws1a_c00283{word-spacing:7.225600pt;}
.ws20_c00283{word-spacing:7.507200pt;}
.ws1e_c00283{word-spacing:7.520000pt;}
.ws1f_c00283{word-spacing:7.609600pt;}
.wsa_c00283{word-spacing:7.833600pt;}
.ws9_c00283{word-spacing:7.859200pt;}
.ws10_c00283{word-spacing:8.806400pt;}
.wsf_c00283{word-spacing:8.857600pt;}
.ws27_c00283{word-spacing:9.139200pt;}
.ws28_c00283{word-spacing:9.158400pt;}
.ws1_c00283{word-spacing:10.348800pt;}
.ws2_c00283{word-spacing:10.412800pt;}
.wsd_c00283{word-spacing:15.232000pt;}
.wse_c00283{word-spacing:15.244800pt;}
.ws33_c00283{word-spacing:17.440000pt;}
.ws34_c00283{word-spacing:17.491200pt;}
.ws18_c00283{word-spacing:21.190400pt;}
.ws19_c00283{word-spacing:21.235200pt;}
.ws31_c00283{word-spacing:22.252800pt;}
.ws1d_c00283{word-spacing:23.513600pt;}
.ws1c_c00283{word-spacing:23.680000pt;}
.ws16_c00283{word-spacing:24.160000pt;}
.ws17_c00283{word-spacing:24.166400pt;}
.ws7_c00283{word-spacing:38.566400pt;}
.ws8_c00283{word-spacing:38.585600pt;}
._0_c00283{width:0.928000pt;}
.fs0_c00283{font-size:64.000000pt;}
.y0_c00283{bottom:0.000000pt;}
.y2_c00283{bottom:41.627067pt;}
.y1_c00283{bottom:60.027067pt;}
.y25_c00283{bottom:142.027067pt;}
.y24_c00283{bottom:169.627067pt;}
.y23_c00283{bottom:197.227067pt;}
.y22_c00283{bottom:215.627067pt;}
.y21_c00283{bottom:234.027067pt;}
.y20_c00283{bottom:252.427067pt;}
.y1f_c00283{bottom:270.827067pt;}
.y1e_c00283{bottom:289.227067pt;}
.y1d_c00283{bottom:307.627067pt;}
.y1c_c00283{bottom:325.947067pt;}
.y1b_c00283{bottom:344.347067pt;}
.y1a_c00283{bottom:379.947067pt;}
.y19_c00283{bottom:407.547067pt;}
.y18_c00283{bottom:435.147067pt;}
.y17_c00283{bottom:462.747067pt;}
.y16_c00283{bottom:490.347067pt;}
.y15_c00283{bottom:517.947067pt;}
.y14_c00283{bottom:545.547067pt;}
.y13_c00283{bottom:573.147067pt;}
.y12_c00283{bottom:600.747067pt;}
.y11_c00283{bottom:628.347067pt;}
.y10_c00283{bottom:655.947067pt;}
.yf_c00283{bottom:683.547067pt;}
.ye_c00283{bottom:701.947067pt;}
.yd_c00283{bottom:720.347067pt;}
.yc_c00283{bottom:738.747067pt;}
.yb_c00283{bottom:757.147067pt;}
.ya_c00283{bottom:775.547067pt;}
.y9_c00283{bottom:793.947067pt;}
.y8_c00283{bottom:829.547067pt;}
.y7_c00283{bottom:857.147067pt;}
.y6_c00283{bottom:884.747067pt;}
.y5_c00283{bottom:912.347067pt;}
.y4_c00283{bottom:947.947067pt;}
.y3_c00283{bottom:975.547067pt;}
.h1_c00283{height:56.156250pt;}
.h2_c00283{height:57.375000pt;}
.h0_c00283{height:1122.666667pt;}
.w1_c00283{width:793.333333pt;}
.w0_c00283{width:793.626667pt;}
.x0_c00283{left:0.000000pt;}
.x2_c00283{left:113.440000pt;}
.x3_c00283{left:132.400000pt;}
.x1_c00283{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1b1b9c35dbc09e04158103ff.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.093262;font-style:normal;font-weight:normal;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_eaf51ab6dda2168b33627239.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.106934;font-style:normal;font-weight:normal;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_fcddad9d30c47d263a17afe9.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc_c00284{letter-spacing:-0.072000px;}
.ls3_c00284{letter-spacing:-0.064800px;}
.ls2_c00284{letter-spacing:-0.057600px;}
.lsa_c00284{letter-spacing:-0.050400px;}
.ls6_c00284{letter-spacing:-0.043200px;}
.ls8_c00284{letter-spacing:-0.036000px;}
.ls1_c00284{letter-spacing:-0.028800px;}
.ls9_c00284{letter-spacing:-0.021600px;}
.ls7_c00284{letter-spacing:-0.014400px;}
.ls4_c00284{letter-spacing:-0.007200px;}
.ls0_c00284{letter-spacing:0.000000px;}
.ls5_c00284{letter-spacing:0.007200px;}
.lsb_c00284{letter-spacing:0.057600px;}
.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;}
}
.ws2d_c00284{word-spacing:-3.369600px;}
.ws37_c00284{word-spacing:-2.325600px;}
.ws12_c00284{word-spacing:-2.318400px;}
.ws13_c00284{word-spacing:-2.296800px;}
.ws34_c00284{word-spacing:-1.252800px;}
.ws33_c00284{word-spacing:-1.159200px;}
.ws27_c00284{word-spacing:-0.561600px;}
.ws28_c00284{word-spacing:-0.496800px;}
.ws8_c00284{word-spacing:-0.028800px;}
.ws0_c00284{word-spacing:0.000000px;}
.ws21_c00284{word-spacing:0.100800px;}
.ws7_c00284{word-spacing:0.165600px;}
.ws18_c00284{word-spacing:0.194400px;}
.ws1f_c00284{word-spacing:0.208800px;}
.ws20_c00284{word-spacing:0.388800px;}
.ws23_c00284{word-spacing:1.252800px;}
.ws1c_c00284{word-spacing:1.274400px;}
.ws22_c00284{word-spacing:1.288800px;}
.ws2c_c00284{word-spacing:1.641600px;}
.ws2a_c00284{word-spacing:2.376000px;}
.ws29_c00284{word-spacing:2.383200px;}
.ws31_c00284{word-spacing:5.162400px;}
.ws32_c00284{word-spacing:5.270400px;}
.ws1b_c00284{word-spacing:5.918400px;}
.ws1a_c00284{word-spacing:5.968800px;}
.ws5_c00284{word-spacing:6.307200px;}
.ws36_c00284{word-spacing:6.350400px;}
.ws35_c00284{word-spacing:6.408000px;}
.ws2e_c00284{word-spacing:7.754400px;}
.ws2f_c00284{word-spacing:7.761600px;}
.ws11_c00284{word-spacing:10.548000px;}
.ws10_c00284{word-spacing:10.663200px;}
.ws19_c00284{word-spacing:11.016000px;}
.wsd_c00284{word-spacing:12.405600px;}
.wsc_c00284{word-spacing:12.412800px;}
.ws24_c00284{word-spacing:12.420000px;}
.ws1e_c00284{word-spacing:12.456000px;}
.ws1d_c00284{word-spacing:12.477600px;}
.ws15_c00284{word-spacing:13.478400px;}
.ws14_c00284{word-spacing:13.500000px;}
.ws25_c00284{word-spacing:15.609600px;}
.ws26_c00284{word-spacing:15.674400px;}
.ws2b_c00284{word-spacing:16.408800px;}
.wse_c00284{word-spacing:17.474400px;}
.wsf_c00284{word-spacing:17.481600px;}
.ws4_c00284{word-spacing:17.827200px;}
.ws3_c00284{word-spacing:17.856000px;}
.ws30_c00284{word-spacing:18.576000px;}
.ws16_c00284{word-spacing:19.612800px;}
.ws17_c00284{word-spacing:19.620000px;}
.ws9_c00284{word-spacing:19.684800px;}
.wsa_c00284{word-spacing:19.728000px;}
.ws2_c00284{word-spacing:22.478400px;}
.ws1_c00284{word-spacing:22.593600px;}
.wsb_c00284{word-spacing:30.456000px;}
.ws6_c00284{word-spacing:44.863200px;}
._0_c00284{width:1.008000px;}
.fc0_c00284{color:rgb(0,0,0);}
.fs0_c00284{font-size:72.000000px;}
.y0_c00284{bottom:0.000000px;}
.y2_c00284{bottom:46.830450px;}
.y1_c00284{bottom:67.530450px;}
.y26_c00284{bottom:149.430450px;}
.y25_c00284{bottom:170.130450px;}
.y24_c00284{bottom:190.830450px;}
.y23_c00284{bottom:211.530450px;}
.y22_c00284{bottom:232.230450px;}
.y21_c00284{bottom:252.930450px;}
.y20_c00284{bottom:273.630450px;}
.y1f_c00284{bottom:294.330450px;}
.y1e_c00284{bottom:315.030450px;}
.y1d_c00284{bottom:335.730450px;}
.y1c_c00284{bottom:356.430450px;}
.y1b_c00284{bottom:377.040450px;}
.y1a_c00284{bottom:397.740450px;}
.y19_c00284{bottom:418.440450px;}
.y18_c00284{bottom:439.140450px;}
.y17_c00284{bottom:459.840450px;}
.y16_c00284{bottom:480.540450px;}
.y15_c00284{bottom:520.590450px;}
.y14_c00284{bottom:551.640450px;}
.y13_c00284{bottom:582.690450px;}
.y12_c00284{bottom:613.740450px;}
.y11_c00284{bottom:644.790450px;}
.y10_c00284{bottom:684.840450px;}
.yf_c00284{bottom:715.890450px;}
.ye_c00284{bottom:746.940450px;}
.yd_c00284{bottom:777.990450px;}
.yc_c00284{bottom:809.040450px;}
.yb_c00284{bottom:840.090450px;}
.ya_c00284{bottom:871.140450px;}
.y9_c00284{bottom:902.190450px;}
.y8_c00284{bottom:933.240450px;}
.y7_c00284{bottom:973.290450px;}
.y6_c00284{bottom:1004.340450px;}
.y5_c00284{bottom:1035.390450px;}
.y4_c00284{bottom:1066.440450px;}
.y3_c00284{bottom:1097.490450px;}
.h1_c00284{height:63.175781px;}
.h2_c00284{height:64.546875px;}
.h3_c00284{height:75.093750px;}
.h0_c00284{height:1263.000000px;}
.w1_c00284{width:892.500000px;}
.w0_c00284{width:892.830000px;}
.x0_c00284{left:0.000000px;}
.x2_c00284{left:170.100000px;}
.x3_c00284{left:191.430000px;}
.x1_c00284{left:738.360000px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.lsc_c00284{letter-spacing:-0.064000pt;}
.ls3_c00284{letter-spacing:-0.057600pt;}
.ls2_c00284{letter-spacing:-0.051200pt;}
.lsa_c00284{letter-spacing:-0.044800pt;}
.ls6_c00284{letter-spacing:-0.038400pt;}
.ls8_c00284{letter-spacing:-0.032000pt;}
.ls1_c00284{letter-spacing:-0.025600pt;}
.ls9_c00284{letter-spacing:-0.019200pt;}
.ls7_c00284{letter-spacing:-0.012800pt;}
.ls4_c00284{letter-spacing:-0.006400pt;}
.ls0_c00284{letter-spacing:0.000000pt;}
.ls5_c00284{letter-spacing:0.006400pt;}
.lsb_c00284{letter-spacing:0.051200pt;}
.ws2d_c00284{word-spacing:-2.995200pt;}
.ws37_c00284{word-spacing:-2.067200pt;}
.ws12_c00284{word-spacing:-2.060800pt;}
.ws13_c00284{word-spacing:-2.041600pt;}
.ws34_c00284{word-spacing:-1.113600pt;}
.ws33_c00284{word-spacing:-1.030400pt;}
.ws27_c00284{word-spacing:-0.499200pt;}
.ws28_c00284{word-spacing:-0.441600pt;}
.ws8_c00284{word-spacing:-0.025600pt;}
.ws0_c00284{word-spacing:0.000000pt;}
.ws21_c00284{word-spacing:0.089600pt;}
.ws7_c00284{word-spacing:0.147200pt;}
.ws18_c00284{word-spacing:0.172800pt;}
.ws1f_c00284{word-spacing:0.185600pt;}
.ws20_c00284{word-spacing:0.345600pt;}
.ws23_c00284{word-spacing:1.113600pt;}
.ws1c_c00284{word-spacing:1.132800pt;}
.ws22_c00284{word-spacing:1.145600pt;}
.ws2c_c00284{word-spacing:1.459200pt;}
.ws2a_c00284{word-spacing:2.112000pt;}
.ws29_c00284{word-spacing:2.118400pt;}
.ws31_c00284{word-spacing:4.588800pt;}
.ws32_c00284{word-spacing:4.684800pt;}
.ws1b_c00284{word-spacing:5.260800pt;}
.ws1a_c00284{word-spacing:5.305600pt;}
.ws5_c00284{word-spacing:5.606400pt;}
.ws36_c00284{word-spacing:5.644800pt;}
.ws35_c00284{word-spacing:5.696000pt;}
.ws2e_c00284{word-spacing:6.892800pt;}
.ws2f_c00284{word-spacing:6.899200pt;}
.ws11_c00284{word-spacing:9.376000pt;}
.ws10_c00284{word-spacing:9.478400pt;}
.ws19_c00284{word-spacing:9.792000pt;}
.wsd_c00284{word-spacing:11.027200pt;}
.wsc_c00284{word-spacing:11.033600pt;}
.ws24_c00284{word-spacing:11.040000pt;}
.ws1e_c00284{word-spacing:11.072000pt;}
.ws1d_c00284{word-spacing:11.091200pt;}
.ws15_c00284{word-spacing:11.980800pt;}
.ws14_c00284{word-spacing:12.000000pt;}
.ws25_c00284{word-spacing:13.875200pt;}
.ws26_c00284{word-spacing:13.932800pt;}
.ws2b_c00284{word-spacing:14.585600pt;}
.wse_c00284{word-spacing:15.532800pt;}
.wsf_c00284{word-spacing:15.539200pt;}
.ws4_c00284{word-spacing:15.846400pt;}
.ws3_c00284{word-spacing:15.872000pt;}
.ws30_c00284{word-spacing:16.512000pt;}
.ws16_c00284{word-spacing:17.433600pt;}
.ws17_c00284{word-spacing:17.440000pt;}
.ws9_c00284{word-spacing:17.497600pt;}
.wsa_c00284{word-spacing:17.536000pt;}
.ws2_c00284{word-spacing:19.980800pt;}
.ws1_c00284{word-spacing:20.083200pt;}
.wsb_c00284{word-spacing:27.072000pt;}
.ws6_c00284{word-spacing:39.878400pt;}
._0_c00284{width:0.896000pt;}
.fs0_c00284{font-size:64.000000pt;}
.y0_c00284{bottom:0.000000pt;}
.y2_c00284{bottom:41.627067pt;}
.y1_c00284{bottom:60.027067pt;}
.y26_c00284{bottom:132.827067pt;}
.y25_c00284{bottom:151.227067pt;}
.y24_c00284{bottom:169.627067pt;}
.y23_c00284{bottom:188.027067pt;}
.y22_c00284{bottom:206.427067pt;}
.y21_c00284{bottom:224.827067pt;}
.y20_c00284{bottom:243.227067pt;}
.y1f_c00284{bottom:261.627067pt;}
.y1e_c00284{bottom:280.027067pt;}
.y1d_c00284{bottom:298.427067pt;}
.y1c_c00284{bottom:316.827067pt;}
.y1b_c00284{bottom:335.147067pt;}
.y1a_c00284{bottom:353.547067pt;}
.y19_c00284{bottom:371.947067pt;}
.y18_c00284{bottom:390.347067pt;}
.y17_c00284{bottom:408.747067pt;}
.y16_c00284{bottom:427.147067pt;}
.y15_c00284{bottom:462.747067pt;}
.y14_c00284{bottom:490.347067pt;}
.y13_c00284{bottom:517.947067pt;}
.y12_c00284{bottom:545.547067pt;}
.y11_c00284{bottom:573.147067pt;}
.y10_c00284{bottom:608.747067pt;}
.yf_c00284{bottom:636.347067pt;}
.ye_c00284{bottom:663.947067pt;}
.yd_c00284{bottom:691.547067pt;}
.yc_c00284{bottom:719.147067pt;}
.yb_c00284{bottom:746.747067pt;}
.ya_c00284{bottom:774.347067pt;}
.y9_c00284{bottom:801.947067pt;}
.y8_c00284{bottom:829.547067pt;}
.y7_c00284{bottom:865.147067pt;}
.y6_c00284{bottom:892.747067pt;}
.y5_c00284{bottom:920.347067pt;}
.y4_c00284{bottom:947.947067pt;}
.y3_c00284{bottom:975.547067pt;}
.h1_c00284{height:56.156250pt;}
.h2_c00284{height:57.375000pt;}
.h3_c00284{height:66.750000pt;}
.h0_c00284{height:1122.666667pt;}
.w1_c00284{width:793.333333pt;}
.w0_c00284{width:793.626667pt;}
.x0_c00284{left:0.000000pt;}
.x2_c00284{left:151.200000pt;}
.x3_c00284{left:170.160000pt;}
.x1_c00284{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9bd771ffe11d03386a1451dc.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.093262;font-style:normal;font-weight:normal;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_8da5d7601b7ff0d2fac73c09.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.106934;font-style:normal;font-weight:normal;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_a2fa1abc5a728dbe7efd9973.woff2')format("woff");}.ff3_c00285{font-family:ff3_c00285;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls5_c00285{letter-spacing:-0.093600px;}
.ls8_c00285{letter-spacing:-0.064800px;}
.lsb_c00285{letter-spacing:-0.057600px;}
.ls3_c00285{letter-spacing:-0.050400px;}
.ls9_c00285{letter-spacing:-0.043200px;}
.ls6_c00285{letter-spacing:-0.036000px;}
.ls4_c00285{letter-spacing:-0.028800px;}
.ls7_c00285{letter-spacing:-0.021600px;}
.ls2_c00285{letter-spacing:-0.014400px;}
.lsa_c00285{letter-spacing:-0.007200px;}
.ls1_c00285{letter-spacing:0.000000px;}
.lsd_c00285{letter-spacing:0.007200px;}
.lsc_c00285{letter-spacing:0.021600px;}
.ls0_c00285{letter-spacing:0.036000px;}
.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;}
}
.ws1f_c00285{word-spacing:-3.758400px;}
.ws1_c00285{word-spacing:-2.764800px;}
.ws2_c00285{word-spacing:-2.671200px;}
.ws5_c00285{word-spacing:-1.267200px;}
.ws6_c00285{word-spacing:-1.245600px;}
.ws11_c00285{word-spacing:-0.165600px;}
.ws12_c00285{word-spacing:-0.151200px;}
.ws2a_c00285{word-spacing:-0.043200px;}
.ws0_c00285{word-spacing:0.000000px;}
.wse_c00285{word-spacing:0.100800px;}
.wsd_c00285{word-spacing:0.165600px;}
.ws24_c00285{word-spacing:0.172800px;}
.ws31_c00285{word-spacing:0.180000px;}
.ws32_c00285{word-spacing:0.266400px;}
.ws4_c00285{word-spacing:0.367200px;}
.ws10_c00285{word-spacing:0.511200px;}
.wsf_c00285{word-spacing:0.554400px;}
.ws18_c00285{word-spacing:0.878400px;}
.ws33_c00285{word-spacing:0.921600px;}
.ws34_c00285{word-spacing:0.957600px;}
.ws19_c00285{word-spacing:0.979200px;}
.ws3_c00285{word-spacing:1.987200px;}
.ws20_c00285{word-spacing:2.361600px;}
.ws21_c00285{word-spacing:2.412000px;}
.wsc_c00285{word-spacing:3.722400px;}
.wsa_c00285{word-spacing:3.780000px;}
.ws2d_c00285{word-spacing:3.794400px;}
.wsb_c00285{word-spacing:3.801600px;}
.ws9_c00285{word-spacing:3.823200px;}
.ws25_c00285{word-spacing:5.911200px;}
.ws26_c00285{word-spacing:5.983200px;}
.ws29_c00285{word-spacing:7.034400px;}
.ws28_c00285{word-spacing:7.041600px;}
.ws7_c00285{word-spacing:7.740000px;}
.ws8_c00285{word-spacing:7.747200px;}
.ws1a_c00285{word-spacing:11.304000px;}
.ws17_c00285{word-spacing:11.700000px;}
.ws16_c00285{word-spacing:11.714400px;}
.ws30_c00285{word-spacing:13.140000px;}
.ws2e_c00285{word-spacing:13.154400px;}
.ws2f_c00285{word-spacing:13.248000px;}
.ws36_c00285{word-spacing:13.838400px;}
.ws35_c00285{word-spacing:13.874400px;}
.ws14_c00285{word-spacing:14.227200px;}
.ws13_c00285{word-spacing:14.277600px;}
.ws23_c00285{word-spacing:20.649600px;}
.ws22_c00285{word-spacing:20.721600px;}
.ws15_c00285{word-spacing:24.336000px;}
.ws27_c00285{word-spacing:33.688800px;}
.ws1d_c00285{word-spacing:35.445600px;}
.ws1e_c00285{word-spacing:35.467200px;}
.ws1c_c00285{word-spacing:36.208800px;}
.ws1b_c00285{word-spacing:36.288000px;}
.ws2b_c00285{word-spacing:38.001600px;}
.ws2c_c00285{word-spacing:38.080800px;}
._0_c00285{width:1.008000px;}
.fc0_c00285{color:rgb(0,0,0);}
.fs0_c00285{font-size:72.000000px;}
.y0_c00285{bottom:0.000000px;}
.y2_c00285{bottom:46.830450px;}
.y1_c00285{bottom:67.530450px;}
.y23_c00285{bottom:149.430450px;}
.y22_c00285{bottom:180.480450px;}
.y21_c00285{bottom:211.530450px;}
.y20_c00285{bottom:242.580450px;}
.y1f_c00285{bottom:273.630450px;}
.y1e_c00285{bottom:304.680450px;}
.y1d_c00285{bottom:325.380450px;}
.y1c_c00285{bottom:346.080450px;}
.y1b_c00285{bottom:366.690450px;}
.y1a_c00285{bottom:387.390450px;}
.y19_c00285{bottom:408.090450px;}
.y18_c00285{bottom:428.790450px;}
.y17_c00285{bottom:468.840450px;}
.y16_c00285{bottom:499.890450px;}
.y15_c00285{bottom:530.940450px;}
.y14_c00285{bottom:561.990450px;}
.y13_c00285{bottom:593.040450px;}
.y12_c00285{bottom:624.090450px;}
.y11_c00285{bottom:655.140450px;}
.y10_c00285{bottom:686.190450px;}
.yf_c00285{bottom:717.240450px;}
.ye_c00285{bottom:748.290450px;}
.yd_c00285{bottom:779.340450px;}
.yc_c00285{bottom:810.390450px;}
.yb_c00285{bottom:841.440450px;}
.ya_c00285{bottom:881.490450px;}
.y9_c00285{bottom:912.540450px;}
.y8_c00285{bottom:943.590450px;}
.y7_c00285{bottom:974.640450px;}
.y6_c00285{bottom:1014.690450px;}
.y5_c00285{bottom:1045.740450px;}
.y4_c00285{bottom:1076.790450px;}
.y3_c00285{bottom:1097.490450px;}
.h1_c00285{height:63.175781px;}
.h2_c00285{height:64.546875px;}
.h3_c00285{height:75.093750px;}
.h0_c00285{height:1263.000000px;}
.w1_c00285{width:892.500000px;}
.w0_c00285{width:892.830000px;}
.x0_c00285{left:0.000000px;}
.x2_c00285{left:127.620000px;}
.x3_c00285{left:148.950000px;}
.x1_c00285{left:695.880000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls5_c00285{letter-spacing:-0.083200pt;}
.ls8_c00285{letter-spacing:-0.057600pt;}
.lsb_c00285{letter-spacing:-0.051200pt;}
.ls3_c00285{letter-spacing:-0.044800pt;}
.ls9_c00285{letter-spacing:-0.038400pt;}
.ls6_c00285{letter-spacing:-0.032000pt;}
.ls4_c00285{letter-spacing:-0.025600pt;}
.ls7_c00285{letter-spacing:-0.019200pt;}
.ls2_c00285{letter-spacing:-0.012800pt;}
.lsa_c00285{letter-spacing:-0.006400pt;}
.ls1_c00285{letter-spacing:0.000000pt;}
.lsd_c00285{letter-spacing:0.006400pt;}
.lsc_c00285{letter-spacing:0.019200pt;}
.ls0_c00285{letter-spacing:0.032000pt;}
.ws1f_c00285{word-spacing:-3.340800pt;}
.ws1_c00285{word-spacing:-2.457600pt;}
.ws2_c00285{word-spacing:-2.374400pt;}
.ws5_c00285{word-spacing:-1.126400pt;}
.ws6_c00285{word-spacing:-1.107200pt;}
.ws11_c00285{word-spacing:-0.147200pt;}
.ws12_c00285{word-spacing:-0.134400pt;}
.ws2a_c00285{word-spacing:-0.038400pt;}
.ws0_c00285{word-spacing:0.000000pt;}
.wse_c00285{word-spacing:0.089600pt;}
.wsd_c00285{word-spacing:0.147200pt;}
.ws24_c00285{word-spacing:0.153600pt;}
.ws31_c00285{word-spacing:0.160000pt;}
.ws32_c00285{word-spacing:0.236800pt;}
.ws4_c00285{word-spacing:0.326400pt;}
.ws10_c00285{word-spacing:0.454400pt;}
.wsf_c00285{word-spacing:0.492800pt;}
.ws18_c00285{word-spacing:0.780800pt;}
.ws33_c00285{word-spacing:0.819200pt;}
.ws34_c00285{word-spacing:0.851200pt;}
.ws19_c00285{word-spacing:0.870400pt;}
.ws3_c00285{word-spacing:1.766400pt;}
.ws20_c00285{word-spacing:2.099200pt;}
.ws21_c00285{word-spacing:2.144000pt;}
.wsc_c00285{word-spacing:3.308800pt;}
.wsa_c00285{word-spacing:3.360000pt;}
.ws2d_c00285{word-spacing:3.372800pt;}
.wsb_c00285{word-spacing:3.379200pt;}
.ws9_c00285{word-spacing:3.398400pt;}
.ws25_c00285{word-spacing:5.254400pt;}
.ws26_c00285{word-spacing:5.318400pt;}
.ws29_c00285{word-spacing:6.252800pt;}
.ws28_c00285{word-spacing:6.259200pt;}
.ws7_c00285{word-spacing:6.880000pt;}
.ws8_c00285{word-spacing:6.886400pt;}
.ws1a_c00285{word-spacing:10.048000pt;}
.ws17_c00285{word-spacing:10.400000pt;}
.ws16_c00285{word-spacing:10.412800pt;}
.ws30_c00285{word-spacing:11.680000pt;}
.ws2e_c00285{word-spacing:11.692800pt;}
.ws2f_c00285{word-spacing:11.776000pt;}
.ws36_c00285{word-spacing:12.300800pt;}
.ws35_c00285{word-spacing:12.332800pt;}
.ws14_c00285{word-spacing:12.646400pt;}
.ws13_c00285{word-spacing:12.691200pt;}
.ws23_c00285{word-spacing:18.355200pt;}
.ws22_c00285{word-spacing:18.419200pt;}
.ws15_c00285{word-spacing:21.632000pt;}
.ws27_c00285{word-spacing:29.945600pt;}
.ws1d_c00285{word-spacing:31.507200pt;}
.ws1e_c00285{word-spacing:31.526400pt;}
.ws1c_c00285{word-spacing:32.185600pt;}
.ws1b_c00285{word-spacing:32.256000pt;}
.ws2b_c00285{word-spacing:33.779200pt;}
.ws2c_c00285{word-spacing:33.849600pt;}
._0_c00285{width:0.896000pt;}
.fs0_c00285{font-size:64.000000pt;}
.y0_c00285{bottom:0.000000pt;}
.y2_c00285{bottom:41.627067pt;}
.y1_c00285{bottom:60.027067pt;}
.y23_c00285{bottom:132.827067pt;}
.y22_c00285{bottom:160.427067pt;}
.y21_c00285{bottom:188.027067pt;}
.y20_c00285{bottom:215.627067pt;}
.y1f_c00285{bottom:243.227067pt;}
.y1e_c00285{bottom:270.827067pt;}
.y1d_c00285{bottom:289.227067pt;}
.y1c_c00285{bottom:307.627067pt;}
.y1b_c00285{bottom:325.947067pt;}
.y1a_c00285{bottom:344.347067pt;}
.y19_c00285{bottom:362.747067pt;}
.y18_c00285{bottom:381.147067pt;}
.y17_c00285{bottom:416.747067pt;}
.y16_c00285{bottom:444.347067pt;}
.y15_c00285{bottom:471.947067pt;}
.y14_c00285{bottom:499.547067pt;}
.y13_c00285{bottom:527.147067pt;}
.y12_c00285{bottom:554.747067pt;}
.y11_c00285{bottom:582.347067pt;}
.y10_c00285{bottom:609.947067pt;}
.yf_c00285{bottom:637.547067pt;}
.ye_c00285{bottom:665.147067pt;}
.yd_c00285{bottom:692.747067pt;}
.yc_c00285{bottom:720.347067pt;}
.yb_c00285{bottom:747.947067pt;}
.ya_c00285{bottom:783.547067pt;}
.y9_c00285{bottom:811.147067pt;}
.y8_c00285{bottom:838.747067pt;}
.y7_c00285{bottom:866.347067pt;}
.y6_c00285{bottom:901.947067pt;}
.y5_c00285{bottom:929.547067pt;}
.y4_c00285{bottom:957.147067pt;}
.y3_c00285{bottom:975.547067pt;}
.h1_c00285{height:56.156250pt;}
.h2_c00285{height:57.375000pt;}
.h3_c00285{height:66.750000pt;}
.h0_c00285{height:1122.666667pt;}
.w1_c00285{width:793.333333pt;}
.w0_c00285{width:793.626667pt;}
.x0_c00285{left:0.000000pt;}
.x2_c00285{left:113.440000pt;}
.x3_c00285{left:132.400000pt;}
.x1_c00285{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_874ecf909579c3e7dbefd376.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.093262;font-style:normal;font-weight:normal;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_36b22427500bd247125f5559.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.106934;font-style:normal;font-weight:normal;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_61d4cfbfa044bdddee7b47bc.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.lsc_c00286{letter-spacing:-0.072000px;}
.lsa_c00286{letter-spacing:-0.064800px;}
.ls9_c00286{letter-spacing:-0.057600px;}
.lsb_c00286{letter-spacing:-0.050400px;}
.ls4_c00286{letter-spacing:-0.043200px;}
.ls6_c00286{letter-spacing:-0.036000px;}
.ls7_c00286{letter-spacing:-0.028800px;}
.ls3_c00286{letter-spacing:-0.021600px;}
.ls5_c00286{letter-spacing:-0.014400px;}
.ls8_c00286{letter-spacing:-0.007200px;}
.ls2_c00286{letter-spacing:0.000000px;}
.ls0_c00286{letter-spacing:0.007200px;}
.lsd_c00286{letter-spacing:0.014400px;}
.ls1_c00286{letter-spacing:0.021600px;}
.lse_c00286{letter-spacing:0.036000px;}
.lsf_c00286{letter-spacing:0.216432px;}
.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;}
}
.ws0_c00286{word-spacing:-20.023200px;}
.ws11_c00286{word-spacing:-4.946400px;}
.ws10_c00286{word-spacing:-4.874400px;}
.ws7_c00286{word-spacing:-4.860000px;}
.ws6_c00286{word-spacing:-4.723200px;}
.ws2_c00286{word-spacing:-2.772000px;}
.ws3_c00286{word-spacing:-2.678400px;}
.ws14_c00286{word-spacing:-2.239200px;}
.ws15_c00286{word-spacing:-2.152800px;}
.ws1b_c00286{word-spacing:-0.007200px;}
.ws1_c00286{word-spacing:0.000000px;}
.ws1f_c00286{word-spacing:0.043200px;}
.ws16_c00286{word-spacing:0.093600px;}
.ws1d_c00286{word-spacing:0.180000px;}
.ws1e_c00286{word-spacing:0.187200px;}
.ws13_c00286{word-spacing:0.547200px;}
.ws12_c00286{word-spacing:0.561600px;}
.ws18_c00286{word-spacing:6.256800px;}
.ws17_c00286{word-spacing:6.278400px;}
.ws9_c00286{word-spacing:9.446400px;}
.ws8_c00286{word-spacing:9.561600px;}
.wsb_c00286{word-spacing:10.166400px;}
.wsa_c00286{word-spacing:10.274400px;}
.wsc_c00286{word-spacing:12.052800px;}
.ws4_c00286{word-spacing:26.812800px;}
.ws5_c00286{word-spacing:26.877600px;}
.wsf_c00286{word-spacing:30.038400px;}
.wsd_c00286{word-spacing:30.052800px;}
.ws1a_c00286{word-spacing:30.060000px;}
.wse_c00286{word-spacing:30.067200px;}
.ws19_c00286{word-spacing:30.196800px;}
.ws1c_c00286{word-spacing:54.900000px;}
._0_c00286{width:1.368000px;}
.fc0_c00286{color:rgb(0,0,0);}
.fs1_c00286{font-size:60.120000px;}
.fs0_c00286{font-size:72.000000px;}
.y0_c00286{bottom:0.000000px;}
.y2_c00286{bottom:46.830450px;}
.y1_c00286{bottom:67.530450px;}
.y1d_c00286{bottom:161.850450px;}
.y1c_c00286{bottom:201.900450px;}
.y1b_c00286{bottom:241.950450px;}
.y1a_c00286{bottom:282.000450px;}
.y19_c00286{bottom:322.050450px;}
.y18_c00286{bottom:362.010450px;}
.y17_c00286{bottom:403.320450px;}
.y16_c00286{bottom:443.370450px;}
.y15_c00286{bottom:483.420450px;}
.y14_c00286{bottom:523.470450px;}
.y13_c00286{bottom:563.520450px;}
.y12_c00286{bottom:603.570450px;}
.y11_c00286{bottom:643.530450px;}
.y10_c00286{bottom:684.840450px;}
.yf_c00286{bottom:715.890450px;}
.ye_c00286{bottom:746.940450px;}
.yd_c00286{bottom:786.990450px;}
.yc_c00286{bottom:818.040450px;}
.yb_c00286{bottom:849.090450px;}
.ya_c00286{bottom:880.140450px;}
.y9_c00286{bottom:911.190450px;}
.y8_c00286{bottom:942.240450px;}
.y7_c00286{bottom:973.290450px;}
.y6_c00286{bottom:1004.340450px;}
.y5_c00286{bottom:1035.390450px;}
.y4_c00286{bottom:1066.440450px;}
.y3_c00286{bottom:1097.490450px;}
.h1_c00286{height:63.175781px;}
.h2_c00286{height:64.546875px;}
.h0_c00286{height:1263.000000px;}
.w1_c00286{width:892.500000px;}
.w0_c00286{width:892.830000px;}
.x0_c00286{left:0.000000px;}
.x2_c00286{left:170.100000px;}
.x3_c00286{left:197.100000px;}
.x4_c00286{left:251.100000px;}
.x1_c00286{left:738.360000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.lsc_c00286{letter-spacing:-0.064000pt;}
.lsa_c00286{letter-spacing:-0.057600pt;}
.ls9_c00286{letter-spacing:-0.051200pt;}
.lsb_c00286{letter-spacing:-0.044800pt;}
.ls4_c00286{letter-spacing:-0.038400pt;}
.ls6_c00286{letter-spacing:-0.032000pt;}
.ls7_c00286{letter-spacing:-0.025600pt;}
.ls3_c00286{letter-spacing:-0.019200pt;}
.ls5_c00286{letter-spacing:-0.012800pt;}
.ls8_c00286{letter-spacing:-0.006400pt;}
.ls2_c00286{letter-spacing:0.000000pt;}
.ls0_c00286{letter-spacing:0.006400pt;}
.lsd_c00286{letter-spacing:0.012800pt;}
.ls1_c00286{letter-spacing:0.019200pt;}
.lse_c00286{letter-spacing:0.032000pt;}
.lsf_c00286{letter-spacing:0.192384pt;}
.ws0_c00286{word-spacing:-17.798400pt;}
.ws11_c00286{word-spacing:-4.396800pt;}
.ws10_c00286{word-spacing:-4.332800pt;}
.ws7_c00286{word-spacing:-4.320000pt;}
.ws6_c00286{word-spacing:-4.198400pt;}
.ws2_c00286{word-spacing:-2.464000pt;}
.ws3_c00286{word-spacing:-2.380800pt;}
.ws14_c00286{word-spacing:-1.990400pt;}
.ws15_c00286{word-spacing:-1.913600pt;}
.ws1b_c00286{word-spacing:-0.006400pt;}
.ws1_c00286{word-spacing:0.000000pt;}
.ws1f_c00286{word-spacing:0.038400pt;}
.ws16_c00286{word-spacing:0.083200pt;}
.ws1d_c00286{word-spacing:0.160000pt;}
.ws1e_c00286{word-spacing:0.166400pt;}
.ws13_c00286{word-spacing:0.486400pt;}
.ws12_c00286{word-spacing:0.499200pt;}
.ws18_c00286{word-spacing:5.561600pt;}
.ws17_c00286{word-spacing:5.580800pt;}
.ws9_c00286{word-spacing:8.396800pt;}
.ws8_c00286{word-spacing:8.499200pt;}
.wsb_c00286{word-spacing:9.036800pt;}
.wsa_c00286{word-spacing:9.132800pt;}
.wsc_c00286{word-spacing:10.713600pt;}
.ws4_c00286{word-spacing:23.833600pt;}
.ws5_c00286{word-spacing:23.891200pt;}
.wsf_c00286{word-spacing:26.700800pt;}
.wsd_c00286{word-spacing:26.713600pt;}
.ws1a_c00286{word-spacing:26.720000pt;}
.wse_c00286{word-spacing:26.726400pt;}
.ws19_c00286{word-spacing:26.841600pt;}
.ws1c_c00286{word-spacing:48.800000pt;}
._0_c00286{width:1.216000pt;}
.fs1_c00286{font-size:53.440000pt;}
.fs0_c00286{font-size:64.000000pt;}
.y0_c00286{bottom:0.000000pt;}
.y2_c00286{bottom:41.627067pt;}
.y1_c00286{bottom:60.027067pt;}
.y1d_c00286{bottom:143.867067pt;}
.y1c_c00286{bottom:179.467067pt;}
.y1b_c00286{bottom:215.067067pt;}
.y1a_c00286{bottom:250.667067pt;}
.y19_c00286{bottom:286.267067pt;}
.y18_c00286{bottom:321.787067pt;}
.y17_c00286{bottom:358.507067pt;}
.y16_c00286{bottom:394.107067pt;}
.y15_c00286{bottom:429.707067pt;}
.y14_c00286{bottom:465.307067pt;}
.y13_c00286{bottom:500.907067pt;}
.y12_c00286{bottom:536.507067pt;}
.y11_c00286{bottom:572.027067pt;}
.y10_c00286{bottom:608.747067pt;}
.yf_c00286{bottom:636.347067pt;}
.ye_c00286{bottom:663.947067pt;}
.yd_c00286{bottom:699.547067pt;}
.yc_c00286{bottom:727.147067pt;}
.yb_c00286{bottom:754.747067pt;}
.ya_c00286{bottom:782.347067pt;}
.y9_c00286{bottom:809.947067pt;}
.y8_c00286{bottom:837.547067pt;}
.y7_c00286{bottom:865.147067pt;}
.y6_c00286{bottom:892.747067pt;}
.y5_c00286{bottom:920.347067pt;}
.y4_c00286{bottom:947.947067pt;}
.y3_c00286{bottom:975.547067pt;}
.h1_c00286{height:56.156250pt;}
.h2_c00286{height:57.375000pt;}
.h0_c00286{height:1122.666667pt;}
.w1_c00286{width:793.333333pt;}
.w0_c00286{width:793.626667pt;}
.x0_c00286{left:0.000000pt;}
.x2_c00286{left:151.200000pt;}
.x3_c00286{left:175.200000pt;}
.x4_c00286{left:223.200000pt;}
.x1_c00286{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a04d97c1253ff93f5c0f65e2.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.093262;font-style:normal;font-weight:normal;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_8f78ac05ced2cd224d95b02d.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.106934;font-style:normal;font-weight:normal;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_61d4cfbfa044bdddee7b47bc.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:0.666504;font-style: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;}
.lsa_c00287{letter-spacing:-0.079200px;}
.lsd_c00287{letter-spacing:-0.057600px;}
.ls9_c00287{letter-spacing:-0.050400px;}
.lsb_c00287{letter-spacing:-0.043200px;}
.ls8_c00287{letter-spacing:-0.036000px;}
.ls7_c00287{letter-spacing:-0.028800px;}
.lsc_c00287{letter-spacing:-0.021600px;}
.ls5_c00287{letter-spacing:-0.014400px;}
.ls6_c00287{letter-spacing:-0.007200px;}
.ls4_c00287{letter-spacing:0.000000px;}
.ls3_c00287{letter-spacing:0.007200px;}
.ls2_c00287{letter-spacing:0.036000px;}
.ls1_c00287{letter-spacing:0.043200px;}
.ls0_c00287{letter-spacing:0.140040px;}
.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;}
}
.ws6_c00287{word-spacing:-3.412800px;}
.wse_c00287{word-spacing:-3.405600px;}
.ws8_c00287{word-spacing:-3.268800px;}
.ws7_c00287{word-spacing:-3.240000px;}
.ws27_c00287{word-spacing:-2.671200px;}
.ws1c_c00287{word-spacing:-2.354400px;}
.ws1d_c00287{word-spacing:-2.152800px;}
.ws13_c00287{word-spacing:-0.669600px;}
.ws12_c00287{word-spacing:-0.518400px;}
.ws19_c00287{word-spacing:-0.201600px;}
.ws18_c00287{word-spacing:-0.180000px;}
.ws0_c00287{word-spacing:0.000000px;}
.ws1a_c00287{word-spacing:0.151200px;}
.ws14_c00287{word-spacing:0.165600px;}
.ws25_c00287{word-spacing:0.180000px;}
.ws1b_c00287{word-spacing:0.194400px;}
.ws2_c00287{word-spacing:0.525600px;}
.ws3_c00287{word-spacing:0.547200px;}
.ws4_c00287{word-spacing:0.640800px;}
.ws16_c00287{word-spacing:0.921600px;}
.ws26_c00287{word-spacing:0.936000px;}
.ws17_c00287{word-spacing:1.094400px;}
.wsd_c00287{word-spacing:3.283200px;}
.wsb_c00287{word-spacing:3.412800px;}
.ws20_c00287{word-spacing:3.427200px;}
.wsc_c00287{word-spacing:3.477600px;}
.ws10_c00287{word-spacing:6.660000px;}
.ws11_c00287{word-spacing:6.746400px;}
.ws28_c00287{word-spacing:7.401600px;}
.ws1f_c00287{word-spacing:8.467200px;}
.ws1e_c00287{word-spacing:8.539200px;}
.ws23_c00287{word-spacing:14.515200px;}
.ws24_c00287{word-spacing:14.630400px;}
.ws21_c00287{word-spacing:29.721600px;}
.ws22_c00287{word-spacing:29.736000px;}
.ws15_c00287{word-spacing:32.947200px;}
.wsf_c00287{word-spacing:36.172800px;}
.ws9_c00287{word-spacing:39.441600px;}
.wsa_c00287{word-spacing:39.477600px;}
.ws1_c00287{word-spacing:54.892800px;}
.ws5_c00287{word-spacing:76.125600px;}
._0_c00287{width:1.152000px;}
.fc0_c00287{color:rgb(0,0,0);}
.fs1_c00287{font-size:60.120000px;}
.fs0_c00287{font-size:72.000000px;}
.y0_c00287{bottom:0.000000px;}
.y2_c00287{bottom:46.830450px;}
.y1_c00287{bottom:67.530450px;}
.y21_c00287{bottom:132.870450px;}
.y20_c00287{bottom:153.570450px;}
.y1f_c00287{bottom:174.270450px;}
.y1e_c00287{bottom:194.970450px;}
.y1d_c00287{bottom:235.020450px;}
.y1c_c00287{bottom:266.070450px;}
.y1b_c00287{bottom:297.120450px;}
.y1a_c00287{bottom:328.170450px;}
.y19_c00287{bottom:359.220450px;}
.y18_c00287{bottom:390.270450px;}
.y17_c00287{bottom:430.320450px;}
.y16_c00287{bottom:461.370450px;}
.y15_c00287{bottom:492.420450px;}
.y14_c00287{bottom:523.470450px;}
.y13_c00287{bottom:563.520450px;}
.y12_c00287{bottom:594.570450px;}
.y11_c00287{bottom:625.620450px;}
.y10_c00287{bottom:665.670450px;}
.yf_c00287{bottom:696.720450px;}
.ye_c00287{bottom:727.770450px;}
.yd_c00287{bottom:758.820450px;}
.yc_c00287{bottom:789.870450px;}
.yb_c00287{bottom:820.920450px;}
.ya_c00287{bottom:851.970450px;}
.y9_c00287{bottom:883.020450px;}
.y8_c00287{bottom:923.070450px;}
.y7_c00287{bottom:954.030450px;}
.y6_c00287{bottom:985.080450px;}
.y5_c00287{bottom:1016.130450px;}
.y4_c00287{bottom:1057.440450px;}
.y3_c00287{bottom:1097.490450px;}
.h1_c00287{height:63.175781px;}
.h2_c00287{height:64.546875px;}
.h0_c00287{height:1263.000000px;}
.w1_c00287{width:892.500000px;}
.w0_c00287{width:892.830000px;}
.x0_c00287{left:0.000000px;}
.x2_c00287{left:127.620000px;}
.x6_c00287{left:148.950000px;}
.x4_c00287{left:154.620000px;}
.x5_c00287{left:181.620000px;}
.x3_c00287{left:208.620000px;}
.x1_c00287{left:695.880000px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.lsa_c00287{letter-spacing:-0.070400pt;}
.lsd_c00287{letter-spacing:-0.051200pt;}
.ls9_c00287{letter-spacing:-0.044800pt;}
.lsb_c00287{letter-spacing:-0.038400pt;}
.ls8_c00287{letter-spacing:-0.032000pt;}
.ls7_c00287{letter-spacing:-0.025600pt;}
.lsc_c00287{letter-spacing:-0.019200pt;}
.ls5_c00287{letter-spacing:-0.012800pt;}
.ls6_c00287{letter-spacing:-0.006400pt;}
.ls4_c00287{letter-spacing:0.000000pt;}
.ls3_c00287{letter-spacing:0.006400pt;}
.ls2_c00287{letter-spacing:0.032000pt;}
.ls1_c00287{letter-spacing:0.038400pt;}
.ls0_c00287{letter-spacing:0.124480pt;}
.ws6_c00287{word-spacing:-3.033600pt;}
.wse_c00287{word-spacing:-3.027200pt;}
.ws8_c00287{word-spacing:-2.905600pt;}
.ws7_c00287{word-spacing:-2.880000pt;}
.ws27_c00287{word-spacing:-2.374400pt;}
.ws1c_c00287{word-spacing:-2.092800pt;}
.ws1d_c00287{word-spacing:-1.913600pt;}
.ws13_c00287{word-spacing:-0.595200pt;}
.ws12_c00287{word-spacing:-0.460800pt;}
.ws19_c00287{word-spacing:-0.179200pt;}
.ws18_c00287{word-spacing:-0.160000pt;}
.ws0_c00287{word-spacing:0.000000pt;}
.ws1a_c00287{word-spacing:0.134400pt;}
.ws14_c00287{word-spacing:0.147200pt;}
.ws25_c00287{word-spacing:0.160000pt;}
.ws1b_c00287{word-spacing:0.172800pt;}
.ws2_c00287{word-spacing:0.467200pt;}
.ws3_c00287{word-spacing:0.486400pt;}
.ws4_c00287{word-spacing:0.569600pt;}
.ws16_c00287{word-spacing:0.819200pt;}
.ws26_c00287{word-spacing:0.832000pt;}
.ws17_c00287{word-spacing:0.972800pt;}
.wsd_c00287{word-spacing:2.918400pt;}
.wsb_c00287{word-spacing:3.033600pt;}
.ws20_c00287{word-spacing:3.046400pt;}
.wsc_c00287{word-spacing:3.091200pt;}
.ws10_c00287{word-spacing:5.920000pt;}
.ws11_c00287{word-spacing:5.996800pt;}
.ws28_c00287{word-spacing:6.579200pt;}
.ws1f_c00287{word-spacing:7.526400pt;}
.ws1e_c00287{word-spacing:7.590400pt;}
.ws23_c00287{word-spacing:12.902400pt;}
.ws24_c00287{word-spacing:13.004800pt;}
.ws21_c00287{word-spacing:26.419200pt;}
.ws22_c00287{word-spacing:26.432000pt;}
.ws15_c00287{word-spacing:29.286400pt;}
.wsf_c00287{word-spacing:32.153600pt;}
.ws9_c00287{word-spacing:35.059200pt;}
.wsa_c00287{word-spacing:35.091200pt;}
.ws1_c00287{word-spacing:48.793600pt;}
.ws5_c00287{word-spacing:67.667200pt;}
._0_c00287{width:1.024000pt;}
.fs1_c00287{font-size:53.440000pt;}
.fs0_c00287{font-size:64.000000pt;}
.y0_c00287{bottom:0.000000pt;}
.y2_c00287{bottom:41.627067pt;}
.y1_c00287{bottom:60.027067pt;}
.y21_c00287{bottom:118.107067pt;}
.y20_c00287{bottom:136.507067pt;}
.y1f_c00287{bottom:154.907067pt;}
.y1e_c00287{bottom:173.307067pt;}
.y1d_c00287{bottom:208.907067pt;}
.y1c_c00287{bottom:236.507067pt;}
.y1b_c00287{bottom:264.107067pt;}
.y1a_c00287{bottom:291.707067pt;}
.y19_c00287{bottom:319.307067pt;}
.y18_c00287{bottom:346.907067pt;}
.y17_c00287{bottom:382.507067pt;}
.y16_c00287{bottom:410.107067pt;}
.y15_c00287{bottom:437.707067pt;}
.y14_c00287{bottom:465.307067pt;}
.y13_c00287{bottom:500.907067pt;}
.y12_c00287{bottom:528.507067pt;}
.y11_c00287{bottom:556.107067pt;}
.y10_c00287{bottom:591.707067pt;}
.yf_c00287{bottom:619.307067pt;}
.ye_c00287{bottom:646.907067pt;}
.yd_c00287{bottom:674.507067pt;}
.yc_c00287{bottom:702.107067pt;}
.yb_c00287{bottom:729.707067pt;}
.ya_c00287{bottom:757.307067pt;}
.y9_c00287{bottom:784.907067pt;}
.y8_c00287{bottom:820.507067pt;}
.y7_c00287{bottom:848.027067pt;}
.y6_c00287{bottom:875.627067pt;}
.y5_c00287{bottom:903.227067pt;}
.y4_c00287{bottom:939.947067pt;}
.y3_c00287{bottom:975.547067pt;}
.h1_c00287{height:56.156250pt;}
.h2_c00287{height:57.375000pt;}
.h0_c00287{height:1122.666667pt;}
.w1_c00287{width:793.333333pt;}
.w0_c00287{width:793.626667pt;}
.x0_c00287{left:0.000000pt;}
.x2_c00287{left:113.440000pt;}
.x6_c00287{left:132.400000pt;}
.x4_c00287{left:137.440000pt;}
.x5_c00287{left:161.440000pt;}
.x3_c00287{left:185.440000pt;}
.x1_c00287{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e85b1b439b54a8fbf50f20be.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.093262;font-style:normal;font-weight:normal;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_7175079209ab6e9f6f180c1a.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.ls3_c00288{letter-spacing:-0.079200px;}
.ls7_c00288{letter-spacing:-0.064800px;}
.ls5_c00288{letter-spacing:-0.057600px;}
.lsa_c00288{letter-spacing:-0.050400px;}
.ls8_c00288{letter-spacing:-0.043200px;}
.ls4_c00288{letter-spacing:-0.036000px;}
.ls2_c00288{letter-spacing:-0.028800px;}
.ls6_c00288{letter-spacing:-0.021600px;}
.ls1_c00288{letter-spacing:-0.014400px;}
.ls9_c00288{letter-spacing:-0.007200px;}
.ls0_c00288{letter-spacing:0.000000px;}
.lsb_c00288{letter-spacing:843.998400px;}
.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;}
}
.ws9_c00288{word-spacing:-3.787200px;}
.ws8_c00288{word-spacing:-3.744000px;}
.ws29_c00288{word-spacing:-2.340000px;}
.ws2a_c00288{word-spacing:-2.188800px;}
.ws27_c00288{word-spacing:-1.605600px;}
.ws2_c00288{word-spacing:-0.648000px;}
.ws1_c00288{word-spacing:-0.604800px;}
.ws3_c00288{word-spacing:-0.547200px;}
.ws22_c00288{word-spacing:-0.180000px;}
.ws21_c00288{word-spacing:-0.144000px;}
.ws0_c00288{word-spacing:0.000000px;}
.ws10_c00288{word-spacing:0.086400px;}
.ws16_c00288{word-spacing:0.108000px;}
.ws1b_c00288{word-spacing:0.158400px;}
.ws17_c00288{word-spacing:0.165600px;}
.ws11_c00288{word-spacing:0.180000px;}
.ws5_c00288{word-spacing:1.252800px;}
.ws7_c00288{word-spacing:1.612800px;}
.ws6_c00288{word-spacing:1.634400px;}
.ws4_c00288{word-spacing:1.677600px;}
.ws20_c00288{word-spacing:3.276000px;}
.ws1e_c00288{word-spacing:3.412800px;}
.ws1f_c00288{word-spacing:3.427200px;}
.wsd_c00288{word-spacing:3.787200px;}
.wsc_c00288{word-spacing:3.823200px;}
.ws28_c00288{word-spacing:4.125600px;}
.wsf_c00288{word-spacing:4.212000px;}
.wse_c00288{word-spacing:4.233600px;}
.ws24_c00288{word-spacing:6.926400px;}
.ws23_c00288{word-spacing:7.027200px;}
.ws25_c00288{word-spacing:10.627200px;}
.ws26_c00288{word-spacing:10.634400px;}
.wsa_c00288{word-spacing:13.032000px;}
.wsb_c00288{word-spacing:13.183200px;}
.ws1c_c00288{word-spacing:16.725600px;}
.ws1d_c00288{word-spacing:16.732800px;}
.ws13_c00288{word-spacing:17.820000px;}
.ws12_c00288{word-spacing:17.841600px;}
.ws14_c00288{word-spacing:23.220000px;}
.ws15_c00288{word-spacing:23.284800px;}
.ws1a_c00288{word-spacing:27.187200px;}
.ws18_c00288{word-spacing:41.198400px;}
.ws19_c00288{word-spacing:41.212800px;}
._0_c00288{width:1.332000px;}
.fc0_c00288{color:rgb(0,0,0);}
.fs0_c00288{font-size:72.000000px;}
.y0_c00288{bottom:0.000000px;}
.y2_c00288{bottom:46.830450px;}
.y1_c00288{bottom:67.530450px;}
.y1c_c00288{bottom:315.030450px;}
.y1b_c00288{bottom:355.080450px;}
.y1a_c00288{bottom:386.040450px;}
.y19_c00288{bottom:417.090450px;}
.y18_c00288{bottom:448.140450px;}
.y17_c00288{bottom:479.190450px;}
.y16_c00288{bottom:510.240450px;}
.y15_c00288{bottom:541.290450px;}
.y14_c00288{bottom:572.340450px;}
.y13_c00288{bottom:612.390450px;}
.y12_c00288{bottom:643.440450px;}
.y11_c00288{bottom:674.490450px;}
.y10_c00288{bottom:705.540450px;}
.yf_c00288{bottom:736.590450px;}
.ye_c00288{bottom:767.640450px;}
.yd_c00288{bottom:798.690450px;}
.yc_c00288{bottom:838.740450px;}
.yb_c00288{bottom:869.790450px;}
.ya_c00288{bottom:900.840450px;}
.y9_c00288{bottom:931.890450px;}
.y8_c00288{bottom:962.940450px;}
.y7_c00288{bottom:993.990450px;}
.y6_c00288{bottom:1025.040450px;}
.y5_c00288{bottom:1056.090450px;}
.y4_c00288{bottom:1076.790450px;}
.y3_c00288{bottom:1097.490450px;}
.h1_c00288{height:63.175781px;}
.h2_c00288{height:64.546875px;}
.h0_c00288{height:1263.000000px;}
.w1_c00288{width:892.500000px;}
.w0_c00288{width:892.830000px;}
.x0_c00288{left:0.000000px;}
.x2_c00288{left:170.100000px;}
.x3_c00288{left:191.430000px;}
.x1_c00288{left:738.360000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls3_c00288{letter-spacing:-0.070400pt;}
.ls7_c00288{letter-spacing:-0.057600pt;}
.ls5_c00288{letter-spacing:-0.051200pt;}
.lsa_c00288{letter-spacing:-0.044800pt;}
.ls8_c00288{letter-spacing:-0.038400pt;}
.ls4_c00288{letter-spacing:-0.032000pt;}
.ls2_c00288{letter-spacing:-0.025600pt;}
.ls6_c00288{letter-spacing:-0.019200pt;}
.ls1_c00288{letter-spacing:-0.012800pt;}
.ls9_c00288{letter-spacing:-0.006400pt;}
.ls0_c00288{letter-spacing:0.000000pt;}
.lsb_c00288{letter-spacing:750.220800pt;}
.ws9_c00288{word-spacing:-3.366400pt;}
.ws8_c00288{word-spacing:-3.328000pt;}
.ws29_c00288{word-spacing:-2.080000pt;}
.ws2a_c00288{word-spacing:-1.945600pt;}
.ws27_c00288{word-spacing:-1.427200pt;}
.ws2_c00288{word-spacing:-0.576000pt;}
.ws1_c00288{word-spacing:-0.537600pt;}
.ws3_c00288{word-spacing:-0.486400pt;}
.ws22_c00288{word-spacing:-0.160000pt;}
.ws21_c00288{word-spacing:-0.128000pt;}
.ws0_c00288{word-spacing:0.000000pt;}
.ws10_c00288{word-spacing:0.076800pt;}
.ws16_c00288{word-spacing:0.096000pt;}
.ws1b_c00288{word-spacing:0.140800pt;}
.ws17_c00288{word-spacing:0.147200pt;}
.ws11_c00288{word-spacing:0.160000pt;}
.ws5_c00288{word-spacing:1.113600pt;}
.ws7_c00288{word-spacing:1.433600pt;}
.ws6_c00288{word-spacing:1.452800pt;}
.ws4_c00288{word-spacing:1.491200pt;}
.ws20_c00288{word-spacing:2.912000pt;}
.ws1e_c00288{word-spacing:3.033600pt;}
.ws1f_c00288{word-spacing:3.046400pt;}
.wsd_c00288{word-spacing:3.366400pt;}
.wsc_c00288{word-spacing:3.398400pt;}
.ws28_c00288{word-spacing:3.667200pt;}
.wsf_c00288{word-spacing:3.744000pt;}
.wse_c00288{word-spacing:3.763200pt;}
.ws24_c00288{word-spacing:6.156800pt;}
.ws23_c00288{word-spacing:6.246400pt;}
.ws25_c00288{word-spacing:9.446400pt;}
.ws26_c00288{word-spacing:9.452800pt;}
.wsa_c00288{word-spacing:11.584000pt;}
.wsb_c00288{word-spacing:11.718400pt;}
.ws1c_c00288{word-spacing:14.867200pt;}
.ws1d_c00288{word-spacing:14.873600pt;}
.ws13_c00288{word-spacing:15.840000pt;}
.ws12_c00288{word-spacing:15.859200pt;}
.ws14_c00288{word-spacing:20.640000pt;}
.ws15_c00288{word-spacing:20.697600pt;}
.ws1a_c00288{word-spacing:24.166400pt;}
.ws18_c00288{word-spacing:36.620800pt;}
.ws19_c00288{word-spacing:36.633600pt;}
._0_c00288{width:1.184000pt;}
.fs0_c00288{font-size:64.000000pt;}
.y0_c00288{bottom:0.000000pt;}
.y2_c00288{bottom:41.627067pt;}
.y1_c00288{bottom:60.027067pt;}
.y1c_c00288{bottom:280.027067pt;}
.y1b_c00288{bottom:315.627067pt;}
.y1a_c00288{bottom:343.147067pt;}
.y19_c00288{bottom:370.747067pt;}
.y18_c00288{bottom:398.347067pt;}
.y17_c00288{bottom:425.947067pt;}
.y16_c00288{bottom:453.547067pt;}
.y15_c00288{bottom:481.147067pt;}
.y14_c00288{bottom:508.747067pt;}
.y13_c00288{bottom:544.347067pt;}
.y12_c00288{bottom:571.947067pt;}
.y11_c00288{bottom:599.547067pt;}
.y10_c00288{bottom:627.147067pt;}
.yf_c00288{bottom:654.747067pt;}
.ye_c00288{bottom:682.347067pt;}
.yd_c00288{bottom:709.947067pt;}
.yc_c00288{bottom:745.547067pt;}
.yb_c00288{bottom:773.147067pt;}
.ya_c00288{bottom:800.747067pt;}
.y9_c00288{bottom:828.347067pt;}
.y8_c00288{bottom:855.947067pt;}
.y7_c00288{bottom:883.547067pt;}
.y6_c00288{bottom:911.147067pt;}
.y5_c00288{bottom:938.747067pt;}
.y4_c00288{bottom:957.147067pt;}
.y3_c00288{bottom:975.547067pt;}
.h1_c00288{height:56.156250pt;}
.h2_c00288{height:57.375000pt;}
.h0_c00288{height:1122.666667pt;}
.w1_c00288{width:793.333333pt;}
.w0_c00288{width:793.626667pt;}
.x0_c00288{left:0.000000pt;}
.x2_c00288{left:151.200000pt;}
.x3_c00288{left:170.160000pt;}
.x1_c00288{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f57c253a7b015ecfbdd7dd03.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.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;}
}
.ws0_c00289{word-spacing:0.000000px;}
.fc0_c00289{color:rgb(0,0,0);}
.fs0_c00289{font-size:72.000000px;}
.y0_c00289{bottom:0.000000px;}
.y2_c00289{bottom:46.830450px;}
.y1_c00289{bottom:67.530450px;}
.y3_c00289{bottom:1097.490450px;}
.h1_c00289{height:63.175781px;}
.h2_c00289{height:64.546875px;}
.h0_c00289{height:1263.000000px;}
.w1_c00289{width:892.500000px;}
.w0_c00289{width:892.830000px;}
.x0_c00289{left:0.000000px;}
.x2_c00289{left:127.620000px;}
.x1_c00289{left:695.880000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls0_c00289{letter-spacing:0.000000pt;}
.ws0_c00289{word-spacing:0.000000pt;}
.fs0_c00289{font-size:64.000000pt;}
.y0_c00289{bottom:0.000000pt;}
.y2_c00289{bottom:41.627067pt;}
.y1_c00289{bottom:60.027067pt;}
.y3_c00289{bottom:975.547067pt;}
.h1_c00289{height:56.156250pt;}
.h2_c00289{height:57.375000pt;}
.h0_c00289{height:1122.666667pt;}
.w1_c00289{width:793.333333pt;}
.w0_c00289{width:793.626667pt;}
.x0_c00289{left:0.000000pt;}
.x2_c00289{left:113.440000pt;}
.x1_c00289{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_645a640ca2074584866b8a2e.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.093262;font-style:normal;font-weight:normal;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_7c10486313583f8078b83805.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00290;src:url('chunks/assets/font_a865cf6f11b6d03692826c96.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:1.106934;font-style:normal;font-weight:normal;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_fbb356a79bbad6b44ddb9a3b.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsf_c00290{letter-spacing:-0.093600px;}
.ls11_c00290{letter-spacing:-0.079200px;}
.lsd_c00290{letter-spacing:-0.072000px;}
.ls12_c00290{letter-spacing:-0.064800px;}
.lsc_c00290{letter-spacing:-0.057600px;}
.lsa_c00290{letter-spacing:-0.050400px;}
.ls8_c00290{letter-spacing:-0.043200px;}
.ls6_c00290{letter-spacing:-0.036000px;}
.ls9_c00290{letter-spacing:-0.028800px;}
.lsb_c00290{letter-spacing:-0.021600px;}
.ls7_c00290{letter-spacing:-0.014400px;}
.lse_c00290{letter-spacing:-0.007200px;}
.ls3_c00290{letter-spacing:0.000000px;}
.ls1_c00290{letter-spacing:0.007200px;}
.ls5_c00290{letter-spacing:0.016776px;}
.ls2_c00290{letter-spacing:0.021600px;}
.ls10_c00290{letter-spacing:0.057600px;}
.ls0_c00290{letter-spacing:0.058716px;}
.ls4_c00290{letter-spacing:0.067104px;}
.sc__c00290{text-shadow:none;}
.sc0_c00290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00290{-webkit-text-stroke:0px transparent;}
.sc0_c00290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00290{word-spacing:-20.037600px;}
.ws0_c00290{word-spacing:-20.023200px;}
.ws1_c00290{word-spacing:-19.994400px;}
.ws27_c00290{word-spacing:-2.700000px;}
.ws9_c00290{word-spacing:-1.958400px;}
.ws17_c00290{word-spacing:-1.634400px;}
.ws18_c00290{word-spacing:-1.612800px;}
.ws29_c00290{word-spacing:-1.317600px;}
.ws28_c00290{word-spacing:-1.252800px;}
.wsa_c00290{word-spacing:-1.245600px;}
.ws26_c00290{word-spacing:-0.892800px;}
.ws25_c00290{word-spacing:-0.792000px;}
.ws1f_c00290{word-spacing:-0.079200px;}
.ws3_c00290{word-spacing:0.000000px;}
.ws5_c00290{word-spacing:0.025164px;}
.ws37_c00290{word-spacing:0.064800px;}
.ws6_c00290{word-spacing:0.075492px;}
.wsc_c00290{word-spacing:0.079200px;}
.wsb_c00290{word-spacing:0.180000px;}
.ws30_c00290{word-spacing:0.187200px;}
.ws32_c00290{word-spacing:1.512000px;}
.ws31_c00290{word-spacing:1.627200px;}
.ws2b_c00290{word-spacing:3.420000px;}
.ws2a_c00290{word-spacing:3.564000px;}
.ws36_c00290{word-spacing:3.801600px;}
.ws11_c00290{word-spacing:4.860000px;}
.ws12_c00290{word-spacing:4.896000px;}
.ws8_c00290{word-spacing:5.212800px;}
.ws7_c00290{word-spacing:5.320800px;}
.ws2c_c00290{word-spacing:8.452800px;}
.ws2d_c00290{word-spacing:8.568000px;}
.ws33_c00290{word-spacing:8.625600px;}
.wsf_c00290{word-spacing:9.115200px;}
.ws10_c00290{word-spacing:9.129600px;}
.ws4_c00290{word-spacing:9.755244px;}
.ws1b_c00290{word-spacing:9.900000px;}
.ws1c_c00290{word-spacing:9.914400px;}
.ws19_c00290{word-spacing:9.921600px;}
.ws1a_c00290{word-spacing:9.936000px;}
.ws35_c00290{word-spacing:10.944000px;}
.ws22_c00290{word-spacing:10.994400px;}
.ws34_c00290{word-spacing:11.008800px;}
.ws20_c00290{word-spacing:11.016000px;}
.ws21_c00290{word-spacing:11.037600px;}
.ws24_c00290{word-spacing:11.131200px;}
.ws23_c00290{word-spacing:11.138400px;}
.wsd_c00290{word-spacing:12.787200px;}
.wse_c00290{word-spacing:12.888000px;}
.ws13_c00290{word-spacing:13.521600px;}
.ws14_c00290{word-spacing:13.550400px;}
.ws16_c00290{word-spacing:22.860000px;}
.ws15_c00290{word-spacing:22.881600px;}
.ws2e_c00290{word-spacing:23.904000px;}
.ws2f_c00290{word-spacing:23.976000px;}
.ws1d_c00290{word-spacing:67.118400px;}
.ws1e_c00290{word-spacing:67.212000px;}
._0_c00290{margin-left:-9.730080px;}
._1_c00290{width:1.123200px;}
.fc0_c00290{color:rgb(0,0,0);}
.fs0_c00290{font-size:72.000000px;}
.fs1_c00290{font-size:83.880000px;}
.y0_c00290{bottom:0.000000px;}
.y2_c00290{bottom:46.830450px;}
.y1_c00290{bottom:67.530450px;}
.y21_c00290{bottom:134.850450px;}
.y20_c00290{bottom:165.900450px;}
.y1f_c00290{bottom:196.950450px;}
.y1e_c00290{bottom:228.000450px;}
.y1d_c00290{bottom:259.050450px;}
.y1c_c00290{bottom:299.100450px;}
.y1b_c00290{bottom:330.150450px;}
.y1a_c00290{bottom:361.200450px;}
.y19_c00290{bottom:392.250450px;}
.y18_c00290{bottom:423.300450px;}
.y17_c00290{bottom:454.350450px;}
.y16_c00290{bottom:485.400450px;}
.y15_c00290{bottom:516.450450px;}
.y14_c00290{bottom:547.500450px;}
.y13_c00290{bottom:587.550450px;}
.y12_c00290{bottom:618.600450px;}
.y11_c00290{bottom:649.650450px;}
.y10_c00290{bottom:680.700450px;}
.yf_c00290{bottom:711.750450px;}
.ye_c00290{bottom:742.710450px;}
.yd_c00290{bottom:773.760450px;}
.yc_c00290{bottom:804.810450px;}
.yb_c00290{bottom:835.860450px;}
.ya_c00290{bottom:866.910450px;}
.y9_c00290{bottom:906.960450px;}
.y8_c00290{bottom:938.010450px;}
.y7_c00290{bottom:969.060450px;}
.y6_c00290{bottom:1000.110450px;}
.y5_c00290{bottom:1040.160450px;}
.y4_c00290{bottom:1070.404950px;}
.y3_c00290{bottom:1094.520450px;}
.h1_c00290{height:63.175781px;}
.h3_c00290{height:64.546875px;}
.h4_c00290{height:75.093750px;}
.h2_c00290{height:87.484219px;}
.h0_c00290{height:1263.000000px;}
.w1_c00290{width:892.500000px;}
.w0_c00290{width:892.830000px;}
.x0_c00290{left:0.000000px;}
.x2_c00290{left:170.100000px;}
.x3_c00290{left:251.100000px;}
.x4_c00290{left:299.708460px;}
.x1_c00290{left:738.360000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.lsf_c00290{letter-spacing:-0.083200pt;}
.ls11_c00290{letter-spacing:-0.070400pt;}
.lsd_c00290{letter-spacing:-0.064000pt;}
.ls12_c00290{letter-spacing:-0.057600pt;}
.lsc_c00290{letter-spacing:-0.051200pt;}
.lsa_c00290{letter-spacing:-0.044800pt;}
.ls8_c00290{letter-spacing:-0.038400pt;}
.ls6_c00290{letter-spacing:-0.032000pt;}
.ls9_c00290{letter-spacing:-0.025600pt;}
.lsb_c00290{letter-spacing:-0.019200pt;}
.ls7_c00290{letter-spacing:-0.012800pt;}
.lse_c00290{letter-spacing:-0.006400pt;}
.ls3_c00290{letter-spacing:0.000000pt;}
.ls1_c00290{letter-spacing:0.006400pt;}
.ls5_c00290{letter-spacing:0.014912pt;}
.ls2_c00290{letter-spacing:0.019200pt;}
.ls10_c00290{letter-spacing:0.051200pt;}
.ls0_c00290{letter-spacing:0.052192pt;}
.ls4_c00290{letter-spacing:0.059648pt;}
.ws2_c00290{word-spacing:-17.811200pt;}
.ws0_c00290{word-spacing:-17.798400pt;}
.ws1_c00290{word-spacing:-17.772800pt;}
.ws27_c00290{word-spacing:-2.400000pt;}
.ws9_c00290{word-spacing:-1.740800pt;}
.ws17_c00290{word-spacing:-1.452800pt;}
.ws18_c00290{word-spacing:-1.433600pt;}
.ws29_c00290{word-spacing:-1.171200pt;}
.ws28_c00290{word-spacing:-1.113600pt;}
.wsa_c00290{word-spacing:-1.107200pt;}
.ws26_c00290{word-spacing:-0.793600pt;}
.ws25_c00290{word-spacing:-0.704000pt;}
.ws1f_c00290{word-spacing:-0.070400pt;}
.ws3_c00290{word-spacing:0.000000pt;}
.ws5_c00290{word-spacing:0.022368pt;}
.ws37_c00290{word-spacing:0.057600pt;}
.ws6_c00290{word-spacing:0.067104pt;}
.wsc_c00290{word-spacing:0.070400pt;}
.wsb_c00290{word-spacing:0.160000pt;}
.ws30_c00290{word-spacing:0.166400pt;}
.ws32_c00290{word-spacing:1.344000pt;}
.ws31_c00290{word-spacing:1.446400pt;}
.ws2b_c00290{word-spacing:3.040000pt;}
.ws2a_c00290{word-spacing:3.168000pt;}
.ws36_c00290{word-spacing:3.379200pt;}
.ws11_c00290{word-spacing:4.320000pt;}
.ws12_c00290{word-spacing:4.352000pt;}
.ws8_c00290{word-spacing:4.633600pt;}
.ws7_c00290{word-spacing:4.729600pt;}
.ws2c_c00290{word-spacing:7.513600pt;}
.ws2d_c00290{word-spacing:7.616000pt;}
.ws33_c00290{word-spacing:7.667200pt;}
.wsf_c00290{word-spacing:8.102400pt;}
.ws10_c00290{word-spacing:8.115200pt;}
.ws4_c00290{word-spacing:8.671328pt;}
.ws1b_c00290{word-spacing:8.800000pt;}
.ws1c_c00290{word-spacing:8.812800pt;}
.ws19_c00290{word-spacing:8.819200pt;}
.ws1a_c00290{word-spacing:8.832000pt;}
.ws35_c00290{word-spacing:9.728000pt;}
.ws22_c00290{word-spacing:9.772800pt;}
.ws34_c00290{word-spacing:9.785600pt;}
.ws20_c00290{word-spacing:9.792000pt;}
.ws21_c00290{word-spacing:9.811200pt;}
.ws24_c00290{word-spacing:9.894400pt;}
.ws23_c00290{word-spacing:9.900800pt;}
.wsd_c00290{word-spacing:11.366400pt;}
.wse_c00290{word-spacing:11.456000pt;}
.ws13_c00290{word-spacing:12.019200pt;}
.ws14_c00290{word-spacing:12.044800pt;}
.ws16_c00290{word-spacing:20.320000pt;}
.ws15_c00290{word-spacing:20.339200pt;}
.ws2e_c00290{word-spacing:21.248000pt;}
.ws2f_c00290{word-spacing:21.312000pt;}
.ws1d_c00290{word-spacing:59.660800pt;}
.ws1e_c00290{word-spacing:59.744000pt;}
._0_c00290{margin-left:-8.648960pt;}
._1_c00290{width:0.998400pt;}
.fs0_c00290{font-size:64.000000pt;}
.fs1_c00290{font-size:74.560000pt;}
.y0_c00290{bottom:0.000000pt;}
.y2_c00290{bottom:41.627067pt;}
.y1_c00290{bottom:60.027067pt;}
.y21_c00290{bottom:119.867067pt;}
.y20_c00290{bottom:147.467067pt;}
.y1f_c00290{bottom:175.067067pt;}
.y1e_c00290{bottom:202.667067pt;}
.y1d_c00290{bottom:230.267067pt;}
.y1c_c00290{bottom:265.867067pt;}
.y1b_c00290{bottom:293.467067pt;}
.y1a_c00290{bottom:321.067067pt;}
.y19_c00290{bottom:348.667067pt;}
.y18_c00290{bottom:376.267067pt;}
.y17_c00290{bottom:403.867067pt;}
.y16_c00290{bottom:431.467067pt;}
.y15_c00290{bottom:459.067067pt;}
.y14_c00290{bottom:486.667067pt;}
.y13_c00290{bottom:522.267067pt;}
.y12_c00290{bottom:549.867067pt;}
.y11_c00290{bottom:577.467067pt;}
.y10_c00290{bottom:605.067067pt;}
.yf_c00290{bottom:632.667067pt;}
.ye_c00290{bottom:660.187067pt;}
.yd_c00290{bottom:687.787067pt;}
.yc_c00290{bottom:715.387067pt;}
.yb_c00290{bottom:742.987067pt;}
.ya_c00290{bottom:770.587067pt;}
.y9_c00290{bottom:806.187067pt;}
.y8_c00290{bottom:833.787067pt;}
.y7_c00290{bottom:861.387067pt;}
.y6_c00290{bottom:888.987067pt;}
.y5_c00290{bottom:924.587067pt;}
.y4_c00290{bottom:951.471067pt;}
.y3_c00290{bottom:972.907067pt;}
.h1_c00290{height:56.156250pt;}
.h3_c00290{height:57.375000pt;}
.h4_c00290{height:66.750000pt;}
.h2_c00290{height:77.763750pt;}
.h0_c00290{height:1122.666667pt;}
.w1_c00290{width:793.333333pt;}
.w0_c00290{width:793.626667pt;}
.x0_c00290{left:0.000000pt;}
.x2_c00290{left:151.200000pt;}
.x3_c00290{left:223.200000pt;}
.x4_c00290{left:266.407520pt;}
.x1_c00290{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aee60fbe1f927318567861ae.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.093262;font-style:normal;font-weight:normal;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_b1f5a4b49ddd636944836a26.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.106934;font-style:normal;font-weight:normal;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_51c14622dbe429cb0a117359.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00291{letter-spacing:-0.108000px;}
.ls7_c00291{letter-spacing:-0.086400px;}
.ls8_c00291{letter-spacing:-0.079200px;}
.ls10_c00291{letter-spacing:-0.072000px;}
.ls3_c00291{letter-spacing:-0.064800px;}
.ls2_c00291{letter-spacing:-0.057600px;}
.ls9_c00291{letter-spacing:-0.050400px;}
.ls5_c00291{letter-spacing:-0.043200px;}
.ls6_c00291{letter-spacing:-0.036000px;}
.lsa_c00291{letter-spacing:-0.028800px;}
.lsf_c00291{letter-spacing:-0.021600px;}
.lsb_c00291{letter-spacing:-0.014400px;}
.ls4_c00291{letter-spacing:-0.007200px;}
.ls1_c00291{letter-spacing:0.000000px;}
.lse_c00291{letter-spacing:0.021600px;}
.lsc_c00291{letter-spacing:0.360000px;}
.ls0_c00291{letter-spacing:10.440000px;}
.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;}
}
.ws31_c00291{word-spacing:-4.089600px;}
.wsc_c00291{word-spacing:-3.434400px;}
.wsb_c00291{word-spacing:-3.340800px;}
.ws13_c00291{word-spacing:-3.045600px;}
.ws14_c00291{word-spacing:-2.973600px;}
.ws1_c00291{word-spacing:-1.987200px;}
.wsf_c00291{word-spacing:-1.944000px;}
.ws2_c00291{word-spacing:-1.936800px;}
.ws9_c00291{word-spacing:-1.670400px;}
.wsa_c00291{word-spacing:-1.605600px;}
.ws8_c00291{word-spacing:-1.555200px;}
.ws22_c00291{word-spacing:-1.382400px;}
.ws21_c00291{word-spacing:-1.267200px;}
.ws20_c00291{word-spacing:-1.224000px;}
.ws27_c00291{word-spacing:-0.878400px;}
.ws28_c00291{word-spacing:-0.871200px;}
.ws0_c00291{word-spacing:0.000000px;}
.ws23_c00291{word-spacing:0.158400px;}
.ws15_c00291{word-spacing:0.187200px;}
.ws34_c00291{word-spacing:0.921600px;}
.ws33_c00291{word-spacing:0.928800px;}
.wse_c00291{word-spacing:3.391200px;}
.wsd_c00291{word-spacing:3.441600px;}
.ws7_c00291{word-spacing:3.700800px;}
.ws6_c00291{word-spacing:3.801600px;}
.ws37_c00291{word-spacing:4.154400px;}
.ws12_c00291{word-spacing:4.168800px;}
.ws38_c00291{word-spacing:4.240800px;}
.ws35_c00291{word-spacing:5.212800px;}
.ws36_c00291{word-spacing:5.227200px;}
.ws5_c00291{word-spacing:5.234400px;}
.ws18_c00291{word-spacing:5.248800px;}
.ws1d_c00291{word-spacing:7.005600px;}
.ws1e_c00291{word-spacing:7.041600px;}
.ws29_c00291{word-spacing:7.682400px;}
.ws32_c00291{word-spacing:7.732800px;}
.ws2a_c00291{word-spacing:7.761600px;}
.ws17_c00291{word-spacing:8.380800px;}
.ws16_c00291{word-spacing:8.467200px;}
.ws30_c00291{word-spacing:8.820000px;}
.ws2f_c00291{word-spacing:9.021600px;}
.ws26_c00291{word-spacing:11.613600px;}
.ws24_c00291{word-spacing:11.714400px;}
.ws10_c00291{word-spacing:11.721600px;}
.ws25_c00291{word-spacing:11.743200px;}
.ws11_c00291{word-spacing:11.757600px;}
.ws2e_c00291{word-spacing:12.794400px;}
.ws2d_c00291{word-spacing:15.256800px;}
.ws2c_c00291{word-spacing:15.264000px;}
.ws2b_c00291{word-spacing:15.357600px;}
.ws19_c00291{word-spacing:15.645600px;}
.ws1a_c00291{word-spacing:15.667200px;}
.ws1b_c00291{word-spacing:20.426400px;}
.ws1c_c00291{word-spacing:20.476800px;}
.ws1f_c00291{word-spacing:20.714400px;}
.ws3_c00291{word-spacing:23.565600px;}
.ws4_c00291{word-spacing:23.652000px;}
._0_c00291{width:1.080000px;}
.fc0_c00291{color:rgb(0,0,0);}
.fs0_c00291{font-size:72.000000px;}
.y0_c00291{bottom:0.000000px;}
.y2_c00291{bottom:46.830450px;}
.y1_c00291{bottom:67.530450px;}
.y25_c00291{bottom:159.690450px;}
.y24_c00291{bottom:190.740450px;}
.y23_c00291{bottom:230.790450px;}
.y22_c00291{bottom:261.840450px;}
.y21_c00291{bottom:292.890450px;}
.y20_c00291{bottom:323.940450px;}
.y1f_c00291{bottom:354.990450px;}
.y1e_c00291{bottom:395.040450px;}
.y1d_c00291{bottom:426.090450px;}
.y1c_c00291{bottom:457.140450px;}
.y1b_c00291{bottom:488.190450px;}
.y1a_c00291{bottom:519.240450px;}
.y19_c00291{bottom:550.290450px;}
.y18_c00291{bottom:590.340450px;}
.y17_c00291{bottom:621.390450px;}
.y16_c00291{bottom:652.350450px;}
.y15_c00291{bottom:683.490450px;}
.y14_c00291{bottom:714.540450px;}
.y13_c00291{bottom:745.590450px;}
.y12_c00291{bottom:776.640450px;}
.y11_c00291{bottom:807.690450px;}
.y10_c00291{bottom:828.390450px;}
.yf_c00291{bottom:849.090450px;}
.ye_c00291{bottom:869.790450px;}
.yd_c00291{bottom:890.490450px;}
.yc_c00291{bottom:911.190450px;}
.yb_c00291{bottom:931.890450px;}
.ya_c00291{bottom:952.590450px;}
.y9_c00291{bottom:973.290450px;}
.y8_c00291{bottom:993.990450px;}
.y7_c00291{bottom:1014.690450px;}
.y6_c00291{bottom:1035.390450px;}
.y5_c00291{bottom:1056.090450px;}
.y4_c00291{bottom:1076.790450px;}
.y3_c00291{bottom:1097.490450px;}
.h1_c00291{height:63.175781px;}
.h2_c00291{height:64.546875px;}
.h3_c00291{height:75.093750px;}
.h0_c00291{height:1263.000000px;}
.w1_c00291{width:892.500000px;}
.w0_c00291{width:892.830000px;}
.x0_c00291{left:0.000000px;}
.x2_c00291{left:127.620000px;}
.x3_c00291{left:148.950000px;}
.x1_c00291{left:695.880000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.lsd_c00291{letter-spacing:-0.096000pt;}
.ls7_c00291{letter-spacing:-0.076800pt;}
.ls8_c00291{letter-spacing:-0.070400pt;}
.ls10_c00291{letter-spacing:-0.064000pt;}
.ls3_c00291{letter-spacing:-0.057600pt;}
.ls2_c00291{letter-spacing:-0.051200pt;}
.ls9_c00291{letter-spacing:-0.044800pt;}
.ls5_c00291{letter-spacing:-0.038400pt;}
.ls6_c00291{letter-spacing:-0.032000pt;}
.lsa_c00291{letter-spacing:-0.025600pt;}
.lsf_c00291{letter-spacing:-0.019200pt;}
.lsb_c00291{letter-spacing:-0.012800pt;}
.ls4_c00291{letter-spacing:-0.006400pt;}
.ls1_c00291{letter-spacing:0.000000pt;}
.lse_c00291{letter-spacing:0.019200pt;}
.lsc_c00291{letter-spacing:0.320000pt;}
.ls0_c00291{letter-spacing:9.280000pt;}
.ws31_c00291{word-spacing:-3.635200pt;}
.wsc_c00291{word-spacing:-3.052800pt;}
.wsb_c00291{word-spacing:-2.969600pt;}
.ws13_c00291{word-spacing:-2.707200pt;}
.ws14_c00291{word-spacing:-2.643200pt;}
.ws1_c00291{word-spacing:-1.766400pt;}
.wsf_c00291{word-spacing:-1.728000pt;}
.ws2_c00291{word-spacing:-1.721600pt;}
.ws9_c00291{word-spacing:-1.484800pt;}
.wsa_c00291{word-spacing:-1.427200pt;}
.ws8_c00291{word-spacing:-1.382400pt;}
.ws22_c00291{word-spacing:-1.228800pt;}
.ws21_c00291{word-spacing:-1.126400pt;}
.ws20_c00291{word-spacing:-1.088000pt;}
.ws27_c00291{word-spacing:-0.780800pt;}
.ws28_c00291{word-spacing:-0.774400pt;}
.ws0_c00291{word-spacing:0.000000pt;}
.ws23_c00291{word-spacing:0.140800pt;}
.ws15_c00291{word-spacing:0.166400pt;}
.ws34_c00291{word-spacing:0.819200pt;}
.ws33_c00291{word-spacing:0.825600pt;}
.wse_c00291{word-spacing:3.014400pt;}
.wsd_c00291{word-spacing:3.059200pt;}
.ws7_c00291{word-spacing:3.289600pt;}
.ws6_c00291{word-spacing:3.379200pt;}
.ws37_c00291{word-spacing:3.692800pt;}
.ws12_c00291{word-spacing:3.705600pt;}
.ws38_c00291{word-spacing:3.769600pt;}
.ws35_c00291{word-spacing:4.633600pt;}
.ws36_c00291{word-spacing:4.646400pt;}
.ws5_c00291{word-spacing:4.652800pt;}
.ws18_c00291{word-spacing:4.665600pt;}
.ws1d_c00291{word-spacing:6.227200pt;}
.ws1e_c00291{word-spacing:6.259200pt;}
.ws29_c00291{word-spacing:6.828800pt;}
.ws32_c00291{word-spacing:6.873600pt;}
.ws2a_c00291{word-spacing:6.899200pt;}
.ws17_c00291{word-spacing:7.449600pt;}
.ws16_c00291{word-spacing:7.526400pt;}
.ws30_c00291{word-spacing:7.840000pt;}
.ws2f_c00291{word-spacing:8.019200pt;}
.ws26_c00291{word-spacing:10.323200pt;}
.ws24_c00291{word-spacing:10.412800pt;}
.ws10_c00291{word-spacing:10.419200pt;}
.ws25_c00291{word-spacing:10.438400pt;}
.ws11_c00291{word-spacing:10.451200pt;}
.ws2e_c00291{word-spacing:11.372800pt;}
.ws2d_c00291{word-spacing:13.561600pt;}
.ws2c_c00291{word-spacing:13.568000pt;}
.ws2b_c00291{word-spacing:13.651200pt;}
.ws19_c00291{word-spacing:13.907200pt;}
.ws1a_c00291{word-spacing:13.926400pt;}
.ws1b_c00291{word-spacing:18.156800pt;}
.ws1c_c00291{word-spacing:18.201600pt;}
.ws1f_c00291{word-spacing:18.412800pt;}
.ws3_c00291{word-spacing:20.947200pt;}
.ws4_c00291{word-spacing:21.024000pt;}
._0_c00291{width:0.960000pt;}
.fs0_c00291{font-size:64.000000pt;}
.y0_c00291{bottom:0.000000pt;}
.y2_c00291{bottom:41.627067pt;}
.y1_c00291{bottom:60.027067pt;}
.y25_c00291{bottom:141.947067pt;}
.y24_c00291{bottom:169.547067pt;}
.y23_c00291{bottom:205.147067pt;}
.y22_c00291{bottom:232.747067pt;}
.y21_c00291{bottom:260.347067pt;}
.y20_c00291{bottom:287.947067pt;}
.y1f_c00291{bottom:315.547067pt;}
.y1e_c00291{bottom:351.147067pt;}
.y1d_c00291{bottom:378.747067pt;}
.y1c_c00291{bottom:406.347067pt;}
.y1b_c00291{bottom:433.947067pt;}
.y1a_c00291{bottom:461.547067pt;}
.y19_c00291{bottom:489.147067pt;}
.y18_c00291{bottom:524.747067pt;}
.y17_c00291{bottom:552.347067pt;}
.y16_c00291{bottom:579.867067pt;}
.y15_c00291{bottom:607.547067pt;}
.y14_c00291{bottom:635.147067pt;}
.y13_c00291{bottom:662.747067pt;}
.y12_c00291{bottom:690.347067pt;}
.y11_c00291{bottom:717.947067pt;}
.y10_c00291{bottom:736.347067pt;}
.yf_c00291{bottom:754.747067pt;}
.ye_c00291{bottom:773.147067pt;}
.yd_c00291{bottom:791.547067pt;}
.yc_c00291{bottom:809.947067pt;}
.yb_c00291{bottom:828.347067pt;}
.ya_c00291{bottom:846.747067pt;}
.y9_c00291{bottom:865.147067pt;}
.y8_c00291{bottom:883.547067pt;}
.y7_c00291{bottom:901.947067pt;}
.y6_c00291{bottom:920.347067pt;}
.y5_c00291{bottom:938.747067pt;}
.y4_c00291{bottom:957.147067pt;}
.y3_c00291{bottom:975.547067pt;}
.h1_c00291{height:56.156250pt;}
.h2_c00291{height:57.375000pt;}
.h3_c00291{height:66.750000pt;}
.h0_c00291{height:1122.666667pt;}
.w1_c00291{width:793.333333pt;}
.w0_c00291{width:793.626667pt;}
.x0_c00291{left:0.000000pt;}
.x2_c00291{left:113.440000pt;}
.x3_c00291{left:132.400000pt;}
.x1_c00291{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_92672ff8266b6d167acb0eed.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.093262;font-style:normal;font-weight:normal;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_bb59ca12976d1e3e346d4847.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.106934;font-style:normal;font-weight:normal;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_852f7841d51a98fcc998b992.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00292{letter-spacing:-0.079200px;}
.lsb_c00292{letter-spacing:-0.064800px;}
.ls8_c00292{letter-spacing:-0.057600px;}
.ls6_c00292{letter-spacing:-0.050400px;}
.ls4_c00292{letter-spacing:-0.043200px;}
.ls3_c00292{letter-spacing:-0.036000px;}
.ls2_c00292{letter-spacing:-0.028800px;}
.lsa_c00292{letter-spacing:-0.021600px;}
.ls5_c00292{letter-spacing:-0.014400px;}
.ls7_c00292{letter-spacing:-0.007200px;}
.ls1_c00292{letter-spacing:0.000000px;}
.ls0_c00292{letter-spacing:0.007200px;}
.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;}
}
.ws0_c00292{word-spacing:-19.980000px;}
.ws23_c00292{word-spacing:-4.284000px;}
.ws22_c00292{word-spacing:-4.118400px;}
.ws24_c00292{word-spacing:-3.981600px;}
.ws20_c00292{word-spacing:-3.859200px;}
.ws21_c00292{word-spacing:-3.794400px;}
.ws30_c00292{word-spacing:-3.067200px;}
.ws31_c00292{word-spacing:-3.038400px;}
.ws13_c00292{word-spacing:-0.957600px;}
.ws10_c00292{word-spacing:-0.907200px;}
.ws12_c00292{word-spacing:-0.892800px;}
.ws11_c00292{word-spacing:-0.885600px;}
.ws1_c00292{word-spacing:0.000000px;}
.wsa_c00292{word-spacing:0.158400px;}
.ws14_c00292{word-spacing:0.165600px;}
.ws2d_c00292{word-spacing:0.187200px;}
.ws37_c00292{word-spacing:0.194400px;}
.ws18_c00292{word-spacing:0.482400px;}
.ws17_c00292{word-spacing:0.547200px;}
.ws16_c00292{word-spacing:5.925600px;}
.wsf_c00292{word-spacing:5.947200px;}
.ws15_c00292{word-spacing:6.040800px;}
.wsd_c00292{word-spacing:6.292800px;}
.wse_c00292{word-spacing:6.314400px;}
.ws1f_c00292{word-spacing:11.700000px;}
.ws6_c00292{word-spacing:12.052800px;}
.ws3_c00292{word-spacing:12.067200px;}
.ws4_c00292{word-spacing:12.117600px;}
.ws5_c00292{word-spacing:12.196800px;}
.wsb_c00292{word-spacing:13.032000px;}
.wsc_c00292{word-spacing:13.219200px;}
.ws32_c00292{word-spacing:14.601600px;}
.ws25_c00292{word-spacing:17.820000px;}
.ws26_c00292{word-spacing:17.848800px;}
.ws1c_c00292{word-spacing:20.599200px;}
.ws1b_c00292{word-spacing:20.714400px;}
.ws1d_c00292{word-spacing:21.045600px;}
.ws1e_c00292{word-spacing:21.067200px;}
.ws2c_c00292{word-spacing:21.772800px;}
.ws2b_c00292{word-spacing:21.801600px;}
.ws1a_c00292{word-spacing:22.125600px;}
.ws19_c00292{word-spacing:22.176000px;}
.ws7_c00292{word-spacing:22.924800px;}
.ws9_c00292{word-spacing:23.212800px;}
.ws8_c00292{word-spacing:23.241600px;}
.ws2e_c00292{word-spacing:34.041600px;}
.ws2f_c00292{word-spacing:34.164000px;}
.ws29_c00292{word-spacing:37.656000px;}
.ws2a_c00292{word-spacing:37.677600px;}
.ws33_c00292{word-spacing:38.340000px;}
.ws34_c00292{word-spacing:38.361600px;}
.ws28_c00292{word-spacing:42.652800px;}
.ws27_c00292{word-spacing:42.868800px;}
.ws2_c00292{word-spacing:50.227200px;}
.ws36_c00292{word-spacing:78.595200px;}
.ws35_c00292{word-spacing:78.667200px;}
._0_c00292{width:1.137600px;}
.fc0_c00292{color:rgb(0,0,0);}
.fs0_c00292{font-size:72.000000px;}
.y0_c00292{bottom:0.000000px;}
.y2_c00292{bottom:46.830450px;}
.y1_c00292{bottom:67.530450px;}
.y21_c00292{bottom:139.080450px;}
.y20_c00292{bottom:170.130450px;}
.y1f_c00292{bottom:201.180450px;}
.y1e_c00292{bottom:232.230450px;}
.y1d_c00292{bottom:263.280450px;}
.y1c_c00292{bottom:294.330450px;}
.y1b_c00292{bottom:334.380450px;}
.y1a_c00292{bottom:365.430450px;}
.y19_c00292{bottom:396.390450px;}
.y18_c00292{bottom:427.440450px;}
.y17_c00292{bottom:458.490450px;}
.y16_c00292{bottom:489.540450px;}
.y15_c00292{bottom:520.590450px;}
.y14_c00292{bottom:551.640450px;}
.y13_c00292{bottom:582.690450px;}
.y12_c00292{bottom:613.740450px;}
.y11_c00292{bottom:644.790450px;}
.y10_c00292{bottom:675.840450px;}
.yf_c00292{bottom:706.890450px;}
.ye_c00292{bottom:746.940450px;}
.yd_c00292{bottom:777.990450px;}
.yc_c00292{bottom:809.040450px;}
.yb_c00292{bottom:840.090450px;}
.ya_c00292{bottom:871.140450px;}
.y9_c00292{bottom:902.190450px;}
.y8_c00292{bottom:942.240450px;}
.y7_c00292{bottom:973.290450px;}
.y6_c00292{bottom:1004.340450px;}
.y5_c00292{bottom:1035.390450px;}
.y4_c00292{bottom:1066.440450px;}
.y3_c00292{bottom:1097.490450px;}
.h1_c00292{height:63.175781px;}
.h2_c00292{height:64.546875px;}
.h3_c00292{height:75.093750px;}
.h0_c00292{height:1263.000000px;}
.w1_c00292{width:892.500000px;}
.w0_c00292{width:892.830000px;}
.x0_c00292{left:0.000000px;}
.x2_c00292{left:170.100000px;}
.x1_c00292{left:738.360000px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls9_c00292{letter-spacing:-0.070400pt;}
.lsb_c00292{letter-spacing:-0.057600pt;}
.ls8_c00292{letter-spacing:-0.051200pt;}
.ls6_c00292{letter-spacing:-0.044800pt;}
.ls4_c00292{letter-spacing:-0.038400pt;}
.ls3_c00292{letter-spacing:-0.032000pt;}
.ls2_c00292{letter-spacing:-0.025600pt;}
.lsa_c00292{letter-spacing:-0.019200pt;}
.ls5_c00292{letter-spacing:-0.012800pt;}
.ls7_c00292{letter-spacing:-0.006400pt;}
.ls1_c00292{letter-spacing:0.000000pt;}
.ls0_c00292{letter-spacing:0.006400pt;}
.ws0_c00292{word-spacing:-17.760000pt;}
.ws23_c00292{word-spacing:-3.808000pt;}
.ws22_c00292{word-spacing:-3.660800pt;}
.ws24_c00292{word-spacing:-3.539200pt;}
.ws20_c00292{word-spacing:-3.430400pt;}
.ws21_c00292{word-spacing:-3.372800pt;}
.ws30_c00292{word-spacing:-2.726400pt;}
.ws31_c00292{word-spacing:-2.700800pt;}
.ws13_c00292{word-spacing:-0.851200pt;}
.ws10_c00292{word-spacing:-0.806400pt;}
.ws12_c00292{word-spacing:-0.793600pt;}
.ws11_c00292{word-spacing:-0.787200pt;}
.ws1_c00292{word-spacing:0.000000pt;}
.wsa_c00292{word-spacing:0.140800pt;}
.ws14_c00292{word-spacing:0.147200pt;}
.ws2d_c00292{word-spacing:0.166400pt;}
.ws37_c00292{word-spacing:0.172800pt;}
.ws18_c00292{word-spacing:0.428800pt;}
.ws17_c00292{word-spacing:0.486400pt;}
.ws16_c00292{word-spacing:5.267200pt;}
.wsf_c00292{word-spacing:5.286400pt;}
.ws15_c00292{word-spacing:5.369600pt;}
.wsd_c00292{word-spacing:5.593600pt;}
.wse_c00292{word-spacing:5.612800pt;}
.ws1f_c00292{word-spacing:10.400000pt;}
.ws6_c00292{word-spacing:10.713600pt;}
.ws3_c00292{word-spacing:10.726400pt;}
.ws4_c00292{word-spacing:10.771200pt;}
.ws5_c00292{word-spacing:10.841600pt;}
.wsb_c00292{word-spacing:11.584000pt;}
.wsc_c00292{word-spacing:11.750400pt;}
.ws32_c00292{word-spacing:12.979200pt;}
.ws25_c00292{word-spacing:15.840000pt;}
.ws26_c00292{word-spacing:15.865600pt;}
.ws1c_c00292{word-spacing:18.310400pt;}
.ws1b_c00292{word-spacing:18.412800pt;}
.ws1d_c00292{word-spacing:18.707200pt;}
.ws1e_c00292{word-spacing:18.726400pt;}
.ws2c_c00292{word-spacing:19.353600pt;}
.ws2b_c00292{word-spacing:19.379200pt;}
.ws1a_c00292{word-spacing:19.667200pt;}
.ws19_c00292{word-spacing:19.712000pt;}
.ws7_c00292{word-spacing:20.377600pt;}
.ws9_c00292{word-spacing:20.633600pt;}
.ws8_c00292{word-spacing:20.659200pt;}
.ws2e_c00292{word-spacing:30.259200pt;}
.ws2f_c00292{word-spacing:30.368000pt;}
.ws29_c00292{word-spacing:33.472000pt;}
.ws2a_c00292{word-spacing:33.491200pt;}
.ws33_c00292{word-spacing:34.080000pt;}
.ws34_c00292{word-spacing:34.099200pt;}
.ws28_c00292{word-spacing:37.913600pt;}
.ws27_c00292{word-spacing:38.105600pt;}
.ws2_c00292{word-spacing:44.646400pt;}
.ws36_c00292{word-spacing:69.862400pt;}
.ws35_c00292{word-spacing:69.926400pt;}
._0_c00292{width:1.011200pt;}
.fs0_c00292{font-size:64.000000pt;}
.y0_c00292{bottom:0.000000pt;}
.y2_c00292{bottom:41.627067pt;}
.y1_c00292{bottom:60.027067pt;}
.y21_c00292{bottom:123.627067pt;}
.y20_c00292{bottom:151.227067pt;}
.y1f_c00292{bottom:178.827067pt;}
.y1e_c00292{bottom:206.427067pt;}
.y1d_c00292{bottom:234.027067pt;}
.y1c_c00292{bottom:261.627067pt;}
.y1b_c00292{bottom:297.227067pt;}
.y1a_c00292{bottom:324.827067pt;}
.y19_c00292{bottom:352.347067pt;}
.y18_c00292{bottom:379.947067pt;}
.y17_c00292{bottom:407.547067pt;}
.y16_c00292{bottom:435.147067pt;}
.y15_c00292{bottom:462.747067pt;}
.y14_c00292{bottom:490.347067pt;}
.y13_c00292{bottom:517.947067pt;}
.y12_c00292{bottom:545.547067pt;}
.y11_c00292{bottom:573.147067pt;}
.y10_c00292{bottom:600.747067pt;}
.yf_c00292{bottom:628.347067pt;}
.ye_c00292{bottom:663.947067pt;}
.yd_c00292{bottom:691.547067pt;}
.yc_c00292{bottom:719.147067pt;}
.yb_c00292{bottom:746.747067pt;}
.ya_c00292{bottom:774.347067pt;}
.y9_c00292{bottom:801.947067pt;}
.y8_c00292{bottom:837.547067pt;}
.y7_c00292{bottom:865.147067pt;}
.y6_c00292{bottom:892.747067pt;}
.y5_c00292{bottom:920.347067pt;}
.y4_c00292{bottom:947.947067pt;}
.y3_c00292{bottom:975.547067pt;}
.h1_c00292{height:56.156250pt;}
.h2_c00292{height:57.375000pt;}
.h3_c00292{height:66.750000pt;}
.h0_c00292{height:1122.666667pt;}
.w1_c00292{width:793.333333pt;}
.w0_c00292{width:793.626667pt;}
.x0_c00292{left:0.000000pt;}
.x2_c00292{left:151.200000pt;}
.x1_c00292{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_64793b51478615da70d31246.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.093262;font-style:normal;font-weight:normal;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_26c4028766a9f8ee06aca8ce.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00293{vertical-align:0.000000px;}
.ls9_c00293{letter-spacing:-0.072000px;}
.ls8_c00293{letter-spacing:-0.064800px;}
.ls2_c00293{letter-spacing:-0.057600px;}
.ls6_c00293{letter-spacing:-0.050400px;}
.ls1_c00293{letter-spacing:-0.043200px;}
.ls4_c00293{letter-spacing:-0.036000px;}
.ls7_c00293{letter-spacing:-0.028800px;}
.ls3_c00293{letter-spacing:-0.021600px;}
.ls5_c00293{letter-spacing:-0.014400px;}
.lsa_c00293{letter-spacing:-0.007200px;}
.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;}
}
.ws1c_c00293{word-spacing:-4.471200px;}
.ws1b_c00293{word-spacing:-4.456800px;}
.ws16_c00293{word-spacing:-2.743200px;}
.ws15_c00293{word-spacing:-2.656800px;}
.ws26_c00293{word-spacing:-1.605600px;}
.ws0_c00293{word-spacing:0.000000px;}
.ws7_c00293{word-spacing:0.108000px;}
.wse_c00293{word-spacing:0.158400px;}
.wsf_c00293{word-spacing:0.172800px;}
.ws1f_c00293{word-spacing:0.180000px;}
.ws14_c00293{word-spacing:0.187200px;}
.ws6_c00293{word-spacing:0.194400px;}
.ws1a_c00293{word-spacing:1.922400px;}
.ws19_c00293{word-spacing:2.016000px;}
.ws13_c00293{word-spacing:2.361600px;}
.ws1d_c00293{word-spacing:2.728800px;}
.ws28_c00293{word-spacing:3.045600px;}
.ws27_c00293{word-spacing:3.060000px;}
.ws2c_c00293{word-spacing:3.398400px;}
.ws4_c00293{word-spacing:3.420000px;}
.ws5_c00293{word-spacing:3.427200px;}
.ws11_c00293{word-spacing:3.434400px;}
.ws2b_c00293{word-spacing:3.456000px;}
.ws10_c00293{word-spacing:3.470400px;}
.ws29_c00293{word-spacing:4.168800px;}
.ws2a_c00293{word-spacing:4.255200px;}
.ws12_c00293{word-spacing:4.507200px;}
.ws22_c00293{word-spacing:4.845600px;}
.ws8_c00293{word-spacing:4.860000px;}
.ws23_c00293{word-spacing:4.867200px;}
.ws9_c00293{word-spacing:4.960800px;}
.ws3_c00293{word-spacing:5.256000px;}
.wsc_c00293{word-spacing:6.307200px;}
.wsd_c00293{word-spacing:6.343200px;}
.ws2e_c00293{word-spacing:9.158400px;}
.ws25_c00293{word-spacing:9.172800px;}
.ws24_c00293{word-spacing:9.180000px;}
.ws2d_c00293{word-spacing:9.194400px;}
.ws1e_c00293{word-spacing:12.081600px;}
.wsb_c00293{word-spacing:14.940000px;}
.ws20_c00293{word-spacing:17.798400px;}
.ws21_c00293{word-spacing:17.834400px;}
.ws1_c00293{word-spacing:19.238400px;}
.ws2_c00293{word-spacing:19.281600px;}
.ws30_c00293{word-spacing:22.132800px;}
.ws2f_c00293{word-spacing:22.161600px;}
.ws32_c00293{word-spacing:23.659200px;}
.ws31_c00293{word-spacing:23.796000px;}
.wsa_c00293{word-spacing:28.274400px;}
.ws17_c00293{word-spacing:31.140000px;}
.ws18_c00293{word-spacing:31.212000px;}
._0_c00293{width:1.123200px;}
.fc0_c00293{color:rgb(0,0,0);}
.fs0_c00293{font-size:72.000000px;}
.y0_c00293{bottom:0.000000px;}
.y2_c00293{bottom:46.830450px;}
.y1_c00293{bottom:67.530450px;}
.y23_c00293{bottom:179.130450px;}
.y22_c00293{bottom:210.180450px;}
.y21_c00293{bottom:241.230450px;}
.y20_c00293{bottom:272.280450px;}
.y1f_c00293{bottom:303.330450px;}
.y1e_c00293{bottom:334.380450px;}
.y1d_c00293{bottom:365.430450px;}
.y1c_c00293{bottom:396.390450px;}
.y1b_c00293{bottom:427.440450px;}
.y1a_c00293{bottom:458.490450px;}
.y19_c00293{bottom:489.540450px;}
.y18_c00293{bottom:510.240450px;}
.y17_c00293{bottom:530.940450px;}
.y16_c00293{bottom:551.640450px;}
.y15_c00293{bottom:572.340450px;}
.y14_c00293{bottom:593.040450px;}
.y13_c00293{bottom:613.740450px;}
.y12_c00293{bottom:634.440450px;}
.y11_c00293{bottom:655.140450px;}
.y10_c00293{bottom:675.840450px;}
.yf_c00293{bottom:715.890450px;}
.ye_c00293{bottom:746.940450px;}
.yd_c00293{bottom:777.990450px;}
.yc_c00293{bottom:809.040450px;}
.yb_c00293{bottom:849.090450px;}
.ya_c00293{bottom:880.140450px;}
.y9_c00293{bottom:911.190450px;}
.y8_c00293{bottom:942.240450px;}
.y7_c00293{bottom:973.290450px;}
.y6_c00293{bottom:1004.340450px;}
.y5_c00293{bottom:1035.390450px;}
.y4_c00293{bottom:1066.440450px;}
.y3_c00293{bottom:1097.490450px;}
.h1_c00293{height:63.175781px;}
.h2_c00293{height:64.546875px;}
.h0_c00293{height:1263.000000px;}
.w1_c00293{width:892.500000px;}
.w0_c00293{width:892.830000px;}
.x0_c00293{left:0.000000px;}
.x2_c00293{left:127.620000px;}
.x3_c00293{left:148.950000px;}
.x1_c00293{left:695.880000px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls9_c00293{letter-spacing:-0.064000pt;}
.ls8_c00293{letter-spacing:-0.057600pt;}
.ls2_c00293{letter-spacing:-0.051200pt;}
.ls6_c00293{letter-spacing:-0.044800pt;}
.ls1_c00293{letter-spacing:-0.038400pt;}
.ls4_c00293{letter-spacing:-0.032000pt;}
.ls7_c00293{letter-spacing:-0.025600pt;}
.ls3_c00293{letter-spacing:-0.019200pt;}
.ls5_c00293{letter-spacing:-0.012800pt;}
.lsa_c00293{letter-spacing:-0.006400pt;}
.ls0_c00293{letter-spacing:0.000000pt;}
.ws1c_c00293{word-spacing:-3.974400pt;}
.ws1b_c00293{word-spacing:-3.961600pt;}
.ws16_c00293{word-spacing:-2.438400pt;}
.ws15_c00293{word-spacing:-2.361600pt;}
.ws26_c00293{word-spacing:-1.427200pt;}
.ws0_c00293{word-spacing:0.000000pt;}
.ws7_c00293{word-spacing:0.096000pt;}
.wse_c00293{word-spacing:0.140800pt;}
.wsf_c00293{word-spacing:0.153600pt;}
.ws1f_c00293{word-spacing:0.160000pt;}
.ws14_c00293{word-spacing:0.166400pt;}
.ws6_c00293{word-spacing:0.172800pt;}
.ws1a_c00293{word-spacing:1.708800pt;}
.ws19_c00293{word-spacing:1.792000pt;}
.ws13_c00293{word-spacing:2.099200pt;}
.ws1d_c00293{word-spacing:2.425600pt;}
.ws28_c00293{word-spacing:2.707200pt;}
.ws27_c00293{word-spacing:2.720000pt;}
.ws2c_c00293{word-spacing:3.020800pt;}
.ws4_c00293{word-spacing:3.040000pt;}
.ws5_c00293{word-spacing:3.046400pt;}
.ws11_c00293{word-spacing:3.052800pt;}
.ws2b_c00293{word-spacing:3.072000pt;}
.ws10_c00293{word-spacing:3.084800pt;}
.ws29_c00293{word-spacing:3.705600pt;}
.ws2a_c00293{word-spacing:3.782400pt;}
.ws12_c00293{word-spacing:4.006400pt;}
.ws22_c00293{word-spacing:4.307200pt;}
.ws8_c00293{word-spacing:4.320000pt;}
.ws23_c00293{word-spacing:4.326400pt;}
.ws9_c00293{word-spacing:4.409600pt;}
.ws3_c00293{word-spacing:4.672000pt;}
.wsc_c00293{word-spacing:5.606400pt;}
.wsd_c00293{word-spacing:5.638400pt;}
.ws2e_c00293{word-spacing:8.140800pt;}
.ws25_c00293{word-spacing:8.153600pt;}
.ws24_c00293{word-spacing:8.160000pt;}
.ws2d_c00293{word-spacing:8.172800pt;}
.ws1e_c00293{word-spacing:10.739200pt;}
.wsb_c00293{word-spacing:13.280000pt;}
.ws20_c00293{word-spacing:15.820800pt;}
.ws21_c00293{word-spacing:15.852800pt;}
.ws1_c00293{word-spacing:17.100800pt;}
.ws2_c00293{word-spacing:17.139200pt;}
.ws30_c00293{word-spacing:19.673600pt;}
.ws2f_c00293{word-spacing:19.699200pt;}
.ws32_c00293{word-spacing:21.030400pt;}
.ws31_c00293{word-spacing:21.152000pt;}
.wsa_c00293{word-spacing:25.132800pt;}
.ws17_c00293{word-spacing:27.680000pt;}
.ws18_c00293{word-spacing:27.744000pt;}
._0_c00293{width:0.998400pt;}
.fs0_c00293{font-size:64.000000pt;}
.y0_c00293{bottom:0.000000pt;}
.y2_c00293{bottom:41.627067pt;}
.y1_c00293{bottom:60.027067pt;}
.y23_c00293{bottom:159.227067pt;}
.y22_c00293{bottom:186.827067pt;}
.y21_c00293{bottom:214.427067pt;}
.y20_c00293{bottom:242.027067pt;}
.y1f_c00293{bottom:269.627067pt;}
.y1e_c00293{bottom:297.227067pt;}
.y1d_c00293{bottom:324.827067pt;}
.y1c_c00293{bottom:352.347067pt;}
.y1b_c00293{bottom:379.947067pt;}
.y1a_c00293{bottom:407.547067pt;}
.y19_c00293{bottom:435.147067pt;}
.y18_c00293{bottom:453.547067pt;}
.y17_c00293{bottom:471.947067pt;}
.y16_c00293{bottom:490.347067pt;}
.y15_c00293{bottom:508.747067pt;}
.y14_c00293{bottom:527.147067pt;}
.y13_c00293{bottom:545.547067pt;}
.y12_c00293{bottom:563.947067pt;}
.y11_c00293{bottom:582.347067pt;}
.y10_c00293{bottom:600.747067pt;}
.yf_c00293{bottom:636.347067pt;}
.ye_c00293{bottom:663.947067pt;}
.yd_c00293{bottom:691.547067pt;}
.yc_c00293{bottom:719.147067pt;}
.yb_c00293{bottom:754.747067pt;}
.ya_c00293{bottom:782.347067pt;}
.y9_c00293{bottom:809.947067pt;}
.y8_c00293{bottom:837.547067pt;}
.y7_c00293{bottom:865.147067pt;}
.y6_c00293{bottom:892.747067pt;}
.y5_c00293{bottom:920.347067pt;}
.y4_c00293{bottom:947.947067pt;}
.y3_c00293{bottom:975.547067pt;}
.h1_c00293{height:56.156250pt;}
.h2_c00293{height:57.375000pt;}
.h0_c00293{height:1122.666667pt;}
.w1_c00293{width:793.333333pt;}
.w0_c00293{width:793.626667pt;}
.x0_c00293{left:0.000000pt;}
.x2_c00293{left:113.440000pt;}
.x3_c00293{left:132.400000pt;}
.x1_c00293{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9522c9218327caeccf8fa52b.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.093262;font-style:normal;font-weight:normal;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_bad2892454782631e081301c.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.106934;font-style:normal;font-weight:normal;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_8a7ff13518e58baf518175d2.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00294{letter-spacing:-0.086400px;}
.lsf_c00294{letter-spacing:-0.079200px;}
.lsc_c00294{letter-spacing:-0.072000px;}
.ls7_c00294{letter-spacing:-0.064800px;}
.lse_c00294{letter-spacing:-0.057600px;}
.ls6_c00294{letter-spacing:-0.050400px;}
.ls8_c00294{letter-spacing:-0.043200px;}
.ls4_c00294{letter-spacing:-0.036000px;}
.ls5_c00294{letter-spacing:-0.028800px;}
.lsb_c00294{letter-spacing:-0.021600px;}
.lsa_c00294{letter-spacing:-0.014400px;}
.ls9_c00294{letter-spacing:-0.007200px;}
.ls3_c00294{letter-spacing:0.000000px;}
.ls2_c00294{letter-spacing:0.007200px;}
.ls1_c00294{letter-spacing:0.014400px;}
.ls0_c00294{letter-spacing:0.093600px;}
.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;}
}
.ws24_c00294{word-spacing:-4.132800px;}
.ws5_c00294{word-spacing:-4.118400px;}
.ws23_c00294{word-spacing:-4.111200px;}
.ws4_c00294{word-spacing:-4.096800px;}
.ws36_c00294{word-spacing:-3.412800px;}
.ws35_c00294{word-spacing:-3.362400px;}
.ws15_c00294{word-spacing:-3.240000px;}
.ws14_c00294{word-spacing:-3.132000px;}
.ws13_c00294{word-spacing:-3.060000px;}
.ws2b_c00294{word-spacing:-3.038400px;}
.ws11_c00294{word-spacing:-1.620000px;}
.ws12_c00294{word-spacing:-1.612800px;}
.ws2c_c00294{word-spacing:-0.712800px;}
.ws2d_c00294{word-spacing:-0.511200px;}
.wsa_c00294{word-spacing:-0.129600px;}
.wsb_c00294{word-spacing:-0.115200px;}
.ws0_c00294{word-spacing:0.000000px;}
.ws22_c00294{word-spacing:0.172800px;}
.ws9_c00294{word-spacing:0.417600px;}
.wsd_c00294{word-spacing:0.489600px;}
.ws8_c00294{word-spacing:0.554400px;}
.wsc_c00294{word-spacing:0.576000px;}
.ws1b_c00294{word-spacing:1.612800px;}
.ws1c_c00294{word-spacing:1.634400px;}
.ws1d_c00294{word-spacing:1.980000px;}
.ws1e_c00294{word-spacing:1.994400px;}
.ws1f_c00294{word-spacing:2.037600px;}
.ws6_c00294{word-spacing:2.620800px;}
.ws7_c00294{word-spacing:2.692800px;}
.ws3_c00294{word-spacing:3.067200px;}
.ws30_c00294{word-spacing:3.074400px;}
.ws2_c00294{word-spacing:3.088800px;}
.ws10_c00294{word-spacing:4.161600px;}
.ws34_c00294{word-spacing:4.471200px;}
.ws33_c00294{word-spacing:4.600800px;}
.ws1a_c00294{word-spacing:4.824000px;}
.ws19_c00294{word-spacing:4.874400px;}
.wse_c00294{word-spacing:6.314400px;}
.wsf_c00294{word-spacing:6.336000px;}
.ws18_c00294{word-spacing:8.085600px;}
.ws17_c00294{word-spacing:8.179200px;}
.ws2a_c00294{word-spacing:13.111200px;}
.ws29_c00294{word-spacing:13.161600px;}
.ws2f_c00294{word-spacing:14.558400px;}
.ws2e_c00294{word-spacing:14.580000px;}
.ws20_c00294{word-spacing:14.587200px;}
.ws21_c00294{word-spacing:14.623200px;}
.ws32_c00294{word-spacing:17.373600px;}
.ws31_c00294{word-spacing:17.654400px;}
.ws16_c00294{word-spacing:17.820000px;}
.ws28_c00294{word-spacing:21.758400px;}
.ws26_c00294{word-spacing:21.823200px;}
.ws27_c00294{word-spacing:21.988800px;}
.ws1_c00294{word-spacing:23.234400px;}
.ws25_c00294{word-spacing:27.576000px;}
._1_c00294{margin-left:-1.008000px;}
._0_c00294{width:1.080000px;}
.fc0_c00294{color:rgb(0,0,0);}
.fs0_c00294{font-size:72.000000px;}
.y0_c00294{bottom:0.000000px;}
.y2_c00294{bottom:46.830450px;}
.y1_c00294{bottom:67.530450px;}
.y20_c00294{bottom:179.130450px;}
.y1f_c00294{bottom:210.180450px;}
.y1e_c00294{bottom:241.230450px;}
.y1d_c00294{bottom:272.280450px;}
.y1c_c00294{bottom:303.330450px;}
.y1b_c00294{bottom:334.380450px;}
.y1a_c00294{bottom:365.430450px;}
.y19_c00294{bottom:396.390450px;}
.y18_c00294{bottom:427.440450px;}
.y17_c00294{bottom:458.490450px;}
.y16_c00294{bottom:489.540450px;}
.y15_c00294{bottom:529.590450px;}
.y14_c00294{bottom:560.640450px;}
.y13_c00294{bottom:591.690450px;}
.y12_c00294{bottom:622.740450px;}
.y11_c00294{bottom:653.790450px;}
.y10_c00294{bottom:684.840450px;}
.yf_c00294{bottom:715.890450px;}
.ye_c00294{bottom:746.940450px;}
.yd_c00294{bottom:777.990450px;}
.yc_c00294{bottom:809.040450px;}
.yb_c00294{bottom:840.090450px;}
.ya_c00294{bottom:880.140450px;}
.y9_c00294{bottom:911.190450px;}
.y8_c00294{bottom:942.240450px;}
.y7_c00294{bottom:973.290450px;}
.y6_c00294{bottom:1004.340450px;}
.y5_c00294{bottom:1035.390450px;}
.y4_c00294{bottom:1066.440450px;}
.y3_c00294{bottom:1097.490450px;}
.h1_c00294{height:63.175781px;}
.h2_c00294{height:64.546875px;}
.h3_c00294{height:75.093750px;}
.h0_c00294{height:1263.000000px;}
.w1_c00294{width:892.500000px;}
.w0_c00294{width:892.830000px;}
.x0_c00294{left:0.000000px;}
.x2_c00294{left:170.100000px;}
.x1_c00294{left:738.360000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.lsd_c00294{letter-spacing:-0.076800pt;}
.lsf_c00294{letter-spacing:-0.070400pt;}
.lsc_c00294{letter-spacing:-0.064000pt;}
.ls7_c00294{letter-spacing:-0.057600pt;}
.lse_c00294{letter-spacing:-0.051200pt;}
.ls6_c00294{letter-spacing:-0.044800pt;}
.ls8_c00294{letter-spacing:-0.038400pt;}
.ls4_c00294{letter-spacing:-0.032000pt;}
.ls5_c00294{letter-spacing:-0.025600pt;}
.lsb_c00294{letter-spacing:-0.019200pt;}
.lsa_c00294{letter-spacing:-0.012800pt;}
.ls9_c00294{letter-spacing:-0.006400pt;}
.ls3_c00294{letter-spacing:0.000000pt;}
.ls2_c00294{letter-spacing:0.006400pt;}
.ls1_c00294{letter-spacing:0.012800pt;}
.ls0_c00294{letter-spacing:0.083200pt;}
.ws24_c00294{word-spacing:-3.673600pt;}
.ws5_c00294{word-spacing:-3.660800pt;}
.ws23_c00294{word-spacing:-3.654400pt;}
.ws4_c00294{word-spacing:-3.641600pt;}
.ws36_c00294{word-spacing:-3.033600pt;}
.ws35_c00294{word-spacing:-2.988800pt;}
.ws15_c00294{word-spacing:-2.880000pt;}
.ws14_c00294{word-spacing:-2.784000pt;}
.ws13_c00294{word-spacing:-2.720000pt;}
.ws2b_c00294{word-spacing:-2.700800pt;}
.ws11_c00294{word-spacing:-1.440000pt;}
.ws12_c00294{word-spacing:-1.433600pt;}
.ws2c_c00294{word-spacing:-0.633600pt;}
.ws2d_c00294{word-spacing:-0.454400pt;}
.wsa_c00294{word-spacing:-0.115200pt;}
.wsb_c00294{word-spacing:-0.102400pt;}
.ws0_c00294{word-spacing:0.000000pt;}
.ws22_c00294{word-spacing:0.153600pt;}
.ws9_c00294{word-spacing:0.371200pt;}
.wsd_c00294{word-spacing:0.435200pt;}
.ws8_c00294{word-spacing:0.492800pt;}
.wsc_c00294{word-spacing:0.512000pt;}
.ws1b_c00294{word-spacing:1.433600pt;}
.ws1c_c00294{word-spacing:1.452800pt;}
.ws1d_c00294{word-spacing:1.760000pt;}
.ws1e_c00294{word-spacing:1.772800pt;}
.ws1f_c00294{word-spacing:1.811200pt;}
.ws6_c00294{word-spacing:2.329600pt;}
.ws7_c00294{word-spacing:2.393600pt;}
.ws3_c00294{word-spacing:2.726400pt;}
.ws30_c00294{word-spacing:2.732800pt;}
.ws2_c00294{word-spacing:2.745600pt;}
.ws10_c00294{word-spacing:3.699200pt;}
.ws34_c00294{word-spacing:3.974400pt;}
.ws33_c00294{word-spacing:4.089600pt;}
.ws1a_c00294{word-spacing:4.288000pt;}
.ws19_c00294{word-spacing:4.332800pt;}
.wse_c00294{word-spacing:5.612800pt;}
.wsf_c00294{word-spacing:5.632000pt;}
.ws18_c00294{word-spacing:7.187200pt;}
.ws17_c00294{word-spacing:7.270400pt;}
.ws2a_c00294{word-spacing:11.654400pt;}
.ws29_c00294{word-spacing:11.699200pt;}
.ws2f_c00294{word-spacing:12.940800pt;}
.ws2e_c00294{word-spacing:12.960000pt;}
.ws20_c00294{word-spacing:12.966400pt;}
.ws21_c00294{word-spacing:12.998400pt;}
.ws32_c00294{word-spacing:15.443200pt;}
.ws31_c00294{word-spacing:15.692800pt;}
.ws16_c00294{word-spacing:15.840000pt;}
.ws28_c00294{word-spacing:19.340800pt;}
.ws26_c00294{word-spacing:19.398400pt;}
.ws27_c00294{word-spacing:19.545600pt;}
.ws1_c00294{word-spacing:20.652800pt;}
.ws25_c00294{word-spacing:24.512000pt;}
._1_c00294{margin-left:-0.896000pt;}
._0_c00294{width:0.960000pt;}
.fs0_c00294{font-size:64.000000pt;}
.y0_c00294{bottom:0.000000pt;}
.y2_c00294{bottom:41.627067pt;}
.y1_c00294{bottom:60.027067pt;}
.y20_c00294{bottom:159.227067pt;}
.y1f_c00294{bottom:186.827067pt;}
.y1e_c00294{bottom:214.427067pt;}
.y1d_c00294{bottom:242.027067pt;}
.y1c_c00294{bottom:269.627067pt;}
.y1b_c00294{bottom:297.227067pt;}
.y1a_c00294{bottom:324.827067pt;}
.y19_c00294{bottom:352.347067pt;}
.y18_c00294{bottom:379.947067pt;}
.y17_c00294{bottom:407.547067pt;}
.y16_c00294{bottom:435.147067pt;}
.y15_c00294{bottom:470.747067pt;}
.y14_c00294{bottom:498.347067pt;}
.y13_c00294{bottom:525.947067pt;}
.y12_c00294{bottom:553.547067pt;}
.y11_c00294{bottom:581.147067pt;}
.y10_c00294{bottom:608.747067pt;}
.yf_c00294{bottom:636.347067pt;}
.ye_c00294{bottom:663.947067pt;}
.yd_c00294{bottom:691.547067pt;}
.yc_c00294{bottom:719.147067pt;}
.yb_c00294{bottom:746.747067pt;}
.ya_c00294{bottom:782.347067pt;}
.y9_c00294{bottom:809.947067pt;}
.y8_c00294{bottom:837.547067pt;}
.y7_c00294{bottom:865.147067pt;}
.y6_c00294{bottom:892.747067pt;}
.y5_c00294{bottom:920.347067pt;}
.y4_c00294{bottom:947.947067pt;}
.y3_c00294{bottom:975.547067pt;}
.h1_c00294{height:56.156250pt;}
.h2_c00294{height:57.375000pt;}
.h3_c00294{height:66.750000pt;}
.h0_c00294{height:1122.666667pt;}
.w1_c00294{width:793.333333pt;}
.w0_c00294{width:793.626667pt;}
.x0_c00294{left:0.000000pt;}
.x2_c00294{left:151.200000pt;}
.x1_c00294{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_de4934a0334b1b10245f421e.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.093262;font-style:normal;font-weight:normal;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_5e23708c8714a9a09b116a50.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.106934;font-style:normal;font-weight:normal;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_6956385c1be1dbd3584b946e.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00295{letter-spacing:-0.079200px;}
.ls5_c00295{letter-spacing:-0.064800px;}
.ls2_c00295{letter-spacing:-0.057600px;}
.lsb_c00295{letter-spacing:-0.050400px;}
.ls6_c00295{letter-spacing:-0.043200px;}
.ls9_c00295{letter-spacing:-0.036000px;}
.ls4_c00295{letter-spacing:-0.028800px;}
.lsa_c00295{letter-spacing:-0.021600px;}
.lsd_c00295{letter-spacing:-0.014400px;}
.lse_c00295{letter-spacing:-0.007200px;}
.ls1_c00295{letter-spacing:0.000000px;}
.ls0_c00295{letter-spacing:0.007200px;}
.ls3_c00295{letter-spacing:0.028800px;}
.ls8_c00295{letter-spacing:0.036000px;}
.ls7_c00295{letter-spacing:0.064800px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00295{word-spacing:-19.987200px;}
.wsf_c00295{word-spacing:-4.608000px;}
.ws10_c00295{word-spacing:-4.536000px;}
.ws11_c00295{word-spacing:-4.492800px;}
.ws15_c00295{word-spacing:-3.765600px;}
.ws14_c00295{word-spacing:-3.751200px;}
.ws29_c00295{word-spacing:-3.679200px;}
.ws16_c00295{word-spacing:-3.398400px;}
.ws17_c00295{word-spacing:-3.362400px;}
.wsa_c00295{word-spacing:-2.340000px;}
.ws9_c00295{word-spacing:-2.325600px;}
.ws13_c00295{word-spacing:-1.735200px;}
.ws12_c00295{word-spacing:-1.605600px;}
.ws2c_c00295{word-spacing:-1.231200px;}
.ws2a_c00295{word-spacing:-0.576000px;}
.ws2b_c00295{word-spacing:-0.532800px;}
.ws1_c00295{word-spacing:0.000000px;}
.ws2e_c00295{word-spacing:0.043200px;}
.ws2d_c00295{word-spacing:0.151200px;}
.ws1c_c00295{word-spacing:0.180000px;}
.wsd_c00295{word-spacing:0.417600px;}
.wsb_c00295{word-spacing:0.468000px;}
.wsc_c00295{word-spacing:0.554400px;}
.ws22_c00295{word-spacing:0.900000px;}
.ws21_c00295{word-spacing:1.051200px;}
.ws1e_c00295{word-spacing:2.678400px;}
.ws1d_c00295{word-spacing:2.779200px;}
.ws24_c00295{word-spacing:3.348000px;}
.ws23_c00295{word-spacing:3.456000px;}
.ws1a_c00295{word-spacing:3.664800px;}
.ws1b_c00295{word-spacing:3.715200px;}
.ws20_c00295{word-spacing:4.456800px;}
.ws1f_c00295{word-spacing:4.536000px;}
.ws3_c00295{word-spacing:7.747200px;}
.ws4_c00295{word-spacing:7.783200px;}
.ws8_c00295{word-spacing:8.733600px;}
.wse_c00295{word-spacing:9.208800px;}
.ws7_c00295{word-spacing:9.216000px;}
.ws26_c00295{word-spacing:15.991200px;}
.ws25_c00295{word-spacing:16.012800px;}
.ws19_c00295{word-spacing:20.332800px;}
.ws18_c00295{word-spacing:20.419200px;}
.ws27_c00295{word-spacing:20.671200px;}
.ws28_c00295{word-spacing:20.757600px;}
.ws2_c00295{word-spacing:30.816000px;}
.ws6_c00295{word-spacing:31.507200px;}
.ws5_c00295{word-spacing:31.701600px;}
._0_c00295{width:1.339200px;}
.fc0_c00295{color:rgb(0,0,0);}
.fs0_c00295{font-size:72.000000px;}
.y0_c00295{bottom:0.000000px;}
.y2_c00295{bottom:46.830450px;}
.y1_c00295{bottom:67.530450px;}
.y1d_c00295{bottom:254.280450px;}
.y1c_c00295{bottom:285.240450px;}
.y1b_c00295{bottom:316.380450px;}
.y1a_c00295{bottom:347.340450px;}
.y19_c00295{bottom:378.390450px;}
.y18_c00295{bottom:418.440450px;}
.y17_c00295{bottom:449.490450px;}
.y16_c00295{bottom:480.540450px;}
.y15_c00295{bottom:511.590450px;}
.y14_c00295{bottom:542.640450px;}
.y13_c00295{bottom:573.690450px;}
.y12_c00295{bottom:613.740450px;}
.y11_c00295{bottom:644.790450px;}
.y10_c00295{bottom:675.840450px;}
.yf_c00295{bottom:706.890450px;}
.ye_c00295{bottom:737.940450px;}
.yd_c00295{bottom:768.990450px;}
.yc_c00295{bottom:800.040450px;}
.yb_c00295{bottom:831.090450px;}
.ya_c00295{bottom:862.140450px;}
.y9_c00295{bottom:893.190450px;}
.y8_c00295{bottom:933.240450px;}
.y7_c00295{bottom:964.290450px;}
.y6_c00295{bottom:995.250450px;}
.y5_c00295{bottom:1026.390450px;}
.y4_c00295{bottom:1066.440450px;}
.y3_c00295{bottom:1097.490450px;}
.h1_c00295{height:63.175781px;}
.h2_c00295{height:64.546875px;}
.h3_c00295{height:75.093750px;}
.h0_c00295{height:1263.000000px;}
.w1_c00295{width:892.500000px;}
.w0_c00295{width:892.830000px;}
.x0_c00295{left:0.000000px;}
.x2_c00295{left:127.620000px;}
.x1_c00295{left:695.880000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.lsc_c00295{letter-spacing:-0.070400pt;}
.ls5_c00295{letter-spacing:-0.057600pt;}
.ls2_c00295{letter-spacing:-0.051200pt;}
.lsb_c00295{letter-spacing:-0.044800pt;}
.ls6_c00295{letter-spacing:-0.038400pt;}
.ls9_c00295{letter-spacing:-0.032000pt;}
.ls4_c00295{letter-spacing:-0.025600pt;}
.lsa_c00295{letter-spacing:-0.019200pt;}
.lsd_c00295{letter-spacing:-0.012800pt;}
.lse_c00295{letter-spacing:-0.006400pt;}
.ls1_c00295{letter-spacing:0.000000pt;}
.ls0_c00295{letter-spacing:0.006400pt;}
.ls3_c00295{letter-spacing:0.025600pt;}
.ls8_c00295{letter-spacing:0.032000pt;}
.ls7_c00295{letter-spacing:0.057600pt;}
.ws0_c00295{word-spacing:-17.766400pt;}
.wsf_c00295{word-spacing:-4.096000pt;}
.ws10_c00295{word-spacing:-4.032000pt;}
.ws11_c00295{word-spacing:-3.993600pt;}
.ws15_c00295{word-spacing:-3.347200pt;}
.ws14_c00295{word-spacing:-3.334400pt;}
.ws29_c00295{word-spacing:-3.270400pt;}
.ws16_c00295{word-spacing:-3.020800pt;}
.ws17_c00295{word-spacing:-2.988800pt;}
.wsa_c00295{word-spacing:-2.080000pt;}
.ws9_c00295{word-spacing:-2.067200pt;}
.ws13_c00295{word-spacing:-1.542400pt;}
.ws12_c00295{word-spacing:-1.427200pt;}
.ws2c_c00295{word-spacing:-1.094400pt;}
.ws2a_c00295{word-spacing:-0.512000pt;}
.ws2b_c00295{word-spacing:-0.473600pt;}
.ws1_c00295{word-spacing:0.000000pt;}
.ws2e_c00295{word-spacing:0.038400pt;}
.ws2d_c00295{word-spacing:0.134400pt;}
.ws1c_c00295{word-spacing:0.160000pt;}
.wsd_c00295{word-spacing:0.371200pt;}
.wsb_c00295{word-spacing:0.416000pt;}
.wsc_c00295{word-spacing:0.492800pt;}
.ws22_c00295{word-spacing:0.800000pt;}
.ws21_c00295{word-spacing:0.934400pt;}
.ws1e_c00295{word-spacing:2.380800pt;}
.ws1d_c00295{word-spacing:2.470400pt;}
.ws24_c00295{word-spacing:2.976000pt;}
.ws23_c00295{word-spacing:3.072000pt;}
.ws1a_c00295{word-spacing:3.257600pt;}
.ws1b_c00295{word-spacing:3.302400pt;}
.ws20_c00295{word-spacing:3.961600pt;}
.ws1f_c00295{word-spacing:4.032000pt;}
.ws3_c00295{word-spacing:6.886400pt;}
.ws4_c00295{word-spacing:6.918400pt;}
.ws8_c00295{word-spacing:7.763200pt;}
.wse_c00295{word-spacing:8.185600pt;}
.ws7_c00295{word-spacing:8.192000pt;}
.ws26_c00295{word-spacing:14.214400pt;}
.ws25_c00295{word-spacing:14.233600pt;}
.ws19_c00295{word-spacing:18.073600pt;}
.ws18_c00295{word-spacing:18.150400pt;}
.ws27_c00295{word-spacing:18.374400pt;}
.ws28_c00295{word-spacing:18.451200pt;}
.ws2_c00295{word-spacing:27.392000pt;}
.ws6_c00295{word-spacing:28.006400pt;}
.ws5_c00295{word-spacing:28.179200pt;}
._0_c00295{width:1.190400pt;}
.fs0_c00295{font-size:64.000000pt;}
.y0_c00295{bottom:0.000000pt;}
.y2_c00295{bottom:41.627067pt;}
.y1_c00295{bottom:60.027067pt;}
.y1d_c00295{bottom:226.027067pt;}
.y1c_c00295{bottom:253.547067pt;}
.y1b_c00295{bottom:281.227067pt;}
.y1a_c00295{bottom:308.747067pt;}
.y19_c00295{bottom:336.347067pt;}
.y18_c00295{bottom:371.947067pt;}
.y17_c00295{bottom:399.547067pt;}
.y16_c00295{bottom:427.147067pt;}
.y15_c00295{bottom:454.747067pt;}
.y14_c00295{bottom:482.347067pt;}
.y13_c00295{bottom:509.947067pt;}
.y12_c00295{bottom:545.547067pt;}
.y11_c00295{bottom:573.147067pt;}
.y10_c00295{bottom:600.747067pt;}
.yf_c00295{bottom:628.347067pt;}
.ye_c00295{bottom:655.947067pt;}
.yd_c00295{bottom:683.547067pt;}
.yc_c00295{bottom:711.147067pt;}
.yb_c00295{bottom:738.747067pt;}
.ya_c00295{bottom:766.347067pt;}
.y9_c00295{bottom:793.947067pt;}
.y8_c00295{bottom:829.547067pt;}
.y7_c00295{bottom:857.147067pt;}
.y6_c00295{bottom:884.667067pt;}
.y5_c00295{bottom:912.347067pt;}
.y4_c00295{bottom:947.947067pt;}
.y3_c00295{bottom:975.547067pt;}
.h1_c00295{height:56.156250pt;}
.h2_c00295{height:57.375000pt;}
.h3_c00295{height:66.750000pt;}
.h0_c00295{height:1122.666667pt;}
.w1_c00295{width:793.333333pt;}
.w0_c00295{width:793.626667pt;}
.x0_c00295{left:0.000000pt;}
.x2_c00295{left:113.440000pt;}
.x1_c00295{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d10887d9140077ea897fbde4.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.093262;font-style:normal;font-weight:normal;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_a71e0de5f3209da794c798a3.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00296;src:url('chunks/assets/font_f35978ce0bfa6696c6cd6012.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:1.106934;font-style:normal;font-weight:normal;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_41dda3f30de5c4d401599938.woff2')format("woff");}.ff4_c00296{font-family:ff4_c00296;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsf_c00296{letter-spacing:-0.100800px;}
.ls11_c00296{letter-spacing:-0.079200px;}
.lse_c00296{letter-spacing:-0.072000px;}
.lsa_c00296{letter-spacing:-0.064800px;}
.ls10_c00296{letter-spacing:-0.057600px;}
.ls5_c00296{letter-spacing:-0.050400px;}
.lsc_c00296{letter-spacing:-0.043200px;}
.ls6_c00296{letter-spacing:-0.036000px;}
.ls9_c00296{letter-spacing:-0.028800px;}
.lsd_c00296{letter-spacing:-0.021600px;}
.ls8_c00296{letter-spacing:-0.014400px;}
.lsb_c00296{letter-spacing:-0.007200px;}
.ls4_c00296{letter-spacing:0.000000px;}
.ls7_c00296{letter-spacing:0.007200px;}
.ls1_c00296{letter-spacing:0.021600px;}
.ls3_c00296{letter-spacing:0.028800px;}
.ls0_c00296{letter-spacing:0.067104px;}
.ls2_c00296{letter-spacing:0.144000px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00296{word-spacing:-19.915200px;}
.ws9_c00296{word-spacing:-4.132800px;}
.wsa_c00296{word-spacing:-4.039200px;}
.ws10_c00296{word-spacing:-1.648800px;}
.ws27_c00296{word-spacing:-1.627200px;}
.wsf_c00296{word-spacing:-1.598400px;}
.ws25_c00296{word-spacing:-1.533600px;}
.ws26_c00296{word-spacing:-1.512000px;}
.ws31_c00296{word-spacing:-1.288800px;}
.ws30_c00296{word-spacing:-1.274400px;}
.wse_c00296{word-spacing:-0.662400px;}
.wsd_c00296{word-spacing:-0.532800px;}
.ws1_c00296{word-spacing:0.000000px;}
.ws2_c00296{word-spacing:0.025164px;}
.ws18_c00296{word-spacing:0.187200px;}
.ws36_c00296{word-spacing:0.194400px;}
.ws28_c00296{word-spacing:0.900000px;}
.ws2c_c00296{word-spacing:1.533600px;}
.ws2d_c00296{word-spacing:1.656000px;}
.ws1e_c00296{word-spacing:2.628000px;}
.ws17_c00296{word-spacing:2.649600px;}
.wsc_c00296{word-spacing:2.685600px;}
.ws16_c00296{word-spacing:2.700000px;}
.ws29_c00296{word-spacing:2.714400px;}
.wsb_c00296{word-spacing:2.851200px;}
.ws39_c00296{word-spacing:2.872800px;}
.ws1c_c00296{word-spacing:3.009600px;}
.ws1d_c00296{word-spacing:3.045600px;}
.ws38_c00296{word-spacing:3.081600px;}
.ws1b_c00296{word-spacing:3.103200px;}
.ws34_c00296{word-spacing:4.442400px;}
.ws35_c00296{word-spacing:4.521600px;}
.ws3_c00296{word-spacing:4.831200px;}
.ws21_c00296{word-spacing:4.845600px;}
.ws4_c00296{word-spacing:4.888800px;}
.ws22_c00296{word-spacing:4.896000px;}
.ws7_c00296{word-spacing:5.212800px;}
.ws8_c00296{word-spacing:5.270400px;}
.ws37_c00296{word-spacing:6.336000px;}
.ws11_c00296{word-spacing:12.736800px;}
.ws12_c00296{word-spacing:12.780000px;}
.ws33_c00296{word-spacing:15.645600px;}
.ws32_c00296{word-spacing:15.717600px;}
.ws1a_c00296{word-spacing:16.380000px;}
.ws19_c00296{word-spacing:16.473600px;}
.ws2b_c00296{word-spacing:17.798400px;}
.ws2a_c00296{word-spacing:17.978400px;}
.ws13_c00296{word-spacing:19.641600px;}
.ws15_c00296{word-spacing:19.670400px;}
.ws14_c00296{word-spacing:19.980000px;}
.ws6_c00296{word-spacing:23.551200px;}
.ws5_c00296{word-spacing:23.594400px;}
.ws20_c00296{word-spacing:23.911200px;}
.ws1f_c00296{word-spacing:23.983200px;}
.ws23_c00296{word-spacing:30.780000px;}
.ws24_c00296{word-spacing:30.837600px;}
.ws2f_c00296{word-spacing:51.660000px;}
.ws2e_c00296{word-spacing:51.681600px;}
._2_c00296{margin-left:-16.272000px;}
._3_c00296{margin-left:-1.303200px;}
._1_c00296{width:1.195200px;}
._0_c00296{width:9.730080px;}
.fc0_c00296{color:rgb(0,0,0);}
.fs0_c00296{font-size:72.000000px;}
.fs1_c00296{font-size:83.880000px;}
.y0_c00296{bottom:0.000000px;}
.y2_c00296{bottom:46.830450px;}
.y1_c00296{bottom:67.530450px;}
.y21_c00296{bottom:136.920450px;}
.y20_c00296{bottom:167.970450px;}
.y1f_c00296{bottom:208.020450px;}
.y1e_c00296{bottom:239.070450px;}
.y1d_c00296{bottom:270.120450px;}
.y1c_c00296{bottom:301.170450px;}
.y1b_c00296{bottom:332.220450px;}
.y1a_c00296{bottom:363.270450px;}
.y19_c00296{bottom:394.320450px;}
.y18_c00296{bottom:425.370450px;}
.y17_c00296{bottom:456.420450px;}
.y16_c00296{bottom:487.470450px;}
.y15_c00296{bottom:518.520450px;}
.y14_c00296{bottom:549.570450px;}
.y13_c00296{bottom:580.620450px;}
.y12_c00296{bottom:611.670450px;}
.y11_c00296{bottom:642.720450px;}
.y10_c00296{bottom:673.770450px;}
.yf_c00296{bottom:713.820450px;}
.ye_c00296{bottom:744.870450px;}
.yd_c00296{bottom:775.920450px;}
.yc_c00296{bottom:806.970450px;}
.yb_c00296{bottom:838.020450px;}
.ya_c00296{bottom:869.070450px;}
.y9_c00296{bottom:900.120450px;}
.y8_c00296{bottom:931.170450px;}
.y7_c00296{bottom:962.220450px;}
.y6_c00296{bottom:993.270450px;}
.y5_c00296{bottom:1024.320450px;}
.y4_c00296{bottom:1064.370450px;}
.y3_c00296{bottom:1094.520450px;}
.h1_c00296{height:63.175781px;}
.h3_c00296{height:64.546875px;}
.h4_c00296{height:75.093750px;}
.h2_c00296{height:87.484219px;}
.h0_c00296{height:1263.000000px;}
.w1_c00296{width:892.500000px;}
.w0_c00296{width:892.830000px;}
.x0_c00296{left:0.000000px;}
.x2_c00296{left:170.100000px;}
.x3_c00296{left:251.100000px;}
.x1_c00296{left:738.360000px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.lsf_c00296{letter-spacing:-0.089600pt;}
.ls11_c00296{letter-spacing:-0.070400pt;}
.lse_c00296{letter-spacing:-0.064000pt;}
.lsa_c00296{letter-spacing:-0.057600pt;}
.ls10_c00296{letter-spacing:-0.051200pt;}
.ls5_c00296{letter-spacing:-0.044800pt;}
.lsc_c00296{letter-spacing:-0.038400pt;}
.ls6_c00296{letter-spacing:-0.032000pt;}
.ls9_c00296{letter-spacing:-0.025600pt;}
.lsd_c00296{letter-spacing:-0.019200pt;}
.ls8_c00296{letter-spacing:-0.012800pt;}
.lsb_c00296{letter-spacing:-0.006400pt;}
.ls4_c00296{letter-spacing:0.000000pt;}
.ls7_c00296{letter-spacing:0.006400pt;}
.ls1_c00296{letter-spacing:0.019200pt;}
.ls3_c00296{letter-spacing:0.025600pt;}
.ls0_c00296{letter-spacing:0.059648pt;}
.ls2_c00296{letter-spacing:0.128000pt;}
.ws0_c00296{word-spacing:-17.702400pt;}
.ws9_c00296{word-spacing:-3.673600pt;}
.wsa_c00296{word-spacing:-3.590400pt;}
.ws10_c00296{word-spacing:-1.465600pt;}
.ws27_c00296{word-spacing:-1.446400pt;}
.wsf_c00296{word-spacing:-1.420800pt;}
.ws25_c00296{word-spacing:-1.363200pt;}
.ws26_c00296{word-spacing:-1.344000pt;}
.ws31_c00296{word-spacing:-1.145600pt;}
.ws30_c00296{word-spacing:-1.132800pt;}
.wse_c00296{word-spacing:-0.588800pt;}
.wsd_c00296{word-spacing:-0.473600pt;}
.ws1_c00296{word-spacing:0.000000pt;}
.ws2_c00296{word-spacing:0.022368pt;}
.ws18_c00296{word-spacing:0.166400pt;}
.ws36_c00296{word-spacing:0.172800pt;}
.ws28_c00296{word-spacing:0.800000pt;}
.ws2c_c00296{word-spacing:1.363200pt;}
.ws2d_c00296{word-spacing:1.472000pt;}
.ws1e_c00296{word-spacing:2.336000pt;}
.ws17_c00296{word-spacing:2.355200pt;}
.wsc_c00296{word-spacing:2.387200pt;}
.ws16_c00296{word-spacing:2.400000pt;}
.ws29_c00296{word-spacing:2.412800pt;}
.wsb_c00296{word-spacing:2.534400pt;}
.ws39_c00296{word-spacing:2.553600pt;}
.ws1c_c00296{word-spacing:2.675200pt;}
.ws1d_c00296{word-spacing:2.707200pt;}
.ws38_c00296{word-spacing:2.739200pt;}
.ws1b_c00296{word-spacing:2.758400pt;}
.ws34_c00296{word-spacing:3.948800pt;}
.ws35_c00296{word-spacing:4.019200pt;}
.ws3_c00296{word-spacing:4.294400pt;}
.ws21_c00296{word-spacing:4.307200pt;}
.ws4_c00296{word-spacing:4.345600pt;}
.ws22_c00296{word-spacing:4.352000pt;}
.ws7_c00296{word-spacing:4.633600pt;}
.ws8_c00296{word-spacing:4.684800pt;}
.ws37_c00296{word-spacing:5.632000pt;}
.ws11_c00296{word-spacing:11.321600pt;}
.ws12_c00296{word-spacing:11.360000pt;}
.ws33_c00296{word-spacing:13.907200pt;}
.ws32_c00296{word-spacing:13.971200pt;}
.ws1a_c00296{word-spacing:14.560000pt;}
.ws19_c00296{word-spacing:14.643200pt;}
.ws2b_c00296{word-spacing:15.820800pt;}
.ws2a_c00296{word-spacing:15.980800pt;}
.ws13_c00296{word-spacing:17.459200pt;}
.ws15_c00296{word-spacing:17.484800pt;}
.ws14_c00296{word-spacing:17.760000pt;}
.ws6_c00296{word-spacing:20.934400pt;}
.ws5_c00296{word-spacing:20.972800pt;}
.ws20_c00296{word-spacing:21.254400pt;}
.ws1f_c00296{word-spacing:21.318400pt;}
.ws23_c00296{word-spacing:27.360000pt;}
.ws24_c00296{word-spacing:27.411200pt;}
.ws2f_c00296{word-spacing:45.920000pt;}
.ws2e_c00296{word-spacing:45.939200pt;}
._2_c00296{margin-left:-14.464000pt;}
._3_c00296{margin-left:-1.158400pt;}
._1_c00296{width:1.062400pt;}
._0_c00296{width:8.648960pt;}
.fs0_c00296{font-size:64.000000pt;}
.fs1_c00296{font-size:74.560000pt;}
.y0_c00296{bottom:0.000000pt;}
.y2_c00296{bottom:41.627067pt;}
.y1_c00296{bottom:60.027067pt;}
.y21_c00296{bottom:121.707067pt;}
.y20_c00296{bottom:149.307067pt;}
.y1f_c00296{bottom:184.907067pt;}
.y1e_c00296{bottom:212.507067pt;}
.y1d_c00296{bottom:240.107067pt;}
.y1c_c00296{bottom:267.707067pt;}
.y1b_c00296{bottom:295.307067pt;}
.y1a_c00296{bottom:322.907067pt;}
.y19_c00296{bottom:350.507067pt;}
.y18_c00296{bottom:378.107067pt;}
.y17_c00296{bottom:405.707067pt;}
.y16_c00296{bottom:433.307067pt;}
.y15_c00296{bottom:460.907067pt;}
.y14_c00296{bottom:488.507067pt;}
.y13_c00296{bottom:516.107067pt;}
.y12_c00296{bottom:543.707067pt;}
.y11_c00296{bottom:571.307067pt;}
.y10_c00296{bottom:598.907067pt;}
.yf_c00296{bottom:634.507067pt;}
.ye_c00296{bottom:662.107067pt;}
.yd_c00296{bottom:689.707067pt;}
.yc_c00296{bottom:717.307067pt;}
.yb_c00296{bottom:744.907067pt;}
.ya_c00296{bottom:772.507067pt;}
.y9_c00296{bottom:800.107067pt;}
.y8_c00296{bottom:827.707067pt;}
.y7_c00296{bottom:855.307067pt;}
.y6_c00296{bottom:882.907067pt;}
.y5_c00296{bottom:910.507067pt;}
.y4_c00296{bottom:946.107067pt;}
.y3_c00296{bottom:972.907067pt;}
.h1_c00296{height:56.156250pt;}
.h3_c00296{height:57.375000pt;}
.h4_c00296{height:66.750000pt;}
.h2_c00296{height:77.763750pt;}
.h0_c00296{height:1122.666667pt;}
.w1_c00296{width:793.333333pt;}
.w0_c00296{width:793.626667pt;}
.x0_c00296{left:0.000000pt;}
.x2_c00296{left:151.200000pt;}
.x3_c00296{left:223.200000pt;}
.x1_c00296{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e85b1b439b54a8fbf50f20be.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.093262;font-style:normal;font-weight:normal;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_3049760a69cfae2ee47a6f22.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.106934;font-style:normal;font-weight:normal;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_6b67462c3b8d25c3608ea03f.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc_c00297{letter-spacing:-0.086400px;}
.ls6_c00297{letter-spacing:-0.072000px;}
.ls9_c00297{letter-spacing:-0.064800px;}
.lsb_c00297{letter-spacing:-0.057600px;}
.ls7_c00297{letter-spacing:-0.050400px;}
.ls2_c00297{letter-spacing:-0.043200px;}
.ls3_c00297{letter-spacing:-0.036000px;}
.ls4_c00297{letter-spacing:-0.028800px;}
.ls1_c00297{letter-spacing:-0.021600px;}
.ls5_c00297{letter-spacing:-0.014400px;}
.ls8_c00297{letter-spacing:-0.007200px;}
.ls0_c00297{letter-spacing:0.000000px;}
.lsa_c00297{letter-spacing:0.007200px;}
.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;}
}
.ws1d_c00297{word-spacing:-3.736800px;}
.ws32_c00297{word-spacing:-3.045600px;}
.ws33_c00297{word-spacing:-2.980800px;}
.ws14_c00297{word-spacing:-2.426400px;}
.ws25_c00297{word-spacing:-2.376000px;}
.ws13_c00297{word-spacing:-2.325600px;}
.ws24_c00297{word-spacing:-2.289600px;}
.ws18_c00297{word-spacing:-2.001600px;}
.ws19_c00297{word-spacing:-1.980000px;}
.ws17_c00297{word-spacing:-1.958400px;}
.ws1b_c00297{word-spacing:-0.489600px;}
.ws0_c00297{word-spacing:0.000000px;}
.ws3e_c00297{word-spacing:0.028800px;}
.ws23_c00297{word-spacing:0.151200px;}
.wse_c00297{word-spacing:0.187200px;}
.ws30_c00297{word-spacing:0.201600px;}
.ws31_c00297{word-spacing:0.208800px;}
.ws1a_c00297{word-spacing:0.280800px;}
.ws3d_c00297{word-spacing:0.388800px;}
.ws34_c00297{word-spacing:0.784800px;}
.ws1f_c00297{word-spacing:0.885600px;}
.ws35_c00297{word-spacing:0.921600px;}
.ws26_c00297{word-spacing:0.928800px;}
.ws1e_c00297{word-spacing:1.015200px;}
.ws2b_c00297{word-spacing:1.684800px;}
.ws15_c00297{word-spacing:2.714400px;}
.ws16_c00297{word-spacing:2.786400px;}
.ws2e_c00297{word-spacing:2.980800px;}
.ws2c_c00297{word-spacing:3.038400px;}
.ws2d_c00297{word-spacing:3.232800px;}
.ws22_c00297{word-spacing:3.765600px;}
.ws4_c00297{word-spacing:3.794400px;}
.ws3_c00297{word-spacing:3.801600px;}
.ws10_c00297{word-spacing:5.205600px;}
.wsf_c00297{word-spacing:5.241600px;}
.ws27_c00297{word-spacing:5.932800px;}
.ws28_c00297{word-spacing:6.012000px;}
.ws1_c00297{word-spacing:7.380000px;}
.ws2_c00297{word-spacing:7.401600px;}
.wsa_c00297{word-spacing:7.624800px;}
.ws9_c00297{word-spacing:7.740000px;}
.wsb_c00297{word-spacing:7.761600px;}
.ws2f_c00297{word-spacing:12.801600px;}
.ws11_c00297{word-spacing:13.435200px;}
.ws12_c00297{word-spacing:13.500000px;}
.ws6_c00297{word-spacing:13.852800px;}
.ws5_c00297{word-spacing:13.939200px;}
.wsd_c00297{word-spacing:15.667200px;}
.wsc_c00297{word-spacing:15.681600px;}
.ws1c_c00297{word-spacing:17.114400px;}
.ws36_c00297{word-spacing:17.812800px;}
.ws37_c00297{word-spacing:17.841600px;}
.ws3b_c00297{word-spacing:18.158400px;}
.ws3c_c00297{word-spacing:18.244800px;}
.ws3a_c00297{word-spacing:18.259200px;}
.ws8_c00297{word-spacing:21.808800px;}
.ws7_c00297{word-spacing:21.830400px;}
.ws39_c00297{word-spacing:31.176000px;}
.ws38_c00297{word-spacing:31.377600px;}
.ws20_c00297{word-spacing:31.507200px;}
.ws21_c00297{word-spacing:31.579200px;}
.ws29_c00297{word-spacing:34.027200px;}
.ws2a_c00297{word-spacing:34.041600px;}
._0_c00297{width:1.310400px;}
.fc0_c00297{color:rgb(0,0,0);}
.fs0_c00297{font-size:72.000000px;}
.y0_c00297{bottom:0.000000px;}
.y2_c00297{bottom:46.830450px;}
.y1_c00297{bottom:67.530450px;}
.y26_c00297{bottom:201.180450px;}
.y25_c00297{bottom:241.230450px;}
.y24_c00297{bottom:261.930450px;}
.y23_c00297{bottom:282.630450px;}
.y22_c00297{bottom:303.330450px;}
.y21_c00297{bottom:324.030450px;}
.y20_c00297{bottom:344.730450px;}
.y1f_c00297{bottom:365.430450px;}
.y1e_c00297{bottom:386.040450px;}
.y1d_c00297{bottom:406.740450px;}
.y1c_c00297{bottom:427.440450px;}
.y1b_c00297{bottom:448.140450px;}
.y1a_c00297{bottom:468.840450px;}
.y19_c00297{bottom:489.540450px;}
.y18_c00297{bottom:510.240450px;}
.y17_c00297{bottom:530.940450px;}
.y16_c00297{bottom:551.640450px;}
.y15_c00297{bottom:572.340450px;}
.y14_c00297{bottom:593.040450px;}
.y13_c00297{bottom:613.740450px;}
.y12_c00297{bottom:634.440450px;}
.y11_c00297{bottom:655.140450px;}
.y10_c00297{bottom:675.840450px;}
.yf_c00297{bottom:715.890450px;}
.ye_c00297{bottom:746.940450px;}
.yd_c00297{bottom:777.990450px;}
.yc_c00297{bottom:809.040450px;}
.yb_c00297{bottom:840.090450px;}
.ya_c00297{bottom:871.140450px;}
.y9_c00297{bottom:911.190450px;}
.y8_c00297{bottom:942.240450px;}
.y7_c00297{bottom:973.290450px;}
.y6_c00297{bottom:1004.340450px;}
.y5_c00297{bottom:1035.390450px;}
.y4_c00297{bottom:1066.440450px;}
.y3_c00297{bottom:1097.490450px;}
.h1_c00297{height:63.175781px;}
.h2_c00297{height:64.546875px;}
.h3_c00297{height:75.093750px;}
.h0_c00297{height:1263.000000px;}
.w1_c00297{width:892.500000px;}
.w0_c00297{width:892.830000px;}
.x0_c00297{left:0.000000px;}
.x2_c00297{left:127.620000px;}
.x3_c00297{left:148.950000px;}
.x1_c00297{left:695.880000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.lsc_c00297{letter-spacing:-0.076800pt;}
.ls6_c00297{letter-spacing:-0.064000pt;}
.ls9_c00297{letter-spacing:-0.057600pt;}
.lsb_c00297{letter-spacing:-0.051200pt;}
.ls7_c00297{letter-spacing:-0.044800pt;}
.ls2_c00297{letter-spacing:-0.038400pt;}
.ls3_c00297{letter-spacing:-0.032000pt;}
.ls4_c00297{letter-spacing:-0.025600pt;}
.ls1_c00297{letter-spacing:-0.019200pt;}
.ls5_c00297{letter-spacing:-0.012800pt;}
.ls8_c00297{letter-spacing:-0.006400pt;}
.ls0_c00297{letter-spacing:0.000000pt;}
.lsa_c00297{letter-spacing:0.006400pt;}
.ws1d_c00297{word-spacing:-3.321600pt;}
.ws32_c00297{word-spacing:-2.707200pt;}
.ws33_c00297{word-spacing:-2.649600pt;}
.ws14_c00297{word-spacing:-2.156800pt;}
.ws25_c00297{word-spacing:-2.112000pt;}
.ws13_c00297{word-spacing:-2.067200pt;}
.ws24_c00297{word-spacing:-2.035200pt;}
.ws18_c00297{word-spacing:-1.779200pt;}
.ws19_c00297{word-spacing:-1.760000pt;}
.ws17_c00297{word-spacing:-1.740800pt;}
.ws1b_c00297{word-spacing:-0.435200pt;}
.ws0_c00297{word-spacing:0.000000pt;}
.ws3e_c00297{word-spacing:0.025600pt;}
.ws23_c00297{word-spacing:0.134400pt;}
.wse_c00297{word-spacing:0.166400pt;}
.ws30_c00297{word-spacing:0.179200pt;}
.ws31_c00297{word-spacing:0.185600pt;}
.ws1a_c00297{word-spacing:0.249600pt;}
.ws3d_c00297{word-spacing:0.345600pt;}
.ws34_c00297{word-spacing:0.697600pt;}
.ws1f_c00297{word-spacing:0.787200pt;}
.ws35_c00297{word-spacing:0.819200pt;}
.ws26_c00297{word-spacing:0.825600pt;}
.ws1e_c00297{word-spacing:0.902400pt;}
.ws2b_c00297{word-spacing:1.497600pt;}
.ws15_c00297{word-spacing:2.412800pt;}
.ws16_c00297{word-spacing:2.476800pt;}
.ws2e_c00297{word-spacing:2.649600pt;}
.ws2c_c00297{word-spacing:2.700800pt;}
.ws2d_c00297{word-spacing:2.873600pt;}
.ws22_c00297{word-spacing:3.347200pt;}
.ws4_c00297{word-spacing:3.372800pt;}
.ws3_c00297{word-spacing:3.379200pt;}
.ws10_c00297{word-spacing:4.627200pt;}
.wsf_c00297{word-spacing:4.659200pt;}
.ws27_c00297{word-spacing:5.273600pt;}
.ws28_c00297{word-spacing:5.344000pt;}
.ws1_c00297{word-spacing:6.560000pt;}
.ws2_c00297{word-spacing:6.579200pt;}
.wsa_c00297{word-spacing:6.777600pt;}
.ws9_c00297{word-spacing:6.880000pt;}
.wsb_c00297{word-spacing:6.899200pt;}
.ws2f_c00297{word-spacing:11.379200pt;}
.ws11_c00297{word-spacing:11.942400pt;}
.ws12_c00297{word-spacing:12.000000pt;}
.ws6_c00297{word-spacing:12.313600pt;}
.ws5_c00297{word-spacing:12.390400pt;}
.wsd_c00297{word-spacing:13.926400pt;}
.wsc_c00297{word-spacing:13.939200pt;}
.ws1c_c00297{word-spacing:15.212800pt;}
.ws36_c00297{word-spacing:15.833600pt;}
.ws37_c00297{word-spacing:15.859200pt;}
.ws3b_c00297{word-spacing:16.140800pt;}
.ws3c_c00297{word-spacing:16.217600pt;}
.ws3a_c00297{word-spacing:16.230400pt;}
.ws8_c00297{word-spacing:19.385600pt;}
.ws7_c00297{word-spacing:19.404800pt;}
.ws39_c00297{word-spacing:27.712000pt;}
.ws38_c00297{word-spacing:27.891200pt;}
.ws20_c00297{word-spacing:28.006400pt;}
.ws21_c00297{word-spacing:28.070400pt;}
.ws29_c00297{word-spacing:30.246400pt;}
.ws2a_c00297{word-spacing:30.259200pt;}
._0_c00297{width:1.164800pt;}
.fs0_c00297{font-size:64.000000pt;}
.y0_c00297{bottom:0.000000pt;}
.y2_c00297{bottom:41.627067pt;}
.y1_c00297{bottom:60.027067pt;}
.y26_c00297{bottom:178.827067pt;}
.y25_c00297{bottom:214.427067pt;}
.y24_c00297{bottom:232.827067pt;}
.y23_c00297{bottom:251.227067pt;}
.y22_c00297{bottom:269.627067pt;}
.y21_c00297{bottom:288.027067pt;}
.y20_c00297{bottom:306.427067pt;}
.y1f_c00297{bottom:324.827067pt;}
.y1e_c00297{bottom:343.147067pt;}
.y1d_c00297{bottom:361.547067pt;}
.y1c_c00297{bottom:379.947067pt;}
.y1b_c00297{bottom:398.347067pt;}
.y1a_c00297{bottom:416.747067pt;}
.y19_c00297{bottom:435.147067pt;}
.y18_c00297{bottom:453.547067pt;}
.y17_c00297{bottom:471.947067pt;}
.y16_c00297{bottom:490.347067pt;}
.y15_c00297{bottom:508.747067pt;}
.y14_c00297{bottom:527.147067pt;}
.y13_c00297{bottom:545.547067pt;}
.y12_c00297{bottom:563.947067pt;}
.y11_c00297{bottom:582.347067pt;}
.y10_c00297{bottom:600.747067pt;}
.yf_c00297{bottom:636.347067pt;}
.ye_c00297{bottom:663.947067pt;}
.yd_c00297{bottom:691.547067pt;}
.yc_c00297{bottom:719.147067pt;}
.yb_c00297{bottom:746.747067pt;}
.ya_c00297{bottom:774.347067pt;}
.y9_c00297{bottom:809.947067pt;}
.y8_c00297{bottom:837.547067pt;}
.y7_c00297{bottom:865.147067pt;}
.y6_c00297{bottom:892.747067pt;}
.y5_c00297{bottom:920.347067pt;}
.y4_c00297{bottom:947.947067pt;}
.y3_c00297{bottom:975.547067pt;}
.h1_c00297{height:56.156250pt;}
.h2_c00297{height:57.375000pt;}
.h3_c00297{height:66.750000pt;}
.h0_c00297{height:1122.666667pt;}
.w1_c00297{width:793.333333pt;}
.w0_c00297{width:793.626667pt;}
.x0_c00297{left:0.000000pt;}
.x2_c00297{left:113.440000pt;}
.x3_c00297{left:132.400000pt;}
.x1_c00297{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2fa2b86a0003f6ddf2c8cd37.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.093262;font-style:normal;font-weight:normal;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_6563b24554ab9af331aa5d1f.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls7_c00298{letter-spacing:-0.072000px;}
.ls4_c00298{letter-spacing:-0.064800px;}
.ls2_c00298{letter-spacing:-0.043200px;}
.ls5_c00298{letter-spacing:-0.036000px;}
.ls1_c00298{letter-spacing:-0.028800px;}
.ls3_c00298{letter-spacing:-0.021600px;}
.ls6_c00298{letter-spacing:-0.014400px;}
.ls0_c00298{letter-spacing:0.000000px;}
.ls8_c00298{letter-spacing:843.998400px;}
.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;}
}
.ws2_c00298{word-spacing:-3.844800px;}
.ws1_c00298{word-spacing:-3.772800px;}
.ws0_c00298{word-spacing:0.000000px;}
.wsc_c00298{word-spacing:0.144000px;}
.ws7_c00298{word-spacing:0.194400px;}
.ws3_c00298{word-spacing:0.900000px;}
.ws6_c00298{word-spacing:2.318400px;}
.ws5_c00298{word-spacing:2.340000px;}
.ws4_c00298{word-spacing:13.543200px;}
.wsa_c00298{word-spacing:26.474400px;}
.wsb_c00298{word-spacing:26.690400px;}
.ws9_c00298{word-spacing:30.772800px;}
.ws8_c00298{word-spacing:46.267200px;}
._0_c00298{width:1.008000px;}
.fc0_c00298{color:rgb(0,0,0);}
.fs0_c00298{font-size:72.000000px;}
.y0_c00298{bottom:0.000000px;}
.y2_c00298{bottom:46.830450px;}
.y1_c00298{bottom:67.530450px;}
.yc_c00298{bottom:809.040450px;}
.yb_c00298{bottom:849.090450px;}
.ya_c00298{bottom:880.140450px;}
.y9_c00298{bottom:911.190450px;}
.y8_c00298{bottom:942.240450px;}
.y7_c00298{bottom:973.290450px;}
.y6_c00298{bottom:1004.340450px;}
.y5_c00298{bottom:1035.390450px;}
.y4_c00298{bottom:1066.440450px;}
.y3_c00298{bottom:1097.490450px;}
.h1_c00298{height:63.175781px;}
.h2_c00298{height:64.546875px;}
.h0_c00298{height:1263.000000px;}
.w1_c00298{width:892.500000px;}
.w0_c00298{width:892.830000px;}
.x0_c00298{left:0.000000px;}
.x2_c00298{left:170.100000px;}
.x1_c00298{left:738.360000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls7_c00298{letter-spacing:-0.064000pt;}
.ls4_c00298{letter-spacing:-0.057600pt;}
.ls2_c00298{letter-spacing:-0.038400pt;}
.ls5_c00298{letter-spacing:-0.032000pt;}
.ls1_c00298{letter-spacing:-0.025600pt;}
.ls3_c00298{letter-spacing:-0.019200pt;}
.ls6_c00298{letter-spacing:-0.012800pt;}
.ls0_c00298{letter-spacing:0.000000pt;}
.ls8_c00298{letter-spacing:750.220800pt;}
.ws2_c00298{word-spacing:-3.417600pt;}
.ws1_c00298{word-spacing:-3.353600pt;}
.ws0_c00298{word-spacing:0.000000pt;}
.wsc_c00298{word-spacing:0.128000pt;}
.ws7_c00298{word-spacing:0.172800pt;}
.ws3_c00298{word-spacing:0.800000pt;}
.ws6_c00298{word-spacing:2.060800pt;}
.ws5_c00298{word-spacing:2.080000pt;}
.ws4_c00298{word-spacing:12.038400pt;}
.wsa_c00298{word-spacing:23.532800pt;}
.wsb_c00298{word-spacing:23.724800pt;}
.ws9_c00298{word-spacing:27.353600pt;}
.ws8_c00298{word-spacing:41.126400pt;}
._0_c00298{width:0.896000pt;}
.fs0_c00298{font-size:64.000000pt;}
.y0_c00298{bottom:0.000000pt;}
.y2_c00298{bottom:41.627067pt;}
.y1_c00298{bottom:60.027067pt;}
.yc_c00298{bottom:719.147067pt;}
.yb_c00298{bottom:754.747067pt;}
.ya_c00298{bottom:782.347067pt;}
.y9_c00298{bottom:809.947067pt;}
.y8_c00298{bottom:837.547067pt;}
.y7_c00298{bottom:865.147067pt;}
.y6_c00298{bottom:892.747067pt;}
.y5_c00298{bottom:920.347067pt;}
.y4_c00298{bottom:947.947067pt;}
.y3_c00298{bottom:975.547067pt;}
.h1_c00298{height:56.156250pt;}
.h2_c00298{height:57.375000pt;}
.h0_c00298{height:1122.666667pt;}
.w1_c00298{width:793.333333pt;}
.w0_c00298{width:793.626667pt;}
.x0_c00298{left:0.000000pt;}
.x2_c00298{left:151.200000pt;}
.x1_c00298{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e58b3aef61f80cd8dc2ef10b.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00299{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.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;}
}
.ws0_c00299{word-spacing:0.000000px;}
.fc0_c00299{color:rgb(0,0,0);}
.fs0_c00299{font-size:72.000000px;}
.y0_c00299{bottom:0.000000px;}
.y2_c00299{bottom:46.830450px;}
.y1_c00299{bottom:67.530450px;}
.y3_c00299{bottom:1097.490450px;}
.h1_c00299{height:63.175781px;}
.h2_c00299{height:64.546875px;}
.h0_c00299{height:1263.000000px;}
.w1_c00299{width:892.500000px;}
.w0_c00299{width:892.830000px;}
.x0_c00299{left:0.000000px;}
.x2_c00299{left:127.620000px;}
.x1_c00299{left:695.880000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls0_c00299{letter-spacing:0.000000pt;}
.ws0_c00299{word-spacing:0.000000pt;}
.fs0_c00299{font-size:64.000000pt;}
.y0_c00299{bottom:0.000000pt;}
.y2_c00299{bottom:41.627067pt;}
.y1_c00299{bottom:60.027067pt;}
.y3_c00299{bottom:975.547067pt;}
.h1_c00299{height:56.156250pt;}
.h2_c00299{height:57.375000pt;}
.h0_c00299{height:1122.666667pt;}
.w1_c00299{width:793.333333pt;}
.w0_c00299{width:793.626667pt;}
.x0_c00299{left:0.000000pt;}
.x2_c00299{left:113.440000pt;}
.x1_c00299{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c4bb2040648a5049d4763117.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.093262;font-style:normal;font-weight:normal;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_d4d155ff8fb97841d9a414e4.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00300;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00300;src:url('chunks/assets/font_e5e2f0ab0d37c7499dacb819.woff2')format("woff");}.ff4_c00300{font-family:ff4_c00300;line-height:1.106934;font-style:normal;font-weight:normal;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_fa38ba056a4fe7163f45f038.woff2')format("woff");}.ff5_c00300{font-family:ff5_c00300;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00300{letter-spacing:-0.072000px;}
.lsa_c00300{letter-spacing:-0.064800px;}
.ls6_c00300{letter-spacing:-0.057600px;}
.ls5_c00300{letter-spacing:-0.050400px;}
.lsc_c00300{letter-spacing:-0.043200px;}
.ls7_c00300{letter-spacing:-0.036000px;}
.ls8_c00300{letter-spacing:-0.028800px;}
.ls9_c00300{letter-spacing:-0.021600px;}
.ls3_c00300{letter-spacing:-0.014400px;}
.ls4_c00300{letter-spacing:-0.007200px;}
.ls2_c00300{letter-spacing:0.000000px;}
.lsf_c00300{letter-spacing:0.007200px;}
.ls1_c00300{letter-spacing:0.014400px;}
.lse_c00300{letter-spacing:0.021600px;}
.lsb_c00300{letter-spacing:0.050400px;}
.ls0_c00300{letter-spacing:0.067104px;}
.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:-20.008800px;}
.ws0_c00300{word-spacing:-19.958400px;}
.wsb_c00300{word-spacing:-3.412800px;}
.wsa_c00300{word-spacing:-3.405600px;}
.ws6_c00300{word-spacing:-3.088800px;}
.ws7_c00300{word-spacing:-3.031200px;}
.ws32_c00300{word-spacing:-3.009600px;}
.ws2b_c00300{word-spacing:-2.750400px;}
.ws2c_c00300{word-spacing:-2.671200px;}
.ws1b_c00300{word-spacing:-2.080800px;}
.ws1a_c00300{word-spacing:-1.951200px;}
.ws2f_c00300{word-spacing:-1.677600px;}
.ws2e_c00300{word-spacing:-1.627200px;}
.ws2_c00300{word-spacing:0.000000px;}
.ws18_c00300{word-spacing:0.144000px;}
.wsc_c00300{word-spacing:0.194400px;}
.ws23_c00300{word-spacing:0.208800px;}
.ws33_c00300{word-spacing:0.561600px;}
.ws27_c00300{word-spacing:1.612800px;}
.ws28_c00300{word-spacing:1.620000px;}
.ws24_c00300{word-spacing:1.994400px;}
.ws21_c00300{word-spacing:3.052800px;}
.ws22_c00300{word-spacing:3.110400px;}
.ws25_c00300{word-spacing:3.434400px;}
.ws16_c00300{word-spacing:3.758400px;}
.ws17_c00300{word-spacing:3.794400px;}
.ws19_c00300{word-spacing:4.860000px;}
.ws10_c00300{word-spacing:5.875200px;}
.ws12_c00300{word-spacing:5.918400px;}
.wsf_c00300{word-spacing:5.932800px;}
.ws11_c00300{word-spacing:5.954400px;}
.ws8_c00300{word-spacing:6.249600px;}
.ws9_c00300{word-spacing:6.336000px;}
.ws31_c00300{word-spacing:7.754400px;}
.ws30_c00300{word-spacing:7.761600px;}
.ws5_c00300{word-spacing:8.805600px;}
.ws4_c00300{word-spacing:8.884800px;}
.ws13_c00300{word-spacing:9.540000px;}
.ws15_c00300{word-spacing:9.547200px;}
.ws14_c00300{word-spacing:9.583200px;}
.ws3_c00300{word-spacing:9.746856px;}
.wse_c00300{word-spacing:10.252800px;}
.wsd_c00300{word-spacing:10.324800px;}
.ws1f_c00300{word-spacing:12.434400px;}
.ws1e_c00300{word-spacing:12.535200px;}
.ws1d_c00300{word-spacing:16.012800px;}
.ws1c_c00300{word-spacing:16.020000px;}
.ws37_c00300{word-spacing:16.660800px;}
.ws38_c00300{word-spacing:16.718400px;}
.ws26_c00300{word-spacing:20.692800px;}
.ws29_c00300{word-spacing:21.052800px;}
.ws2a_c00300{word-spacing:21.103200px;}
.ws2d_c00300{word-spacing:30.448800px;}
.ws20_c00300{word-spacing:31.881600px;}
.ws35_c00300{word-spacing:32.457600px;}
.ws34_c00300{word-spacing:32.594400px;}
.ws36_c00300{word-spacing:32.630400px;}
.ws3a_c00300{word-spacing:32.911200px;}
.ws39_c00300{word-spacing:32.925600px;}
._0_c00300{margin-left:-9.730080px;}
._1_c00300{width:1.159200px;}
.fc0_c00300{color:rgb(0,0,0);}
.fs0_c00300{font-size:72.000000px;}
.fs1_c00300{font-size:83.880000px;}
.y0_c00300{bottom:0.000000px;}
.y2_c00300{bottom:46.830450px;}
.y1_c00300{bottom:67.530450px;}
.y25_c00300{bottom:142.770450px;}
.y24_c00300{bottom:173.820450px;}
.y23_c00300{bottom:204.870450px;}
.y22_c00300{bottom:235.920450px;}
.y21_c00300{bottom:256.620450px;}
.y20_c00300{bottom:277.320450px;}
.y1f_c00300{bottom:298.020450px;}
.y1e_c00300{bottom:318.720450px;}
.y1d_c00300{bottom:339.420450px;}
.y1c_c00300{bottom:360.120450px;}
.y1b_c00300{bottom:380.820450px;}
.y1a_c00300{bottom:401.520450px;}
.y19_c00300{bottom:422.220450px;}
.y18_c00300{bottom:442.920450px;}
.y17_c00300{bottom:463.620450px;}
.y16_c00300{bottom:484.320450px;}
.y15_c00300{bottom:524.370450px;}
.y14_c00300{bottom:555.420450px;}
.y13_c00300{bottom:586.470450px;}
.y12_c00300{bottom:617.520450px;}
.y11_c00300{bottom:648.570450px;}
.y10_c00300{bottom:679.620450px;}
.yf_c00300{bottom:710.670450px;}
.ye_c00300{bottom:750.720450px;}
.yd_c00300{bottom:781.770450px;}
.yc_c00300{bottom:812.820450px;}
.yb_c00300{bottom:843.870450px;}
.ya_c00300{bottom:874.920450px;}
.y9_c00300{bottom:914.970450px;}
.y8_c00300{bottom:946.020450px;}
.y7_c00300{bottom:977.070450px;}
.y6_c00300{bottom:1008.120450px;}
.y5_c00300{bottom:1039.170450px;}
.y4_c00300{bottom:1068.780450px;}
.y3_c00300{bottom:1094.520450px;}
.h1_c00300{height:63.175781px;}
.h4_c00300{height:64.546875px;}
.h3_c00300{height:75.093750px;}
.h2_c00300{height:87.484219px;}
.h0_c00300{height:1263.000000px;}
.w1_c00300{width:892.500000px;}
.w0_c00300{width:892.830000px;}
.x0_c00300{left:0.000000px;}
.x2_c00300{left:170.100000px;}
.x4_c00300{left:191.430000px;}
.x3_c00300{left:251.100000px;}
.x1_c00300{left:738.360000px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.lsd_c00300{letter-spacing:-0.064000pt;}
.lsa_c00300{letter-spacing:-0.057600pt;}
.ls6_c00300{letter-spacing:-0.051200pt;}
.ls5_c00300{letter-spacing:-0.044800pt;}
.lsc_c00300{letter-spacing:-0.038400pt;}
.ls7_c00300{letter-spacing:-0.032000pt;}
.ls8_c00300{letter-spacing:-0.025600pt;}
.ls9_c00300{letter-spacing:-0.019200pt;}
.ls3_c00300{letter-spacing:-0.012800pt;}
.ls4_c00300{letter-spacing:-0.006400pt;}
.ls2_c00300{letter-spacing:0.000000pt;}
.lsf_c00300{letter-spacing:0.006400pt;}
.ls1_c00300{letter-spacing:0.012800pt;}
.lse_c00300{letter-spacing:0.019200pt;}
.lsb_c00300{letter-spacing:0.044800pt;}
.ls0_c00300{letter-spacing:0.059648pt;}
.ws1_c00300{word-spacing:-17.785600pt;}
.ws0_c00300{word-spacing:-17.740800pt;}
.wsb_c00300{word-spacing:-3.033600pt;}
.wsa_c00300{word-spacing:-3.027200pt;}
.ws6_c00300{word-spacing:-2.745600pt;}
.ws7_c00300{word-spacing:-2.694400pt;}
.ws32_c00300{word-spacing:-2.675200pt;}
.ws2b_c00300{word-spacing:-2.444800pt;}
.ws2c_c00300{word-spacing:-2.374400pt;}
.ws1b_c00300{word-spacing:-1.849600pt;}
.ws1a_c00300{word-spacing:-1.734400pt;}
.ws2f_c00300{word-spacing:-1.491200pt;}
.ws2e_c00300{word-spacing:-1.446400pt;}
.ws2_c00300{word-spacing:0.000000pt;}
.ws18_c00300{word-spacing:0.128000pt;}
.wsc_c00300{word-spacing:0.172800pt;}
.ws23_c00300{word-spacing:0.185600pt;}
.ws33_c00300{word-spacing:0.499200pt;}
.ws27_c00300{word-spacing:1.433600pt;}
.ws28_c00300{word-spacing:1.440000pt;}
.ws24_c00300{word-spacing:1.772800pt;}
.ws21_c00300{word-spacing:2.713600pt;}
.ws22_c00300{word-spacing:2.764800pt;}
.ws25_c00300{word-spacing:3.052800pt;}
.ws16_c00300{word-spacing:3.340800pt;}
.ws17_c00300{word-spacing:3.372800pt;}
.ws19_c00300{word-spacing:4.320000pt;}
.ws10_c00300{word-spacing:5.222400pt;}
.ws12_c00300{word-spacing:5.260800pt;}
.wsf_c00300{word-spacing:5.273600pt;}
.ws11_c00300{word-spacing:5.292800pt;}
.ws8_c00300{word-spacing:5.555200pt;}
.ws9_c00300{word-spacing:5.632000pt;}
.ws31_c00300{word-spacing:6.892800pt;}
.ws30_c00300{word-spacing:6.899200pt;}
.ws5_c00300{word-spacing:7.827200pt;}
.ws4_c00300{word-spacing:7.897600pt;}
.ws13_c00300{word-spacing:8.480000pt;}
.ws15_c00300{word-spacing:8.486400pt;}
.ws14_c00300{word-spacing:8.518400pt;}
.ws3_c00300{word-spacing:8.663872pt;}
.wse_c00300{word-spacing:9.113600pt;}
.wsd_c00300{word-spacing:9.177600pt;}
.ws1f_c00300{word-spacing:11.052800pt;}
.ws1e_c00300{word-spacing:11.142400pt;}
.ws1d_c00300{word-spacing:14.233600pt;}
.ws1c_c00300{word-spacing:14.240000pt;}
.ws37_c00300{word-spacing:14.809600pt;}
.ws38_c00300{word-spacing:14.860800pt;}
.ws26_c00300{word-spacing:18.393600pt;}
.ws29_c00300{word-spacing:18.713600pt;}
.ws2a_c00300{word-spacing:18.758400pt;}
.ws2d_c00300{word-spacing:27.065600pt;}
.ws20_c00300{word-spacing:28.339200pt;}
.ws35_c00300{word-spacing:28.851200pt;}
.ws34_c00300{word-spacing:28.972800pt;}
.ws36_c00300{word-spacing:29.004800pt;}
.ws3a_c00300{word-spacing:29.254400pt;}
.ws39_c00300{word-spacing:29.267200pt;}
._0_c00300{margin-left:-8.648960pt;}
._1_c00300{width:1.030400pt;}
.fs0_c00300{font-size:64.000000pt;}
.fs1_c00300{font-size:74.560000pt;}
.y0_c00300{bottom:0.000000pt;}
.y2_c00300{bottom:41.627067pt;}
.y1_c00300{bottom:60.027067pt;}
.y25_c00300{bottom:126.907067pt;}
.y24_c00300{bottom:154.507067pt;}
.y23_c00300{bottom:182.107067pt;}
.y22_c00300{bottom:209.707067pt;}
.y21_c00300{bottom:228.107067pt;}
.y20_c00300{bottom:246.507067pt;}
.y1f_c00300{bottom:264.907067pt;}
.y1e_c00300{bottom:283.307067pt;}
.y1d_c00300{bottom:301.707067pt;}
.y1c_c00300{bottom:320.107067pt;}
.y1b_c00300{bottom:338.507067pt;}
.y1a_c00300{bottom:356.907067pt;}
.y19_c00300{bottom:375.307067pt;}
.y18_c00300{bottom:393.707067pt;}
.y17_c00300{bottom:412.107067pt;}
.y16_c00300{bottom:430.507067pt;}
.y15_c00300{bottom:466.107067pt;}
.y14_c00300{bottom:493.707067pt;}
.y13_c00300{bottom:521.307067pt;}
.y12_c00300{bottom:548.907067pt;}
.y11_c00300{bottom:576.507067pt;}
.y10_c00300{bottom:604.107067pt;}
.yf_c00300{bottom:631.707067pt;}
.ye_c00300{bottom:667.307067pt;}
.yd_c00300{bottom:694.907067pt;}
.yc_c00300{bottom:722.507067pt;}
.yb_c00300{bottom:750.107067pt;}
.ya_c00300{bottom:777.707067pt;}
.y9_c00300{bottom:813.307067pt;}
.y8_c00300{bottom:840.907067pt;}
.y7_c00300{bottom:868.507067pt;}
.y6_c00300{bottom:896.107067pt;}
.y5_c00300{bottom:923.707067pt;}
.y4_c00300{bottom:950.027067pt;}
.y3_c00300{bottom:972.907067pt;}
.h1_c00300{height:56.156250pt;}
.h4_c00300{height:57.375000pt;}
.h3_c00300{height:66.750000pt;}
.h2_c00300{height:77.763750pt;}
.h0_c00300{height:1122.666667pt;}
.w1_c00300{width:793.333333pt;}
.w0_c00300{width:793.626667pt;}
.x0_c00300{left:0.000000pt;}
.x2_c00300{left:151.200000pt;}
.x4_c00300{left:170.160000pt;}
.x3_c00300{left:223.200000pt;}
.x1_c00300{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_836f8bd9cfd783dd604ac6af.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.093262;font-style:normal;font-weight:normal;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_8e8eb12de30555ceb266a6db.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.106934;font-style:normal;font-weight:normal;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_ef5139e70bef2ad00a4d8395.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00301{letter-spacing:-0.079200px;}
.lsc_c00301{letter-spacing:-0.064800px;}
.ls3_c00301{letter-spacing:-0.057600px;}
.ls4_c00301{letter-spacing:-0.050400px;}
.lsa_c00301{letter-spacing:-0.043200px;}
.ls5_c00301{letter-spacing:-0.036000px;}
.ls7_c00301{letter-spacing:-0.028800px;}
.ls2_c00301{letter-spacing:-0.021600px;}
.ls8_c00301{letter-spacing:-0.014400px;}
.ls6_c00301{letter-spacing:-0.007200px;}
.ls1_c00301{letter-spacing:0.000000px;}
.ls0_c00301{letter-spacing:0.014400px;}
.lsb_c00301{letter-spacing:0.028800px;}
.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:-20.030400px;}
.ws0_c00301{word-spacing:-19.958400px;}
.ws16_c00301{word-spacing:-4.860000px;}
.ws15_c00301{word-spacing:-4.838400px;}
.wse_c00301{word-spacing:-3.816000px;}
.wsd_c00301{word-spacing:-3.772800px;}
.ws18_c00301{word-spacing:-3.484800px;}
.ws17_c00301{word-spacing:-3.391200px;}
.ws9_c00301{word-spacing:-3.103200px;}
.ws3_c00301{word-spacing:-3.060000px;}
.ws5_c00301{word-spacing:-3.045600px;}
.ws4_c00301{word-spacing:-3.031200px;}
.ws19_c00301{word-spacing:-0.050400px;}
.ws2_c00301{word-spacing:0.000000px;}
.ws6_c00301{word-spacing:0.165600px;}
.ws22_c00301{word-spacing:0.180000px;}
.ws37_c00301{word-spacing:0.849600px;}
.ws12_c00301{word-spacing:0.907200px;}
.ws11_c00301{word-spacing:0.921600px;}
.ws38_c00301{word-spacing:0.928800px;}
.ws1a_c00301{word-spacing:1.915200px;}
.ws1b_c00301{word-spacing:1.987200px;}
.ws3b_c00301{word-spacing:1.994400px;}
.ws13_c00301{word-spacing:2.246400px;}
.ws14_c00301{word-spacing:2.311200px;}
.ws35_c00301{word-spacing:2.714400px;}
.ws36_c00301{word-spacing:2.728800px;}
.ws2d_c00301{word-spacing:3.434400px;}
.ws2b_c00301{word-spacing:4.161600px;}
.ws2c_c00301{word-spacing:4.226400px;}
.ws23_c00301{word-spacing:4.500000px;}
.ws24_c00301{word-spacing:4.615200px;}
.ws29_c00301{word-spacing:5.594400px;}
.ws27_c00301{word-spacing:5.709600px;}
.ws28_c00301{word-spacing:5.839200px;}
.ws26_c00301{word-spacing:5.896800px;}
.ws25_c00301{word-spacing:5.997600px;}
.ws3a_c00301{word-spacing:7.005600px;}
.ws39_c00301{word-spacing:7.020000px;}
.ws33_c00301{word-spacing:7.740000px;}
.ws34_c00301{word-spacing:7.747200px;}
.ws2e_c00301{word-spacing:8.812800px;}
.ws2f_c00301{word-spacing:8.884800px;}
.ws8_c00301{word-spacing:11.707200px;}
.ws7_c00301{word-spacing:11.728800px;}
.ws30_c00301{word-spacing:14.263200px;}
.ws21_c00301{word-spacing:17.092800px;}
.ws20_c00301{word-spacing:17.128800px;}
.wsc_c00301{word-spacing:18.540000px;}
.wsa_c00301{word-spacing:18.604800px;}
.wsb_c00301{word-spacing:18.662400px;}
.wsf_c00301{word-spacing:20.728800px;}
.ws10_c00301{word-spacing:20.757600px;}
.ws2a_c00301{word-spacing:25.048800px;}
.ws31_c00301{word-spacing:27.525600px;}
.ws32_c00301{word-spacing:27.648000px;}
.ws1d_c00301{word-spacing:29.289600px;}
.ws1c_c00301{word-spacing:29.332800px;}
.ws1f_c00301{word-spacing:34.740000px;}
.ws1e_c00301{word-spacing:34.747200px;}
._0_c00301{width:1.353600px;}
.fc0_c00301{color:rgb(0,0,0);}
.fs0_c00301{font-size:72.000000px;}
.y0_c00301{bottom:0.000000px;}
.y2_c00301{bottom:46.830450px;}
.y1_c00301{bottom:67.530450px;}
.y23_c00301{bottom:158.430450px;}
.y22_c00301{bottom:189.480450px;}
.y21_c00301{bottom:220.530450px;}
.y20_c00301{bottom:251.580450px;}
.y1f_c00301{bottom:282.630450px;}
.y1e_c00301{bottom:313.680450px;}
.y1d_c00301{bottom:344.730450px;}
.y1c_c00301{bottom:375.690450px;}
.y1b_c00301{bottom:406.740450px;}
.y1a_c00301{bottom:437.790450px;}
.y19_c00301{bottom:468.840450px;}
.y18_c00301{bottom:499.890450px;}
.y17_c00301{bottom:530.940450px;}
.y16_c00301{bottom:561.990450px;}
.y15_c00301{bottom:582.690450px;}
.y14_c00301{bottom:603.390450px;}
.y13_c00301{bottom:624.090450px;}
.y12_c00301{bottom:644.790450px;}
.y11_c00301{bottom:665.490450px;}
.y10_c00301{bottom:686.190450px;}
.yf_c00301{bottom:706.890450px;}
.ye_c00301{bottom:746.940450px;}
.yd_c00301{bottom:777.990450px;}
.yc_c00301{bottom:809.040450px;}
.yb_c00301{bottom:840.090450px;}
.ya_c00301{bottom:871.140450px;}
.y9_c00301{bottom:902.190450px;}
.y8_c00301{bottom:933.240450px;}
.y7_c00301{bottom:964.290450px;}
.y6_c00301{bottom:995.340450px;}
.y5_c00301{bottom:1026.390450px;}
.y4_c00301{bottom:1066.440450px;}
.y3_c00301{bottom:1097.490450px;}
.h1_c00301{height:63.175781px;}
.h3_c00301{height:64.546875px;}
.h2_c00301{height:75.093750px;}
.h0_c00301{height:1263.000000px;}
.w1_c00301{width:892.500000px;}
.w0_c00301{width:892.830000px;}
.x0_c00301{left:0.000000px;}
.x2_c00301{left:127.620000px;}
.x3_c00301{left:148.950000px;}
.x1_c00301{left:695.880000px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls9_c00301{letter-spacing:-0.070400pt;}
.lsc_c00301{letter-spacing:-0.057600pt;}
.ls3_c00301{letter-spacing:-0.051200pt;}
.ls4_c00301{letter-spacing:-0.044800pt;}
.lsa_c00301{letter-spacing:-0.038400pt;}
.ls5_c00301{letter-spacing:-0.032000pt;}
.ls7_c00301{letter-spacing:-0.025600pt;}
.ls2_c00301{letter-spacing:-0.019200pt;}
.ls8_c00301{letter-spacing:-0.012800pt;}
.ls6_c00301{letter-spacing:-0.006400pt;}
.ls1_c00301{letter-spacing:0.000000pt;}
.ls0_c00301{letter-spacing:0.012800pt;}
.lsb_c00301{letter-spacing:0.025600pt;}
.ws1_c00301{word-spacing:-17.804800pt;}
.ws0_c00301{word-spacing:-17.740800pt;}
.ws16_c00301{word-spacing:-4.320000pt;}
.ws15_c00301{word-spacing:-4.300800pt;}
.wse_c00301{word-spacing:-3.392000pt;}
.wsd_c00301{word-spacing:-3.353600pt;}
.ws18_c00301{word-spacing:-3.097600pt;}
.ws17_c00301{word-spacing:-3.014400pt;}
.ws9_c00301{word-spacing:-2.758400pt;}
.ws3_c00301{word-spacing:-2.720000pt;}
.ws5_c00301{word-spacing:-2.707200pt;}
.ws4_c00301{word-spacing:-2.694400pt;}
.ws19_c00301{word-spacing:-0.044800pt;}
.ws2_c00301{word-spacing:0.000000pt;}
.ws6_c00301{word-spacing:0.147200pt;}
.ws22_c00301{word-spacing:0.160000pt;}
.ws37_c00301{word-spacing:0.755200pt;}
.ws12_c00301{word-spacing:0.806400pt;}
.ws11_c00301{word-spacing:0.819200pt;}
.ws38_c00301{word-spacing:0.825600pt;}
.ws1a_c00301{word-spacing:1.702400pt;}
.ws1b_c00301{word-spacing:1.766400pt;}
.ws3b_c00301{word-spacing:1.772800pt;}
.ws13_c00301{word-spacing:1.996800pt;}
.ws14_c00301{word-spacing:2.054400pt;}
.ws35_c00301{word-spacing:2.412800pt;}
.ws36_c00301{word-spacing:2.425600pt;}
.ws2d_c00301{word-spacing:3.052800pt;}
.ws2b_c00301{word-spacing:3.699200pt;}
.ws2c_c00301{word-spacing:3.756800pt;}
.ws23_c00301{word-spacing:4.000000pt;}
.ws24_c00301{word-spacing:4.102400pt;}
.ws29_c00301{word-spacing:4.972800pt;}
.ws27_c00301{word-spacing:5.075200pt;}
.ws28_c00301{word-spacing:5.190400pt;}
.ws26_c00301{word-spacing:5.241600pt;}
.ws25_c00301{word-spacing:5.331200pt;}
.ws3a_c00301{word-spacing:6.227200pt;}
.ws39_c00301{word-spacing:6.240000pt;}
.ws33_c00301{word-spacing:6.880000pt;}
.ws34_c00301{word-spacing:6.886400pt;}
.ws2e_c00301{word-spacing:7.833600pt;}
.ws2f_c00301{word-spacing:7.897600pt;}
.ws8_c00301{word-spacing:10.406400pt;}
.ws7_c00301{word-spacing:10.425600pt;}
.ws30_c00301{word-spacing:12.678400pt;}
.ws21_c00301{word-spacing:15.193600pt;}
.ws20_c00301{word-spacing:15.225600pt;}
.wsc_c00301{word-spacing:16.480000pt;}
.wsa_c00301{word-spacing:16.537600pt;}
.wsb_c00301{word-spacing:16.588800pt;}
.wsf_c00301{word-spacing:18.425600pt;}
.ws10_c00301{word-spacing:18.451200pt;}
.ws2a_c00301{word-spacing:22.265600pt;}
.ws31_c00301{word-spacing:24.467200pt;}
.ws32_c00301{word-spacing:24.576000pt;}
.ws1d_c00301{word-spacing:26.035200pt;}
.ws1c_c00301{word-spacing:26.073600pt;}
.ws1f_c00301{word-spacing:30.880000pt;}
.ws1e_c00301{word-spacing:30.886400pt;}
._0_c00301{width:1.203200pt;}
.fs0_c00301{font-size:64.000000pt;}
.y0_c00301{bottom:0.000000pt;}
.y2_c00301{bottom:41.627067pt;}
.y1_c00301{bottom:60.027067pt;}
.y23_c00301{bottom:140.827067pt;}
.y22_c00301{bottom:168.427067pt;}
.y21_c00301{bottom:196.027067pt;}
.y20_c00301{bottom:223.627067pt;}
.y1f_c00301{bottom:251.227067pt;}
.y1e_c00301{bottom:278.827067pt;}
.y1d_c00301{bottom:306.427067pt;}
.y1c_c00301{bottom:333.947067pt;}
.y1b_c00301{bottom:361.547067pt;}
.y1a_c00301{bottom:389.147067pt;}
.y19_c00301{bottom:416.747067pt;}
.y18_c00301{bottom:444.347067pt;}
.y17_c00301{bottom:471.947067pt;}
.y16_c00301{bottom:499.547067pt;}
.y15_c00301{bottom:517.947067pt;}
.y14_c00301{bottom:536.347067pt;}
.y13_c00301{bottom:554.747067pt;}
.y12_c00301{bottom:573.147067pt;}
.y11_c00301{bottom:591.547067pt;}
.y10_c00301{bottom:609.947067pt;}
.yf_c00301{bottom:628.347067pt;}
.ye_c00301{bottom:663.947067pt;}
.yd_c00301{bottom:691.547067pt;}
.yc_c00301{bottom:719.147067pt;}
.yb_c00301{bottom:746.747067pt;}
.ya_c00301{bottom:774.347067pt;}
.y9_c00301{bottom:801.947067pt;}
.y8_c00301{bottom:829.547067pt;}
.y7_c00301{bottom:857.147067pt;}
.y6_c00301{bottom:884.747067pt;}
.y5_c00301{bottom:912.347067pt;}
.y4_c00301{bottom:947.947067pt;}
.y3_c00301{bottom:975.547067pt;}
.h1_c00301{height:56.156250pt;}
.h3_c00301{height:57.375000pt;}
.h2_c00301{height:66.750000pt;}
.h0_c00301{height:1122.666667pt;}
.w1_c00301{width:793.333333pt;}
.w0_c00301{width:793.626667pt;}
.x0_c00301{left:0.000000pt;}
.x2_c00301{left:113.440000pt;}
.x3_c00301{left:132.400000pt;}
.x1_c00301{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e58b3aef61f80cd8dc2ef10b.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.093262;font-style:normal;font-weight:normal;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_4ad8cd2e74c72bc0ea3ce05f.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00302{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.ls7_c00302{letter-spacing:-0.064800px;}
.ls4_c00302{letter-spacing:-0.057600px;}
.ls8_c00302{letter-spacing:-0.050400px;}
.ls3_c00302{letter-spacing:-0.043200px;}
.ls5_c00302{letter-spacing:-0.036000px;}
.ls1_c00302{letter-spacing:-0.028800px;}
.ls9_c00302{letter-spacing:-0.021600px;}
.ls2_c00302{letter-spacing:-0.014400px;}
.ls6_c00302{letter-spacing:-0.007200px;}
.ls0_c00302{letter-spacing:0.000000px;}
.lsa_c00302{letter-spacing:0.028800px;}
.lsb_c00302{letter-spacing:843.998400px;}
.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;}
}
.ws14_c00302{word-spacing:-4.132800px;}
.ws13_c00302{word-spacing:-4.118400px;}
.ws15_c00302{word-spacing:-2.685600px;}
.ws11_c00302{word-spacing:-1.634400px;}
.ws12_c00302{word-spacing:-1.612800px;}
.ws1a_c00302{word-spacing:-1.274400px;}
.ws1b_c00302{word-spacing:-1.260000px;}
.ws18_c00302{word-spacing:-0.597600px;}
.ws17_c00302{word-spacing:-0.453600px;}
.ws6_c00302{word-spacing:-0.158400px;}
.ws7_c00302{word-spacing:-0.144000px;}
.ws0_c00302{word-spacing:0.000000px;}
.ws10_c00302{word-spacing:0.165600px;}
.ws2_c00302{word-spacing:0.172800px;}
.ws3_c00302{word-spacing:0.187200px;}
.ws16_c00302{word-spacing:0.208800px;}
.ws20_c00302{word-spacing:3.405600px;}
.ws1f_c00302{word-spacing:3.441600px;}
.ws4_c00302{word-spacing:4.802400px;}
.ws8_c00302{word-spacing:4.852800px;}
.ws5_c00302{word-spacing:4.860000px;}
.ws9_c00302{word-spacing:4.867200px;}
.wse_c00302{word-spacing:5.198400px;}
.wsd_c00302{word-spacing:5.241600px;}
.wsc_c00302{word-spacing:5.335200px;}
.ws1d_c00302{word-spacing:13.485600px;}
.ws1c_c00302{word-spacing:13.622400px;}
.ws1e_c00302{word-spacing:13.636800px;}
.wsf_c00302{word-spacing:17.092800px;}
.ws1_c00302{word-spacing:17.107200px;}
.wsb_c00302{word-spacing:19.605600px;}
.wsa_c00302{word-spacing:19.634400px;}
.ws19_c00302{word-spacing:35.107200px;}
.ws22_c00302{word-spacing:40.449600px;}
.ws21_c00302{word-spacing:40.507200px;}
._0_c00302{width:1.195200px;}
.fc0_c00302{color:rgb(0,0,0);}
.fs0_c00302{font-size:72.000000px;}
.y0_c00302{bottom:0.000000px;}
.y2_c00302{bottom:46.830450px;}
.y1_c00302{bottom:67.530450px;}
.y17_c00302{bottom:449.490450px;}
.y16_c00302{bottom:489.540450px;}
.y15_c00302{bottom:520.590450px;}
.y14_c00302{bottom:551.640450px;}
.y13_c00302{bottom:582.690450px;}
.y12_c00302{bottom:613.740450px;}
.y11_c00302{bottom:644.790450px;}
.y10_c00302{bottom:675.840450px;}
.yf_c00302{bottom:706.890450px;}
.ye_c00302{bottom:737.940450px;}
.yd_c00302{bottom:768.990450px;}
.yc_c00302{bottom:800.040450px;}
.yb_c00302{bottom:840.090450px;}
.ya_c00302{bottom:871.140450px;}
.y9_c00302{bottom:902.190450px;}
.y8_c00302{bottom:933.240450px;}
.y7_c00302{bottom:964.290450px;}
.y6_c00302{bottom:995.340450px;}
.y5_c00302{bottom:1026.390450px;}
.y4_c00302{bottom:1066.440450px;}
.y3_c00302{bottom:1097.490450px;}
.h1_c00302{height:63.175781px;}
.h2_c00302{height:64.546875px;}
.h0_c00302{height:1263.000000px;}
.w1_c00302{width:892.500000px;}
.w0_c00302{width:892.830000px;}
.x0_c00302{left:0.000000px;}
.x2_c00302{left:170.100000px;}
.x1_c00302{left:738.360000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls7_c00302{letter-spacing:-0.057600pt;}
.ls4_c00302{letter-spacing:-0.051200pt;}
.ls8_c00302{letter-spacing:-0.044800pt;}
.ls3_c00302{letter-spacing:-0.038400pt;}
.ls5_c00302{letter-spacing:-0.032000pt;}
.ls1_c00302{letter-spacing:-0.025600pt;}
.ls9_c00302{letter-spacing:-0.019200pt;}
.ls2_c00302{letter-spacing:-0.012800pt;}
.ls6_c00302{letter-spacing:-0.006400pt;}
.ls0_c00302{letter-spacing:0.000000pt;}
.lsa_c00302{letter-spacing:0.025600pt;}
.lsb_c00302{letter-spacing:750.220800pt;}
.ws14_c00302{word-spacing:-3.673600pt;}
.ws13_c00302{word-spacing:-3.660800pt;}
.ws15_c00302{word-spacing:-2.387200pt;}
.ws11_c00302{word-spacing:-1.452800pt;}
.ws12_c00302{word-spacing:-1.433600pt;}
.ws1a_c00302{word-spacing:-1.132800pt;}
.ws1b_c00302{word-spacing:-1.120000pt;}
.ws18_c00302{word-spacing:-0.531200pt;}
.ws17_c00302{word-spacing:-0.403200pt;}
.ws6_c00302{word-spacing:-0.140800pt;}
.ws7_c00302{word-spacing:-0.128000pt;}
.ws0_c00302{word-spacing:0.000000pt;}
.ws10_c00302{word-spacing:0.147200pt;}
.ws2_c00302{word-spacing:0.153600pt;}
.ws3_c00302{word-spacing:0.166400pt;}
.ws16_c00302{word-spacing:0.185600pt;}
.ws20_c00302{word-spacing:3.027200pt;}
.ws1f_c00302{word-spacing:3.059200pt;}
.ws4_c00302{word-spacing:4.268800pt;}
.ws8_c00302{word-spacing:4.313600pt;}
.ws5_c00302{word-spacing:4.320000pt;}
.ws9_c00302{word-spacing:4.326400pt;}
.wse_c00302{word-spacing:4.620800pt;}
.wsd_c00302{word-spacing:4.659200pt;}
.wsc_c00302{word-spacing:4.742400pt;}
.ws1d_c00302{word-spacing:11.987200pt;}
.ws1c_c00302{word-spacing:12.108800pt;}
.ws1e_c00302{word-spacing:12.121600pt;}
.wsf_c00302{word-spacing:15.193600pt;}
.ws1_c00302{word-spacing:15.206400pt;}
.wsb_c00302{word-spacing:17.427200pt;}
.wsa_c00302{word-spacing:17.452800pt;}
.ws19_c00302{word-spacing:31.206400pt;}
.ws22_c00302{word-spacing:35.955200pt;}
.ws21_c00302{word-spacing:36.006400pt;}
._0_c00302{width:1.062400pt;}
.fs0_c00302{font-size:64.000000pt;}
.y0_c00302{bottom:0.000000pt;}
.y2_c00302{bottom:41.627067pt;}
.y1_c00302{bottom:60.027067pt;}
.y17_c00302{bottom:399.547067pt;}
.y16_c00302{bottom:435.147067pt;}
.y15_c00302{bottom:462.747067pt;}
.y14_c00302{bottom:490.347067pt;}
.y13_c00302{bottom:517.947067pt;}
.y12_c00302{bottom:545.547067pt;}
.y11_c00302{bottom:573.147067pt;}
.y10_c00302{bottom:600.747067pt;}
.yf_c00302{bottom:628.347067pt;}
.ye_c00302{bottom:655.947067pt;}
.yd_c00302{bottom:683.547067pt;}
.yc_c00302{bottom:711.147067pt;}
.yb_c00302{bottom:746.747067pt;}
.ya_c00302{bottom:774.347067pt;}
.y9_c00302{bottom:801.947067pt;}
.y8_c00302{bottom:829.547067pt;}
.y7_c00302{bottom:857.147067pt;}
.y6_c00302{bottom:884.747067pt;}
.y5_c00302{bottom:912.347067pt;}
.y4_c00302{bottom:947.947067pt;}
.y3_c00302{bottom:975.547067pt;}
.h1_c00302{height:56.156250pt;}
.h2_c00302{height:57.375000pt;}
.h0_c00302{height:1122.666667pt;}
.w1_c00302{width:793.333333pt;}
.w0_c00302{width:793.626667pt;}
.x0_c00302{left:0.000000pt;}
.x2_c00302{left:151.200000pt;}
.x1_c00302{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_80e5097c2c65181ddfc62ff3.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.106934;font-style: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;}
.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;}
}
.ws0_c00303{word-spacing:0.000000px;}
.fc0_c00303{color:rgb(0,0,0);}
.fs0_c00303{font-size:72.000000px;}
.y0_c00303{bottom:0.000000px;}
.y2_c00303{bottom:46.830450px;}
.y1_c00303{bottom:67.530450px;}
.y3_c00303{bottom:1097.490450px;}
.h1_c00303{height:63.175781px;}
.h2_c00303{height:64.546875px;}
.h0_c00303{height:1263.000000px;}
.w1_c00303{width:892.500000px;}
.w0_c00303{width:892.830000px;}
.x0_c00303{left:0.000000px;}
.x2_c00303{left:127.620000px;}
.x1_c00303{left:695.880000px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls0_c00303{letter-spacing:0.000000pt;}
.ws0_c00303{word-spacing:0.000000pt;}
.fs0_c00303{font-size:64.000000pt;}
.y0_c00303{bottom:0.000000pt;}
.y2_c00303{bottom:41.627067pt;}
.y1_c00303{bottom:60.027067pt;}
.y3_c00303{bottom:975.547067pt;}
.h1_c00303{height:56.156250pt;}
.h2_c00303{height:57.375000pt;}
.h0_c00303{height:1122.666667pt;}
.w1_c00303{width:793.333333pt;}
.w0_c00303{width:793.626667pt;}
.x0_c00303{left:0.000000pt;}
.x2_c00303{left:113.440000pt;}
.x1_c00303{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9f71ae42f468fa1f827ede92.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.093262;font-style:normal;font-weight:normal;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_1d1a367bb5cb432c9344c998.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00304;src:url('chunks/assets/font_0a1525afe2b70457ac6a531a.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00304{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.lsb_c00304{letter-spacing:-0.079200px;}
.ls9_c00304{letter-spacing:-0.072000px;}
.ls5_c00304{letter-spacing:-0.064800px;}
.lsa_c00304{letter-spacing:-0.057600px;}
.ls3_c00304{letter-spacing:-0.050400px;}
.ls8_c00304{letter-spacing:-0.043200px;}
.ls6_c00304{letter-spacing:-0.036000px;}
.lsc_c00304{letter-spacing:-0.028800px;}
.ls4_c00304{letter-spacing:-0.021600px;}
.ls7_c00304{letter-spacing:-0.014400px;}
.ls2_c00304{letter-spacing:-0.007200px;}
.ls1_c00304{letter-spacing:0.000000px;}
.lsd_c00304{letter-spacing:0.007200px;}
.ls0_c00304{letter-spacing:0.050328px;}
.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;}
}
.ws38_c00304{word-spacing:-4.492800px;}
.ws39_c00304{word-spacing:-4.392000px;}
.ws35_c00304{word-spacing:-3.463200px;}
.ws34_c00304{word-spacing:-3.405600px;}
.wsd_c00304{word-spacing:-0.151200px;}
.wse_c00304{word-spacing:-0.136800px;}
.wsc_c00304{word-spacing:-0.028800px;}
.ws0_c00304{word-spacing:0.000000px;}
.ws1_c00304{word-spacing:0.041940px;}
.ws3_c00304{word-spacing:0.064800px;}
.ws2_c00304{word-spacing:0.093600px;}
.ws8_c00304{word-spacing:0.172800px;}
.ws1d_c00304{word-spacing:0.180000px;}
.ws28_c00304{word-spacing:0.187200px;}
.ws10_c00304{word-spacing:0.525600px;}
.wsf_c00304{word-spacing:0.561600px;}
.ws16_c00304{word-spacing:1.620000px;}
.ws15_c00304{word-spacing:1.648800px;}
.ws30_c00304{word-spacing:2.764800px;}
.ws2f_c00304{word-spacing:2.779200px;}
.ws31_c00304{word-spacing:3.081600px;}
.ws32_c00304{word-spacing:3.139200px;}
.ws1b_c00304{word-spacing:3.398400px;}
.ws1c_c00304{word-spacing:3.441600px;}
.ws23_c00304{word-spacing:3.679200px;}
.ws3a_c00304{word-spacing:3.772800px;}
.ws22_c00304{word-spacing:3.801600px;}
.ws1a_c00304{word-spacing:4.118400px;}
.ws19_c00304{word-spacing:4.147200px;}
.ws21_c00304{word-spacing:4.161600px;}
.ws20_c00304{word-spacing:4.168800px;}
.ws26_c00304{word-spacing:5.220000px;}
.ws27_c00304{word-spacing:5.234400px;}
.wsb_c00304{word-spacing:5.954400px;}
.wsa_c00304{word-spacing:6.040800px;}
.ws18_c00304{word-spacing:6.300000px;}
.ws17_c00304{word-spacing:6.307200px;}
.ws6_c00304{word-spacing:8.085600px;}
.ws7_c00304{word-spacing:8.186400px;}
.ws37_c00304{word-spacing:8.856000px;}
.ws36_c00304{word-spacing:8.899200px;}
.ws2d_c00304{word-spacing:9.900000px;}
.ws12_c00304{word-spacing:9.936000px;}
.ws11_c00304{word-spacing:9.950400px;}
.ws2e_c00304{word-spacing:9.979200px;}
.ws1e_c00304{word-spacing:10.281600px;}
.ws1f_c00304{word-spacing:10.296000px;}
.ws13_c00304{word-spacing:15.652800px;}
.ws14_c00304{word-spacing:15.674400px;}
.ws33_c00304{word-spacing:27.907200px;}
.ws2a_c00304{word-spacing:28.332000px;}
.ws29_c00304{word-spacing:28.389600px;}
.ws9_c00304{word-spacing:34.041600px;}
.ws2b_c00304{word-spacing:40.154400px;}
.ws2c_c00304{word-spacing:40.183200px;}
.ws4_c00304{word-spacing:43.740000px;}
.ws5_c00304{word-spacing:43.783200px;}
.ws25_c00304{word-spacing:44.834400px;}
.ws24_c00304{word-spacing:44.848800px;}
._1_c00304{width:1.051200px;}
._0_c00304{width:9.730080px;}
.fc0_c00304{color:rgb(0,0,0);}
.fs0_c00304{font-size:72.000000px;}
.fs1_c00304{font-size:83.880000px;}
.y0_c00304{bottom:0.000000px;}
.y2_c00304{bottom:46.830450px;}
.y1_c00304{bottom:67.530450px;}
.y24_c00304{bottom:133.770450px;}
.y23_c00304{bottom:154.470450px;}
.y22_c00304{bottom:175.170450px;}
.y21_c00304{bottom:195.870450px;}
.y20_c00304{bottom:216.570450px;}
.y1f_c00304{bottom:237.270450px;}
.y1e_c00304{bottom:257.970450px;}
.y1d_c00304{bottom:278.670450px;}
.y1c_c00304{bottom:299.370450px;}
.y1b_c00304{bottom:320.070450px;}
.y1a_c00304{bottom:360.120450px;}
.y19_c00304{bottom:391.170450px;}
.y18_c00304{bottom:422.220450px;}
.y17_c00304{bottom:453.270450px;}
.y16_c00304{bottom:484.320450px;}
.y15_c00304{bottom:515.370450px;}
.y14_c00304{bottom:555.420450px;}
.y13_c00304{bottom:586.470450px;}
.y12_c00304{bottom:617.520450px;}
.y11_c00304{bottom:648.570450px;}
.y10_c00304{bottom:679.620450px;}
.yf_c00304{bottom:710.670450px;}
.ye_c00304{bottom:741.720450px;}
.yd_c00304{bottom:781.770450px;}
.yc_c00304{bottom:812.820450px;}
.yb_c00304{bottom:843.870450px;}
.ya_c00304{bottom:874.920450px;}
.y9_c00304{bottom:905.970450px;}
.y8_c00304{bottom:946.020450px;}
.y7_c00304{bottom:977.070450px;}
.y6_c00304{bottom:1008.120450px;}
.y5_c00304{bottom:1039.170450px;}
.y4_c00304{bottom:1068.960450px;}
.y3_c00304{bottom:1094.520450px;}
.h1_c00304{height:63.175781px;}
.h3_c00304{height:64.546875px;}
.h2_c00304{height:87.484219px;}
.h0_c00304{height:1263.000000px;}
.w1_c00304{width:892.500000px;}
.w0_c00304{width:892.830000px;}
.x0_c00304{left:0.000000px;}
.x2_c00304{left:170.100000px;}
.x4_c00304{left:191.430000px;}
.x3_c00304{left:251.100000px;}
.x1_c00304{left:738.360000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.lsb_c00304{letter-spacing:-0.070400pt;}
.ls9_c00304{letter-spacing:-0.064000pt;}
.ls5_c00304{letter-spacing:-0.057600pt;}
.lsa_c00304{letter-spacing:-0.051200pt;}
.ls3_c00304{letter-spacing:-0.044800pt;}
.ls8_c00304{letter-spacing:-0.038400pt;}
.ls6_c00304{letter-spacing:-0.032000pt;}
.lsc_c00304{letter-spacing:-0.025600pt;}
.ls4_c00304{letter-spacing:-0.019200pt;}
.ls7_c00304{letter-spacing:-0.012800pt;}
.ls2_c00304{letter-spacing:-0.006400pt;}
.ls1_c00304{letter-spacing:0.000000pt;}
.lsd_c00304{letter-spacing:0.006400pt;}
.ls0_c00304{letter-spacing:0.044736pt;}
.ws38_c00304{word-spacing:-3.993600pt;}
.ws39_c00304{word-spacing:-3.904000pt;}
.ws35_c00304{word-spacing:-3.078400pt;}
.ws34_c00304{word-spacing:-3.027200pt;}
.wsd_c00304{word-spacing:-0.134400pt;}
.wse_c00304{word-spacing:-0.121600pt;}
.wsc_c00304{word-spacing:-0.025600pt;}
.ws0_c00304{word-spacing:0.000000pt;}
.ws1_c00304{word-spacing:0.037280pt;}
.ws3_c00304{word-spacing:0.057600pt;}
.ws2_c00304{word-spacing:0.083200pt;}
.ws8_c00304{word-spacing:0.153600pt;}
.ws1d_c00304{word-spacing:0.160000pt;}
.ws28_c00304{word-spacing:0.166400pt;}
.ws10_c00304{word-spacing:0.467200pt;}
.wsf_c00304{word-spacing:0.499200pt;}
.ws16_c00304{word-spacing:1.440000pt;}
.ws15_c00304{word-spacing:1.465600pt;}
.ws30_c00304{word-spacing:2.457600pt;}
.ws2f_c00304{word-spacing:2.470400pt;}
.ws31_c00304{word-spacing:2.739200pt;}
.ws32_c00304{word-spacing:2.790400pt;}
.ws1b_c00304{word-spacing:3.020800pt;}
.ws1c_c00304{word-spacing:3.059200pt;}
.ws23_c00304{word-spacing:3.270400pt;}
.ws3a_c00304{word-spacing:3.353600pt;}
.ws22_c00304{word-spacing:3.379200pt;}
.ws1a_c00304{word-spacing:3.660800pt;}
.ws19_c00304{word-spacing:3.686400pt;}
.ws21_c00304{word-spacing:3.699200pt;}
.ws20_c00304{word-spacing:3.705600pt;}
.ws26_c00304{word-spacing:4.640000pt;}
.ws27_c00304{word-spacing:4.652800pt;}
.wsb_c00304{word-spacing:5.292800pt;}
.wsa_c00304{word-spacing:5.369600pt;}
.ws18_c00304{word-spacing:5.600000pt;}
.ws17_c00304{word-spacing:5.606400pt;}
.ws6_c00304{word-spacing:7.187200pt;}
.ws7_c00304{word-spacing:7.276800pt;}
.ws37_c00304{word-spacing:7.872000pt;}
.ws36_c00304{word-spacing:7.910400pt;}
.ws2d_c00304{word-spacing:8.800000pt;}
.ws12_c00304{word-spacing:8.832000pt;}
.ws11_c00304{word-spacing:8.844800pt;}
.ws2e_c00304{word-spacing:8.870400pt;}
.ws1e_c00304{word-spacing:9.139200pt;}
.ws1f_c00304{word-spacing:9.152000pt;}
.ws13_c00304{word-spacing:13.913600pt;}
.ws14_c00304{word-spacing:13.932800pt;}
.ws33_c00304{word-spacing:24.806400pt;}
.ws2a_c00304{word-spacing:25.184000pt;}
.ws29_c00304{word-spacing:25.235200pt;}
.ws9_c00304{word-spacing:30.259200pt;}
.ws2b_c00304{word-spacing:35.692800pt;}
.ws2c_c00304{word-spacing:35.718400pt;}
.ws4_c00304{word-spacing:38.880000pt;}
.ws5_c00304{word-spacing:38.918400pt;}
.ws25_c00304{word-spacing:39.852800pt;}
.ws24_c00304{word-spacing:39.865600pt;}
._1_c00304{width:0.934400pt;}
._0_c00304{width:8.648960pt;}
.fs0_c00304{font-size:64.000000pt;}
.fs1_c00304{font-size:74.560000pt;}
.y0_c00304{bottom:0.000000pt;}
.y2_c00304{bottom:41.627067pt;}
.y1_c00304{bottom:60.027067pt;}
.y24_c00304{bottom:118.907067pt;}
.y23_c00304{bottom:137.307067pt;}
.y22_c00304{bottom:155.707067pt;}
.y21_c00304{bottom:174.107067pt;}
.y20_c00304{bottom:192.507067pt;}
.y1f_c00304{bottom:210.907067pt;}
.y1e_c00304{bottom:229.307067pt;}
.y1d_c00304{bottom:247.707067pt;}
.y1c_c00304{bottom:266.107067pt;}
.y1b_c00304{bottom:284.507067pt;}
.y1a_c00304{bottom:320.107067pt;}
.y19_c00304{bottom:347.707067pt;}
.y18_c00304{bottom:375.307067pt;}
.y17_c00304{bottom:402.907067pt;}
.y16_c00304{bottom:430.507067pt;}
.y15_c00304{bottom:458.107067pt;}
.y14_c00304{bottom:493.707067pt;}
.y13_c00304{bottom:521.307067pt;}
.y12_c00304{bottom:548.907067pt;}
.y11_c00304{bottom:576.507067pt;}
.y10_c00304{bottom:604.107067pt;}
.yf_c00304{bottom:631.707067pt;}
.ye_c00304{bottom:659.307067pt;}
.yd_c00304{bottom:694.907067pt;}
.yc_c00304{bottom:722.507067pt;}
.yb_c00304{bottom:750.107067pt;}
.ya_c00304{bottom:777.707067pt;}
.y9_c00304{bottom:805.307067pt;}
.y8_c00304{bottom:840.907067pt;}
.y7_c00304{bottom:868.507067pt;}
.y6_c00304{bottom:896.107067pt;}
.y5_c00304{bottom:923.707067pt;}
.y4_c00304{bottom:950.187067pt;}
.y3_c00304{bottom:972.907067pt;}
.h1_c00304{height:56.156250pt;}
.h3_c00304{height:57.375000pt;}
.h2_c00304{height:77.763750pt;}
.h0_c00304{height:1122.666667pt;}
.w1_c00304{width:793.333333pt;}
.w0_c00304{width:793.626667pt;}
.x0_c00304{left:0.000000pt;}
.x2_c00304{left:151.200000pt;}
.x4_c00304{left:170.160000pt;}
.x3_c00304{left:223.200000pt;}
.x1_c00304{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_75331004187027f91f539155.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.093262;font-style:normal;font-weight:normal;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_e0619d2bb649c52c8734c898.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.106934;font-style: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;}
.lsb_c00305{letter-spacing:-0.086400px;}
.ls3_c00305{letter-spacing:-0.079200px;}
.ls8_c00305{letter-spacing:-0.064800px;}
.ls6_c00305{letter-spacing:-0.057600px;}
.ls5_c00305{letter-spacing:-0.050400px;}
.ls7_c00305{letter-spacing:-0.036000px;}
.ls2_c00305{letter-spacing:-0.028800px;}
.lsa_c00305{letter-spacing:-0.021600px;}
.ls9_c00305{letter-spacing:-0.014400px;}
.ls4_c00305{letter-spacing:-0.007200px;}
.ls1_c00305{letter-spacing:0.000000px;}
.ls0_c00305{letter-spacing:0.007200px;}
.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;}
}
.ws1a_c00305{word-spacing:-1.972800px;}
.ws1b_c00305{word-spacing:-1.893600px;}
.ws18_c00305{word-spacing:-0.871200px;}
.ws0_c00305{word-spacing:0.000000px;}
.ws5_c00305{word-spacing:0.158400px;}
.ws1c_c00305{word-spacing:0.165600px;}
.ws19_c00305{word-spacing:1.274400px;}
.ws7_c00305{word-spacing:2.304000px;}
.ws6_c00305{word-spacing:2.368800px;}
.ws3_c00305{word-spacing:3.391200px;}
.ws4_c00305{word-spacing:3.405600px;}
.ws9_c00305{word-spacing:3.787200px;}
.ws8_c00305{word-spacing:3.816000px;}
.wsc_c00305{word-spacing:6.314400px;}
.wsd_c00305{word-spacing:6.400800px;}
.wse_c00305{word-spacing:8.474400px;}
.ws12_c00305{word-spacing:9.187200px;}
.ws13_c00305{word-spacing:9.216000px;}
.ws14_c00305{word-spacing:9.554400px;}
.ws15_c00305{word-spacing:9.583200px;}
.wsf_c00305{word-spacing:17.834400px;}
.ws10_c00305{word-spacing:17.856000px;}
.ws1_c00305{word-spacing:18.907200px;}
.ws2_c00305{word-spacing:19.044000px;}
.ws11_c00305{word-spacing:23.184000px;}
.wsa_c00305{word-spacing:28.965600px;}
.wsb_c00305{word-spacing:28.994400px;}
.ws16_c00305{word-spacing:43.459200px;}
.ws17_c00305{word-spacing:43.495200px;}
._0_c00305{width:1.238400px;}
.fc0_c00305{color:rgb(0,0,0);}
.fs0_c00305{font-size:72.000000px;}
.y0_c00305{bottom:0.000000px;}
.y2_c00305{bottom:46.830450px;}
.y1_c00305{bottom:67.530450px;}
.y16_c00305{bottom:550.290450px;}
.y15_c00305{bottom:581.340450px;}
.y14_c00305{bottom:612.390450px;}
.y13_c00305{bottom:643.440450px;}
.y12_c00305{bottom:674.490450px;}
.y11_c00305{bottom:705.540450px;}
.y10_c00305{bottom:736.590450px;}
.yf_c00305{bottom:776.640450px;}
.ye_c00305{bottom:807.690450px;}
.yd_c00305{bottom:838.740450px;}
.yc_c00305{bottom:869.790450px;}
.yb_c00305{bottom:900.840450px;}
.ya_c00305{bottom:931.890450px;}
.y9_c00305{bottom:962.940450px;}
.y8_c00305{bottom:993.990450px;}
.y7_c00305{bottom:1014.690450px;}
.y6_c00305{bottom:1035.390450px;}
.y5_c00305{bottom:1056.090450px;}
.y4_c00305{bottom:1076.790450px;}
.y3_c00305{bottom:1097.490450px;}
.h1_c00305{height:63.175781px;}
.h2_c00305{height:64.546875px;}
.h0_c00305{height:1263.000000px;}
.w1_c00305{width:892.500000px;}
.w0_c00305{width:892.830000px;}
.x0_c00305{left:0.000000px;}
.x2_c00305{left:127.620000px;}
.x3_c00305{left:148.950000px;}
.x1_c00305{left:695.880000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.lsb_c00305{letter-spacing:-0.076800pt;}
.ls3_c00305{letter-spacing:-0.070400pt;}
.ls8_c00305{letter-spacing:-0.057600pt;}
.ls6_c00305{letter-spacing:-0.051200pt;}
.ls5_c00305{letter-spacing:-0.044800pt;}
.ls7_c00305{letter-spacing:-0.032000pt;}
.ls2_c00305{letter-spacing:-0.025600pt;}
.lsa_c00305{letter-spacing:-0.019200pt;}
.ls9_c00305{letter-spacing:-0.012800pt;}
.ls4_c00305{letter-spacing:-0.006400pt;}
.ls1_c00305{letter-spacing:0.000000pt;}
.ls0_c00305{letter-spacing:0.006400pt;}
.ws1a_c00305{word-spacing:-1.753600pt;}
.ws1b_c00305{word-spacing:-1.683200pt;}
.ws18_c00305{word-spacing:-0.774400pt;}
.ws0_c00305{word-spacing:0.000000pt;}
.ws5_c00305{word-spacing:0.140800pt;}
.ws1c_c00305{word-spacing:0.147200pt;}
.ws19_c00305{word-spacing:1.132800pt;}
.ws7_c00305{word-spacing:2.048000pt;}
.ws6_c00305{word-spacing:2.105600pt;}
.ws3_c00305{word-spacing:3.014400pt;}
.ws4_c00305{word-spacing:3.027200pt;}
.ws9_c00305{word-spacing:3.366400pt;}
.ws8_c00305{word-spacing:3.392000pt;}
.wsc_c00305{word-spacing:5.612800pt;}
.wsd_c00305{word-spacing:5.689600pt;}
.wse_c00305{word-spacing:7.532800pt;}
.ws12_c00305{word-spacing:8.166400pt;}
.ws13_c00305{word-spacing:8.192000pt;}
.ws14_c00305{word-spacing:8.492800pt;}
.ws15_c00305{word-spacing:8.518400pt;}
.wsf_c00305{word-spacing:15.852800pt;}
.ws10_c00305{word-spacing:15.872000pt;}
.ws1_c00305{word-spacing:16.806400pt;}
.ws2_c00305{word-spacing:16.928000pt;}
.ws11_c00305{word-spacing:20.608000pt;}
.wsa_c00305{word-spacing:25.747200pt;}
.wsb_c00305{word-spacing:25.772800pt;}
.ws16_c00305{word-spacing:38.630400pt;}
.ws17_c00305{word-spacing:38.662400pt;}
._0_c00305{width:1.100800pt;}
.fs0_c00305{font-size:64.000000pt;}
.y0_c00305{bottom:0.000000pt;}
.y2_c00305{bottom:41.627067pt;}
.y1_c00305{bottom:60.027067pt;}
.y16_c00305{bottom:489.147067pt;}
.y15_c00305{bottom:516.747067pt;}
.y14_c00305{bottom:544.347067pt;}
.y13_c00305{bottom:571.947067pt;}
.y12_c00305{bottom:599.547067pt;}
.y11_c00305{bottom:627.147067pt;}
.y10_c00305{bottom:654.747067pt;}
.yf_c00305{bottom:690.347067pt;}
.ye_c00305{bottom:717.947067pt;}
.yd_c00305{bottom:745.547067pt;}
.yc_c00305{bottom:773.147067pt;}
.yb_c00305{bottom:800.747067pt;}
.ya_c00305{bottom:828.347067pt;}
.y9_c00305{bottom:855.947067pt;}
.y8_c00305{bottom:883.547067pt;}
.y7_c00305{bottom:901.947067pt;}
.y6_c00305{bottom:920.347067pt;}
.y5_c00305{bottom:938.747067pt;}
.y4_c00305{bottom:957.147067pt;}
.y3_c00305{bottom:975.547067pt;}
.h1_c00305{height:56.156250pt;}
.h2_c00305{height:57.375000pt;}
.h0_c00305{height:1122.666667pt;}
.w1_c00305{width:793.333333pt;}
.w0_c00305{width:793.626667pt;}
.x0_c00305{left:0.000000pt;}
.x2_c00305{left:113.440000pt;}
.x3_c00305{left:132.400000pt;}
.x1_c00305{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1b8d002bbb16bbee8d9d1a61.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.093262;font-style:normal;font-weight:normal;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_f1449348f75df9f288b5a5c9.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00306;src:url('chunks/assets/font_c74dde74ad23ee0e617e70d1.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;line-height:1.106934;font-style:normal;font-weight:normal;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_9a610d6ff7c22e076db20668.woff2')format("woff");}.ff4_c00306{font-family:ff4_c00306;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsa_c00306{letter-spacing:-0.079200px;}
.ls10_c00306{letter-spacing:-0.072000px;}
.ls6_c00306{letter-spacing:-0.064800px;}
.lse_c00306{letter-spacing:-0.057600px;}
.ls5_c00306{letter-spacing:-0.050400px;}
.ls7_c00306{letter-spacing:-0.043200px;}
.ls3_c00306{letter-spacing:-0.036000px;}
.lsb_c00306{letter-spacing:-0.028800px;}
.ls4_c00306{letter-spacing:-0.021600px;}
.ls8_c00306{letter-spacing:-0.014400px;}
.ls9_c00306{letter-spacing:-0.007200px;}
.ls2_c00306{letter-spacing:0.000000px;}
.ls1_c00306{letter-spacing:0.007200px;}
.lsc_c00306{letter-spacing:0.014400px;}
.lsf_c00306{letter-spacing:0.057600px;}
.ls0_c00306{letter-spacing:0.083880px;}
.lsd_c00306{letter-spacing:0.144000px;}
.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;}
}
.ws0_c00306{word-spacing:-20.160000px;}
.ws33_c00306{word-spacing:-4.212000px;}
.ws34_c00306{word-spacing:-4.089600px;}
.ws19_c00306{word-spacing:-2.671200px;}
.ws2e_c00306{word-spacing:-1.612800px;}
.ws2f_c00306{word-spacing:-1.591200px;}
.wsf_c00306{word-spacing:-1.382400px;}
.wse_c00306{word-spacing:-1.231200px;}
.ws7_c00306{word-spacing:-0.928800px;}
.ws8_c00306{word-spacing:-0.878400px;}
.ws38_c00306{word-spacing:-0.842400px;}
.ws37_c00306{word-spacing:-0.712800px;}
.wsa_c00306{word-spacing:-0.525600px;}
.ws9_c00306{word-spacing:-0.496800px;}
.ws1_c00306{word-spacing:0.000000px;}
.ws27_c00306{word-spacing:0.158400px;}
.ws20_c00306{word-spacing:0.165600px;}
.ws32_c00306{word-spacing:0.871200px;}
.ws31_c00306{word-spacing:0.892800px;}
.ws29_c00306{word-spacing:2.304000px;}
.ws28_c00306{word-spacing:2.419200px;}
.ws21_c00306{word-spacing:3.132000px;}
.ws22_c00306{word-spacing:3.153600px;}
.ws1e_c00306{word-spacing:4.795200px;}
.ws1f_c00306{word-spacing:4.816800px;}
.ws2d_c00306{word-spacing:6.278400px;}
.ws36_c00306{word-spacing:6.300000px;}
.ws2c_c00306{word-spacing:6.314400px;}
.ws35_c00306{word-spacing:6.321600px;}
.ws15_c00306{word-spacing:6.688800px;}
.ws16_c00306{word-spacing:6.717600px;}
.ws11_c00306{word-spacing:8.445600px;}
.ws30_c00306{word-spacing:8.488800px;}
.ws1a_c00306{word-spacing:12.074400px;}
.ws1c_c00306{word-spacing:12.384000px;}
.ws4_c00306{word-spacing:12.420000px;}
.ws3_c00306{word-spacing:12.434400px;}
.ws1b_c00306{word-spacing:12.628800px;}
.ws1d_c00306{word-spacing:13.874400px;}
.ws5_c00306{word-spacing:14.227200px;}
.ws6_c00306{word-spacing:14.248800px;}
.ws26_c00306{word-spacing:14.580000px;}
.ws25_c00306{word-spacing:14.594400px;}
.wsc_c00306{word-spacing:16.581600px;}
.wsb_c00306{word-spacing:16.632000px;}
.wsd_c00306{word-spacing:16.783200px;}
.ws13_c00306{word-spacing:17.640000px;}
.ws14_c00306{word-spacing:17.733600px;}
.ws24_c00306{word-spacing:17.798400px;}
.ws23_c00306{word-spacing:17.863200px;}
.ws17_c00306{word-spacing:33.638400px;}
.ws18_c00306{word-spacing:33.739200px;}
.ws2a_c00306{word-spacing:41.191200px;}
.ws2b_c00306{word-spacing:41.256000px;}
.ws10_c00306{word-spacing:41.572800px;}
.ws12_c00306{word-spacing:45.525600px;}
.ws2_c00306{word-spacing:187.572456px;}
._1_c00306{margin-left:-188.310600px;}
._0_c00306{margin-left:-187.220160px;}
._2_c00306{width:1.216800px;}
.fc0_c00306{color:rgb(0,0,0);}
.fs0_c00306{font-size:72.000000px;}
.fs1_c00306{font-size:83.880000px;}
.y0_c00306{bottom:0.000000px;}
.y2_c00306{bottom:46.830450px;}
.y1_c00306{bottom:67.530450px;}
.y29_c00306{bottom:132.420450px;}
.y28_c00306{bottom:163.470450px;}
.y27_c00306{bottom:203.520450px;}
.y26_c00306{bottom:234.570450px;}
.y25_c00306{bottom:265.620450px;}
.y24_c00306{bottom:305.670450px;}
.y23_c00306{bottom:326.370450px;}
.y22_c00306{bottom:347.070450px;}
.y21_c00306{bottom:367.770450px;}
.y20_c00306{bottom:388.470450px;}
.y1f_c00306{bottom:409.170450px;}
.y1e_c00306{bottom:429.870450px;}
.y1d_c00306{bottom:469.920450px;}
.y1c_c00306{bottom:500.970450px;}
.y1b_c00306{bottom:532.020450px;}
.y1a_c00306{bottom:563.070450px;}
.y19_c00306{bottom:603.120450px;}
.y18_c00306{bottom:634.080450px;}
.y17_c00306{bottom:665.220450px;}
.y16_c00306{bottom:696.270450px;}
.y15_c00306{bottom:716.970450px;}
.y14_c00306{bottom:737.670450px;}
.y13_c00306{bottom:758.370450px;}
.y12_c00306{bottom:779.070450px;}
.y11_c00306{bottom:799.770450px;}
.y10_c00306{bottom:820.470450px;}
.yf_c00306{bottom:841.170450px;}
.ye_c00306{bottom:861.870450px;}
.yd_c00306{bottom:882.570450px;}
.yc_c00306{bottom:903.270450px;}
.yb_c00306{bottom:923.970450px;}
.ya_c00306{bottom:944.670450px;}
.y9_c00306{bottom:965.370450px;}
.y8_c00306{bottom:986.070450px;}
.y7_c00306{bottom:1006.770450px;}
.y6_c00306{bottom:1027.470450px;}
.y5_c00306{bottom:1048.170450px;}
.y4_c00306{bottom:1068.960450px;}
.y3_c00306{bottom:1094.520450px;}
.h1_c00306{height:63.175781px;}
.h3_c00306{height:64.546875px;}
.h4_c00306{height:75.093750px;}
.h2_c00306{height:87.484219px;}
.h0_c00306{height:1263.000000px;}
.w1_c00306{width:892.500000px;}
.w0_c00306{width:892.830000px;}
.x0_c00306{left:0.000000px;}
.x2_c00306{left:170.100000px;}
.x4_c00306{left:191.430000px;}
.x3_c00306{left:224.100000px;}
.x1_c00306{left:738.360000px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.lsa_c00306{letter-spacing:-0.070400pt;}
.ls10_c00306{letter-spacing:-0.064000pt;}
.ls6_c00306{letter-spacing:-0.057600pt;}
.lse_c00306{letter-spacing:-0.051200pt;}
.ls5_c00306{letter-spacing:-0.044800pt;}
.ls7_c00306{letter-spacing:-0.038400pt;}
.ls3_c00306{letter-spacing:-0.032000pt;}
.lsb_c00306{letter-spacing:-0.025600pt;}
.ls4_c00306{letter-spacing:-0.019200pt;}
.ls8_c00306{letter-spacing:-0.012800pt;}
.ls9_c00306{letter-spacing:-0.006400pt;}
.ls2_c00306{letter-spacing:0.000000pt;}
.ls1_c00306{letter-spacing:0.006400pt;}
.lsc_c00306{letter-spacing:0.012800pt;}
.lsf_c00306{letter-spacing:0.051200pt;}
.ls0_c00306{letter-spacing:0.074560pt;}
.lsd_c00306{letter-spacing:0.128000pt;}
.ws0_c00306{word-spacing:-17.920000pt;}
.ws33_c00306{word-spacing:-3.744000pt;}
.ws34_c00306{word-spacing:-3.635200pt;}
.ws19_c00306{word-spacing:-2.374400pt;}
.ws2e_c00306{word-spacing:-1.433600pt;}
.ws2f_c00306{word-spacing:-1.414400pt;}
.wsf_c00306{word-spacing:-1.228800pt;}
.wse_c00306{word-spacing:-1.094400pt;}
.ws7_c00306{word-spacing:-0.825600pt;}
.ws8_c00306{word-spacing:-0.780800pt;}
.ws38_c00306{word-spacing:-0.748800pt;}
.ws37_c00306{word-spacing:-0.633600pt;}
.wsa_c00306{word-spacing:-0.467200pt;}
.ws9_c00306{word-spacing:-0.441600pt;}
.ws1_c00306{word-spacing:0.000000pt;}
.ws27_c00306{word-spacing:0.140800pt;}
.ws20_c00306{word-spacing:0.147200pt;}
.ws32_c00306{word-spacing:0.774400pt;}
.ws31_c00306{word-spacing:0.793600pt;}
.ws29_c00306{word-spacing:2.048000pt;}
.ws28_c00306{word-spacing:2.150400pt;}
.ws21_c00306{word-spacing:2.784000pt;}
.ws22_c00306{word-spacing:2.803200pt;}
.ws1e_c00306{word-spacing:4.262400pt;}
.ws1f_c00306{word-spacing:4.281600pt;}
.ws2d_c00306{word-spacing:5.580800pt;}
.ws36_c00306{word-spacing:5.600000pt;}
.ws2c_c00306{word-spacing:5.612800pt;}
.ws35_c00306{word-spacing:5.619200pt;}
.ws15_c00306{word-spacing:5.945600pt;}
.ws16_c00306{word-spacing:5.971200pt;}
.ws11_c00306{word-spacing:7.507200pt;}
.ws30_c00306{word-spacing:7.545600pt;}
.ws1a_c00306{word-spacing:10.732800pt;}
.ws1c_c00306{word-spacing:11.008000pt;}
.ws4_c00306{word-spacing:11.040000pt;}
.ws3_c00306{word-spacing:11.052800pt;}
.ws1b_c00306{word-spacing:11.225600pt;}
.ws1d_c00306{word-spacing:12.332800pt;}
.ws5_c00306{word-spacing:12.646400pt;}
.ws6_c00306{word-spacing:12.665600pt;}
.ws26_c00306{word-spacing:12.960000pt;}
.ws25_c00306{word-spacing:12.972800pt;}
.wsc_c00306{word-spacing:14.739200pt;}
.wsb_c00306{word-spacing:14.784000pt;}
.wsd_c00306{word-spacing:14.918400pt;}
.ws13_c00306{word-spacing:15.680000pt;}
.ws14_c00306{word-spacing:15.763200pt;}
.ws24_c00306{word-spacing:15.820800pt;}
.ws23_c00306{word-spacing:15.878400pt;}
.ws17_c00306{word-spacing:29.900800pt;}
.ws18_c00306{word-spacing:29.990400pt;}
.ws2a_c00306{word-spacing:36.614400pt;}
.ws2b_c00306{word-spacing:36.672000pt;}
.ws10_c00306{word-spacing:36.953600pt;}
.ws12_c00306{word-spacing:40.467200pt;}
.ws2_c00306{word-spacing:166.731072pt;}
._1_c00306{margin-left:-167.387200pt;}
._0_c00306{margin-left:-166.417920pt;}
._2_c00306{width:1.081600pt;}
.fs0_c00306{font-size:64.000000pt;}
.fs1_c00306{font-size:74.560000pt;}
.y0_c00306{bottom:0.000000pt;}
.y2_c00306{bottom:41.627067pt;}
.y1_c00306{bottom:60.027067pt;}
.y29_c00306{bottom:117.707067pt;}
.y28_c00306{bottom:145.307067pt;}
.y27_c00306{bottom:180.907067pt;}
.y26_c00306{bottom:208.507067pt;}
.y25_c00306{bottom:236.107067pt;}
.y24_c00306{bottom:271.707067pt;}
.y23_c00306{bottom:290.107067pt;}
.y22_c00306{bottom:308.507067pt;}
.y21_c00306{bottom:326.907067pt;}
.y20_c00306{bottom:345.307067pt;}
.y1f_c00306{bottom:363.707067pt;}
.y1e_c00306{bottom:382.107067pt;}
.y1d_c00306{bottom:417.707067pt;}
.y1c_c00306{bottom:445.307067pt;}
.y1b_c00306{bottom:472.907067pt;}
.y1a_c00306{bottom:500.507067pt;}
.y19_c00306{bottom:536.107067pt;}
.y18_c00306{bottom:563.627067pt;}
.y17_c00306{bottom:591.307067pt;}
.y16_c00306{bottom:618.907067pt;}
.y15_c00306{bottom:637.307067pt;}
.y14_c00306{bottom:655.707067pt;}
.y13_c00306{bottom:674.107067pt;}
.y12_c00306{bottom:692.507067pt;}
.y11_c00306{bottom:710.907067pt;}
.y10_c00306{bottom:729.307067pt;}
.yf_c00306{bottom:747.707067pt;}
.ye_c00306{bottom:766.107067pt;}
.yd_c00306{bottom:784.507067pt;}
.yc_c00306{bottom:802.907067pt;}
.yb_c00306{bottom:821.307067pt;}
.ya_c00306{bottom:839.707067pt;}
.y9_c00306{bottom:858.107067pt;}
.y8_c00306{bottom:876.507067pt;}
.y7_c00306{bottom:894.907067pt;}
.y6_c00306{bottom:913.307067pt;}
.y5_c00306{bottom:931.707067pt;}
.y4_c00306{bottom:950.187067pt;}
.y3_c00306{bottom:972.907067pt;}
.h1_c00306{height:56.156250pt;}
.h3_c00306{height:57.375000pt;}
.h4_c00306{height:66.750000pt;}
.h2_c00306{height:77.763750pt;}
.h0_c00306{height:1122.666667pt;}
.w1_c00306{width:793.333333pt;}
.w0_c00306{width:793.626667pt;}
.x0_c00306{left:0.000000pt;}
.x2_c00306{left:151.200000pt;}
.x4_c00306{left:170.160000pt;}
.x3_c00306{left:199.200000pt;}
.x1_c00306{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8c1487a4b7278cb0a2339bdf.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.093262;font-style:normal;font-weight:normal;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_48984c5a464336e1ed7f5878.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.106934;font-style:normal;font-weight:normal;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_2827892e618056f05e79d26c.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls5_c00307{letter-spacing:-0.093600px;}
.lsb_c00307{letter-spacing:-0.086400px;}
.lsa_c00307{letter-spacing:-0.079200px;}
.lsc_c00307{letter-spacing:-0.057600px;}
.lsd_c00307{letter-spacing:-0.050400px;}
.ls4_c00307{letter-spacing:-0.043200px;}
.ls9_c00307{letter-spacing:-0.036000px;}
.ls6_c00307{letter-spacing:-0.028800px;}
.ls7_c00307{letter-spacing:-0.021600px;}
.ls2_c00307{letter-spacing:-0.014400px;}
.ls8_c00307{letter-spacing:-0.007200px;}
.ls1_c00307{letter-spacing:0.000000px;}
.ls3_c00307{letter-spacing:0.007200px;}
.ls0_c00307{letter-spacing:0.144000px;}
.lse_c00307{letter-spacing:843.998400px;}
.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;}
}
.ws3_c00307{word-spacing:-2.678400px;}
.ws4_c00307{word-spacing:-2.628000px;}
.ws1c_c00307{word-spacing:-0.554400px;}
.ws14_c00307{word-spacing:-0.021600px;}
.ws0_c00307{word-spacing:0.000000px;}
.ws1f_c00307{word-spacing:0.079200px;}
.wsb_c00307{word-spacing:0.165600px;}
.ws7_c00307{word-spacing:0.172800px;}
.ws1b_c00307{word-spacing:0.180000px;}
.ws8_c00307{word-spacing:0.187200px;}
.wsc_c00307{word-spacing:0.201600px;}
.ws13_c00307{word-spacing:2.001600px;}
.ws12_c00307{word-spacing:2.016000px;}
.ws15_c00307{word-spacing:5.515200px;}
.ws6_c00307{word-spacing:5.558400px;}
.ws5_c00307{word-spacing:5.572800px;}
.ws19_c00307{word-spacing:5.860800px;}
.ws18_c00307{word-spacing:5.968800px;}
.ws16_c00307{word-spacing:7.322400px;}
.ws17_c00307{word-spacing:7.394400px;}
.ws1d_c00307{word-spacing:7.740000px;}
.ws1e_c00307{word-spacing:7.797600px;}
.ws2_c00307{word-spacing:12.391200px;}
.ws1_c00307{word-spacing:12.412800px;}
.wse_c00307{word-spacing:17.474400px;}
.wsf_c00307{word-spacing:17.697600px;}
.ws9_c00307{word-spacing:18.828000px;}
.wsa_c00307{word-spacing:18.900000px;}
.ws1a_c00307{word-spacing:25.048800px;}
.wsd_c00307{word-spacing:28.288800px;}
.ws11_c00307{word-spacing:36.165600px;}
.ws10_c00307{word-spacing:36.280800px;}
._0_c00307{width:1.396800px;}
.fc0_c00307{color:rgb(0,0,0);}
.fs0_c00307{font-size:72.000000px;}
.y0_c00307{bottom:0.000000px;}
.y2_c00307{bottom:46.830450px;}
.y1_c00307{bottom:67.530450px;}
.y18_c00307{bottom:391.440450px;}
.y17_c00307{bottom:431.490450px;}
.y16_c00307{bottom:471.540450px;}
.y15_c00307{bottom:502.590450px;}
.y14_c00307{bottom:533.640450px;}
.y13_c00307{bottom:573.690450px;}
.y12_c00307{bottom:604.740450px;}
.y11_c00307{bottom:635.790450px;}
.y10_c00307{bottom:666.840450px;}
.yf_c00307{bottom:697.890450px;}
.ye_c00307{bottom:737.940450px;}
.yd_c00307{bottom:768.900450px;}
.yc_c00307{bottom:800.040450px;}
.yb_c00307{bottom:840.090450px;}
.ya_c00307{bottom:871.140450px;}
.y9_c00307{bottom:902.190450px;}
.y8_c00307{bottom:933.240450px;}
.y7_c00307{bottom:964.290450px;}
.y6_c00307{bottom:1004.340450px;}
.y5_c00307{bottom:1035.390450px;}
.y4_c00307{bottom:1066.440450px;}
.y3_c00307{bottom:1097.490450px;}
.h1_c00307{height:63.175781px;}
.h2_c00307{height:64.546875px;}
.h3_c00307{height:75.093750px;}
.h0_c00307{height:1263.000000px;}
.w1_c00307{width:892.500000px;}
.w0_c00307{width:892.830000px;}
.x0_c00307{left:0.000000px;}
.x2_c00307{left:127.620000px;}
.x1_c00307{left:695.880000px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls5_c00307{letter-spacing:-0.083200pt;}
.lsb_c00307{letter-spacing:-0.076800pt;}
.lsa_c00307{letter-spacing:-0.070400pt;}
.lsc_c00307{letter-spacing:-0.051200pt;}
.lsd_c00307{letter-spacing:-0.044800pt;}
.ls4_c00307{letter-spacing:-0.038400pt;}
.ls9_c00307{letter-spacing:-0.032000pt;}
.ls6_c00307{letter-spacing:-0.025600pt;}
.ls7_c00307{letter-spacing:-0.019200pt;}
.ls2_c00307{letter-spacing:-0.012800pt;}
.ls8_c00307{letter-spacing:-0.006400pt;}
.ls1_c00307{letter-spacing:0.000000pt;}
.ls3_c00307{letter-spacing:0.006400pt;}
.ls0_c00307{letter-spacing:0.128000pt;}
.lse_c00307{letter-spacing:750.220800pt;}
.ws3_c00307{word-spacing:-2.380800pt;}
.ws4_c00307{word-spacing:-2.336000pt;}
.ws1c_c00307{word-spacing:-0.492800pt;}
.ws14_c00307{word-spacing:-0.019200pt;}
.ws0_c00307{word-spacing:0.000000pt;}
.ws1f_c00307{word-spacing:0.070400pt;}
.wsb_c00307{word-spacing:0.147200pt;}
.ws7_c00307{word-spacing:0.153600pt;}
.ws1b_c00307{word-spacing:0.160000pt;}
.ws8_c00307{word-spacing:0.166400pt;}
.wsc_c00307{word-spacing:0.179200pt;}
.ws13_c00307{word-spacing:1.779200pt;}
.ws12_c00307{word-spacing:1.792000pt;}
.ws15_c00307{word-spacing:4.902400pt;}
.ws6_c00307{word-spacing:4.940800pt;}
.ws5_c00307{word-spacing:4.953600pt;}
.ws19_c00307{word-spacing:5.209600pt;}
.ws18_c00307{word-spacing:5.305600pt;}
.ws16_c00307{word-spacing:6.508800pt;}
.ws17_c00307{word-spacing:6.572800pt;}
.ws1d_c00307{word-spacing:6.880000pt;}
.ws1e_c00307{word-spacing:6.931200pt;}
.ws2_c00307{word-spacing:11.014400pt;}
.ws1_c00307{word-spacing:11.033600pt;}
.wse_c00307{word-spacing:15.532800pt;}
.wsf_c00307{word-spacing:15.731200pt;}
.ws9_c00307{word-spacing:16.736000pt;}
.wsa_c00307{word-spacing:16.800000pt;}
.ws1a_c00307{word-spacing:22.265600pt;}
.wsd_c00307{word-spacing:25.145600pt;}
.ws11_c00307{word-spacing:32.147200pt;}
.ws10_c00307{word-spacing:32.249600pt;}
._0_c00307{width:1.241600pt;}
.fs0_c00307{font-size:64.000000pt;}
.y0_c00307{bottom:0.000000pt;}
.y2_c00307{bottom:41.627067pt;}
.y1_c00307{bottom:60.027067pt;}
.y18_c00307{bottom:347.947067pt;}
.y17_c00307{bottom:383.547067pt;}
.y16_c00307{bottom:419.147067pt;}
.y15_c00307{bottom:446.747067pt;}
.y14_c00307{bottom:474.347067pt;}
.y13_c00307{bottom:509.947067pt;}
.y12_c00307{bottom:537.547067pt;}
.y11_c00307{bottom:565.147067pt;}
.y10_c00307{bottom:592.747067pt;}
.yf_c00307{bottom:620.347067pt;}
.ye_c00307{bottom:655.947067pt;}
.yd_c00307{bottom:683.467067pt;}
.yc_c00307{bottom:711.147067pt;}
.yb_c00307{bottom:746.747067pt;}
.ya_c00307{bottom:774.347067pt;}
.y9_c00307{bottom:801.947067pt;}
.y8_c00307{bottom:829.547067pt;}
.y7_c00307{bottom:857.147067pt;}
.y6_c00307{bottom:892.747067pt;}
.y5_c00307{bottom:920.347067pt;}
.y4_c00307{bottom:947.947067pt;}
.y3_c00307{bottom:975.547067pt;}
.h1_c00307{height:56.156250pt;}
.h2_c00307{height:57.375000pt;}
.h3_c00307{height:66.750000pt;}
.h0_c00307{height:1122.666667pt;}
.w1_c00307{width:793.333333pt;}
.w0_c00307{width:793.626667pt;}
.x0_c00307{left:0.000000pt;}
.x2_c00307{left:113.440000pt;}
.x1_c00307{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_44ab70c51143807eda34a381.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.093262;font-style:normal;font-weight:normal;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_06ca271822e805bfb852f72c.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00308;src:url('chunks/assets/font_c3624f369b7ed8a534c147a0.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00308{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00308{vertical-align:0.000000px;}
.lsd_c00308{letter-spacing:-0.100800px;}
.ls6_c00308{letter-spacing:-0.072000px;}
.ls7_c00308{letter-spacing:-0.064800px;}
.lsc_c00308{letter-spacing:-0.057600px;}
.ls5_c00308{letter-spacing:-0.050400px;}
.ls8_c00308{letter-spacing:-0.043200px;}
.ls3_c00308{letter-spacing:-0.036000px;}
.ls9_c00308{letter-spacing:-0.028800px;}
.ls4_c00308{letter-spacing:-0.021600px;}
.lsa_c00308{letter-spacing:-0.014400px;}
.lsb_c00308{letter-spacing:-0.007200px;}
.ls2_c00308{letter-spacing:0.000000px;}
.ls1_c00308{letter-spacing:0.007200px;}
.ls0_c00308{letter-spacing:0.067104px;}
.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;}
}
.ws7_c00308{word-spacing:-3.758400px;}
.ws6_c00308{word-spacing:-3.751200px;}
.ws2c_c00308{word-spacing:-2.865600px;}
.ws2b_c00308{word-spacing:-2.685600px;}
.ws2d_c00308{word-spacing:-2.656800px;}
.ws31_c00308{word-spacing:-2.361600px;}
.ws35_c00308{word-spacing:-2.325600px;}
.ws33_c00308{word-spacing:-2.304000px;}
.ws32_c00308{word-spacing:-2.289600px;}
.ws34_c00308{word-spacing:-2.196000px;}
.ws4_c00308{word-spacing:-0.151200px;}
.ws5_c00308{word-spacing:-0.129600px;}
.ws1_c00308{word-spacing:-0.050328px;}
.ws0_c00308{word-spacing:0.000000px;}
.ws2f_c00308{word-spacing:0.100800px;}
.ws25_c00308{word-spacing:0.180000px;}
.wsb_c00308{word-spacing:0.201600px;}
.wsa_c00308{word-spacing:0.295200px;}
.ws22_c00308{word-spacing:1.620000px;}
.ws21_c00308{word-spacing:1.692000px;}
.ws1d_c00308{word-spacing:2.008800px;}
.ws1e_c00308{word-spacing:2.059200px;}
.ws30_c00308{word-spacing:3.420000px;}
.wse_c00308{word-spacing:4.492800px;}
.wsf_c00308{word-spacing:4.521600px;}
.ws18_c00308{word-spacing:5.155200px;}
.ws17_c00308{word-spacing:5.248800px;}
.ws28_c00308{word-spacing:5.961600px;}
.ws8_c00308{word-spacing:6.321600px;}
.ws9_c00308{word-spacing:6.343200px;}
.ws3_c00308{word-spacing:8.820000px;}
.ws2_c00308{word-spacing:8.834400px;}
.ws1c_c00308{word-spacing:9.172800px;}
.ws1b_c00308{word-spacing:9.201600px;}
.ws11_c00308{word-spacing:9.907200px;}
.ws12_c00308{word-spacing:9.928800px;}
.wsd_c00308{word-spacing:11.412000px;}
.wsc_c00308{word-spacing:11.462400px;}
.ws24_c00308{word-spacing:15.285600px;}
.ws23_c00308{word-spacing:15.292800px;}
.ws13_c00308{word-spacing:15.660000px;}
.ws14_c00308{word-spacing:15.681600px;}
.ws15_c00308{word-spacing:17.791200px;}
.ws16_c00308{word-spacing:17.805600px;}
.ws2e_c00308{word-spacing:17.870400px;}
.ws1f_c00308{word-spacing:20.354400px;}
.ws20_c00308{word-spacing:20.397600px;}
.ws10_c00308{word-spacing:22.154400px;}
.ws29_c00308{word-spacing:25.041600px;}
.ws2a_c00308{word-spacing:25.077600px;}
.ws19_c00308{word-spacing:31.104000px;}
.ws1a_c00308{word-spacing:31.183200px;}
.ws26_c00308{word-spacing:33.213600px;}
.ws27_c00308{word-spacing:33.278400px;}
._2_c00308{margin-left:-18.079200px;}
._1_c00308{width:1.368000px;}
._0_c00308{width:9.813960px;}
.fc0_c00308{color:rgb(0,0,0);}
.fs0_c00308{font-size:72.000000px;}
.fs1_c00308{font-size:83.880000px;}
.y0_c00308{bottom:0.000000px;}
.y2_c00308{bottom:46.830450px;}
.y1_c00308{bottom:67.530450px;}
.y22_c00308{bottom:146.910450px;}
.y21_c00308{bottom:177.960450px;}
.y20_c00308{bottom:209.010450px;}
.y1f_c00308{bottom:229.710450px;}
.y1e_c00308{bottom:250.410450px;}
.y1d_c00308{bottom:271.110450px;}
.y1c_c00308{bottom:291.810450px;}
.y1b_c00308{bottom:312.510450px;}
.y1a_c00308{bottom:352.560450px;}
.y19_c00308{bottom:383.610450px;}
.y18_c00308{bottom:414.660450px;}
.y17_c00308{bottom:454.710450px;}
.y16_c00308{bottom:485.760450px;}
.y15_c00308{bottom:516.810450px;}
.y14_c00308{bottom:547.860450px;}
.y13_c00308{bottom:578.910450px;}
.y12_c00308{bottom:609.960450px;}
.y11_c00308{bottom:641.010450px;}
.y10_c00308{bottom:672.060450px;}
.yf_c00308{bottom:703.110450px;}
.ye_c00308{bottom:734.160450px;}
.yd_c00308{bottom:765.210450px;}
.yc_c00308{bottom:796.260450px;}
.yb_c00308{bottom:827.310450px;}
.ya_c00308{bottom:858.360450px;}
.y9_c00308{bottom:898.410450px;}
.y8_c00308{bottom:929.370450px;}
.y7_c00308{bottom:960.420450px;}
.y6_c00308{bottom:991.470450px;}
.y5_c00308{bottom:1022.520450px;}
.y4_c00308{bottom:1052.310450px;}
.y3_c00308{bottom:1094.520450px;}
.h1_c00308{height:63.175781px;}
.h3_c00308{height:64.546875px;}
.h2_c00308{height:87.484219px;}
.h0_c00308{height:1263.000000px;}
.w1_c00308{width:892.500000px;}
.w0_c00308{width:892.830000px;}
.x0_c00308{left:0.000000px;}
.x2_c00308{left:170.100000px;}
.x4_c00308{left:191.430000px;}
.x3_c00308{left:251.100000px;}
.x1_c00308{left:738.360000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.lsd_c00308{letter-spacing:-0.089600pt;}
.ls6_c00308{letter-spacing:-0.064000pt;}
.ls7_c00308{letter-spacing:-0.057600pt;}
.lsc_c00308{letter-spacing:-0.051200pt;}
.ls5_c00308{letter-spacing:-0.044800pt;}
.ls8_c00308{letter-spacing:-0.038400pt;}
.ls3_c00308{letter-spacing:-0.032000pt;}
.ls9_c00308{letter-spacing:-0.025600pt;}
.ls4_c00308{letter-spacing:-0.019200pt;}
.lsa_c00308{letter-spacing:-0.012800pt;}
.lsb_c00308{letter-spacing:-0.006400pt;}
.ls2_c00308{letter-spacing:0.000000pt;}
.ls1_c00308{letter-spacing:0.006400pt;}
.ls0_c00308{letter-spacing:0.059648pt;}
.ws7_c00308{word-spacing:-3.340800pt;}
.ws6_c00308{word-spacing:-3.334400pt;}
.ws2c_c00308{word-spacing:-2.547200pt;}
.ws2b_c00308{word-spacing:-2.387200pt;}
.ws2d_c00308{word-spacing:-2.361600pt;}
.ws31_c00308{word-spacing:-2.099200pt;}
.ws35_c00308{word-spacing:-2.067200pt;}
.ws33_c00308{word-spacing:-2.048000pt;}
.ws32_c00308{word-spacing:-2.035200pt;}
.ws34_c00308{word-spacing:-1.952000pt;}
.ws4_c00308{word-spacing:-0.134400pt;}
.ws5_c00308{word-spacing:-0.115200pt;}
.ws1_c00308{word-spacing:-0.044736pt;}
.ws0_c00308{word-spacing:0.000000pt;}
.ws2f_c00308{word-spacing:0.089600pt;}
.ws25_c00308{word-spacing:0.160000pt;}
.wsb_c00308{word-spacing:0.179200pt;}
.wsa_c00308{word-spacing:0.262400pt;}
.ws22_c00308{word-spacing:1.440000pt;}
.ws21_c00308{word-spacing:1.504000pt;}
.ws1d_c00308{word-spacing:1.785600pt;}
.ws1e_c00308{word-spacing:1.830400pt;}
.ws30_c00308{word-spacing:3.040000pt;}
.wse_c00308{word-spacing:3.993600pt;}
.wsf_c00308{word-spacing:4.019200pt;}
.ws18_c00308{word-spacing:4.582400pt;}
.ws17_c00308{word-spacing:4.665600pt;}
.ws28_c00308{word-spacing:5.299200pt;}
.ws8_c00308{word-spacing:5.619200pt;}
.ws9_c00308{word-spacing:5.638400pt;}
.ws3_c00308{word-spacing:7.840000pt;}
.ws2_c00308{word-spacing:7.852800pt;}
.ws1c_c00308{word-spacing:8.153600pt;}
.ws1b_c00308{word-spacing:8.179200pt;}
.ws11_c00308{word-spacing:8.806400pt;}
.ws12_c00308{word-spacing:8.825600pt;}
.wsd_c00308{word-spacing:10.144000pt;}
.wsc_c00308{word-spacing:10.188800pt;}
.ws24_c00308{word-spacing:13.587200pt;}
.ws23_c00308{word-spacing:13.593600pt;}
.ws13_c00308{word-spacing:13.920000pt;}
.ws14_c00308{word-spacing:13.939200pt;}
.ws15_c00308{word-spacing:15.814400pt;}
.ws16_c00308{word-spacing:15.827200pt;}
.ws2e_c00308{word-spacing:15.884800pt;}
.ws1f_c00308{word-spacing:18.092800pt;}
.ws20_c00308{word-spacing:18.131200pt;}
.ws10_c00308{word-spacing:19.692800pt;}
.ws29_c00308{word-spacing:22.259200pt;}
.ws2a_c00308{word-spacing:22.291200pt;}
.ws19_c00308{word-spacing:27.648000pt;}
.ws1a_c00308{word-spacing:27.718400pt;}
.ws26_c00308{word-spacing:29.523200pt;}
.ws27_c00308{word-spacing:29.580800pt;}
._2_c00308{margin-left:-16.070400pt;}
._1_c00308{width:1.216000pt;}
._0_c00308{width:8.723520pt;}
.fs0_c00308{font-size:64.000000pt;}
.fs1_c00308{font-size:74.560000pt;}
.y0_c00308{bottom:0.000000pt;}
.y2_c00308{bottom:41.627067pt;}
.y1_c00308{bottom:60.027067pt;}
.y22_c00308{bottom:130.587067pt;}
.y21_c00308{bottom:158.187067pt;}
.y20_c00308{bottom:185.787067pt;}
.y1f_c00308{bottom:204.187067pt;}
.y1e_c00308{bottom:222.587067pt;}
.y1d_c00308{bottom:240.987067pt;}
.y1c_c00308{bottom:259.387067pt;}
.y1b_c00308{bottom:277.787067pt;}
.y1a_c00308{bottom:313.387067pt;}
.y19_c00308{bottom:340.987067pt;}
.y18_c00308{bottom:368.587067pt;}
.y17_c00308{bottom:404.187067pt;}
.y16_c00308{bottom:431.787067pt;}
.y15_c00308{bottom:459.387067pt;}
.y14_c00308{bottom:486.987067pt;}
.y13_c00308{bottom:514.587067pt;}
.y12_c00308{bottom:542.187067pt;}
.y11_c00308{bottom:569.787067pt;}
.y10_c00308{bottom:597.387067pt;}
.yf_c00308{bottom:624.987067pt;}
.ye_c00308{bottom:652.587067pt;}
.yd_c00308{bottom:680.187067pt;}
.yc_c00308{bottom:707.787067pt;}
.yb_c00308{bottom:735.387067pt;}
.ya_c00308{bottom:762.987067pt;}
.y9_c00308{bottom:798.587067pt;}
.y8_c00308{bottom:826.107067pt;}
.y7_c00308{bottom:853.707067pt;}
.y6_c00308{bottom:881.307067pt;}
.y5_c00308{bottom:908.907067pt;}
.y4_c00308{bottom:935.387067pt;}
.y3_c00308{bottom:972.907067pt;}
.h1_c00308{height:56.156250pt;}
.h3_c00308{height:57.375000pt;}
.h2_c00308{height:77.763750pt;}
.h0_c00308{height:1122.666667pt;}
.w1_c00308{width:793.333333pt;}
.w0_c00308{width:793.626667pt;}
.x0_c00308{left:0.000000pt;}
.x2_c00308{left:151.200000pt;}
.x4_c00308{left:170.160000pt;}
.x3_c00308{left:223.200000pt;}
.x1_c00308{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c4bb2040648a5049d4763117.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.093262;font-style:normal;font-weight:normal;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_6cb2887175bd75c1d0569122.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.106934;font-style:normal;font-weight:normal;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_1cd05f0a347981015bc9e473.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsa_c00309{letter-spacing:-0.079200px;}
.ls6_c00309{letter-spacing:-0.072000px;}
.ls8_c00309{letter-spacing:-0.064800px;}
.ls5_c00309{letter-spacing:-0.057600px;}
.lsb_c00309{letter-spacing:-0.050400px;}
.ls3_c00309{letter-spacing:-0.043200px;}
.ls4_c00309{letter-spacing:-0.036000px;}
.ls7_c00309{letter-spacing:-0.028800px;}
.ls2_c00309{letter-spacing:-0.021600px;}
.ls9_c00309{letter-spacing:-0.014400px;}
.lsc_c00309{letter-spacing:-0.007200px;}
.ls1_c00309{letter-spacing:0.000000px;}
.lsd_c00309{letter-spacing:0.007200px;}
.ls0_c00309{letter-spacing:0.014400px;}
.lsf_c00309{letter-spacing:0.021600px;}
.lse_c00309{letter-spacing:0.504000px;}
.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;}
}
.ws2a_c00309{word-spacing:-4.471200px;}
.ws1f_c00309{word-spacing:-4.111200px;}
.ws20_c00309{word-spacing:-4.104000px;}
.ws1a_c00309{word-spacing:-3.780000px;}
.ws2f_c00309{word-spacing:-1.972800px;}
.ws31_c00309{word-spacing:-1.663200px;}
.ws6_c00309{word-spacing:-1.641600px;}
.ws30_c00309{word-spacing:-1.598400px;}
.ws5_c00309{word-spacing:-1.540800px;}
.ws14_c00309{word-spacing:-0.928800px;}
.ws15_c00309{word-spacing:-0.892800px;}
.ws3_c00309{word-spacing:-0.345600px;}
.ws1b_c00309{word-spacing:-0.165600px;}
.ws4_c00309{word-spacing:-0.144000px;}
.ws0_c00309{word-spacing:0.000000px;}
.ws1c_c00309{word-spacing:0.158400px;}
.ws2_c00309{word-spacing:0.504000px;}
.ws1_c00309{word-spacing:0.540000px;}
.ws32_c00309{word-spacing:1.929600px;}
.ws33_c00309{word-spacing:2.016000px;}
.ws36_c00309{word-spacing:2.656800px;}
.ws34_c00309{word-spacing:2.678400px;}
.ws35_c00309{word-spacing:2.728800px;}
.wse_c00309{word-spacing:3.060000px;}
.wsf_c00309{word-spacing:3.074400px;}
.ws10_c00309{word-spacing:3.218400px;}
.wsc_c00309{word-spacing:3.254400px;}
.wsd_c00309{word-spacing:3.384000px;}
.wsb_c00309{word-spacing:3.441600px;}
.ws9_c00309{word-spacing:3.477600px;}
.wsa_c00309{word-spacing:3.492000px;}
.ws29_c00309{word-spacing:3.780000px;}
.ws28_c00309{word-spacing:3.787200px;}
.ws27_c00309{word-spacing:4.485600px;}
.ws22_c00309{word-spacing:4.492800px;}
.ws19_c00309{word-spacing:4.500000px;}
.ws21_c00309{word-spacing:4.521600px;}
.ws18_c00309{word-spacing:4.586400px;}
.ws1e_c00309{word-spacing:5.140800px;}
.ws1d_c00309{word-spacing:5.176800px;}
.ws12_c00309{word-spacing:5.572800px;}
.ws11_c00309{word-spacing:5.601600px;}
.ws16_c00309{word-spacing:5.904000px;}
.ws17_c00309{word-spacing:5.983200px;}
.ws7_c00309{word-spacing:6.609600px;}
.ws8_c00309{word-spacing:6.652800px;}
.ws2e_c00309{word-spacing:14.551200px;}
.ws2d_c00309{word-spacing:14.587200px;}
.ws13_c00309{word-spacing:14.594400px;}
.ws2c_c00309{word-spacing:15.249600px;}
.ws2b_c00309{word-spacing:15.429600px;}
.ws24_c00309{word-spacing:18.799200px;}
.ws23_c00309{word-spacing:19.008000px;}
.ws25_c00309{word-spacing:30.787200px;}
.ws26_c00309{word-spacing:30.830400px;}
._0_c00309{width:1.094400px;}
.fc0_c00309{color:rgb(0,0,0);}
.fs0_c00309{font-size:72.000000px;}
.y0_c00309{bottom:0.000000px;}
.y2_c00309{bottom:46.830450px;}
.y1_c00309{bottom:67.530450px;}
.y20_c00309{bottom:179.130450px;}
.y1f_c00309{bottom:210.180450px;}
.y1e_c00309{bottom:241.230450px;}
.y1d_c00309{bottom:272.280450px;}
.y1c_c00309{bottom:303.330450px;}
.y1b_c00309{bottom:334.380450px;}
.y1a_c00309{bottom:365.430450px;}
.y19_c00309{bottom:396.390450px;}
.y18_c00309{bottom:427.440450px;}
.y17_c00309{bottom:458.490450px;}
.y16_c00309{bottom:489.540450px;}
.y15_c00309{bottom:520.590450px;}
.y14_c00309{bottom:551.640450px;}
.y13_c00309{bottom:582.690450px;}
.y12_c00309{bottom:622.740450px;}
.y11_c00309{bottom:653.790450px;}
.y10_c00309{bottom:684.840450px;}
.yf_c00309{bottom:715.890450px;}
.ye_c00309{bottom:746.940450px;}
.yd_c00309{bottom:777.990450px;}
.yc_c00309{bottom:818.040450px;}
.yb_c00309{bottom:849.090450px;}
.ya_c00309{bottom:880.140450px;}
.y9_c00309{bottom:911.190450px;}
.y8_c00309{bottom:942.240450px;}
.y7_c00309{bottom:973.290450px;}
.y6_c00309{bottom:1004.340450px;}
.y5_c00309{bottom:1035.390450px;}
.y4_c00309{bottom:1066.440450px;}
.y3_c00309{bottom:1097.490450px;}
.h1_c00309{height:63.175781px;}
.h2_c00309{height:64.546875px;}
.h3_c00309{height:75.093750px;}
.h0_c00309{height:1263.000000px;}
.w1_c00309{width:892.500000px;}
.w0_c00309{width:892.830000px;}
.x0_c00309{left:0.000000px;}
.x2_c00309{left:127.620000px;}
.x1_c00309{left:695.880000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.lsa_c00309{letter-spacing:-0.070400pt;}
.ls6_c00309{letter-spacing:-0.064000pt;}
.ls8_c00309{letter-spacing:-0.057600pt;}
.ls5_c00309{letter-spacing:-0.051200pt;}
.lsb_c00309{letter-spacing:-0.044800pt;}
.ls3_c00309{letter-spacing:-0.038400pt;}
.ls4_c00309{letter-spacing:-0.032000pt;}
.ls7_c00309{letter-spacing:-0.025600pt;}
.ls2_c00309{letter-spacing:-0.019200pt;}
.ls9_c00309{letter-spacing:-0.012800pt;}
.lsc_c00309{letter-spacing:-0.006400pt;}
.ls1_c00309{letter-spacing:0.000000pt;}
.lsd_c00309{letter-spacing:0.006400pt;}
.ls0_c00309{letter-spacing:0.012800pt;}
.lsf_c00309{letter-spacing:0.019200pt;}
.lse_c00309{letter-spacing:0.448000pt;}
.ws2a_c00309{word-spacing:-3.974400pt;}
.ws1f_c00309{word-spacing:-3.654400pt;}
.ws20_c00309{word-spacing:-3.648000pt;}
.ws1a_c00309{word-spacing:-3.360000pt;}
.ws2f_c00309{word-spacing:-1.753600pt;}
.ws31_c00309{word-spacing:-1.478400pt;}
.ws6_c00309{word-spacing:-1.459200pt;}
.ws30_c00309{word-spacing:-1.420800pt;}
.ws5_c00309{word-spacing:-1.369600pt;}
.ws14_c00309{word-spacing:-0.825600pt;}
.ws15_c00309{word-spacing:-0.793600pt;}
.ws3_c00309{word-spacing:-0.307200pt;}
.ws1b_c00309{word-spacing:-0.147200pt;}
.ws4_c00309{word-spacing:-0.128000pt;}
.ws0_c00309{word-spacing:0.000000pt;}
.ws1c_c00309{word-spacing:0.140800pt;}
.ws2_c00309{word-spacing:0.448000pt;}
.ws1_c00309{word-spacing:0.480000pt;}
.ws32_c00309{word-spacing:1.715200pt;}
.ws33_c00309{word-spacing:1.792000pt;}
.ws36_c00309{word-spacing:2.361600pt;}
.ws34_c00309{word-spacing:2.380800pt;}
.ws35_c00309{word-spacing:2.425600pt;}
.wse_c00309{word-spacing:2.720000pt;}
.wsf_c00309{word-spacing:2.732800pt;}
.ws10_c00309{word-spacing:2.860800pt;}
.wsc_c00309{word-spacing:2.892800pt;}
.wsd_c00309{word-spacing:3.008000pt;}
.wsb_c00309{word-spacing:3.059200pt;}
.ws9_c00309{word-spacing:3.091200pt;}
.wsa_c00309{word-spacing:3.104000pt;}
.ws29_c00309{word-spacing:3.360000pt;}
.ws28_c00309{word-spacing:3.366400pt;}
.ws27_c00309{word-spacing:3.987200pt;}
.ws22_c00309{word-spacing:3.993600pt;}
.ws19_c00309{word-spacing:4.000000pt;}
.ws21_c00309{word-spacing:4.019200pt;}
.ws18_c00309{word-spacing:4.076800pt;}
.ws1e_c00309{word-spacing:4.569600pt;}
.ws1d_c00309{word-spacing:4.601600pt;}
.ws12_c00309{word-spacing:4.953600pt;}
.ws11_c00309{word-spacing:4.979200pt;}
.ws16_c00309{word-spacing:5.248000pt;}
.ws17_c00309{word-spacing:5.318400pt;}
.ws7_c00309{word-spacing:5.875200pt;}
.ws8_c00309{word-spacing:5.913600pt;}
.ws2e_c00309{word-spacing:12.934400pt;}
.ws2d_c00309{word-spacing:12.966400pt;}
.ws13_c00309{word-spacing:12.972800pt;}
.ws2c_c00309{word-spacing:13.555200pt;}
.ws2b_c00309{word-spacing:13.715200pt;}
.ws24_c00309{word-spacing:16.710400pt;}
.ws23_c00309{word-spacing:16.896000pt;}
.ws25_c00309{word-spacing:27.366400pt;}
.ws26_c00309{word-spacing:27.404800pt;}
._0_c00309{width:0.972800pt;}
.fs0_c00309{font-size:64.000000pt;}
.y0_c00309{bottom:0.000000pt;}
.y2_c00309{bottom:41.627067pt;}
.y1_c00309{bottom:60.027067pt;}
.y20_c00309{bottom:159.227067pt;}
.y1f_c00309{bottom:186.827067pt;}
.y1e_c00309{bottom:214.427067pt;}
.y1d_c00309{bottom:242.027067pt;}
.y1c_c00309{bottom:269.627067pt;}
.y1b_c00309{bottom:297.227067pt;}
.y1a_c00309{bottom:324.827067pt;}
.y19_c00309{bottom:352.347067pt;}
.y18_c00309{bottom:379.947067pt;}
.y17_c00309{bottom:407.547067pt;}
.y16_c00309{bottom:435.147067pt;}
.y15_c00309{bottom:462.747067pt;}
.y14_c00309{bottom:490.347067pt;}
.y13_c00309{bottom:517.947067pt;}
.y12_c00309{bottom:553.547067pt;}
.y11_c00309{bottom:581.147067pt;}
.y10_c00309{bottom:608.747067pt;}
.yf_c00309{bottom:636.347067pt;}
.ye_c00309{bottom:663.947067pt;}
.yd_c00309{bottom:691.547067pt;}
.yc_c00309{bottom:727.147067pt;}
.yb_c00309{bottom:754.747067pt;}
.ya_c00309{bottom:782.347067pt;}
.y9_c00309{bottom:809.947067pt;}
.y8_c00309{bottom:837.547067pt;}
.y7_c00309{bottom:865.147067pt;}
.y6_c00309{bottom:892.747067pt;}
.y5_c00309{bottom:920.347067pt;}
.y4_c00309{bottom:947.947067pt;}
.y3_c00309{bottom:975.547067pt;}
.h1_c00309{height:56.156250pt;}
.h2_c00309{height:57.375000pt;}
.h3_c00309{height:66.750000pt;}
.h0_c00309{height:1122.666667pt;}
.w1_c00309{width:793.333333pt;}
.w0_c00309{width:793.626667pt;}
.x0_c00309{left:0.000000pt;}
.x2_c00309{left:113.440000pt;}
.x1_c00309{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bf2c5b642a66d5e6b9e265bc.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.093262;font-style:normal;font-weight:normal;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_47a59bebadb218777b8ed16f.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.106934;font-style:normal;font-weight:normal;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_43527b5b5558dfbb5c397d11.woff2')format("woff");}.ff3_c00310{font-family:ff3_c00310;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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.086400px;}
.lse_c00310{letter-spacing:-0.079200px;}
.lsb_c00310{letter-spacing:-0.072000px;}
.lsc_c00310{letter-spacing:-0.064800px;}
.ls3_c00310{letter-spacing:-0.057600px;}
.ls4_c00310{letter-spacing:-0.050400px;}
.lsa_c00310{letter-spacing:-0.043200px;}
.ls1_c00310{letter-spacing:-0.036000px;}
.ls2_c00310{letter-spacing:-0.028800px;}
.ls8_c00310{letter-spacing:-0.021600px;}
.ls7_c00310{letter-spacing:-0.014400px;}
.ls6_c00310{letter-spacing:-0.007200px;}
.ls0_c00310{letter-spacing:0.000000px;}
.lsf_c00310{letter-spacing:0.007200px;}
.lsd_c00310{letter-spacing:0.014400px;}
.ls9_c00310{letter-spacing:0.151200px;}
.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:-4.125600px;}
.ws2d_c00310{word-spacing:-3.060000px;}
.ws2e_c00310{word-spacing:-3.052800px;}
.ws26_c00310{word-spacing:-2.685600px;}
.ws27_c00310{word-spacing:-2.462400px;}
.ws13_c00310{word-spacing:-1.260000px;}
.ws12_c00310{word-spacing:-1.245600px;}
.wsa_c00310{word-spacing:-0.784800px;}
.wsb_c00310{word-spacing:-0.540000px;}
.ws9_c00310{word-spacing:-0.511200px;}
.ws0_c00310{word-spacing:0.000000px;}
.ws17_c00310{word-spacing:0.180000px;}
.ws2_c00310{word-spacing:0.187200px;}
.ws36_c00310{word-spacing:0.201600px;}
.ws37_c00310{word-spacing:0.208800px;}
.ws16_c00310{word-spacing:0.280800px;}
.ws3_c00310{word-spacing:0.302400px;}
.ws1f_c00310{word-spacing:1.987200px;}
.ws1e_c00310{word-spacing:2.016000px;}
.ws2f_c00310{word-spacing:3.240000px;}
.ws30_c00310{word-spacing:3.448800px;}
.ws18_c00310{word-spacing:5.140800px;}
.ws21_c00310{word-spacing:5.184000px;}
.ws19_c00310{word-spacing:5.220000px;}
.ws1b_c00310{word-spacing:5.256000px;}
.ws1a_c00310{word-spacing:5.270400px;}
.ws20_c00310{word-spacing:5.349600px;}
.ws10_c00310{word-spacing:10.627200px;}
.ws11_c00310{word-spacing:10.641600px;}
.ws1c_c00310{word-spacing:13.147200px;}
.ws1d_c00310{word-spacing:13.161600px;}
.ws33_c00310{word-spacing:13.874400px;}
.wsf_c00310{word-spacing:13.896000px;}
.ws34_c00310{word-spacing:13.989600px;}
.ws32_c00310{word-spacing:14.457600px;}
.wsc_c00310{word-spacing:14.565600px;}
.ws31_c00310{word-spacing:14.608800px;}
.ws2c_c00310{word-spacing:16.020000px;}
.ws2b_c00310{word-spacing:16.120800px;}
.ws2a_c00310{word-spacing:16.286400px;}
.ws5_c00310{word-spacing:17.128800px;}
.ws4_c00310{word-spacing:17.136000px;}
.ws8_c00310{word-spacing:21.045600px;}
.ws6_c00310{word-spacing:21.088800px;}
.ws7_c00310{word-spacing:21.124800px;}
.ws14_c00310{word-spacing:22.017600px;}
.ws15_c00310{word-spacing:22.183200px;}
.ws23_c00310{word-spacing:26.798400px;}
.ws22_c00310{word-spacing:26.848800px;}
.wse_c00310{word-spacing:28.288800px;}
.wsd_c00310{word-spacing:28.296000px;}
.ws28_c00310{word-spacing:33.681600px;}
.ws29_c00310{word-spacing:33.688800px;}
.ws35_c00310{word-spacing:40.154400px;}
.ws24_c00310{word-spacing:41.104800px;}
.ws39_c00310{word-spacing:41.133600px;}
.ws25_c00310{word-spacing:41.155200px;}
.ws38_c00310{word-spacing:41.248800px;}
._0_c00310{width:1.072800px;}
.fc0_c00310{color:rgb(0,0,0);}
.fs0_c00310{font-size:72.000000px;}
.y0_c00310{bottom:0.000000px;}
.y2_c00310{bottom:46.830450px;}
.y1_c00310{bottom:67.530450px;}
.y20_c00310{bottom:179.130450px;}
.y1f_c00310{bottom:210.180450px;}
.y1e_c00310{bottom:241.230450px;}
.y1d_c00310{bottom:272.280450px;}
.y1c_c00310{bottom:303.330450px;}
.y1b_c00310{bottom:334.380450px;}
.y1a_c00310{bottom:365.430450px;}
.y19_c00310{bottom:396.390450px;}
.y18_c00310{bottom:427.440450px;}
.y17_c00310{bottom:458.490450px;}
.y16_c00310{bottom:489.540450px;}
.y15_c00310{bottom:520.590450px;}
.y14_c00310{bottom:551.640450px;}
.y13_c00310{bottom:582.690450px;}
.y12_c00310{bottom:613.740450px;}
.y11_c00310{bottom:644.790450px;}
.y10_c00310{bottom:675.840450px;}
.yf_c00310{bottom:706.890450px;}
.ye_c00310{bottom:746.940450px;}
.yd_c00310{bottom:777.990450px;}
.yc_c00310{bottom:809.040450px;}
.yb_c00310{bottom:840.090450px;}
.ya_c00310{bottom:871.140450px;}
.y9_c00310{bottom:902.190450px;}
.y8_c00310{bottom:933.240450px;}
.y7_c00310{bottom:964.290450px;}
.y6_c00310{bottom:995.340450px;}
.y5_c00310{bottom:1026.390450px;}
.y4_c00310{bottom:1066.440450px;}
.y3_c00310{bottom:1097.490450px;}
.h1_c00310{height:63.175781px;}
.h2_c00310{height:64.546875px;}
.h3_c00310{height:75.093750px;}
.h0_c00310{height:1263.000000px;}
.w1_c00310{width:892.500000px;}
.w0_c00310{width:892.830000px;}
.x0_c00310{left:0.000000px;}
.x2_c00310{left:170.100000px;}
.x1_c00310{left:738.360000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls5_c00310{letter-spacing:-0.076800pt;}
.lse_c00310{letter-spacing:-0.070400pt;}
.lsb_c00310{letter-spacing:-0.064000pt;}
.lsc_c00310{letter-spacing:-0.057600pt;}
.ls3_c00310{letter-spacing:-0.051200pt;}
.ls4_c00310{letter-spacing:-0.044800pt;}
.lsa_c00310{letter-spacing:-0.038400pt;}
.ls1_c00310{letter-spacing:-0.032000pt;}
.ls2_c00310{letter-spacing:-0.025600pt;}
.ls8_c00310{letter-spacing:-0.019200pt;}
.ls7_c00310{letter-spacing:-0.012800pt;}
.ls6_c00310{letter-spacing:-0.006400pt;}
.ls0_c00310{letter-spacing:0.000000pt;}
.lsf_c00310{letter-spacing:0.006400pt;}
.lsd_c00310{letter-spacing:0.012800pt;}
.ls9_c00310{letter-spacing:0.134400pt;}
.ws1_c00310{word-spacing:-3.667200pt;}
.ws2d_c00310{word-spacing:-2.720000pt;}
.ws2e_c00310{word-spacing:-2.713600pt;}
.ws26_c00310{word-spacing:-2.387200pt;}
.ws27_c00310{word-spacing:-2.188800pt;}
.ws13_c00310{word-spacing:-1.120000pt;}
.ws12_c00310{word-spacing:-1.107200pt;}
.wsa_c00310{word-spacing:-0.697600pt;}
.wsb_c00310{word-spacing:-0.480000pt;}
.ws9_c00310{word-spacing:-0.454400pt;}
.ws0_c00310{word-spacing:0.000000pt;}
.ws17_c00310{word-spacing:0.160000pt;}
.ws2_c00310{word-spacing:0.166400pt;}
.ws36_c00310{word-spacing:0.179200pt;}
.ws37_c00310{word-spacing:0.185600pt;}
.ws16_c00310{word-spacing:0.249600pt;}
.ws3_c00310{word-spacing:0.268800pt;}
.ws1f_c00310{word-spacing:1.766400pt;}
.ws1e_c00310{word-spacing:1.792000pt;}
.ws2f_c00310{word-spacing:2.880000pt;}
.ws30_c00310{word-spacing:3.065600pt;}
.ws18_c00310{word-spacing:4.569600pt;}
.ws21_c00310{word-spacing:4.608000pt;}
.ws19_c00310{word-spacing:4.640000pt;}
.ws1b_c00310{word-spacing:4.672000pt;}
.ws1a_c00310{word-spacing:4.684800pt;}
.ws20_c00310{word-spacing:4.755200pt;}
.ws10_c00310{word-spacing:9.446400pt;}
.ws11_c00310{word-spacing:9.459200pt;}
.ws1c_c00310{word-spacing:11.686400pt;}
.ws1d_c00310{word-spacing:11.699200pt;}
.ws33_c00310{word-spacing:12.332800pt;}
.wsf_c00310{word-spacing:12.352000pt;}
.ws34_c00310{word-spacing:12.435200pt;}
.ws32_c00310{word-spacing:12.851200pt;}
.wsc_c00310{word-spacing:12.947200pt;}
.ws31_c00310{word-spacing:12.985600pt;}
.ws2c_c00310{word-spacing:14.240000pt;}
.ws2b_c00310{word-spacing:14.329600pt;}
.ws2a_c00310{word-spacing:14.476800pt;}
.ws5_c00310{word-spacing:15.225600pt;}
.ws4_c00310{word-spacing:15.232000pt;}
.ws8_c00310{word-spacing:18.707200pt;}
.ws6_c00310{word-spacing:18.745600pt;}
.ws7_c00310{word-spacing:18.777600pt;}
.ws14_c00310{word-spacing:19.571200pt;}
.ws15_c00310{word-spacing:19.718400pt;}
.ws23_c00310{word-spacing:23.820800pt;}
.ws22_c00310{word-spacing:23.865600pt;}
.wse_c00310{word-spacing:25.145600pt;}
.wsd_c00310{word-spacing:25.152000pt;}
.ws28_c00310{word-spacing:29.939200pt;}
.ws29_c00310{word-spacing:29.945600pt;}
.ws35_c00310{word-spacing:35.692800pt;}
.ws24_c00310{word-spacing:36.537600pt;}
.ws39_c00310{word-spacing:36.563200pt;}
.ws25_c00310{word-spacing:36.582400pt;}
.ws38_c00310{word-spacing:36.665600pt;}
._0_c00310{width:0.953600pt;}
.fs0_c00310{font-size:64.000000pt;}
.y0_c00310{bottom:0.000000pt;}
.y2_c00310{bottom:41.627067pt;}
.y1_c00310{bottom:60.027067pt;}
.y20_c00310{bottom:159.227067pt;}
.y1f_c00310{bottom:186.827067pt;}
.y1e_c00310{bottom:214.427067pt;}
.y1d_c00310{bottom:242.027067pt;}
.y1c_c00310{bottom:269.627067pt;}
.y1b_c00310{bottom:297.227067pt;}
.y1a_c00310{bottom:324.827067pt;}
.y19_c00310{bottom:352.347067pt;}
.y18_c00310{bottom:379.947067pt;}
.y17_c00310{bottom:407.547067pt;}
.y16_c00310{bottom:435.147067pt;}
.y15_c00310{bottom:462.747067pt;}
.y14_c00310{bottom:490.347067pt;}
.y13_c00310{bottom:517.947067pt;}
.y12_c00310{bottom:545.547067pt;}
.y11_c00310{bottom:573.147067pt;}
.y10_c00310{bottom:600.747067pt;}
.yf_c00310{bottom:628.347067pt;}
.ye_c00310{bottom:663.947067pt;}
.yd_c00310{bottom:691.547067pt;}
.yc_c00310{bottom:719.147067pt;}
.yb_c00310{bottom:746.747067pt;}
.ya_c00310{bottom:774.347067pt;}
.y9_c00310{bottom:801.947067pt;}
.y8_c00310{bottom:829.547067pt;}
.y7_c00310{bottom:857.147067pt;}
.y6_c00310{bottom:884.747067pt;}
.y5_c00310{bottom:912.347067pt;}
.y4_c00310{bottom:947.947067pt;}
.y3_c00310{bottom:975.547067pt;}
.h1_c00310{height:56.156250pt;}
.h2_c00310{height:57.375000pt;}
.h3_c00310{height:66.750000pt;}
.h0_c00310{height:1122.666667pt;}
.w1_c00310{width:793.333333pt;}
.w0_c00310{width:793.626667pt;}
.x0_c00310{left:0.000000pt;}
.x2_c00310{left:151.200000pt;}
.x1_c00310{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_17ee88d1f45a5db004b4be30.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.093262;font-style:normal;font-weight:normal;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_5261e8fbeeb43ac0617bb787.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.106934;font-style: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;}
.lsb_c00311{letter-spacing:-0.093600px;}
.lsc_c00311{letter-spacing:-0.072000px;}
.ls3_c00311{letter-spacing:-0.064800px;}
.ls2_c00311{letter-spacing:-0.057600px;}
.ls5_c00311{letter-spacing:-0.050400px;}
.ls8_c00311{letter-spacing:-0.043200px;}
.ls4_c00311{letter-spacing:-0.036000px;}
.lsa_c00311{letter-spacing:-0.028800px;}
.ls7_c00311{letter-spacing:-0.021600px;}
.ls6_c00311{letter-spacing:-0.014400px;}
.ls9_c00311{letter-spacing:-0.007200px;}
.ls1_c00311{letter-spacing:0.000000px;}
.ls0_c00311{letter-spacing:0.007200px;}
.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;}
}
.ws1a_c00311{word-spacing:-4.471200px;}
.ws19_c00311{word-spacing:-4.298400px;}
.ws8_c00311{word-spacing:-2.368800px;}
.ws9_c00311{word-spacing:-2.347200px;}
.ws38_c00311{word-spacing:-1.980000px;}
.ws39_c00311{word-spacing:-1.922400px;}
.ws2e_c00311{word-spacing:-1.454400px;}
.ws2d_c00311{word-spacing:-1.238400px;}
.ws1_c00311{word-spacing:-1.224000px;}
.ws2_c00311{word-spacing:-1.216800px;}
.ws2c_c00311{word-spacing:-1.209600px;}
.ws28_c00311{word-spacing:-0.928800px;}
.ws29_c00311{word-spacing:-0.892800px;}
.ws1f_c00311{word-spacing:-0.885600px;}
.ws1e_c00311{word-spacing:-0.849600px;}
.ws20_c00311{word-spacing:-0.756000px;}
.ws2a_c00311{word-spacing:-0.676800px;}
.ws10_c00311{word-spacing:-0.554400px;}
.ws0_c00311{word-spacing:0.000000px;}
.ws2b_c00311{word-spacing:0.079200px;}
.wsa_c00311{word-spacing:0.158400px;}
.ws1d_c00311{word-spacing:0.172800px;}
.wsf_c00311{word-spacing:0.180000px;}
.ws3_c00311{word-spacing:0.194400px;}
.wsb_c00311{word-spacing:0.612000px;}
.ws12_c00311{word-spacing:0.907200px;}
.ws21_c00311{word-spacing:0.921600px;}
.ws13_c00311{word-spacing:0.943200px;}
.ws1b_c00311{word-spacing:1.576800px;}
.ws1c_c00311{word-spacing:1.771200px;}
.ws11_c00311{word-spacing:3.096000px;}
.ws26_c00311{word-spacing:3.412800px;}
.ws7_c00311{word-spacing:3.420000px;}
.ws27_c00311{word-spacing:3.448800px;}
.ws22_c00311{word-spacing:3.628800px;}
.ws23_c00311{word-spacing:3.801600px;}
.ws35_c00311{word-spacing:4.485600px;}
.ws34_c00311{word-spacing:4.521600px;}
.ws17_c00311{word-spacing:4.809600px;}
.ws16_c00311{word-spacing:4.867200px;}
.ws18_c00311{word-spacing:4.910400px;}
.ws33_c00311{word-spacing:6.300000px;}
.ws6_c00311{word-spacing:8.452800px;}
.ws5_c00311{word-spacing:9.129600px;}
.ws4_c00311{word-spacing:9.208800px;}
.ws32_c00311{word-spacing:12.060000px;}
.ws31_c00311{word-spacing:12.081600px;}
.wsc_c00311{word-spacing:15.163200px;}
.wsd_c00311{word-spacing:15.235200px;}
.ws25_c00311{word-spacing:26.100000px;}
.ws24_c00311{word-spacing:26.186400px;}
.wse_c00311{word-spacing:26.848800px;}
.ws30_c00311{word-spacing:39.787200px;}
.ws2f_c00311{word-spacing:39.816000px;}
.ws37_c00311{word-spacing:40.485600px;}
.ws36_c00311{word-spacing:40.500000px;}
.ws15_c00311{word-spacing:49.845600px;}
.ws14_c00311{word-spacing:49.975200px;}
._3_c00311{margin-left:-1.044000px;}
._0_c00311{width:1.152000px;}
._1_c00311{width:18.720000px;}
._5_c00311{width:23.040000px;}
._2_c00311{width:27.288000px;}
._4_c00311{width:28.440000px;}
.fc0_c00311{color:rgb(0,0,0);}
.fs0_c00311{font-size:72.000000px;}
.y0_c00311{bottom:0.000000px;}
.y2_c00311{bottom:46.830450px;}
.y1_c00311{bottom:67.530450px;}
.y26_c00311{bottom:161.130450px;}
.y25_c00311{bottom:192.180450px;}
.y24_c00311{bottom:223.230450px;}
.y23_c00311{bottom:254.280450px;}
.y22_c00311{bottom:285.330450px;}
.y21_c00311{bottom:316.380450px;}
.y20_c00311{bottom:347.430450px;}
.y1f_c00311{bottom:378.390450px;}
.y1e_c00311{bottom:418.440450px;}
.y1d_c00311{bottom:449.490450px;}
.y1c_c00311{bottom:480.540450px;}
.y1b_c00311{bottom:511.590450px;}
.y1a_c00311{bottom:542.640450px;}
.y19_c00311{bottom:573.690450px;}
.y18_c00311{bottom:604.740450px;}
.y17_c00311{bottom:644.790450px;}
.y16_c00311{bottom:674.490450px;}
.y15_c00311{bottom:695.190450px;}
.y14_c00311{bottom:715.890450px;}
.y13_c00311{bottom:736.590450px;}
.y12_c00311{bottom:757.290450px;}
.y11_c00311{bottom:777.990450px;}
.y10_c00311{bottom:798.690450px;}
.yf_c00311{bottom:819.390450px;}
.ye_c00311{bottom:840.090450px;}
.yd_c00311{bottom:860.790450px;}
.yc_c00311{bottom:881.490450px;}
.yb_c00311{bottom:902.190450px;}
.ya_c00311{bottom:922.890450px;}
.y9_c00311{bottom:943.590450px;}
.y8_c00311{bottom:964.290450px;}
.y7_c00311{bottom:984.990450px;}
.y6_c00311{bottom:1005.690450px;}
.y5_c00311{bottom:1026.390450px;}
.y4_c00311{bottom:1066.440450px;}
.y3_c00311{bottom:1097.490450px;}
.h1_c00311{height:63.175781px;}
.h2_c00311{height:64.546875px;}
.h0_c00311{height:1263.000000px;}
.w1_c00311{width:892.500000px;}
.w0_c00311{width:892.830000px;}
.x0_c00311{left:0.000000px;}
.x2_c00311{left:127.620000px;}
.x3_c00311{left:175.950000px;}
.x4_c00311{left:202.950000px;}
.x1_c00311{left:695.880000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.lsb_c00311{letter-spacing:-0.083200pt;}
.lsc_c00311{letter-spacing:-0.064000pt;}
.ls3_c00311{letter-spacing:-0.057600pt;}
.ls2_c00311{letter-spacing:-0.051200pt;}
.ls5_c00311{letter-spacing:-0.044800pt;}
.ls8_c00311{letter-spacing:-0.038400pt;}
.ls4_c00311{letter-spacing:-0.032000pt;}
.lsa_c00311{letter-spacing:-0.025600pt;}
.ls7_c00311{letter-spacing:-0.019200pt;}
.ls6_c00311{letter-spacing:-0.012800pt;}
.ls9_c00311{letter-spacing:-0.006400pt;}
.ls1_c00311{letter-spacing:0.000000pt;}
.ls0_c00311{letter-spacing:0.006400pt;}
.ws1a_c00311{word-spacing:-3.974400pt;}
.ws19_c00311{word-spacing:-3.820800pt;}
.ws8_c00311{word-spacing:-2.105600pt;}
.ws9_c00311{word-spacing:-2.086400pt;}
.ws38_c00311{word-spacing:-1.760000pt;}
.ws39_c00311{word-spacing:-1.708800pt;}
.ws2e_c00311{word-spacing:-1.292800pt;}
.ws2d_c00311{word-spacing:-1.100800pt;}
.ws1_c00311{word-spacing:-1.088000pt;}
.ws2_c00311{word-spacing:-1.081600pt;}
.ws2c_c00311{word-spacing:-1.075200pt;}
.ws28_c00311{word-spacing:-0.825600pt;}
.ws29_c00311{word-spacing:-0.793600pt;}
.ws1f_c00311{word-spacing:-0.787200pt;}
.ws1e_c00311{word-spacing:-0.755200pt;}
.ws20_c00311{word-spacing:-0.672000pt;}
.ws2a_c00311{word-spacing:-0.601600pt;}
.ws10_c00311{word-spacing:-0.492800pt;}
.ws0_c00311{word-spacing:0.000000pt;}
.ws2b_c00311{word-spacing:0.070400pt;}
.wsa_c00311{word-spacing:0.140800pt;}
.ws1d_c00311{word-spacing:0.153600pt;}
.wsf_c00311{word-spacing:0.160000pt;}
.ws3_c00311{word-spacing:0.172800pt;}
.wsb_c00311{word-spacing:0.544000pt;}
.ws12_c00311{word-spacing:0.806400pt;}
.ws21_c00311{word-spacing:0.819200pt;}
.ws13_c00311{word-spacing:0.838400pt;}
.ws1b_c00311{word-spacing:1.401600pt;}
.ws1c_c00311{word-spacing:1.574400pt;}
.ws11_c00311{word-spacing:2.752000pt;}
.ws26_c00311{word-spacing:3.033600pt;}
.ws7_c00311{word-spacing:3.040000pt;}
.ws27_c00311{word-spacing:3.065600pt;}
.ws22_c00311{word-spacing:3.225600pt;}
.ws23_c00311{word-spacing:3.379200pt;}
.ws35_c00311{word-spacing:3.987200pt;}
.ws34_c00311{word-spacing:4.019200pt;}
.ws17_c00311{word-spacing:4.275200pt;}
.ws16_c00311{word-spacing:4.326400pt;}
.ws18_c00311{word-spacing:4.364800pt;}
.ws33_c00311{word-spacing:5.600000pt;}
.ws6_c00311{word-spacing:7.513600pt;}
.ws5_c00311{word-spacing:8.115200pt;}
.ws4_c00311{word-spacing:8.185600pt;}
.ws32_c00311{word-spacing:10.720000pt;}
.ws31_c00311{word-spacing:10.739200pt;}
.wsc_c00311{word-spacing:13.478400pt;}
.wsd_c00311{word-spacing:13.542400pt;}
.ws25_c00311{word-spacing:23.200000pt;}
.ws24_c00311{word-spacing:23.276800pt;}
.wse_c00311{word-spacing:23.865600pt;}
.ws30_c00311{word-spacing:35.366400pt;}
.ws2f_c00311{word-spacing:35.392000pt;}
.ws37_c00311{word-spacing:35.987200pt;}
.ws36_c00311{word-spacing:36.000000pt;}
.ws15_c00311{word-spacing:44.307200pt;}
.ws14_c00311{word-spacing:44.422400pt;}
._3_c00311{margin-left:-0.928000pt;}
._0_c00311{width:1.024000pt;}
._1_c00311{width:16.640000pt;}
._5_c00311{width:20.480000pt;}
._2_c00311{width:24.256000pt;}
._4_c00311{width:25.280000pt;}
.fs0_c00311{font-size:64.000000pt;}
.y0_c00311{bottom:0.000000pt;}
.y2_c00311{bottom:41.627067pt;}
.y1_c00311{bottom:60.027067pt;}
.y26_c00311{bottom:143.227067pt;}
.y25_c00311{bottom:170.827067pt;}
.y24_c00311{bottom:198.427067pt;}
.y23_c00311{bottom:226.027067pt;}
.y22_c00311{bottom:253.627067pt;}
.y21_c00311{bottom:281.227067pt;}
.y20_c00311{bottom:308.827067pt;}
.y1f_c00311{bottom:336.347067pt;}
.y1e_c00311{bottom:371.947067pt;}
.y1d_c00311{bottom:399.547067pt;}
.y1c_c00311{bottom:427.147067pt;}
.y1b_c00311{bottom:454.747067pt;}
.y1a_c00311{bottom:482.347067pt;}
.y19_c00311{bottom:509.947067pt;}
.y18_c00311{bottom:537.547067pt;}
.y17_c00311{bottom:573.147067pt;}
.y16_c00311{bottom:599.547067pt;}
.y15_c00311{bottom:617.947067pt;}
.y14_c00311{bottom:636.347067pt;}
.y13_c00311{bottom:654.747067pt;}
.y12_c00311{bottom:673.147067pt;}
.y11_c00311{bottom:691.547067pt;}
.y10_c00311{bottom:709.947067pt;}
.yf_c00311{bottom:728.347067pt;}
.ye_c00311{bottom:746.747067pt;}
.yd_c00311{bottom:765.147067pt;}
.yc_c00311{bottom:783.547067pt;}
.yb_c00311{bottom:801.947067pt;}
.ya_c00311{bottom:820.347067pt;}
.y9_c00311{bottom:838.747067pt;}
.y8_c00311{bottom:857.147067pt;}
.y7_c00311{bottom:875.547067pt;}
.y6_c00311{bottom:893.947067pt;}
.y5_c00311{bottom:912.347067pt;}
.y4_c00311{bottom:947.947067pt;}
.y3_c00311{bottom:975.547067pt;}
.h1_c00311{height:56.156250pt;}
.h2_c00311{height:57.375000pt;}
.h0_c00311{height:1122.666667pt;}
.w1_c00311{width:793.333333pt;}
.w0_c00311{width:793.626667pt;}
.x0_c00311{left:0.000000pt;}
.x2_c00311{left:113.440000pt;}
.x3_c00311{left:156.400000pt;}
.x4_c00311{left:180.400000pt;}
.x1_c00311{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bf2c5b642a66d5e6b9e265bc.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.093262;font-style:normal;font-weight:normal;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_c9153831c6ca8fae6ee0b976.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00312{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00312{vertical-align:0.000000px;}
.ls3_c00312{letter-spacing:-0.079200px;}
.ls2_c00312{letter-spacing:-0.064800px;}
.lsa_c00312{letter-spacing:-0.057600px;}
.ls5_c00312{letter-spacing:-0.050400px;}
.ls8_c00312{letter-spacing:-0.043200px;}
.ls7_c00312{letter-spacing:-0.036000px;}
.ls4_c00312{letter-spacing:-0.028800px;}
.ls1_c00312{letter-spacing:-0.021600px;}
.ls6_c00312{letter-spacing:-0.014400px;}
.ls9_c00312{letter-spacing:-0.007200px;}
.ls0_c00312{letter-spacing:0.000000px;}
.lsb_c00312{letter-spacing:843.998400px;}
.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;}
}
.ws16_c00312{word-spacing:-3.441600px;}
.ws17_c00312{word-spacing:-3.405600px;}
.ws5_c00312{word-spacing:-2.066400px;}
.ws8_c00312{word-spacing:-1.987200px;}
.ws4_c00312{word-spacing:-1.972800px;}
.ws9_c00312{word-spacing:-1.872000px;}
.ws0_c00312{word-spacing:0.000000px;}
.ws12_c00312{word-spacing:0.194400px;}
.ws19_c00312{word-spacing:0.208800px;}
.wsb_c00312{word-spacing:2.707200px;}
.wsa_c00312{word-spacing:2.721600px;}
.wse_c00312{word-spacing:3.355200px;}
.wsf_c00312{word-spacing:3.448800px;}
.ws13_c00312{word-spacing:4.809600px;}
.wsd_c00312{word-spacing:5.234400px;}
.wsc_c00312{word-spacing:5.277600px;}
.ws15_c00312{word-spacing:5.853600px;}
.ws14_c00312{word-spacing:5.940000px;}
.ws11_c00312{word-spacing:10.612800px;}
.ws10_c00312{word-spacing:10.627200px;}
.ws1_c00312{word-spacing:17.100000px;}
.ws2_c00312{word-spacing:17.143200px;}
.ws3_c00312{word-spacing:17.157600px;}
.ws18_c00312{word-spacing:29.714400px;}
.ws7_c00312{word-spacing:72.900000px;}
.ws6_c00312{word-spacing:72.921600px;}
._0_c00312{width:1.209600px;}
.fc0_c00312{color:rgb(0,0,0);}
.fs0_c00312{font-size:72.000000px;}
.y0_c00312{bottom:0.000000px;}
.y2_c00312{bottom:46.830450px;}
.y1_c00312{bottom:67.530450px;}
.y11_c00312{bottom:644.790450px;}
.y10_c00312{bottom:684.840450px;}
.yf_c00312{bottom:715.890450px;}
.ye_c00312{bottom:746.940450px;}
.yd_c00312{bottom:777.990450px;}
.yc_c00312{bottom:809.040450px;}
.yb_c00312{bottom:849.090450px;}
.ya_c00312{bottom:880.140450px;}
.y9_c00312{bottom:911.190450px;}
.y8_c00312{bottom:942.240450px;}
.y7_c00312{bottom:973.290450px;}
.y6_c00312{bottom:1004.340450px;}
.y5_c00312{bottom:1035.390450px;}
.y4_c00312{bottom:1066.440450px;}
.y3_c00312{bottom:1097.490450px;}
.h1_c00312{height:63.175781px;}
.h2_c00312{height:64.546875px;}
.h0_c00312{height:1263.000000px;}
.w1_c00312{width:892.500000px;}
.w0_c00312{width:892.830000px;}
.x0_c00312{left:0.000000px;}
.x2_c00312{left:170.100000px;}
.x1_c00312{left:738.360000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls3_c00312{letter-spacing:-0.070400pt;}
.ls2_c00312{letter-spacing:-0.057600pt;}
.lsa_c00312{letter-spacing:-0.051200pt;}
.ls5_c00312{letter-spacing:-0.044800pt;}
.ls8_c00312{letter-spacing:-0.038400pt;}
.ls7_c00312{letter-spacing:-0.032000pt;}
.ls4_c00312{letter-spacing:-0.025600pt;}
.ls1_c00312{letter-spacing:-0.019200pt;}
.ls6_c00312{letter-spacing:-0.012800pt;}
.ls9_c00312{letter-spacing:-0.006400pt;}
.ls0_c00312{letter-spacing:0.000000pt;}
.lsb_c00312{letter-spacing:750.220800pt;}
.ws16_c00312{word-spacing:-3.059200pt;}
.ws17_c00312{word-spacing:-3.027200pt;}
.ws5_c00312{word-spacing:-1.836800pt;}
.ws8_c00312{word-spacing:-1.766400pt;}
.ws4_c00312{word-spacing:-1.753600pt;}
.ws9_c00312{word-spacing:-1.664000pt;}
.ws0_c00312{word-spacing:0.000000pt;}
.ws12_c00312{word-spacing:0.172800pt;}
.ws19_c00312{word-spacing:0.185600pt;}
.wsb_c00312{word-spacing:2.406400pt;}
.wsa_c00312{word-spacing:2.419200pt;}
.wse_c00312{word-spacing:2.982400pt;}
.wsf_c00312{word-spacing:3.065600pt;}
.ws13_c00312{word-spacing:4.275200pt;}
.wsd_c00312{word-spacing:4.652800pt;}
.wsc_c00312{word-spacing:4.691200pt;}
.ws15_c00312{word-spacing:5.203200pt;}
.ws14_c00312{word-spacing:5.280000pt;}
.ws11_c00312{word-spacing:9.433600pt;}
.ws10_c00312{word-spacing:9.446400pt;}
.ws1_c00312{word-spacing:15.200000pt;}
.ws2_c00312{word-spacing:15.238400pt;}
.ws3_c00312{word-spacing:15.251200pt;}
.ws18_c00312{word-spacing:26.412800pt;}
.ws7_c00312{word-spacing:64.800000pt;}
.ws6_c00312{word-spacing:64.819200pt;}
._0_c00312{width:1.075200pt;}
.fs0_c00312{font-size:64.000000pt;}
.y0_c00312{bottom:0.000000pt;}
.y2_c00312{bottom:41.627067pt;}
.y1_c00312{bottom:60.027067pt;}
.y11_c00312{bottom:573.147067pt;}
.y10_c00312{bottom:608.747067pt;}
.yf_c00312{bottom:636.347067pt;}
.ye_c00312{bottom:663.947067pt;}
.yd_c00312{bottom:691.547067pt;}
.yc_c00312{bottom:719.147067pt;}
.yb_c00312{bottom:754.747067pt;}
.ya_c00312{bottom:782.347067pt;}
.y9_c00312{bottom:809.947067pt;}
.y8_c00312{bottom:837.547067pt;}
.y7_c00312{bottom:865.147067pt;}
.y6_c00312{bottom:892.747067pt;}
.y5_c00312{bottom:920.347067pt;}
.y4_c00312{bottom:947.947067pt;}
.y3_c00312{bottom:975.547067pt;}
.h1_c00312{height:56.156250pt;}
.h2_c00312{height:57.375000pt;}
.h0_c00312{height:1122.666667pt;}
.w1_c00312{width:793.333333pt;}
.w0_c00312{width:793.626667pt;}
.x0_c00312{left:0.000000pt;}
.x2_c00312{left:151.200000pt;}
.x1_c00312{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e17566220d3494508a0aca85.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.106934;font-style: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;}
.ls0_c00313{letter-spacing:0.000000px;}
.ls1_c00313{letter-spacing:843.998400px;}
.sc__c00313{text-shadow:none;}
.sc0_c00313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00313{-webkit-text-stroke:0px transparent;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00313{word-spacing:0.000000px;}
.fc0_c00313{color:rgb(0,0,0);}
.fs0_c00313{font-size:72.000000px;}
.y0_c00313{bottom:0.000000px;}
.y2_c00313{bottom:46.830450px;}
.y1_c00313{bottom:67.530450px;}
.y4_c00313{bottom:1057.440450px;}
.y3_c00313{bottom:1097.490450px;}
.h1_c00313{height:63.175781px;}
.h2_c00313{height:64.546875px;}
.h0_c00313{height:1263.000000px;}
.w1_c00313{width:892.500000px;}
.w0_c00313{width:892.830000px;}
.x0_c00313{left:0.000000px;}
.x2_c00313{left:127.620000px;}
.x1_c00313{left:695.880000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls0_c00313{letter-spacing:0.000000pt;}
.ls1_c00313{letter-spacing:750.220800pt;}
.ws0_c00313{word-spacing:0.000000pt;}
.fs0_c00313{font-size:64.000000pt;}
.y0_c00313{bottom:0.000000pt;}
.y2_c00313{bottom:41.627067pt;}
.y1_c00313{bottom:60.027067pt;}
.y4_c00313{bottom:939.947067pt;}
.y3_c00313{bottom:975.547067pt;}
.h1_c00313{height:56.156250pt;}
.h2_c00313{height:57.375000pt;}
.h0_c00313{height:1122.666667pt;}
.w1_c00313{width:793.333333pt;}
.w0_c00313{width:793.626667pt;}
.x0_c00313{left:0.000000pt;}
.x2_c00313{left:113.440000pt;}
.x1_c00313{left:618.560000pt;}
}





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

.ir_c00314:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00314{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00314;src:url('chunks/assets/font_8d02a196d85ff9d6760a8f4e.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.093262;font-style:normal;font-weight:normal;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_2de65fbc6ef955d0faa90d6e.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00314;src:url('chunks/assets/font_f5938410b1ece73f94173e8e.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:1.106934;font-style:normal;font-weight:normal;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_2807765fc74847c9bef409e5.woff2')format("woff");}.ff4_c00314{font-family:ff4_c00314;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00314{letter-spacing:-0.079200px;}
.lsc_c00314{letter-spacing:-0.072000px;}
.lse_c00314{letter-spacing:-0.064800px;}
.ls7_c00314{letter-spacing:-0.057600px;}
.ls3_c00314{letter-spacing:-0.050400px;}
.lsa_c00314{letter-spacing:-0.043200px;}
.ls5_c00314{letter-spacing:-0.036000px;}
.ls8_c00314{letter-spacing:-0.028800px;}
.ls6_c00314{letter-spacing:-0.021600px;}
.ls9_c00314{letter-spacing:-0.014400px;}
.ls4_c00314{letter-spacing:-0.007200px;}
.ls2_c00314{letter-spacing:0.000000px;}
.lsb_c00314{letter-spacing:0.007200px;}
.ls1_c00314{letter-spacing:0.021600px;}
.ls0_c00314{letter-spacing:0.058716px;}
.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;}
}
.ws0_c00314{word-spacing:-19.944000px;}
.ws1e_c00314{word-spacing:-4.557600px;}
.ws1d_c00314{word-spacing:-4.442400px;}
.ws19_c00314{word-spacing:-2.736000px;}
.ws1a_c00314{word-spacing:-2.707200px;}
.ws30_c00314{word-spacing:-2.404800px;}
.ws2f_c00314{word-spacing:-2.239200px;}
.ws21_c00314{word-spacing:-1.972800px;}
.ws22_c00314{word-spacing:-1.929600px;}
.ws2d_c00314{word-spacing:-0.892800px;}
.ws2c_c00314{word-spacing:-0.856800px;}
.ws2a_c00314{word-spacing:-0.043200px;}
.ws1_c00314{word-spacing:0.000000px;}
.ws2_c00314{word-spacing:0.033552px;}
.ws31_c00314{word-spacing:0.115200px;}
.ws16_c00314{word-spacing:0.151200px;}
.ws2b_c00314{word-spacing:0.172800px;}
.ws12_c00314{word-spacing:0.194400px;}
.ws18_c00314{word-spacing:0.900000px;}
.ws1f_c00314{word-spacing:0.921600px;}
.ws17_c00314{word-spacing:0.964800px;}
.ws27_c00314{word-spacing:1.281600px;}
.ws20_c00314{word-spacing:1.288800px;}
.ws25_c00314{word-spacing:2.001600px;}
.ws26_c00314{word-spacing:2.037600px;}
.ws6_c00314{word-spacing:2.685600px;}
.wsa_c00314{word-spacing:2.707200px;}
.ws5_c00314{word-spacing:2.764800px;}
.ws28_c00314{word-spacing:4.003200px;}
.ws11_c00314{word-spacing:4.132800px;}
.ws10_c00314{word-spacing:4.168800px;}
.ws29_c00314{word-spacing:4.183200px;}
.ws23_c00314{word-spacing:5.277600px;}
.ws24_c00314{word-spacing:5.292000px;}
.ws13_c00314{word-spacing:6.667200px;}
.wse_c00314{word-spacing:7.365600px;}
.wsd_c00314{word-spacing:7.408800px;}
.ws7_c00314{word-spacing:9.525600px;}
.wsb_c00314{word-spacing:9.741600px;}
.ws4_c00314{word-spacing:9.885600px;}
.ws3_c00314{word-spacing:9.928800px;}
.wsc_c00314{word-spacing:9.936000px;}
.ws1c_c00314{word-spacing:13.492800px;}
.ws1b_c00314{word-spacing:13.536000px;}
.ws15_c00314{word-spacing:15.739200px;}
.ws14_c00314{word-spacing:15.753600px;}
.ws8_c00314{word-spacing:20.160000px;}
.ws9_c00314{word-spacing:20.376000px;}
.wsf_c00314{word-spacing:30.081600px;}
.ws2e_c00314{word-spacing:39.067200px;}
._2_c00314{margin-left:-1.677600px;}
._1_c00314{width:1.267200px;}
._0_c00314{width:9.730080px;}
.fc0_c00314{color:rgb(0,0,0);}
.fs0_c00314{font-size:72.000000px;}
.fs1_c00314{font-size:83.880000px;}
.y0_c00314{bottom:0.000000px;}
.y2_c00314{bottom:46.830450px;}
.y1_c00314{bottom:67.530450px;}
.y23_c00314{bottom:140.970450px;}
.y22_c00314{bottom:172.020450px;}
.y21_c00314{bottom:203.070450px;}
.y20_c00314{bottom:234.120450px;}
.y1f_c00314{bottom:274.170450px;}
.y1e_c00314{bottom:303.870450px;}
.y1d_c00314{bottom:324.570450px;}
.y1c_c00314{bottom:345.270450px;}
.y1b_c00314{bottom:365.970450px;}
.y1a_c00314{bottom:386.670450px;}
.y19_c00314{bottom:407.370450px;}
.y18_c00314{bottom:428.070450px;}
.y17_c00314{bottom:448.770450px;}
.y16_c00314{bottom:469.470450px;}
.y15_c00314{bottom:509.520450px;}
.y14_c00314{bottom:540.570450px;}
.y13_c00314{bottom:571.620450px;}
.y12_c00314{bottom:602.670450px;}
.y11_c00314{bottom:642.720450px;}
.y10_c00314{bottom:673.770450px;}
.yf_c00314{bottom:704.820450px;}
.ye_c00314{bottom:744.870450px;}
.yd_c00314{bottom:775.920450px;}
.yc_c00314{bottom:806.970450px;}
.yb_c00314{bottom:838.020450px;}
.ya_c00314{bottom:869.070450px;}
.y9_c00314{bottom:900.120450px;}
.y8_c00314{bottom:931.170450px;}
.y7_c00314{bottom:962.220450px;}
.y6_c00314{bottom:993.270450px;}
.y5_c00314{bottom:1024.320450px;}
.y4_c00314{bottom:1064.370450px;}
.y3_c00314{bottom:1094.520450px;}
.h1_c00314{height:63.175781px;}
.h3_c00314{height:64.546875px;}
.h4_c00314{height:75.093750px;}
.h2_c00314{height:87.484219px;}
.h0_c00314{height:1263.000000px;}
.w1_c00314{width:892.500000px;}
.w0_c00314{width:892.830000px;}
.x0_c00314{left:0.000000px;}
.x2_c00314{left:170.100000px;}
.x4_c00314{left:245.430000px;}
.x3_c00314{left:251.100000px;}
.x1_c00314{left:738.360000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.lsd_c00314{letter-spacing:-0.070400pt;}
.lsc_c00314{letter-spacing:-0.064000pt;}
.lse_c00314{letter-spacing:-0.057600pt;}
.ls7_c00314{letter-spacing:-0.051200pt;}
.ls3_c00314{letter-spacing:-0.044800pt;}
.lsa_c00314{letter-spacing:-0.038400pt;}
.ls5_c00314{letter-spacing:-0.032000pt;}
.ls8_c00314{letter-spacing:-0.025600pt;}
.ls6_c00314{letter-spacing:-0.019200pt;}
.ls9_c00314{letter-spacing:-0.012800pt;}
.ls4_c00314{letter-spacing:-0.006400pt;}
.ls2_c00314{letter-spacing:0.000000pt;}
.lsb_c00314{letter-spacing:0.006400pt;}
.ls1_c00314{letter-spacing:0.019200pt;}
.ls0_c00314{letter-spacing:0.052192pt;}
.ws0_c00314{word-spacing:-17.728000pt;}
.ws1e_c00314{word-spacing:-4.051200pt;}
.ws1d_c00314{word-spacing:-3.948800pt;}
.ws19_c00314{word-spacing:-2.432000pt;}
.ws1a_c00314{word-spacing:-2.406400pt;}
.ws30_c00314{word-spacing:-2.137600pt;}
.ws2f_c00314{word-spacing:-1.990400pt;}
.ws21_c00314{word-spacing:-1.753600pt;}
.ws22_c00314{word-spacing:-1.715200pt;}
.ws2d_c00314{word-spacing:-0.793600pt;}
.ws2c_c00314{word-spacing:-0.761600pt;}
.ws2a_c00314{word-spacing:-0.038400pt;}
.ws1_c00314{word-spacing:0.000000pt;}
.ws2_c00314{word-spacing:0.029824pt;}
.ws31_c00314{word-spacing:0.102400pt;}
.ws16_c00314{word-spacing:0.134400pt;}
.ws2b_c00314{word-spacing:0.153600pt;}
.ws12_c00314{word-spacing:0.172800pt;}
.ws18_c00314{word-spacing:0.800000pt;}
.ws1f_c00314{word-spacing:0.819200pt;}
.ws17_c00314{word-spacing:0.857600pt;}
.ws27_c00314{word-spacing:1.139200pt;}
.ws20_c00314{word-spacing:1.145600pt;}
.ws25_c00314{word-spacing:1.779200pt;}
.ws26_c00314{word-spacing:1.811200pt;}
.ws6_c00314{word-spacing:2.387200pt;}
.wsa_c00314{word-spacing:2.406400pt;}
.ws5_c00314{word-spacing:2.457600pt;}
.ws28_c00314{word-spacing:3.558400pt;}
.ws11_c00314{word-spacing:3.673600pt;}
.ws10_c00314{word-spacing:3.705600pt;}
.ws29_c00314{word-spacing:3.718400pt;}
.ws23_c00314{word-spacing:4.691200pt;}
.ws24_c00314{word-spacing:4.704000pt;}
.ws13_c00314{word-spacing:5.926400pt;}
.wse_c00314{word-spacing:6.547200pt;}
.wsd_c00314{word-spacing:6.585600pt;}
.ws7_c00314{word-spacing:8.467200pt;}
.wsb_c00314{word-spacing:8.659200pt;}
.ws4_c00314{word-spacing:8.787200pt;}
.ws3_c00314{word-spacing:8.825600pt;}
.wsc_c00314{word-spacing:8.832000pt;}
.ws1c_c00314{word-spacing:11.993600pt;}
.ws1b_c00314{word-spacing:12.032000pt;}
.ws15_c00314{word-spacing:13.990400pt;}
.ws14_c00314{word-spacing:14.003200pt;}
.ws8_c00314{word-spacing:17.920000pt;}
.ws9_c00314{word-spacing:18.112000pt;}
.wsf_c00314{word-spacing:26.739200pt;}
.ws2e_c00314{word-spacing:34.726400pt;}
._2_c00314{margin-left:-1.491200pt;}
._1_c00314{width:1.126400pt;}
._0_c00314{width:8.648960pt;}
.fs0_c00314{font-size:64.000000pt;}
.fs1_c00314{font-size:74.560000pt;}
.y0_c00314{bottom:0.000000pt;}
.y2_c00314{bottom:41.627067pt;}
.y1_c00314{bottom:60.027067pt;}
.y23_c00314{bottom:125.307067pt;}
.y22_c00314{bottom:152.907067pt;}
.y21_c00314{bottom:180.507067pt;}
.y20_c00314{bottom:208.107067pt;}
.y1f_c00314{bottom:243.707067pt;}
.y1e_c00314{bottom:270.107067pt;}
.y1d_c00314{bottom:288.507067pt;}
.y1c_c00314{bottom:306.907067pt;}
.y1b_c00314{bottom:325.307067pt;}
.y1a_c00314{bottom:343.707067pt;}
.y19_c00314{bottom:362.107067pt;}
.y18_c00314{bottom:380.507067pt;}
.y17_c00314{bottom:398.907067pt;}
.y16_c00314{bottom:417.307067pt;}
.y15_c00314{bottom:452.907067pt;}
.y14_c00314{bottom:480.507067pt;}
.y13_c00314{bottom:508.107067pt;}
.y12_c00314{bottom:535.707067pt;}
.y11_c00314{bottom:571.307067pt;}
.y10_c00314{bottom:598.907067pt;}
.yf_c00314{bottom:626.507067pt;}
.ye_c00314{bottom:662.107067pt;}
.yd_c00314{bottom:689.707067pt;}
.yc_c00314{bottom:717.307067pt;}
.yb_c00314{bottom:744.907067pt;}
.ya_c00314{bottom:772.507067pt;}
.y9_c00314{bottom:800.107067pt;}
.y8_c00314{bottom:827.707067pt;}
.y7_c00314{bottom:855.307067pt;}
.y6_c00314{bottom:882.907067pt;}
.y5_c00314{bottom:910.507067pt;}
.y4_c00314{bottom:946.107067pt;}
.y3_c00314{bottom:972.907067pt;}
.h1_c00314{height:56.156250pt;}
.h3_c00314{height:57.375000pt;}
.h4_c00314{height:66.750000pt;}
.h2_c00314{height:77.763750pt;}
.h0_c00314{height:1122.666667pt;}
.w1_c00314{width:793.333333pt;}
.w0_c00314{width:793.626667pt;}
.x0_c00314{left:0.000000pt;}
.x2_c00314{left:151.200000pt;}
.x4_c00314{left:218.160000pt;}
.x3_c00314{left:223.200000pt;}
.x1_c00314{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f58327093c4a1731aa292b6b.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.093262;font-style:normal;font-weight:normal;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_b11f480e1bcf3b6f92f1511a.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.106934;font-style: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;}
.lsc_c00315{letter-spacing:-0.208800px;}
.lsb_c00315{letter-spacing:-0.079200px;}
.lsd_c00315{letter-spacing:-0.072000px;}
.ls3_c00315{letter-spacing:-0.064800px;}
.ls2_c00315{letter-spacing:-0.057600px;}
.ls4_c00315{letter-spacing:-0.050400px;}
.ls9_c00315{letter-spacing:-0.043200px;}
.ls7_c00315{letter-spacing:-0.036000px;}
.ls8_c00315{letter-spacing:-0.028800px;}
.ls5_c00315{letter-spacing:-0.021600px;}
.ls6_c00315{letter-spacing:-0.014400px;}
.lsa_c00315{letter-spacing:-0.007200px;}
.ls1_c00315{letter-spacing:0.000000px;}
.ls0_c00315{letter-spacing:4.050000px;}
.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;}
}
.ws30_c00315{word-spacing:-3.506400px;}
.ws31_c00315{word-spacing:-3.427200px;}
.ws3_c00315{word-spacing:-2.340000px;}
.ws2_c00315{word-spacing:-2.239200px;}
.ws1c_c00315{word-spacing:-0.374400px;}
.ws1b_c00315{word-spacing:-0.194400px;}
.ws1d_c00315{word-spacing:-0.172800px;}
.ws0_c00315{word-spacing:0.000000px;}
.ws10_c00315{word-spacing:0.158400px;}
.wsf_c00315{word-spacing:0.172800px;}
.ws24_c00315{word-spacing:0.180000px;}
.ws28_c00315{word-spacing:0.482400px;}
.ws29_c00315{word-spacing:0.619200px;}
.ws5_c00315{word-spacing:1.252800px;}
.ws4_c00315{word-spacing:1.317600px;}
.ws26_c00315{word-spacing:2.268000px;}
.ws6_c00315{word-spacing:2.354400px;}
.ws27_c00315{word-spacing:2.390400px;}
.ws19_c00315{word-spacing:3.808800px;}
.ws1a_c00315{word-spacing:3.823200px;}
.ws2e_c00315{word-spacing:3.945600px;}
.ws2f_c00315{word-spacing:4.161600px;}
.ws2a_c00315{word-spacing:4.507200px;}
.ws2b_c00315{word-spacing:4.528800px;}
.wsa_c00315{word-spacing:5.241600px;}
.ws9_c00315{word-spacing:5.248800px;}
.ws1f_c00315{word-spacing:5.601600px;}
.ws1e_c00315{word-spacing:5.608800px;}
.ws15_c00315{word-spacing:5.954400px;}
.ws16_c00315{word-spacing:5.961600px;}
.ws34_c00315{word-spacing:6.285600px;}
.ws35_c00315{word-spacing:6.314400px;}
.ws1_c00315{word-spacing:6.696000px;}
.ws14_c00315{word-spacing:7.027200px;}
.ws13_c00315{word-spacing:7.034400px;}
.ws25_c00315{word-spacing:8.460000px;}
.wsd_c00315{word-spacing:10.260000px;}
.ws21_c00315{word-spacing:13.132800px;}
.ws20_c00315{word-spacing:13.233600px;}
.ws32_c00315{word-spacing:13.348800px;}
.ws33_c00315{word-spacing:13.543200px;}
.ws12_c00315{word-spacing:14.198400px;}
.ws7_c00315{word-spacing:14.248800px;}
.ws11_c00315{word-spacing:14.277600px;}
.ws2d_c00315{word-spacing:18.108000px;}
.ws8_c00315{word-spacing:18.187200px;}
.ws2c_c00315{word-spacing:18.201600px;}
.wse_c00315{word-spacing:18.554400px;}
.wsb_c00315{word-spacing:25.005600px;}
.wsc_c00315{word-spacing:25.012800px;}
.ws23_c00315{word-spacing:37.641600px;}
.ws22_c00315{word-spacing:37.749600px;}
.ws18_c00315{word-spacing:93.045600px;}
.ws17_c00315{word-spacing:93.052800px;}
._2_c00315{margin-left:-8.280000px;}
._0_c00315{margin-left:-1.008000px;}
._1_c00315{width:1.368000px;}
.fc1_c00315{color:rgb(37,37,37);}
.fc0_c00315{color:rgb(0,0,0);}
.fs1_c00315{font-size:60.120000px;}
.fs0_c00315{font-size:72.000000px;}
.y0_c00315{bottom:0.000000px;}
.y2_c00315{bottom:46.830450px;}
.y1_c00315{bottom:67.530450px;}
.y26_c00315{bottom:162.480450px;}
.y25_c00315{bottom:192.180450px;}
.y24_c00315{bottom:212.880450px;}
.y23_c00315{bottom:233.580450px;}
.y22_c00315{bottom:254.280450px;}
.y21_c00315{bottom:274.980450px;}
.y20_c00315{bottom:295.680450px;}
.y1f_c00315{bottom:316.380450px;}
.y1e_c00315{bottom:356.430450px;}
.y1d_c00315{bottom:387.390450px;}
.y1c_c00315{bottom:418.440450px;}
.y1b_c00315{bottom:449.490450px;}
.y1a_c00315{bottom:479.190450px;}
.y19_c00315{bottom:499.890450px;}
.y18_c00315{bottom:520.590450px;}
.y17_c00315{bottom:541.290450px;}
.y16_c00315{bottom:561.990450px;}
.y15_c00315{bottom:582.690450px;}
.y14_c00315{bottom:603.390450px;}
.y13_c00315{bottom:624.090450px;}
.y12_c00315{bottom:644.790450px;}
.y11_c00315{bottom:665.490450px;}
.y10_c00315{bottom:686.190450px;}
.yf_c00315{bottom:706.890450px;}
.ye_c00315{bottom:746.940450px;}
.yd_c00315{bottom:786.990450px;}
.yc_c00315{bottom:818.040450px;}
.yb_c00315{bottom:849.090450px;}
.ya_c00315{bottom:880.140450px;}
.y9_c00315{bottom:911.190450px;}
.y8_c00315{bottom:942.240450px;}
.y7_c00315{bottom:973.290450px;}
.y6_c00315{bottom:1004.340450px;}
.y5_c00315{bottom:1035.390450px;}
.y4_c00315{bottom:1066.440450px;}
.y3_c00315{bottom:1097.490450px;}
.h1_c00315{height:63.175781px;}
.h2_c00315{height:64.546875px;}
.h0_c00315{height:1263.000000px;}
.w1_c00315{width:892.500000px;}
.w0_c00315{width:892.830000px;}
.x0_c00315{left:0.000000px;}
.x2_c00315{left:127.620000px;}
.x3_c00315{left:202.950000px;}
.x1_c00315{left:695.880000px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.lsc_c00315{letter-spacing:-0.185600pt;}
.lsb_c00315{letter-spacing:-0.070400pt;}
.lsd_c00315{letter-spacing:-0.064000pt;}
.ls3_c00315{letter-spacing:-0.057600pt;}
.ls2_c00315{letter-spacing:-0.051200pt;}
.ls4_c00315{letter-spacing:-0.044800pt;}
.ls9_c00315{letter-spacing:-0.038400pt;}
.ls7_c00315{letter-spacing:-0.032000pt;}
.ls8_c00315{letter-spacing:-0.025600pt;}
.ls5_c00315{letter-spacing:-0.019200pt;}
.ls6_c00315{letter-spacing:-0.012800pt;}
.lsa_c00315{letter-spacing:-0.006400pt;}
.ls1_c00315{letter-spacing:0.000000pt;}
.ls0_c00315{letter-spacing:3.600000pt;}
.ws30_c00315{word-spacing:-3.116800pt;}
.ws31_c00315{word-spacing:-3.046400pt;}
.ws3_c00315{word-spacing:-2.080000pt;}
.ws2_c00315{word-spacing:-1.990400pt;}
.ws1c_c00315{word-spacing:-0.332800pt;}
.ws1b_c00315{word-spacing:-0.172800pt;}
.ws1d_c00315{word-spacing:-0.153600pt;}
.ws0_c00315{word-spacing:0.000000pt;}
.ws10_c00315{word-spacing:0.140800pt;}
.wsf_c00315{word-spacing:0.153600pt;}
.ws24_c00315{word-spacing:0.160000pt;}
.ws28_c00315{word-spacing:0.428800pt;}
.ws29_c00315{word-spacing:0.550400pt;}
.ws5_c00315{word-spacing:1.113600pt;}
.ws4_c00315{word-spacing:1.171200pt;}
.ws26_c00315{word-spacing:2.016000pt;}
.ws6_c00315{word-spacing:2.092800pt;}
.ws27_c00315{word-spacing:2.124800pt;}
.ws19_c00315{word-spacing:3.385600pt;}
.ws1a_c00315{word-spacing:3.398400pt;}
.ws2e_c00315{word-spacing:3.507200pt;}
.ws2f_c00315{word-spacing:3.699200pt;}
.ws2a_c00315{word-spacing:4.006400pt;}
.ws2b_c00315{word-spacing:4.025600pt;}
.wsa_c00315{word-spacing:4.659200pt;}
.ws9_c00315{word-spacing:4.665600pt;}
.ws1f_c00315{word-spacing:4.979200pt;}
.ws1e_c00315{word-spacing:4.985600pt;}
.ws15_c00315{word-spacing:5.292800pt;}
.ws16_c00315{word-spacing:5.299200pt;}
.ws34_c00315{word-spacing:5.587200pt;}
.ws35_c00315{word-spacing:5.612800pt;}
.ws1_c00315{word-spacing:5.952000pt;}
.ws14_c00315{word-spacing:6.246400pt;}
.ws13_c00315{word-spacing:6.252800pt;}
.ws25_c00315{word-spacing:7.520000pt;}
.wsd_c00315{word-spacing:9.120000pt;}
.ws21_c00315{word-spacing:11.673600pt;}
.ws20_c00315{word-spacing:11.763200pt;}
.ws32_c00315{word-spacing:11.865600pt;}
.ws33_c00315{word-spacing:12.038400pt;}
.ws12_c00315{word-spacing:12.620800pt;}
.ws7_c00315{word-spacing:12.665600pt;}
.ws11_c00315{word-spacing:12.691200pt;}
.ws2d_c00315{word-spacing:16.096000pt;}
.ws8_c00315{word-spacing:16.166400pt;}
.ws2c_c00315{word-spacing:16.179200pt;}
.wse_c00315{word-spacing:16.492800pt;}
.wsb_c00315{word-spacing:22.227200pt;}
.wsc_c00315{word-spacing:22.233600pt;}
.ws23_c00315{word-spacing:33.459200pt;}
.ws22_c00315{word-spacing:33.555200pt;}
.ws18_c00315{word-spacing:82.707200pt;}
.ws17_c00315{word-spacing:82.713600pt;}
._2_c00315{margin-left:-7.360000pt;}
._0_c00315{margin-left:-0.896000pt;}
._1_c00315{width:1.216000pt;}
.fs1_c00315{font-size:53.440000pt;}
.fs0_c00315{font-size:64.000000pt;}
.y0_c00315{bottom:0.000000pt;}
.y2_c00315{bottom:41.627067pt;}
.y1_c00315{bottom:60.027067pt;}
.y26_c00315{bottom:144.427067pt;}
.y25_c00315{bottom:170.827067pt;}
.y24_c00315{bottom:189.227067pt;}
.y23_c00315{bottom:207.627067pt;}
.y22_c00315{bottom:226.027067pt;}
.y21_c00315{bottom:244.427067pt;}
.y20_c00315{bottom:262.827067pt;}
.y1f_c00315{bottom:281.227067pt;}
.y1e_c00315{bottom:316.827067pt;}
.y1d_c00315{bottom:344.347067pt;}
.y1c_c00315{bottom:371.947067pt;}
.y1b_c00315{bottom:399.547067pt;}
.y1a_c00315{bottom:425.947067pt;}
.y19_c00315{bottom:444.347067pt;}
.y18_c00315{bottom:462.747067pt;}
.y17_c00315{bottom:481.147067pt;}
.y16_c00315{bottom:499.547067pt;}
.y15_c00315{bottom:517.947067pt;}
.y14_c00315{bottom:536.347067pt;}
.y13_c00315{bottom:554.747067pt;}
.y12_c00315{bottom:573.147067pt;}
.y11_c00315{bottom:591.547067pt;}
.y10_c00315{bottom:609.947067pt;}
.yf_c00315{bottom:628.347067pt;}
.ye_c00315{bottom:663.947067pt;}
.yd_c00315{bottom:699.547067pt;}
.yc_c00315{bottom:727.147067pt;}
.yb_c00315{bottom:754.747067pt;}
.ya_c00315{bottom:782.347067pt;}
.y9_c00315{bottom:809.947067pt;}
.y8_c00315{bottom:837.547067pt;}
.y7_c00315{bottom:865.147067pt;}
.y6_c00315{bottom:892.747067pt;}
.y5_c00315{bottom:920.347067pt;}
.y4_c00315{bottom:947.947067pt;}
.y3_c00315{bottom:975.547067pt;}
.h1_c00315{height:56.156250pt;}
.h2_c00315{height:57.375000pt;}
.h0_c00315{height:1122.666667pt;}
.w1_c00315{width:793.333333pt;}
.w0_c00315{width:793.626667pt;}
.x0_c00315{left:0.000000pt;}
.x2_c00315{left:113.440000pt;}
.x3_c00315{left:180.400000pt;}
.x1_c00315{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_45d33aa7c73818ed897c26f0.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.093262;font-style:normal;font-weight:normal;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_9b632dfadbbc33aded406089.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.106934;font-style:normal;font-weight:normal;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_0e09a93a5d4379913e4cd156.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsa_c00316{letter-spacing:-0.079200px;}
.lsb_c00316{letter-spacing:-0.072000px;}
.ls7_c00316{letter-spacing:-0.064800px;}
.ls9_c00316{letter-spacing:-0.057600px;}
.ls3_c00316{letter-spacing:-0.050400px;}
.ls1_c00316{letter-spacing:-0.043200px;}
.ls4_c00316{letter-spacing:-0.036000px;}
.ls6_c00316{letter-spacing:-0.028800px;}
.ls5_c00316{letter-spacing:-0.021600px;}
.ls8_c00316{letter-spacing:-0.014400px;}
.ls2_c00316{letter-spacing:-0.007200px;}
.ls0_c00316{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00316{word-spacing:-20.016000px;}
.ws2b_c00316{word-spacing:-4.514400px;}
.ws2a_c00316{word-spacing:-4.500000px;}
.ws2e_c00316{word-spacing:-3.492000px;}
.ws4_c00316{word-spacing:-3.448800px;}
.ws2f_c00316{word-spacing:-3.384000px;}
.ws1c_c00316{word-spacing:-3.132000px;}
.ws1d_c00316{word-spacing:-3.074400px;}
.wsd_c00316{word-spacing:-2.707200px;}
.wse_c00316{word-spacing:-2.664000px;}
.ws1f_c00316{word-spacing:-1.706400px;}
.ws20_c00316{word-spacing:-1.684800px;}
.ws1_c00316{word-spacing:0.000000px;}
.ws19_c00316{word-spacing:0.165600px;}
.ws18_c00316{word-spacing:0.172800px;}
.ws5_c00316{word-spacing:0.194400px;}
.ws16_c00316{word-spacing:0.424800px;}
.ws17_c00316{word-spacing:0.576000px;}
.ws26_c00316{word-spacing:0.900000px;}
.ws10_c00316{word-spacing:0.914400px;}
.ws27_c00316{word-spacing:0.928800px;}
.ws34_c00316{word-spacing:1.152000px;}
.ws33_c00316{word-spacing:1.267200px;}
.ws29_c00316{word-spacing:1.288800px;}
.ws28_c00316{word-spacing:1.346400px;}
.ws21_c00316{word-spacing:1.958400px;}
.ws22_c00316{word-spacing:1.994400px;}
.ws1e_c00316{word-spacing:2.332800px;}
.ws3b_c00316{word-spacing:3.016800px;}
.ws35_c00316{word-spacing:3.052800px;}
.ws3c_c00316{word-spacing:3.110400px;}
.ws9_c00316{word-spacing:3.427200px;}
.wsa_c00316{word-spacing:3.499200px;}
.ws23_c00316{word-spacing:6.314400px;}
.ws30_c00316{word-spacing:6.660000px;}
.ws6_c00316{word-spacing:8.460000px;}
.ws13_c00316{word-spacing:8.467200px;}
.ws7_c00316{word-spacing:8.474400px;}
.ws1b_c00316{word-spacing:12.060000px;}
.ws1a_c00316{word-spacing:12.211200px;}
.ws2c_c00316{word-spacing:13.456800px;}
.ws2d_c00316{word-spacing:13.514400px;}
.ws32_c00316{word-spacing:14.176800px;}
.ws31_c00316{word-spacing:14.263200px;}
.ws15_c00316{word-spacing:16.322400px;}
.ws14_c00316{word-spacing:16.387200px;}
.ws3_c00316{word-spacing:16.725600px;}
.ws2_c00316{word-spacing:16.761600px;}
.wsf_c00316{word-spacing:18.201600px;}
.ws11_c00316{word-spacing:18.892800px;}
.ws12_c00316{word-spacing:18.914400px;}
.ws38_c00316{word-spacing:23.198400px;}
.ws39_c00316{word-spacing:23.220000px;}
.ws8_c00316{word-spacing:27.554400px;}
.ws24_c00316{word-spacing:31.838400px;}
.ws25_c00316{word-spacing:31.852800px;}
.ws3a_c00316{word-spacing:32.594400px;}
.wsb_c00316{word-spacing:33.674400px;}
.wsc_c00316{word-spacing:33.703200px;}
.ws36_c00316{word-spacing:40.226400px;}
.ws37_c00316{word-spacing:53.100000px;}
._0_c00316{margin-left:-16.372800px;}
._2_c00316{margin-left:-12.384000px;}
._1_c00316{width:1.440000px;}
.fc0_c00316{color:rgb(0,0,0);}
.fs0_c00316{font-size:72.000000px;}
.y0_c00316{bottom:0.000000px;}
.y2_c00316{bottom:46.830450px;}
.y1_c00316{bottom:67.530450px;}
.y2a_c00316{bottom:159.780450px;}
.y29_c00316{bottom:180.480450px;}
.y28_c00316{bottom:201.180450px;}
.y27_c00316{bottom:221.880450px;}
.y26_c00316{bottom:242.580450px;}
.y25_c00316{bottom:263.280450px;}
.y24_c00316{bottom:283.980450px;}
.y23_c00316{bottom:304.680450px;}
.y22_c00316{bottom:325.380450px;}
.y21_c00316{bottom:346.080450px;}
.y20_c00316{bottom:366.690450px;}
.y1f_c00316{bottom:387.390450px;}
.y1e_c00316{bottom:408.090450px;}
.y1d_c00316{bottom:428.790450px;}
.y1c_c00316{bottom:449.490450px;}
.y1b_c00316{bottom:470.190450px;}
.y1a_c00316{bottom:510.240450px;}
.y19_c00316{bottom:541.290450px;}
.y18_c00316{bottom:572.340450px;}
.y17_c00316{bottom:603.390450px;}
.y16_c00316{bottom:634.440450px;}
.y15_c00316{bottom:665.490450px;}
.y14_c00316{bottom:696.540450px;}
.y13_c00316{bottom:726.240450px;}
.y12_c00316{bottom:746.940450px;}
.y11_c00316{bottom:767.640450px;}
.y10_c00316{bottom:788.340450px;}
.yf_c00316{bottom:809.040450px;}
.ye_c00316{bottom:829.740450px;}
.yd_c00316{bottom:850.440450px;}
.yc_c00316{bottom:871.140450px;}
.yb_c00316{bottom:891.840450px;}
.ya_c00316{bottom:912.540450px;}
.y9_c00316{bottom:933.240450px;}
.y8_c00316{bottom:953.940450px;}
.y7_c00316{bottom:974.640450px;}
.y6_c00316{bottom:995.340450px;}
.y5_c00316{bottom:1035.390450px;}
.y4_c00316{bottom:1066.440450px;}
.y3_c00316{bottom:1097.490450px;}
.h1_c00316{height:63.175781px;}
.h3_c00316{height:64.546875px;}
.h2_c00316{height:75.093750px;}
.h0_c00316{height:1263.000000px;}
.w1_c00316{width:892.500000px;}
.w0_c00316{width:892.830000px;}
.x0_c00316{left:0.000000px;}
.x2_c00316{left:170.100000px;}
.x3_c00316{left:245.430000px;}
.x1_c00316{left:738.360000px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.lsa_c00316{letter-spacing:-0.070400pt;}
.lsb_c00316{letter-spacing:-0.064000pt;}
.ls7_c00316{letter-spacing:-0.057600pt;}
.ls9_c00316{letter-spacing:-0.051200pt;}
.ls3_c00316{letter-spacing:-0.044800pt;}
.ls1_c00316{letter-spacing:-0.038400pt;}
.ls4_c00316{letter-spacing:-0.032000pt;}
.ls6_c00316{letter-spacing:-0.025600pt;}
.ls5_c00316{letter-spacing:-0.019200pt;}
.ls8_c00316{letter-spacing:-0.012800pt;}
.ls2_c00316{letter-spacing:-0.006400pt;}
.ls0_c00316{letter-spacing:0.000000pt;}
.ws0_c00316{word-spacing:-17.792000pt;}
.ws2b_c00316{word-spacing:-4.012800pt;}
.ws2a_c00316{word-spacing:-4.000000pt;}
.ws2e_c00316{word-spacing:-3.104000pt;}
.ws4_c00316{word-spacing:-3.065600pt;}
.ws2f_c00316{word-spacing:-3.008000pt;}
.ws1c_c00316{word-spacing:-2.784000pt;}
.ws1d_c00316{word-spacing:-2.732800pt;}
.wsd_c00316{word-spacing:-2.406400pt;}
.wse_c00316{word-spacing:-2.368000pt;}
.ws1f_c00316{word-spacing:-1.516800pt;}
.ws20_c00316{word-spacing:-1.497600pt;}
.ws1_c00316{word-spacing:0.000000pt;}
.ws19_c00316{word-spacing:0.147200pt;}
.ws18_c00316{word-spacing:0.153600pt;}
.ws5_c00316{word-spacing:0.172800pt;}
.ws16_c00316{word-spacing:0.377600pt;}
.ws17_c00316{word-spacing:0.512000pt;}
.ws26_c00316{word-spacing:0.800000pt;}
.ws10_c00316{word-spacing:0.812800pt;}
.ws27_c00316{word-spacing:0.825600pt;}
.ws34_c00316{word-spacing:1.024000pt;}
.ws33_c00316{word-spacing:1.126400pt;}
.ws29_c00316{word-spacing:1.145600pt;}
.ws28_c00316{word-spacing:1.196800pt;}
.ws21_c00316{word-spacing:1.740800pt;}
.ws22_c00316{word-spacing:1.772800pt;}
.ws1e_c00316{word-spacing:2.073600pt;}
.ws3b_c00316{word-spacing:2.681600pt;}
.ws35_c00316{word-spacing:2.713600pt;}
.ws3c_c00316{word-spacing:2.764800pt;}
.ws9_c00316{word-spacing:3.046400pt;}
.wsa_c00316{word-spacing:3.110400pt;}
.ws23_c00316{word-spacing:5.612800pt;}
.ws30_c00316{word-spacing:5.920000pt;}
.ws6_c00316{word-spacing:7.520000pt;}
.ws13_c00316{word-spacing:7.526400pt;}
.ws7_c00316{word-spacing:7.532800pt;}
.ws1b_c00316{word-spacing:10.720000pt;}
.ws1a_c00316{word-spacing:10.854400pt;}
.ws2c_c00316{word-spacing:11.961600pt;}
.ws2d_c00316{word-spacing:12.012800pt;}
.ws32_c00316{word-spacing:12.601600pt;}
.ws31_c00316{word-spacing:12.678400pt;}
.ws15_c00316{word-spacing:14.508800pt;}
.ws14_c00316{word-spacing:14.566400pt;}
.ws3_c00316{word-spacing:14.867200pt;}
.ws2_c00316{word-spacing:14.899200pt;}
.wsf_c00316{word-spacing:16.179200pt;}
.ws11_c00316{word-spacing:16.793600pt;}
.ws12_c00316{word-spacing:16.812800pt;}
.ws38_c00316{word-spacing:20.620800pt;}
.ws39_c00316{word-spacing:20.640000pt;}
.ws8_c00316{word-spacing:24.492800pt;}
.ws24_c00316{word-spacing:28.300800pt;}
.ws25_c00316{word-spacing:28.313600pt;}
.ws3a_c00316{word-spacing:28.972800pt;}
.wsb_c00316{word-spacing:29.932800pt;}
.wsc_c00316{word-spacing:29.958400pt;}
.ws36_c00316{word-spacing:35.756800pt;}
.ws37_c00316{word-spacing:47.200000pt;}
._0_c00316{margin-left:-14.553600pt;}
._2_c00316{margin-left:-11.008000pt;}
._1_c00316{width:1.280000pt;}
.fs0_c00316{font-size:64.000000pt;}
.y0_c00316{bottom:0.000000pt;}
.y2_c00316{bottom:41.627067pt;}
.y1_c00316{bottom:60.027067pt;}
.y2a_c00316{bottom:142.027067pt;}
.y29_c00316{bottom:160.427067pt;}
.y28_c00316{bottom:178.827067pt;}
.y27_c00316{bottom:197.227067pt;}
.y26_c00316{bottom:215.627067pt;}
.y25_c00316{bottom:234.027067pt;}
.y24_c00316{bottom:252.427067pt;}
.y23_c00316{bottom:270.827067pt;}
.y22_c00316{bottom:289.227067pt;}
.y21_c00316{bottom:307.627067pt;}
.y20_c00316{bottom:325.947067pt;}
.y1f_c00316{bottom:344.347067pt;}
.y1e_c00316{bottom:362.747067pt;}
.y1d_c00316{bottom:381.147067pt;}
.y1c_c00316{bottom:399.547067pt;}
.y1b_c00316{bottom:417.947067pt;}
.y1a_c00316{bottom:453.547067pt;}
.y19_c00316{bottom:481.147067pt;}
.y18_c00316{bottom:508.747067pt;}
.y17_c00316{bottom:536.347067pt;}
.y16_c00316{bottom:563.947067pt;}
.y15_c00316{bottom:591.547067pt;}
.y14_c00316{bottom:619.147067pt;}
.y13_c00316{bottom:645.547067pt;}
.y12_c00316{bottom:663.947067pt;}
.y11_c00316{bottom:682.347067pt;}
.y10_c00316{bottom:700.747067pt;}
.yf_c00316{bottom:719.147067pt;}
.ye_c00316{bottom:737.547067pt;}
.yd_c00316{bottom:755.947067pt;}
.yc_c00316{bottom:774.347067pt;}
.yb_c00316{bottom:792.747067pt;}
.ya_c00316{bottom:811.147067pt;}
.y9_c00316{bottom:829.547067pt;}
.y8_c00316{bottom:847.947067pt;}
.y7_c00316{bottom:866.347067pt;}
.y6_c00316{bottom:884.747067pt;}
.y5_c00316{bottom:920.347067pt;}
.y4_c00316{bottom:947.947067pt;}
.y3_c00316{bottom:975.547067pt;}
.h1_c00316{height:56.156250pt;}
.h3_c00316{height:57.375000pt;}
.h2_c00316{height:66.750000pt;}
.h0_c00316{height:1122.666667pt;}
.w1_c00316{width:793.333333pt;}
.w0_c00316{width:793.626667pt;}
.x0_c00316{left:0.000000pt;}
.x2_c00316{left:151.200000pt;}
.x3_c00316{left:218.160000pt;}
.x1_c00316{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_06db7a9fd824543c4722556d.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.093262;font-style:normal;font-weight:normal;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_6e7b69dbef9a69a048106881.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.ls8_c00317{letter-spacing:-0.072000px;}
.ls9_c00317{letter-spacing:-0.064800px;}
.ls4_c00317{letter-spacing:-0.057600px;}
.ls1_c00317{letter-spacing:-0.043200px;}
.ls3_c00317{letter-spacing:-0.036000px;}
.ls5_c00317{letter-spacing:-0.028800px;}
.ls6_c00317{letter-spacing:-0.021600px;}
.lsa_c00317{letter-spacing:-0.014400px;}
.ls7_c00317{letter-spacing:-0.007200px;}
.ls0_c00317{letter-spacing:0.000000px;}
.ls2_c00317{letter-spacing:0.007200px;}
.lsb_c00317{letter-spacing:843.998400px;}
.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;}
}
.ws15_c00317{word-spacing:-4.521600px;}
.ws14_c00317{word-spacing:-4.492800px;}
.ws17_c00317{word-spacing:-3.074400px;}
.wsc_c00317{word-spacing:-3.060000px;}
.wsd_c00317{word-spacing:-3.045600px;}
.ws16_c00317{word-spacing:-2.887200px;}
.ws10_c00317{word-spacing:-2.325600px;}
.ws1_c00317{word-spacing:-2.016000px;}
.ws2_c00317{word-spacing:-1.951200px;}
.wsb_c00317{word-spacing:-0.878400px;}
.ws4_c00317{word-spacing:-0.525600px;}
.ws5_c00317{word-spacing:-0.518400px;}
.ws11_c00317{word-spacing:-0.482400px;}
.ws0_c00317{word-spacing:0.000000px;}
.ws3_c00317{word-spacing:0.057600px;}
.ws19_c00317{word-spacing:0.172800px;}
.ws8_c00317{word-spacing:0.187200px;}
.ws13_c00317{word-spacing:1.987200px;}
.ws12_c00317{word-spacing:2.088000px;}
.wsa_c00317{word-spacing:4.500000px;}
.ws9_c00317{word-spacing:4.536000px;}
.ws6_c00317{word-spacing:9.453600px;}
.ws7_c00317{word-spacing:9.547200px;}
.ws18_c00317{word-spacing:14.263200px;}
.wsf_c00317{word-spacing:20.952000px;}
.wse_c00317{word-spacing:21.060000px;}
.fc0_c00317{color:rgb(0,0,0);}
.fs0_c00317{font-size:72.000000px;}
.y0_c00317{bottom:0.000000px;}
.y2_c00317{bottom:46.830450px;}
.y1_c00317{bottom:67.530450px;}
.y1f_c00317{bottom:247.080450px;}
.y1e_c00317{bottom:287.040450px;}
.y1d_c00317{bottom:327.090450px;}
.y1c_c00317{bottom:367.140450px;}
.y1b_c00317{bottom:407.190450px;}
.y1a_c00317{bottom:447.240450px;}
.y19_c00317{bottom:487.290450px;}
.y18_c00317{bottom:527.340450px;}
.y17_c00317{bottom:567.390450px;}
.y16_c00317{bottom:607.440450px;}
.y15_c00317{bottom:647.490450px;}
.y14_c00317{bottom:687.540450px;}
.y13_c00317{bottom:717.240450px;}
.y12_c00317{bottom:737.940450px;}
.y11_c00317{bottom:758.640450px;}
.y10_c00317{bottom:779.340450px;}
.yf_c00317{bottom:800.040450px;}
.ye_c00317{bottom:820.740450px;}
.yd_c00317{bottom:841.440450px;}
.yc_c00317{bottom:862.140450px;}
.yb_c00317{bottom:882.840450px;}
.ya_c00317{bottom:903.540450px;}
.y9_c00317{bottom:924.240450px;}
.y8_c00317{bottom:964.290450px;}
.y7_c00317{bottom:995.340450px;}
.y6_c00317{bottom:1026.390450px;}
.y5_c00317{bottom:1056.090450px;}
.y4_c00317{bottom:1076.790450px;}
.y3_c00317{bottom:1097.490450px;}
.h1_c00317{height:63.175781px;}
.h2_c00317{height:64.546875px;}
.h0_c00317{height:1263.000000px;}
.w1_c00317{width:892.500000px;}
.w0_c00317{width:892.830000px;}
.x0_c00317{left:0.000000px;}
.x2_c00317{left:127.620000px;}
.x3_c00317{left:202.950000px;}
.x1_c00317{left:695.880000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls8_c00317{letter-spacing:-0.064000pt;}
.ls9_c00317{letter-spacing:-0.057600pt;}
.ls4_c00317{letter-spacing:-0.051200pt;}
.ls1_c00317{letter-spacing:-0.038400pt;}
.ls3_c00317{letter-spacing:-0.032000pt;}
.ls5_c00317{letter-spacing:-0.025600pt;}
.ls6_c00317{letter-spacing:-0.019200pt;}
.lsa_c00317{letter-spacing:-0.012800pt;}
.ls7_c00317{letter-spacing:-0.006400pt;}
.ls0_c00317{letter-spacing:0.000000pt;}
.ls2_c00317{letter-spacing:0.006400pt;}
.lsb_c00317{letter-spacing:750.220800pt;}
.ws15_c00317{word-spacing:-4.019200pt;}
.ws14_c00317{word-spacing:-3.993600pt;}
.ws17_c00317{word-spacing:-2.732800pt;}
.wsc_c00317{word-spacing:-2.720000pt;}
.wsd_c00317{word-spacing:-2.707200pt;}
.ws16_c00317{word-spacing:-2.566400pt;}
.ws10_c00317{word-spacing:-2.067200pt;}
.ws1_c00317{word-spacing:-1.792000pt;}
.ws2_c00317{word-spacing:-1.734400pt;}
.wsb_c00317{word-spacing:-0.780800pt;}
.ws4_c00317{word-spacing:-0.467200pt;}
.ws5_c00317{word-spacing:-0.460800pt;}
.ws11_c00317{word-spacing:-0.428800pt;}
.ws0_c00317{word-spacing:0.000000pt;}
.ws3_c00317{word-spacing:0.051200pt;}
.ws19_c00317{word-spacing:0.153600pt;}
.ws8_c00317{word-spacing:0.166400pt;}
.ws13_c00317{word-spacing:1.766400pt;}
.ws12_c00317{word-spacing:1.856000pt;}
.wsa_c00317{word-spacing:4.000000pt;}
.ws9_c00317{word-spacing:4.032000pt;}
.ws6_c00317{word-spacing:8.403200pt;}
.ws7_c00317{word-spacing:8.486400pt;}
.ws18_c00317{word-spacing:12.678400pt;}
.wsf_c00317{word-spacing:18.624000pt;}
.wse_c00317{word-spacing:18.720000pt;}
.fs0_c00317{font-size:64.000000pt;}
.y0_c00317{bottom:0.000000pt;}
.y2_c00317{bottom:41.627067pt;}
.y1_c00317{bottom:60.027067pt;}
.y1f_c00317{bottom:219.627067pt;}
.y1e_c00317{bottom:255.147067pt;}
.y1d_c00317{bottom:290.747067pt;}
.y1c_c00317{bottom:326.347067pt;}
.y1b_c00317{bottom:361.947067pt;}
.y1a_c00317{bottom:397.547067pt;}
.y19_c00317{bottom:433.147067pt;}
.y18_c00317{bottom:468.747067pt;}
.y17_c00317{bottom:504.347067pt;}
.y16_c00317{bottom:539.947067pt;}
.y15_c00317{bottom:575.547067pt;}
.y14_c00317{bottom:611.147067pt;}
.y13_c00317{bottom:637.547067pt;}
.y12_c00317{bottom:655.947067pt;}
.y11_c00317{bottom:674.347067pt;}
.y10_c00317{bottom:692.747067pt;}
.yf_c00317{bottom:711.147067pt;}
.ye_c00317{bottom:729.547067pt;}
.yd_c00317{bottom:747.947067pt;}
.yc_c00317{bottom:766.347067pt;}
.yb_c00317{bottom:784.747067pt;}
.ya_c00317{bottom:803.147067pt;}
.y9_c00317{bottom:821.547067pt;}
.y8_c00317{bottom:857.147067pt;}
.y7_c00317{bottom:884.747067pt;}
.y6_c00317{bottom:912.347067pt;}
.y5_c00317{bottom:938.747067pt;}
.y4_c00317{bottom:957.147067pt;}
.y3_c00317{bottom:975.547067pt;}
.h1_c00317{height:56.156250pt;}
.h2_c00317{height:57.375000pt;}
.h0_c00317{height:1122.666667pt;}
.w1_c00317{width:793.333333pt;}
.w0_c00317{width:793.626667pt;}
.x0_c00317{left:0.000000pt;}
.x2_c00317{left:113.440000pt;}
.x3_c00317{left:180.400000pt;}
.x1_c00317{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_07f84d30d68a5daa588a7fd8.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.093262;font-style:normal;font-weight:normal;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_76029efb194fba8210d05721.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00318;src:url('chunks/assets/font_b28e2d1e57f59b8b9eab097f.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00318{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.ls9_c00318{letter-spacing:-0.072000px;}
.lsc_c00318{letter-spacing:-0.064800px;}
.ls7_c00318{letter-spacing:-0.057600px;}
.lsa_c00318{letter-spacing:-0.050400px;}
.ls4_c00318{letter-spacing:-0.043200px;}
.ls3_c00318{letter-spacing:-0.036000px;}
.ls8_c00318{letter-spacing:-0.028800px;}
.lsb_c00318{letter-spacing:-0.021600px;}
.ls5_c00318{letter-spacing:-0.014400px;}
.ls6_c00318{letter-spacing:-0.007200px;}
.ls2_c00318{letter-spacing:0.000000px;}
.ls1_c00318{letter-spacing:0.007200px;}
.ls0_c00318{letter-spacing:0.050328px;}
.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;}
}
.ws7_c00318{word-spacing:-4.874400px;}
.ws6_c00318{word-spacing:-4.867200px;}
.ws19_c00318{word-spacing:-4.140000px;}
.ws1a_c00318{word-spacing:-4.111200px;}
.ws18_c00318{word-spacing:-3.427200px;}
.ws17_c00318{word-spacing:-3.412800px;}
.wsa_c00318{word-spacing:-0.849600px;}
.ws9_c00318{word-spacing:-0.532800px;}
.ws8_c00318{word-spacing:-0.504000px;}
.ws2b_c00318{word-spacing:-0.158400px;}
.ws2a_c00318{word-spacing:-0.129600px;}
.ws0_c00318{word-spacing:0.000000px;}
.ws1_c00318{word-spacing:0.109044px;}
.ws12_c00318{word-spacing:0.151200px;}
.ws30_c00318{word-spacing:0.158400px;}
.ws1b_c00318{word-spacing:0.180000px;}
.ws25_c00318{word-spacing:0.187200px;}
.ws1c_c00318{word-spacing:0.194400px;}
.ws5_c00318{word-spacing:5.234400px;}
.ws4_c00318{word-spacing:5.241600px;}
.wsd_c00318{word-spacing:5.947200px;}
.ws26_c00318{word-spacing:6.638400px;}
.ws27_c00318{word-spacing:6.703200px;}
.ws2d_c00318{word-spacing:8.798400px;}
.ws2c_c00318{word-spacing:8.841600px;}
.ws22_c00318{word-spacing:11.239200px;}
.ws21_c00318{word-spacing:11.361600px;}
.wsc_c00318{word-spacing:13.507200px;}
.ws13_c00318{word-spacing:15.040800px;}
.ws14_c00318{word-spacing:15.134400px;}
.wsb_c00318{word-spacing:15.667200px;}
.ws1f_c00318{word-spacing:16.027200px;}
.ws20_c00318{word-spacing:16.084800px;}
.ws2_c00318{word-spacing:17.056800px;}
.ws3_c00318{word-spacing:17.078400px;}
.ws28_c00318{word-spacing:17.100000px;}
.ws29_c00318{word-spacing:17.128800px;}
.ws15_c00318{word-spacing:17.467200px;}
.ws16_c00318{word-spacing:17.488800px;}
.ws24_c00318{word-spacing:20.635200px;}
.ws23_c00318{word-spacing:20.743200px;}
.ws1e_c00318{word-spacing:21.391200px;}
.ws1d_c00318{word-spacing:21.448800px;}
.ws2f_c00318{word-spacing:25.034400px;}
.ws2e_c00318{word-spacing:25.192800px;}
.wsf_c00318{word-spacing:41.565600px;}
.wse_c00318{word-spacing:41.580000px;}
.ws10_c00318{word-spacing:41.608800px;}
.ws11_c00318{word-spacing:41.731200px;}
._3_c00318{margin-left:-21.240000px;}
._1_c00318{margin-left:-16.430400px;}
._2_c00318{width:1.166400px;}
._0_c00318{width:9.646200px;}
.fc0_c00318{color:rgb(0,0,0);}
.fs0_c00318{font-size:72.000000px;}
.fs1_c00318{font-size:83.880000px;}
.y0_c00318{bottom:0.000000px;}
.y2_c00318{bottom:46.830450px;}
.y1_c00318{bottom:67.530450px;}
.y20_c00318{bottom:149.970450px;}
.y1f_c00318{bottom:190.020450px;}
.y1e_c00318{bottom:221.070450px;}
.y1d_c00318{bottom:252.120450px;}
.y1c_c00318{bottom:283.170450px;}
.y1b_c00318{bottom:314.220450px;}
.y1a_c00318{bottom:345.270450px;}
.y19_c00318{bottom:385.320450px;}
.y18_c00318{bottom:416.370450px;}
.y17_c00318{bottom:447.420450px;}
.y16_c00318{bottom:478.470450px;}
.y15_c00318{bottom:509.520450px;}
.y14_c00318{bottom:549.570450px;}
.y13_c00318{bottom:580.620450px;}
.y12_c00318{bottom:611.670450px;}
.y11_c00318{bottom:642.720450px;}
.y10_c00318{bottom:673.770450px;}
.yf_c00318{bottom:704.820450px;}
.ye_c00318{bottom:744.870450px;}
.yd_c00318{bottom:775.920450px;}
.yc_c00318{bottom:806.970450px;}
.yb_c00318{bottom:838.020450px;}
.ya_c00318{bottom:869.070450px;}
.y9_c00318{bottom:900.120450px;}
.y8_c00318{bottom:931.170450px;}
.y7_c00318{bottom:962.220450px;}
.y6_c00318{bottom:993.270450px;}
.y5_c00318{bottom:1024.320450px;}
.y4_c00318{bottom:1064.370450px;}
.y3_c00318{bottom:1094.520450px;}
.h1_c00318{height:63.175781px;}
.h3_c00318{height:64.546875px;}
.h2_c00318{height:87.484219px;}
.h0_c00318{height:1263.000000px;}
.w1_c00318{width:892.500000px;}
.w0_c00318{width:892.830000px;}
.x0_c00318{left:0.000000px;}
.x2_c00318{left:170.100000px;}
.x3_c00318{left:251.100000px;}
.x1_c00318{left:738.360000px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls9_c00318{letter-spacing:-0.064000pt;}
.lsc_c00318{letter-spacing:-0.057600pt;}
.ls7_c00318{letter-spacing:-0.051200pt;}
.lsa_c00318{letter-spacing:-0.044800pt;}
.ls4_c00318{letter-spacing:-0.038400pt;}
.ls3_c00318{letter-spacing:-0.032000pt;}
.ls8_c00318{letter-spacing:-0.025600pt;}
.lsb_c00318{letter-spacing:-0.019200pt;}
.ls5_c00318{letter-spacing:-0.012800pt;}
.ls6_c00318{letter-spacing:-0.006400pt;}
.ls2_c00318{letter-spacing:0.000000pt;}
.ls1_c00318{letter-spacing:0.006400pt;}
.ls0_c00318{letter-spacing:0.044736pt;}
.ws7_c00318{word-spacing:-4.332800pt;}
.ws6_c00318{word-spacing:-4.326400pt;}
.ws19_c00318{word-spacing:-3.680000pt;}
.ws1a_c00318{word-spacing:-3.654400pt;}
.ws18_c00318{word-spacing:-3.046400pt;}
.ws17_c00318{word-spacing:-3.033600pt;}
.wsa_c00318{word-spacing:-0.755200pt;}
.ws9_c00318{word-spacing:-0.473600pt;}
.ws8_c00318{word-spacing:-0.448000pt;}
.ws2b_c00318{word-spacing:-0.140800pt;}
.ws2a_c00318{word-spacing:-0.115200pt;}
.ws0_c00318{word-spacing:0.000000pt;}
.ws1_c00318{word-spacing:0.096928pt;}
.ws12_c00318{word-spacing:0.134400pt;}
.ws30_c00318{word-spacing:0.140800pt;}
.ws1b_c00318{word-spacing:0.160000pt;}
.ws25_c00318{word-spacing:0.166400pt;}
.ws1c_c00318{word-spacing:0.172800pt;}
.ws5_c00318{word-spacing:4.652800pt;}
.ws4_c00318{word-spacing:4.659200pt;}
.wsd_c00318{word-spacing:5.286400pt;}
.ws26_c00318{word-spacing:5.900800pt;}
.ws27_c00318{word-spacing:5.958400pt;}
.ws2d_c00318{word-spacing:7.820800pt;}
.ws2c_c00318{word-spacing:7.859200pt;}
.ws22_c00318{word-spacing:9.990400pt;}
.ws21_c00318{word-spacing:10.099200pt;}
.wsc_c00318{word-spacing:12.006400pt;}
.ws13_c00318{word-spacing:13.369600pt;}
.ws14_c00318{word-spacing:13.452800pt;}
.wsb_c00318{word-spacing:13.926400pt;}
.ws1f_c00318{word-spacing:14.246400pt;}
.ws20_c00318{word-spacing:14.297600pt;}
.ws2_c00318{word-spacing:15.161600pt;}
.ws3_c00318{word-spacing:15.180800pt;}
.ws28_c00318{word-spacing:15.200000pt;}
.ws29_c00318{word-spacing:15.225600pt;}
.ws15_c00318{word-spacing:15.526400pt;}
.ws16_c00318{word-spacing:15.545600pt;}
.ws24_c00318{word-spacing:18.342400pt;}
.ws23_c00318{word-spacing:18.438400pt;}
.ws1e_c00318{word-spacing:19.014400pt;}
.ws1d_c00318{word-spacing:19.065600pt;}
.ws2f_c00318{word-spacing:22.252800pt;}
.ws2e_c00318{word-spacing:22.393600pt;}
.wsf_c00318{word-spacing:36.947200pt;}
.wse_c00318{word-spacing:36.960000pt;}
.ws10_c00318{word-spacing:36.985600pt;}
.ws11_c00318{word-spacing:37.094400pt;}
._3_c00318{margin-left:-18.880000pt;}
._1_c00318{margin-left:-14.604800pt;}
._2_c00318{width:1.036800pt;}
._0_c00318{width:8.574400pt;}
.fs0_c00318{font-size:64.000000pt;}
.fs1_c00318{font-size:74.560000pt;}
.y0_c00318{bottom:0.000000pt;}
.y2_c00318{bottom:41.627067pt;}
.y1_c00318{bottom:60.027067pt;}
.y20_c00318{bottom:133.307067pt;}
.y1f_c00318{bottom:168.907067pt;}
.y1e_c00318{bottom:196.507067pt;}
.y1d_c00318{bottom:224.107067pt;}
.y1c_c00318{bottom:251.707067pt;}
.y1b_c00318{bottom:279.307067pt;}
.y1a_c00318{bottom:306.907067pt;}
.y19_c00318{bottom:342.507067pt;}
.y18_c00318{bottom:370.107067pt;}
.y17_c00318{bottom:397.707067pt;}
.y16_c00318{bottom:425.307067pt;}
.y15_c00318{bottom:452.907067pt;}
.y14_c00318{bottom:488.507067pt;}
.y13_c00318{bottom:516.107067pt;}
.y12_c00318{bottom:543.707067pt;}
.y11_c00318{bottom:571.307067pt;}
.y10_c00318{bottom:598.907067pt;}
.yf_c00318{bottom:626.507067pt;}
.ye_c00318{bottom:662.107067pt;}
.yd_c00318{bottom:689.707067pt;}
.yc_c00318{bottom:717.307067pt;}
.yb_c00318{bottom:744.907067pt;}
.ya_c00318{bottom:772.507067pt;}
.y9_c00318{bottom:800.107067pt;}
.y8_c00318{bottom:827.707067pt;}
.y7_c00318{bottom:855.307067pt;}
.y6_c00318{bottom:882.907067pt;}
.y5_c00318{bottom:910.507067pt;}
.y4_c00318{bottom:946.107067pt;}
.y3_c00318{bottom:972.907067pt;}
.h1_c00318{height:56.156250pt;}
.h3_c00318{height:57.375000pt;}
.h2_c00318{height:77.763750pt;}
.h0_c00318{height:1122.666667pt;}
.w1_c00318{width:793.333333pt;}
.w0_c00318{width:793.626667pt;}
.x0_c00318{left:0.000000pt;}
.x2_c00318{left:151.200000pt;}
.x3_c00318{left:223.200000pt;}
.x1_c00318{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_836f8bd9cfd783dd604ac6af.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.093262;font-style:normal;font-weight:normal;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_5a7be9c12a870ddf48bdedc8.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:1.106934;font-style:normal;font-weight:normal;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_10159730f3d040d902b31cd9.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00319{letter-spacing:-0.093600px;}
.lse_c00319{letter-spacing:-0.072000px;}
.ls5_c00319{letter-spacing:-0.064800px;}
.ls9_c00319{letter-spacing:-0.057600px;}
.ls2_c00319{letter-spacing:-0.050400px;}
.lsc_c00319{letter-spacing:-0.043200px;}
.ls3_c00319{letter-spacing:-0.036000px;}
.ls4_c00319{letter-spacing:-0.028800px;}
.ls8_c00319{letter-spacing:-0.021600px;}
.ls6_c00319{letter-spacing:-0.014400px;}
.ls7_c00319{letter-spacing:-0.007200px;}
.ls1_c00319{letter-spacing:0.000000px;}
.lsb_c00319{letter-spacing:0.007200px;}
.ls0_c00319{letter-spacing:0.014400px;}
.lsa_c00319{letter-spacing:0.036000px;}
.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;}
}
.ws33_c00319{word-spacing:-4.550400px;}
.ws32_c00319{word-spacing:-4.442400px;}
.ws37_c00319{word-spacing:-1.987200px;}
.ws21_c00319{word-spacing:-1.972800px;}
.ws36_c00319{word-spacing:-1.886400px;}
.ws1e_c00319{word-spacing:-1.360800px;}
.ws26_c00319{word-spacing:-1.260000px;}
.ws1d_c00319{word-spacing:-1.252800px;}
.ws27_c00319{word-spacing:-1.195200px;}
.ws6_c00319{word-spacing:-0.136800px;}
.ws0_c00319{word-spacing:0.000000px;}
.ws1f_c00319{word-spacing:0.165600px;}
.ws34_c00319{word-spacing:0.172800px;}
.ws20_c00319{word-spacing:0.180000px;}
.wsc_c00319{word-spacing:0.194400px;}
.ws1_c00319{word-spacing:0.208800px;}
.ws24_c00319{word-spacing:0.864000px;}
.ws18_c00319{word-spacing:0.885600px;}
.ws25_c00319{word-spacing:0.950400px;}
.wsd_c00319{word-spacing:1.231200px;}
.ws30_c00319{word-spacing:1.908000px;}
.ws2f_c00319{word-spacing:2.023200px;}
.ws31_c00319{word-spacing:2.030400px;}
.ws12_c00319{word-spacing:2.232000px;}
.ws11_c00319{word-spacing:2.383200px;}
.ws8_c00319{word-spacing:2.707200px;}
.ws7_c00319{word-spacing:2.714400px;}
.wse_c00319{word-spacing:3.794400px;}
.ws5_c00319{word-spacing:4.075200px;}
.ws10_c00319{word-spacing:4.140000px;}
.ws4_c00319{word-spacing:4.147200px;}
.wsf_c00319{word-spacing:4.154400px;}
.ws35_c00319{word-spacing:4.204800px;}
.ws2a_c00319{word-spacing:4.492800px;}
.ws2b_c00319{word-spacing:4.514400px;}
.ws13_c00319{word-spacing:4.802400px;}
.ws15_c00319{word-spacing:4.824000px;}
.ws14_c00319{word-spacing:4.910400px;}
.ws38_c00319{word-spacing:6.314400px;}
.ws19_c00319{word-spacing:8.092800px;}
.ws1a_c00319{word-spacing:8.114400px;}
.ws2e_c00319{word-spacing:11.721600px;}
.ws29_c00319{word-spacing:16.027200px;}
.ws28_c00319{word-spacing:16.041600px;}
.ws1c_c00319{word-spacing:19.260000px;}
.ws1b_c00319{word-spacing:19.281600px;}
.ws22_c00319{word-spacing:21.103200px;}
.ws23_c00319{word-spacing:21.132000px;}
.wsb_c00319{word-spacing:21.412800px;}
.ws9_c00319{word-spacing:21.420000px;}
.wsa_c00319{word-spacing:21.434400px;}
.ws17_c00319{word-spacing:21.751200px;}
.ws16_c00319{word-spacing:21.765600px;}
.ws2_c00319{word-spacing:23.176800px;}
.ws3_c00319{word-spacing:23.234400px;}
.ws2c_c00319{word-spacing:25.344000px;}
.ws2d_c00319{word-spacing:25.394400px;}
._0_c00319{width:1.468800px;}
.fc0_c00319{color:rgb(0,0,0);}
.fs0_c00319{font-size:72.000000px;}
.y0_c00319{bottom:0.000000px;}
.y2_c00319{bottom:46.830450px;}
.y1_c00319{bottom:67.530450px;}
.y26_c00319{bottom:134.130450px;}
.y25_c00319{bottom:154.830450px;}
.y24_c00319{bottom:175.530450px;}
.y23_c00319{bottom:215.580450px;}
.y22_c00319{bottom:246.630450px;}
.y21_c00319{bottom:277.680450px;}
.y20_c00319{bottom:317.730450px;}
.y1f_c00319{bottom:347.430450px;}
.y1e_c00319{bottom:368.040450px;}
.y1d_c00319{bottom:388.740450px;}
.y1c_c00319{bottom:409.440450px;}
.y1b_c00319{bottom:430.140450px;}
.y1a_c00319{bottom:450.840450px;}
.y19_c00319{bottom:471.540450px;}
.y18_c00319{bottom:492.240450px;}
.y17_c00319{bottom:512.940450px;}
.y16_c00319{bottom:552.990450px;}
.y15_c00319{bottom:584.040450px;}
.y14_c00319{bottom:615.090450px;}
.y13_c00319{bottom:646.140450px;}
.y12_c00319{bottom:677.190450px;}
.y11_c00319{bottom:708.240450px;}
.y10_c00319{bottom:739.290450px;}
.yf_c00319{bottom:770.340450px;}
.ye_c00319{bottom:801.390450px;}
.yd_c00319{bottom:832.440450px;}
.yc_c00319{bottom:863.490450px;}
.yb_c00319{bottom:903.540450px;}
.ya_c00319{bottom:933.240450px;}
.y9_c00319{bottom:953.940450px;}
.y8_c00319{bottom:974.640450px;}
.y7_c00319{bottom:995.340450px;}
.y6_c00319{bottom:1016.040450px;}
.y5_c00319{bottom:1036.740450px;}
.y4_c00319{bottom:1057.440450px;}
.y3_c00319{bottom:1097.490450px;}
.h1_c00319{height:63.175781px;}
.h2_c00319{height:64.546875px;}
.h3_c00319{height:75.093750px;}
.h0_c00319{height:1263.000000px;}
.w1_c00319{width:892.500000px;}
.w0_c00319{width:892.830000px;}
.x0_c00319{left:0.000000px;}
.x2_c00319{left:127.620000px;}
.x3_c00319{left:202.950000px;}
.x1_c00319{left:695.880000px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.lsd_c00319{letter-spacing:-0.083200pt;}
.lse_c00319{letter-spacing:-0.064000pt;}
.ls5_c00319{letter-spacing:-0.057600pt;}
.ls9_c00319{letter-spacing:-0.051200pt;}
.ls2_c00319{letter-spacing:-0.044800pt;}
.lsc_c00319{letter-spacing:-0.038400pt;}
.ls3_c00319{letter-spacing:-0.032000pt;}
.ls4_c00319{letter-spacing:-0.025600pt;}
.ls8_c00319{letter-spacing:-0.019200pt;}
.ls6_c00319{letter-spacing:-0.012800pt;}
.ls7_c00319{letter-spacing:-0.006400pt;}
.ls1_c00319{letter-spacing:0.000000pt;}
.lsb_c00319{letter-spacing:0.006400pt;}
.ls0_c00319{letter-spacing:0.012800pt;}
.lsa_c00319{letter-spacing:0.032000pt;}
.ws33_c00319{word-spacing:-4.044800pt;}
.ws32_c00319{word-spacing:-3.948800pt;}
.ws37_c00319{word-spacing:-1.766400pt;}
.ws21_c00319{word-spacing:-1.753600pt;}
.ws36_c00319{word-spacing:-1.676800pt;}
.ws1e_c00319{word-spacing:-1.209600pt;}
.ws26_c00319{word-spacing:-1.120000pt;}
.ws1d_c00319{word-spacing:-1.113600pt;}
.ws27_c00319{word-spacing:-1.062400pt;}
.ws6_c00319{word-spacing:-0.121600pt;}
.ws0_c00319{word-spacing:0.000000pt;}
.ws1f_c00319{word-spacing:0.147200pt;}
.ws34_c00319{word-spacing:0.153600pt;}
.ws20_c00319{word-spacing:0.160000pt;}
.wsc_c00319{word-spacing:0.172800pt;}
.ws1_c00319{word-spacing:0.185600pt;}
.ws24_c00319{word-spacing:0.768000pt;}
.ws18_c00319{word-spacing:0.787200pt;}
.ws25_c00319{word-spacing:0.844800pt;}
.wsd_c00319{word-spacing:1.094400pt;}
.ws30_c00319{word-spacing:1.696000pt;}
.ws2f_c00319{word-spacing:1.798400pt;}
.ws31_c00319{word-spacing:1.804800pt;}
.ws12_c00319{word-spacing:1.984000pt;}
.ws11_c00319{word-spacing:2.118400pt;}
.ws8_c00319{word-spacing:2.406400pt;}
.ws7_c00319{word-spacing:2.412800pt;}
.wse_c00319{word-spacing:3.372800pt;}
.ws5_c00319{word-spacing:3.622400pt;}
.ws10_c00319{word-spacing:3.680000pt;}
.ws4_c00319{word-spacing:3.686400pt;}
.wsf_c00319{word-spacing:3.692800pt;}
.ws35_c00319{word-spacing:3.737600pt;}
.ws2a_c00319{word-spacing:3.993600pt;}
.ws2b_c00319{word-spacing:4.012800pt;}
.ws13_c00319{word-spacing:4.268800pt;}
.ws15_c00319{word-spacing:4.288000pt;}
.ws14_c00319{word-spacing:4.364800pt;}
.ws38_c00319{word-spacing:5.612800pt;}
.ws19_c00319{word-spacing:7.193600pt;}
.ws1a_c00319{word-spacing:7.212800pt;}
.ws2e_c00319{word-spacing:10.419200pt;}
.ws29_c00319{word-spacing:14.246400pt;}
.ws28_c00319{word-spacing:14.259200pt;}
.ws1c_c00319{word-spacing:17.120000pt;}
.ws1b_c00319{word-spacing:17.139200pt;}
.ws22_c00319{word-spacing:18.758400pt;}
.ws23_c00319{word-spacing:18.784000pt;}
.wsb_c00319{word-spacing:19.033600pt;}
.ws9_c00319{word-spacing:19.040000pt;}
.wsa_c00319{word-spacing:19.052800pt;}
.ws17_c00319{word-spacing:19.334400pt;}
.ws16_c00319{word-spacing:19.347200pt;}
.ws2_c00319{word-spacing:20.601600pt;}
.ws3_c00319{word-spacing:20.652800pt;}
.ws2c_c00319{word-spacing:22.528000pt;}
.ws2d_c00319{word-spacing:22.572800pt;}
._0_c00319{width:1.305600pt;}
.fs0_c00319{font-size:64.000000pt;}
.y0_c00319{bottom:0.000000pt;}
.y2_c00319{bottom:41.627067pt;}
.y1_c00319{bottom:60.027067pt;}
.y26_c00319{bottom:119.227067pt;}
.y25_c00319{bottom:137.627067pt;}
.y24_c00319{bottom:156.027067pt;}
.y23_c00319{bottom:191.627067pt;}
.y22_c00319{bottom:219.227067pt;}
.y21_c00319{bottom:246.827067pt;}
.y20_c00319{bottom:282.427067pt;}
.y1f_c00319{bottom:308.827067pt;}
.y1e_c00319{bottom:327.147067pt;}
.y1d_c00319{bottom:345.547067pt;}
.y1c_c00319{bottom:363.947067pt;}
.y1b_c00319{bottom:382.347067pt;}
.y1a_c00319{bottom:400.747067pt;}
.y19_c00319{bottom:419.147067pt;}
.y18_c00319{bottom:437.547067pt;}
.y17_c00319{bottom:455.947067pt;}
.y16_c00319{bottom:491.547067pt;}
.y15_c00319{bottom:519.147067pt;}
.y14_c00319{bottom:546.747067pt;}
.y13_c00319{bottom:574.347067pt;}
.y12_c00319{bottom:601.947067pt;}
.y11_c00319{bottom:629.547067pt;}
.y10_c00319{bottom:657.147067pt;}
.yf_c00319{bottom:684.747067pt;}
.ye_c00319{bottom:712.347067pt;}
.yd_c00319{bottom:739.947067pt;}
.yc_c00319{bottom:767.547067pt;}
.yb_c00319{bottom:803.147067pt;}
.ya_c00319{bottom:829.547067pt;}
.y9_c00319{bottom:847.947067pt;}
.y8_c00319{bottom:866.347067pt;}
.y7_c00319{bottom:884.747067pt;}
.y6_c00319{bottom:903.147067pt;}
.y5_c00319{bottom:921.547067pt;}
.y4_c00319{bottom:939.947067pt;}
.y3_c00319{bottom:975.547067pt;}
.h1_c00319{height:56.156250pt;}
.h2_c00319{height:57.375000pt;}
.h3_c00319{height:66.750000pt;}
.h0_c00319{height:1122.666667pt;}
.w1_c00319{width:793.333333pt;}
.w0_c00319{width:793.626667pt;}
.x0_c00319{left:0.000000pt;}
.x2_c00319{left:113.440000pt;}
.x3_c00319{left:180.400000pt;}
.x1_c00319{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_17ee88d1f45a5db004b4be30.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.093262;font-style:normal;font-weight:normal;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_fa201015f963c20dd471c21b.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.106934;font-style:normal;font-weight:normal;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_61d4cfbfa044bdddee7b47bc.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00320{vertical-align:0.000000px;}
.ls9_c00320{letter-spacing:-0.086400px;}
.ls6_c00320{letter-spacing:-0.072000px;}
.ls5_c00320{letter-spacing:-0.064800px;}
.lsa_c00320{letter-spacing:-0.057600px;}
.lsc_c00320{letter-spacing:-0.050400px;}
.ls7_c00320{letter-spacing:-0.043200px;}
.ls2_c00320{letter-spacing:-0.036000px;}
.ls3_c00320{letter-spacing:-0.028800px;}
.ls1_c00320{letter-spacing:-0.021600px;}
.lsb_c00320{letter-spacing:-0.014400px;}
.ls4_c00320{letter-spacing:-0.007200px;}
.ls0_c00320{letter-spacing:0.000000px;}
.lse_c00320{letter-spacing:0.007200px;}
.ls8_c00320{letter-spacing:0.014400px;}
.lsd_c00320{letter-spacing:0.021600px;}
.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;}
}
.wsa_c00320{word-spacing:-3.463200px;}
.wsb_c00320{word-spacing:-3.405600px;}
.ws25_c00320{word-spacing:-2.383200px;}
.ws2d_c00320{word-spacing:-2.354400px;}
.ws24_c00320{word-spacing:-2.325600px;}
.ws4_c00320{word-spacing:-0.892800px;}
.ws5_c00320{word-spacing:-0.842400px;}
.ws0_c00320{word-spacing:0.000000px;}
.ws1e_c00320{word-spacing:0.050400px;}
.ws2b_c00320{word-spacing:0.165600px;}
.ws20_c00320{word-spacing:0.172800px;}
.ws12_c00320{word-spacing:0.180000px;}
.ws11_c00320{word-spacing:0.187200px;}
.ws1f_c00320{word-spacing:0.252000px;}
.ws10_c00320{word-spacing:0.554400px;}
.ws26_c00320{word-spacing:1.281600px;}
.ws21_c00320{word-spacing:1.288800px;}
.ws1d_c00320{word-spacing:2.656800px;}
.ws1c_c00320{word-spacing:2.736000px;}
.ws1_c00320{word-spacing:3.420000px;}
.ws1a_c00320{word-spacing:4.435200px;}
.ws1b_c00320{word-spacing:4.478400px;}
.ws2e_c00320{word-spacing:4.860000px;}
.ws2f_c00320{word-spacing:4.903200px;}
.wsd_c00320{word-spacing:5.205600px;}
.wsc_c00320{word-spacing:5.313600px;}
.ws9_c00320{word-spacing:6.141600px;}
.ws15_c00320{word-spacing:6.213600px;}
.ws8_c00320{word-spacing:6.321600px;}
.ws16_c00320{word-spacing:6.343200px;}
.ws6_c00320{word-spacing:6.566400px;}
.ws7_c00320{word-spacing:6.645600px;}
.ws17_c00320{word-spacing:8.107200px;}
.ws19_c00320{word-spacing:10.216800px;}
.ws18_c00320{word-spacing:10.296000px;}
.ws30_c00320{word-spacing:12.398400px;}
.ws31_c00320{word-spacing:12.571200px;}
.ws2a_c00320{word-spacing:12.672000px;}
.ws29_c00320{word-spacing:12.794400px;}
.ws2c_c00320{word-spacing:17.460000px;}
.ws22_c00320{word-spacing:20.368800px;}
.ws23_c00320{word-spacing:20.404800px;}
.ws28_c00320{word-spacing:28.965600px;}
.ws27_c00320{word-spacing:29.001600px;}
.ws14_c00320{word-spacing:40.485600px;}
.ws13_c00320{word-spacing:40.507200px;}
.ws2_c00320{word-spacing:41.580000px;}
.wse_c00320{word-spacing:54.532800px;}
.wsf_c00320{word-spacing:54.576000px;}
.ws3_c00320{word-spacing:62.834400px;}
._0_c00320{width:1.396800px;}
._1_c00320{width:53.640000px;}
.fc0_c00320{color:rgb(0,0,0);}
.fs0_c00320{font-size:72.000000px;}
.y0_c00320{bottom:0.000000px;}
.y2_c00320{bottom:46.830450px;}
.y1_c00320{bottom:67.530450px;}
.y25_c00320{bottom:140.700450px;}
.y24_c00320{bottom:161.400450px;}
.y23_c00320{bottom:182.100450px;}
.y22_c00320{bottom:202.800450px;}
.y21_c00320{bottom:223.410450px;}
.y20_c00320{bottom:245.370450px;}
.y1f_c00320{bottom:266.070450px;}
.y1e_c00320{bottom:286.770450px;}
.y1d_c00320{bottom:307.470450px;}
.y1c_c00320{bottom:348.690450px;}
.y1b_c00320{bottom:379.740450px;}
.y1a_c00320{bottom:410.790450px;}
.y19_c00320{bottom:450.840450px;}
.y18_c00320{bottom:481.890450px;}
.y17_c00320{bottom:512.940450px;}
.y16_c00320{bottom:552.990450px;}
.y15_c00320{bottom:584.040450px;}
.y14_c00320{bottom:615.090450px;}
.y13_c00320{bottom:646.140450px;}
.y12_c00320{bottom:677.190450px;}
.y11_c00320{bottom:708.240450px;}
.y10_c00320{bottom:739.290450px;}
.yf_c00320{bottom:779.340450px;}
.ye_c00320{bottom:810.390450px;}
.yd_c00320{bottom:841.440450px;}
.yc_c00320{bottom:872.490450px;}
.yb_c00320{bottom:903.540450px;}
.ya_c00320{bottom:943.590450px;}
.y9_c00320{bottom:973.290450px;}
.y8_c00320{bottom:993.990450px;}
.y7_c00320{bottom:1014.690450px;}
.y6_c00320{bottom:1035.390450px;}
.y5_c00320{bottom:1056.090450px;}
.y4_c00320{bottom:1076.790450px;}
.y3_c00320{bottom:1097.490450px;}
.h1_c00320{height:63.175781px;}
.h2_c00320{height:64.546875px;}
.h0_c00320{height:1263.000000px;}
.w1_c00320{width:892.500000px;}
.w0_c00320{width:892.830000px;}
.x0_c00320{left:0.000000px;}
.x2_c00320{left:170.100000px;}
.x3_c00320{left:245.430000px;}
.x4_c00320{left:272.430000px;}
.x5_c00320{left:299.430000px;}
.x1_c00320{left:738.360000px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls9_c00320{letter-spacing:-0.076800pt;}
.ls6_c00320{letter-spacing:-0.064000pt;}
.ls5_c00320{letter-spacing:-0.057600pt;}
.lsa_c00320{letter-spacing:-0.051200pt;}
.lsc_c00320{letter-spacing:-0.044800pt;}
.ls7_c00320{letter-spacing:-0.038400pt;}
.ls2_c00320{letter-spacing:-0.032000pt;}
.ls3_c00320{letter-spacing:-0.025600pt;}
.ls1_c00320{letter-spacing:-0.019200pt;}
.lsb_c00320{letter-spacing:-0.012800pt;}
.ls4_c00320{letter-spacing:-0.006400pt;}
.ls0_c00320{letter-spacing:0.000000pt;}
.lse_c00320{letter-spacing:0.006400pt;}
.ls8_c00320{letter-spacing:0.012800pt;}
.lsd_c00320{letter-spacing:0.019200pt;}
.wsa_c00320{word-spacing:-3.078400pt;}
.wsb_c00320{word-spacing:-3.027200pt;}
.ws25_c00320{word-spacing:-2.118400pt;}
.ws2d_c00320{word-spacing:-2.092800pt;}
.ws24_c00320{word-spacing:-2.067200pt;}
.ws4_c00320{word-spacing:-0.793600pt;}
.ws5_c00320{word-spacing:-0.748800pt;}
.ws0_c00320{word-spacing:0.000000pt;}
.ws1e_c00320{word-spacing:0.044800pt;}
.ws2b_c00320{word-spacing:0.147200pt;}
.ws20_c00320{word-spacing:0.153600pt;}
.ws12_c00320{word-spacing:0.160000pt;}
.ws11_c00320{word-spacing:0.166400pt;}
.ws1f_c00320{word-spacing:0.224000pt;}
.ws10_c00320{word-spacing:0.492800pt;}
.ws26_c00320{word-spacing:1.139200pt;}
.ws21_c00320{word-spacing:1.145600pt;}
.ws1d_c00320{word-spacing:2.361600pt;}
.ws1c_c00320{word-spacing:2.432000pt;}
.ws1_c00320{word-spacing:3.040000pt;}
.ws1a_c00320{word-spacing:3.942400pt;}
.ws1b_c00320{word-spacing:3.980800pt;}
.ws2e_c00320{word-spacing:4.320000pt;}
.ws2f_c00320{word-spacing:4.358400pt;}
.wsd_c00320{word-spacing:4.627200pt;}
.wsc_c00320{word-spacing:4.723200pt;}
.ws9_c00320{word-spacing:5.459200pt;}
.ws15_c00320{word-spacing:5.523200pt;}
.ws8_c00320{word-spacing:5.619200pt;}
.ws16_c00320{word-spacing:5.638400pt;}
.ws6_c00320{word-spacing:5.836800pt;}
.ws7_c00320{word-spacing:5.907200pt;}
.ws17_c00320{word-spacing:7.206400pt;}
.ws19_c00320{word-spacing:9.081600pt;}
.ws18_c00320{word-spacing:9.152000pt;}
.ws30_c00320{word-spacing:11.020800pt;}
.ws31_c00320{word-spacing:11.174400pt;}
.ws2a_c00320{word-spacing:11.264000pt;}
.ws29_c00320{word-spacing:11.372800pt;}
.ws2c_c00320{word-spacing:15.520000pt;}
.ws22_c00320{word-spacing:18.105600pt;}
.ws23_c00320{word-spacing:18.137600pt;}
.ws28_c00320{word-spacing:25.747200pt;}
.ws27_c00320{word-spacing:25.779200pt;}
.ws14_c00320{word-spacing:35.987200pt;}
.ws13_c00320{word-spacing:36.006400pt;}
.ws2_c00320{word-spacing:36.960000pt;}
.wse_c00320{word-spacing:48.473600pt;}
.wsf_c00320{word-spacing:48.512000pt;}
.ws3_c00320{word-spacing:55.852800pt;}
._0_c00320{width:1.241600pt;}
._1_c00320{width:47.680000pt;}
.fs0_c00320{font-size:64.000000pt;}
.y0_c00320{bottom:0.000000pt;}
.y2_c00320{bottom:41.627067pt;}
.y1_c00320{bottom:60.027067pt;}
.y25_c00320{bottom:125.067067pt;}
.y24_c00320{bottom:143.467067pt;}
.y23_c00320{bottom:161.867067pt;}
.y22_c00320{bottom:180.267067pt;}
.y21_c00320{bottom:198.587067pt;}
.y20_c00320{bottom:218.107067pt;}
.y1f_c00320{bottom:236.507067pt;}
.y1e_c00320{bottom:254.907067pt;}
.y1d_c00320{bottom:273.307067pt;}
.y1c_c00320{bottom:309.947067pt;}
.y1b_c00320{bottom:337.547067pt;}
.y1a_c00320{bottom:365.147067pt;}
.y19_c00320{bottom:400.747067pt;}
.y18_c00320{bottom:428.347067pt;}
.y17_c00320{bottom:455.947067pt;}
.y16_c00320{bottom:491.547067pt;}
.y15_c00320{bottom:519.147067pt;}
.y14_c00320{bottom:546.747067pt;}
.y13_c00320{bottom:574.347067pt;}
.y12_c00320{bottom:601.947067pt;}
.y11_c00320{bottom:629.547067pt;}
.y10_c00320{bottom:657.147067pt;}
.yf_c00320{bottom:692.747067pt;}
.ye_c00320{bottom:720.347067pt;}
.yd_c00320{bottom:747.947067pt;}
.yc_c00320{bottom:775.547067pt;}
.yb_c00320{bottom:803.147067pt;}
.ya_c00320{bottom:838.747067pt;}
.y9_c00320{bottom:865.147067pt;}
.y8_c00320{bottom:883.547067pt;}
.y7_c00320{bottom:901.947067pt;}
.y6_c00320{bottom:920.347067pt;}
.y5_c00320{bottom:938.747067pt;}
.y4_c00320{bottom:957.147067pt;}
.y3_c00320{bottom:975.547067pt;}
.h1_c00320{height:56.156250pt;}
.h2_c00320{height:57.375000pt;}
.h0_c00320{height:1122.666667pt;}
.w1_c00320{width:793.333333pt;}
.w0_c00320{width:793.626667pt;}
.x0_c00320{left:0.000000pt;}
.x2_c00320{left:151.200000pt;}
.x3_c00320{left:218.160000pt;}
.x4_c00320{left:242.160000pt;}
.x5_c00320{left:266.160000pt;}
.x1_c00320{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_188ccaace393374d76db8f96.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.093262;font-style:normal;font-weight:normal;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_9f1215896751ee638fba7003.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.106934;font-style:normal;font-weight:normal;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_61d4cfbfa044bdddee7b47bc.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:0.666504;font-style: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;}
.ls7_c00321{letter-spacing:-0.064800px;}
.ls2_c00321{letter-spacing:-0.057600px;}
.ls6_c00321{letter-spacing:-0.043200px;}
.ls1_c00321{letter-spacing:-0.036000px;}
.ls4_c00321{letter-spacing:-0.028800px;}
.ls8_c00321{letter-spacing:-0.021600px;}
.ls3_c00321{letter-spacing:-0.014400px;}
.ls5_c00321{letter-spacing:-0.007200px;}
.ls0_c00321{letter-spacing:0.000000px;}
.ls9_c00321{letter-spacing:843.998400px;}
.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;}
}
.wsd_c00321{word-spacing:-4.485600px;}
.ws0_c00321{word-spacing:0.000000px;}
.ws4_c00321{word-spacing:0.172800px;}
.ws12_c00321{word-spacing:0.180000px;}
.ws14_c00321{word-spacing:1.972800px;}
.ws10_c00321{word-spacing:4.111200px;}
.wsf_c00321{word-spacing:4.161600px;}
.wsc_c00321{word-spacing:4.867200px;}
.wsb_c00321{word-spacing:5.241600px;}
.ws11_c00321{word-spacing:6.674400px;}
.ws1_c00321{word-spacing:8.114400px;}
.ws7_c00321{word-spacing:17.467200px;}
.ws8_c00321{word-spacing:18.093600px;}
.ws9_c00321{word-spacing:18.158400px;}
.ws6_c00321{word-spacing:21.117600px;}
.ws2_c00321{word-spacing:25.826400px;}
.ws3_c00321{word-spacing:27.892800px;}
.ws13_c00321{word-spacing:33.660000px;}
.wse_c00321{word-spacing:33.753600px;}
.ws5_c00321{word-spacing:34.394400px;}
.wsa_c00321{word-spacing:48.081600px;}
._2_c00321{width:1.080000px;}
._1_c00321{width:20.520000px;}
._0_c00321{width:46.800000px;}
.fc0_c00321{color:rgb(0,0,0);}
.fs0_c00321{font-size:72.000000px;}
.y0_c00321{bottom:0.000000px;}
.y2_c00321{bottom:46.830450px;}
.y1_c00321{bottom:67.530450px;}
.y1e_c00321{bottom:427.890450px;}
.y1d_c00321{bottom:467.940450px;}
.y1c_c00321{bottom:507.990450px;}
.y1b_c00321{bottom:548.040450px;}
.y1a_c00321{bottom:588.090450px;}
.y19_c00321{bottom:619.140450px;}
.y18_c00321{bottom:650.190450px;}
.y17_c00321{bottom:679.890450px;}
.y16_c00321{bottom:700.590450px;}
.y15_c00321{bottom:721.290450px;}
.y14_c00321{bottom:741.990450px;}
.y13_c00321{bottom:762.690450px;}
.y12_c00321{bottom:783.300450px;}
.y11_c00321{bottom:805.260450px;}
.y10_c00321{bottom:825.960450px;}
.yf_c00321{bottom:846.660450px;}
.ye_c00321{bottom:867.360450px;}
.yd_c00321{bottom:888.060450px;}
.yc_c00321{bottom:908.760450px;}
.yb_c00321{bottom:929.460450px;}
.ya_c00321{bottom:950.160450px;}
.y9_c00321{bottom:970.770450px;}
.y8_c00321{bottom:992.730450px;}
.y7_c00321{bottom:1013.430450px;}
.y6_c00321{bottom:1034.130450px;}
.y5_c00321{bottom:1054.830450px;}
.y4_c00321{bottom:1075.530450px;}
.y3_c00321{bottom:1097.490450px;}
.h1_c00321{height:63.175781px;}
.h2_c00321{height:64.546875px;}
.h0_c00321{height:1263.000000px;}
.w1_c00321{width:892.500000px;}
.w0_c00321{width:892.830000px;}
.x0_c00321{left:0.000000px;}
.x2_c00321{left:127.620000px;}
.x3_c00321{left:202.950000px;}
.x4_c00321{left:229.950000px;}
.x5_c00321{left:256.950000px;}
.x1_c00321{left:695.880000px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls7_c00321{letter-spacing:-0.057600pt;}
.ls2_c00321{letter-spacing:-0.051200pt;}
.ls6_c00321{letter-spacing:-0.038400pt;}
.ls1_c00321{letter-spacing:-0.032000pt;}
.ls4_c00321{letter-spacing:-0.025600pt;}
.ls8_c00321{letter-spacing:-0.019200pt;}
.ls3_c00321{letter-spacing:-0.012800pt;}
.ls5_c00321{letter-spacing:-0.006400pt;}
.ls0_c00321{letter-spacing:0.000000pt;}
.ls9_c00321{letter-spacing:750.220800pt;}
.wsd_c00321{word-spacing:-3.987200pt;}
.ws0_c00321{word-spacing:0.000000pt;}
.ws4_c00321{word-spacing:0.153600pt;}
.ws12_c00321{word-spacing:0.160000pt;}
.ws14_c00321{word-spacing:1.753600pt;}
.ws10_c00321{word-spacing:3.654400pt;}
.wsf_c00321{word-spacing:3.699200pt;}
.wsc_c00321{word-spacing:4.326400pt;}
.wsb_c00321{word-spacing:4.659200pt;}
.ws11_c00321{word-spacing:5.932800pt;}
.ws1_c00321{word-spacing:7.212800pt;}
.ws7_c00321{word-spacing:15.526400pt;}
.ws8_c00321{word-spacing:16.083200pt;}
.ws9_c00321{word-spacing:16.140800pt;}
.ws6_c00321{word-spacing:18.771200pt;}
.ws2_c00321{word-spacing:22.956800pt;}
.ws3_c00321{word-spacing:24.793600pt;}
.ws13_c00321{word-spacing:29.920000pt;}
.wse_c00321{word-spacing:30.003200pt;}
.ws5_c00321{word-spacing:30.572800pt;}
.wsa_c00321{word-spacing:42.739200pt;}
._2_c00321{width:0.960000pt;}
._1_c00321{width:18.240000pt;}
._0_c00321{width:41.600000pt;}
.fs0_c00321{font-size:64.000000pt;}
.y0_c00321{bottom:0.000000pt;}
.y2_c00321{bottom:41.627067pt;}
.y1_c00321{bottom:60.027067pt;}
.y1e_c00321{bottom:380.347067pt;}
.y1d_c00321{bottom:415.947067pt;}
.y1c_c00321{bottom:451.547067pt;}
.y1b_c00321{bottom:487.147067pt;}
.y1a_c00321{bottom:522.747067pt;}
.y19_c00321{bottom:550.347067pt;}
.y18_c00321{bottom:577.947067pt;}
.y17_c00321{bottom:604.347067pt;}
.y16_c00321{bottom:622.747067pt;}
.y15_c00321{bottom:641.147067pt;}
.y14_c00321{bottom:659.547067pt;}
.y13_c00321{bottom:677.947067pt;}
.y12_c00321{bottom:696.267067pt;}
.y11_c00321{bottom:715.787067pt;}
.y10_c00321{bottom:734.187067pt;}
.yf_c00321{bottom:752.587067pt;}
.ye_c00321{bottom:770.987067pt;}
.yd_c00321{bottom:789.387067pt;}
.yc_c00321{bottom:807.787067pt;}
.yb_c00321{bottom:826.187067pt;}
.ya_c00321{bottom:844.587067pt;}
.y9_c00321{bottom:862.907067pt;}
.y8_c00321{bottom:882.427067pt;}
.y7_c00321{bottom:900.827067pt;}
.y6_c00321{bottom:919.227067pt;}
.y5_c00321{bottom:937.627067pt;}
.y4_c00321{bottom:956.027067pt;}
.y3_c00321{bottom:975.547067pt;}
.h1_c00321{height:56.156250pt;}
.h2_c00321{height:57.375000pt;}
.h0_c00321{height:1122.666667pt;}
.w1_c00321{width:793.333333pt;}
.w0_c00321{width:793.626667pt;}
.x0_c00321{left:0.000000pt;}
.x2_c00321{left:113.440000pt;}
.x3_c00321{left:180.400000pt;}
.x4_c00321{left:204.400000pt;}
.x5_c00321{left:228.400000pt;}
.x1_c00321{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_188ccaace393374d76db8f96.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.093262;font-style:normal;font-weight:normal;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_253e7ef70e6afcb7714b8f00.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00322;src:url('chunks/assets/font_7180098949d024a7fcb925ef.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:1.106934;font-style:normal;font-weight:normal;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_61d4cfbfa044bdddee7b47bc.woff2')format("woff");}.ff4_c00322{font-family:ff4_c00322;line-height:0.666504;font-style:normal;font-weight:normal;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_5c4d69cb093695d66065c7d8.woff2')format("woff");}.ff5_c00322{font-family:ff5_c00322;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsf_c00322{letter-spacing:-0.446400px;}
.lse_c00322{letter-spacing:-0.208800px;}
.ls10_c00322{letter-spacing:-0.165600px;}
.lsa_c00322{letter-spacing:-0.100800px;}
.ls9_c00322{letter-spacing:-0.093600px;}
.lsd_c00322{letter-spacing:-0.064800px;}
.ls7_c00322{letter-spacing:-0.057600px;}
.lsb_c00322{letter-spacing:-0.050400px;}
.ls5_c00322{letter-spacing:-0.043200px;}
.ls6_c00322{letter-spacing:-0.036000px;}
.lsc_c00322{letter-spacing:-0.028800px;}
.ls4_c00322{letter-spacing:-0.021600px;}
.ls8_c00322{letter-spacing:-0.014400px;}
.ls11_c00322{letter-spacing:-0.007200px;}
.ls3_c00322{letter-spacing:0.000000px;}
.ls1_c00322{letter-spacing:0.014400px;}
.ls2_c00322{letter-spacing:0.036000px;}
.ls0_c00322{letter-spacing:0.041940px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00322{word-spacing:-20.052000px;}
.ws1_c00322{word-spacing:-19.569600px;}
.ws7_c00322{word-spacing:-1.620000px;}
.ws6_c00322{word-spacing:-1.605600px;}
.ws16_c00322{word-spacing:-1.483200px;}
.ws15_c00322{word-spacing:-1.310400px;}
.ws2f_c00322{word-spacing:-0.144000px;}
.ws2_c00322{word-spacing:0.000000px;}
.ws3_c00322{word-spacing:0.050328px;}
.ws22_c00322{word-spacing:0.108000px;}
.ws29_c00322{word-spacing:0.165600px;}
.ws26_c00322{word-spacing:0.172800px;}
.ws17_c00322{word-spacing:0.180000px;}
.wsa_c00322{word-spacing:0.194400px;}
.ws19_c00322{word-spacing:0.561600px;}
.ws18_c00322{word-spacing:0.583200px;}
.wsb_c00322{word-spacing:0.914400px;}
.wsc_c00322{word-spacing:0.972000px;}
.ws9_c00322{word-spacing:1.519200px;}
.ws8_c00322{word-spacing:1.598400px;}
.wsd_c00322{word-spacing:1.994400px;}
.ws1d_c00322{word-spacing:2.361600px;}
.ws1c_c00322{word-spacing:2.383200px;}
.wsf_c00322{word-spacing:3.024000px;}
.ws20_c00322{word-spacing:3.060000px;}
.ws21_c00322{word-spacing:3.096000px;}
.ws10_c00322{word-spacing:3.139200px;}
.wse_c00322{word-spacing:3.189600px;}
.ws12_c00322{word-spacing:4.521600px;}
.ws11_c00322{word-spacing:4.528800px;}
.ws24_c00322{word-spacing:5.270400px;}
.ws25_c00322{word-spacing:5.313600px;}
.ws1b_c00322{word-spacing:7.380000px;}
.ws1a_c00322{word-spacing:7.502400px;}
.ws4_c00322{word-spacing:9.540000px;}
.ws27_c00322{word-spacing:9.576000px;}
.ws5_c00322{word-spacing:9.619200px;}
.ws28_c00322{word-spacing:9.684000px;}
.ws23_c00322{word-spacing:10.252800px;}
.ws2b_c00322{word-spacing:14.227200px;}
.ws2a_c00322{word-spacing:14.256000px;}
.ws1e_c00322{word-spacing:14.954400px;}
.ws1f_c00322{word-spacing:14.997600px;}
.ws13_c00322{word-spacing:32.947200px;}
.ws14_c00322{word-spacing:32.961600px;}
.ws2c_c00322{word-spacing:40.845600px;}
.ws2d_c00322{word-spacing:40.860000px;}
.ws2e_c00322{word-spacing:40.867200px;}
._1_c00322{width:1.108800px;}
._2_c00322{width:2.116800px;}
._0_c00322{width:9.730080px;}
._6_c00322{width:40.680000px;}
._3_c00322{width:44.640000px;}
._5_c00322{width:49.608000px;}
._4_c00322{width:54.720000px;}
.fc0_c00322{color:rgb(0,0,0);}
.fs0_c00322{font-size:72.000000px;}
.fs1_c00322{font-size:83.880000px;}
.y0_c00322{bottom:0.000000px;}
.y2_c00322{bottom:46.830450px;}
.y1_c00322{bottom:67.530450px;}
.y22_c00322{bottom:145.290450px;}
.y21_c00322{bottom:176.340450px;}
.y20_c00322{bottom:207.390450px;}
.y1f_c00322{bottom:247.440450px;}
.y1e_c00322{bottom:278.400450px;}
.y1d_c00322{bottom:310.710450px;}
.y1c_c00322{bottom:341.760450px;}
.y1b_c00322{bottom:374.070450px;}
.y1a_c00322{bottom:405.030450px;}
.y19_c00322{bottom:437.340450px;}
.y18_c00322{bottom:469.650450px;}
.y17_c00322{bottom:500.610450px;}
.y16_c00322{bottom:541.920450px;}
.y15_c00322{bottom:572.970450px;}
.y14_c00322{bottom:604.020450px;}
.y13_c00322{bottom:635.070450px;}
.y12_c00322{bottom:666.120450px;}
.y11_c00322{bottom:697.170450px;}
.y10_c00322{bottom:737.220450px;}
.yf_c00322{bottom:766.920450px;}
.ye_c00322{bottom:787.620450px;}
.yd_c00322{bottom:808.320450px;}
.yc_c00322{bottom:829.020450px;}
.yb_c00322{bottom:849.720450px;}
.ya_c00322{bottom:870.420450px;}
.y9_c00322{bottom:891.120450px;}
.y8_c00322{bottom:931.170450px;}
.y7_c00322{bottom:962.220450px;}
.y6_c00322{bottom:993.270450px;}
.y5_c00322{bottom:1024.320450px;}
.y4_c00322{bottom:1064.370450px;}
.y3_c00322{bottom:1094.520450px;}
.h1_c00322{height:63.175781px;}
.h3_c00322{height:64.546875px;}
.h4_c00322{height:75.093750px;}
.h2_c00322{height:87.484219px;}
.h0_c00322{height:1263.000000px;}
.w1_c00322{width:892.500000px;}
.w0_c00322{width:892.830000px;}
.x0_c00322{left:0.000000px;}
.x2_c00322{left:170.100000px;}
.x5_c00322{left:201.600000px;}
.x6_c00322{left:228.600000px;}
.x4_c00322{left:245.430000px;}
.x3_c00322{left:251.100000px;}
.x1_c00322{left:738.360000px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.lsf_c00322{letter-spacing:-0.396800pt;}
.lse_c00322{letter-spacing:-0.185600pt;}
.ls10_c00322{letter-spacing:-0.147200pt;}
.lsa_c00322{letter-spacing:-0.089600pt;}
.ls9_c00322{letter-spacing:-0.083200pt;}
.lsd_c00322{letter-spacing:-0.057600pt;}
.ls7_c00322{letter-spacing:-0.051200pt;}
.lsb_c00322{letter-spacing:-0.044800pt;}
.ls5_c00322{letter-spacing:-0.038400pt;}
.ls6_c00322{letter-spacing:-0.032000pt;}
.lsc_c00322{letter-spacing:-0.025600pt;}
.ls4_c00322{letter-spacing:-0.019200pt;}
.ls8_c00322{letter-spacing:-0.012800pt;}
.ls11_c00322{letter-spacing:-0.006400pt;}
.ls3_c00322{letter-spacing:0.000000pt;}
.ls1_c00322{letter-spacing:0.012800pt;}
.ls2_c00322{letter-spacing:0.032000pt;}
.ls0_c00322{letter-spacing:0.037280pt;}
.ws0_c00322{word-spacing:-17.824000pt;}
.ws1_c00322{word-spacing:-17.395200pt;}
.ws7_c00322{word-spacing:-1.440000pt;}
.ws6_c00322{word-spacing:-1.427200pt;}
.ws16_c00322{word-spacing:-1.318400pt;}
.ws15_c00322{word-spacing:-1.164800pt;}
.ws2f_c00322{word-spacing:-0.128000pt;}
.ws2_c00322{word-spacing:0.000000pt;}
.ws3_c00322{word-spacing:0.044736pt;}
.ws22_c00322{word-spacing:0.096000pt;}
.ws29_c00322{word-spacing:0.147200pt;}
.ws26_c00322{word-spacing:0.153600pt;}
.ws17_c00322{word-spacing:0.160000pt;}
.wsa_c00322{word-spacing:0.172800pt;}
.ws19_c00322{word-spacing:0.499200pt;}
.ws18_c00322{word-spacing:0.518400pt;}
.wsb_c00322{word-spacing:0.812800pt;}
.wsc_c00322{word-spacing:0.864000pt;}
.ws9_c00322{word-spacing:1.350400pt;}
.ws8_c00322{word-spacing:1.420800pt;}
.wsd_c00322{word-spacing:1.772800pt;}
.ws1d_c00322{word-spacing:2.099200pt;}
.ws1c_c00322{word-spacing:2.118400pt;}
.wsf_c00322{word-spacing:2.688000pt;}
.ws20_c00322{word-spacing:2.720000pt;}
.ws21_c00322{word-spacing:2.752000pt;}
.ws10_c00322{word-spacing:2.790400pt;}
.wse_c00322{word-spacing:2.835200pt;}
.ws12_c00322{word-spacing:4.019200pt;}
.ws11_c00322{word-spacing:4.025600pt;}
.ws24_c00322{word-spacing:4.684800pt;}
.ws25_c00322{word-spacing:4.723200pt;}
.ws1b_c00322{word-spacing:6.560000pt;}
.ws1a_c00322{word-spacing:6.668800pt;}
.ws4_c00322{word-spacing:8.480000pt;}
.ws27_c00322{word-spacing:8.512000pt;}
.ws5_c00322{word-spacing:8.550400pt;}
.ws28_c00322{word-spacing:8.608000pt;}
.ws23_c00322{word-spacing:9.113600pt;}
.ws2b_c00322{word-spacing:12.646400pt;}
.ws2a_c00322{word-spacing:12.672000pt;}
.ws1e_c00322{word-spacing:13.292800pt;}
.ws1f_c00322{word-spacing:13.331200pt;}
.ws13_c00322{word-spacing:29.286400pt;}
.ws14_c00322{word-spacing:29.299200pt;}
.ws2c_c00322{word-spacing:36.307200pt;}
.ws2d_c00322{word-spacing:36.320000pt;}
.ws2e_c00322{word-spacing:36.326400pt;}
._1_c00322{width:0.985600pt;}
._2_c00322{width:1.881600pt;}
._0_c00322{width:8.648960pt;}
._6_c00322{width:36.160000pt;}
._3_c00322{width:39.680000pt;}
._5_c00322{width:44.096000pt;}
._4_c00322{width:48.640000pt;}
.fs0_c00322{font-size:64.000000pt;}
.fs1_c00322{font-size:74.560000pt;}
.y0_c00322{bottom:0.000000pt;}
.y2_c00322{bottom:41.627067pt;}
.y1_c00322{bottom:60.027067pt;}
.y22_c00322{bottom:129.147067pt;}
.y21_c00322{bottom:156.747067pt;}
.y20_c00322{bottom:184.347067pt;}
.y1f_c00322{bottom:219.947067pt;}
.y1e_c00322{bottom:247.467067pt;}
.y1d_c00322{bottom:276.187067pt;}
.y1c_c00322{bottom:303.787067pt;}
.y1b_c00322{bottom:332.507067pt;}
.y1a_c00322{bottom:360.027067pt;}
.y19_c00322{bottom:388.747067pt;}
.y18_c00322{bottom:417.467067pt;}
.y17_c00322{bottom:444.987067pt;}
.y16_c00322{bottom:481.707067pt;}
.y15_c00322{bottom:509.307067pt;}
.y14_c00322{bottom:536.907067pt;}
.y13_c00322{bottom:564.507067pt;}
.y12_c00322{bottom:592.107067pt;}
.y11_c00322{bottom:619.707067pt;}
.y10_c00322{bottom:655.307067pt;}
.yf_c00322{bottom:681.707067pt;}
.ye_c00322{bottom:700.107067pt;}
.yd_c00322{bottom:718.507067pt;}
.yc_c00322{bottom:736.907067pt;}
.yb_c00322{bottom:755.307067pt;}
.ya_c00322{bottom:773.707067pt;}
.y9_c00322{bottom:792.107067pt;}
.y8_c00322{bottom:827.707067pt;}
.y7_c00322{bottom:855.307067pt;}
.y6_c00322{bottom:882.907067pt;}
.y5_c00322{bottom:910.507067pt;}
.y4_c00322{bottom:946.107067pt;}
.y3_c00322{bottom:972.907067pt;}
.h1_c00322{height:56.156250pt;}
.h3_c00322{height:57.375000pt;}
.h4_c00322{height:66.750000pt;}
.h2_c00322{height:77.763750pt;}
.h0_c00322{height:1122.666667pt;}
.w1_c00322{width:793.333333pt;}
.w0_c00322{width:793.626667pt;}
.x0_c00322{left:0.000000pt;}
.x2_c00322{left:151.200000pt;}
.x5_c00322{left:179.200000pt;}
.x6_c00322{left:203.200000pt;}
.x4_c00322{left:218.160000pt;}
.x3_c00322{left:223.200000pt;}
.x1_c00322{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2da461fad6c4015aff066d45.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.093262;font-style:normal;font-weight:normal;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_59a7ef43f4ede8a85bd072f9.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.ls5_c00323{letter-spacing:-0.115200px;}
.lsb_c00323{letter-spacing:-0.079200px;}
.ls9_c00323{letter-spacing:-0.072000px;}
.ls8_c00323{letter-spacing:-0.064800px;}
.ls7_c00323{letter-spacing:-0.057600px;}
.ls3_c00323{letter-spacing:-0.050400px;}
.lsc_c00323{letter-spacing:-0.043200px;}
.ls4_c00323{letter-spacing:-0.036000px;}
.lsa_c00323{letter-spacing:-0.028800px;}
.ls2_c00323{letter-spacing:-0.021600px;}
.ls6_c00323{letter-spacing:-0.014400px;}
.lsd_c00323{letter-spacing:-0.007200px;}
.ls1_c00323{letter-spacing:0.000000px;}
.ls0_c00323{letter-spacing:0.007200px;}
.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;}
}
.ws28_c00323{word-spacing:-3.808800px;}
.ws29_c00323{word-spacing:-3.744000px;}
.ws10_c00323{word-spacing:-2.296800px;}
.wsc_c00323{word-spacing:-0.907200px;}
.wsb_c00323{word-spacing:-0.885600px;}
.ws2f_c00323{word-spacing:-0.547200px;}
.ws13_c00323{word-spacing:-0.540000px;}
.ws2e_c00323{word-spacing:-0.518400px;}
.ws0_c00323{word-spacing:0.000000px;}
.ws1d_c00323{word-spacing:0.036000px;}
.ws1c_c00323{word-spacing:0.151200px;}
.ws2a_c00323{word-spacing:0.165600px;}
.wsd_c00323{word-spacing:0.172800px;}
.ws34_c00323{word-spacing:0.180000px;}
.ws11_c00323{word-spacing:1.944000px;}
.ws12_c00323{word-spacing:2.030400px;}
.ws14_c00323{word-spacing:2.354400px;}
.ws7_c00323{word-spacing:2.534400px;}
.ws6_c00323{word-spacing:2.728800px;}
.ws8_c00323{word-spacing:2.793600px;}
.ws21_c00323{word-spacing:3.420000px;}
.ws20_c00323{word-spacing:3.427200px;}
.ws2b_c00323{word-spacing:3.434400px;}
.ws2c_c00323{word-spacing:3.456000px;}
.ws15_c00323{word-spacing:4.082400px;}
.ws16_c00323{word-spacing:4.183200px;}
.ws17_c00323{word-spacing:5.947200px;}
.ws1f_c00323{word-spacing:6.271200px;}
.ws1e_c00323{word-spacing:6.357600px;}
.ws9_c00323{word-spacing:8.460000px;}
.wsa_c00323{word-spacing:8.467200px;}
.ws27_c00323{word-spacing:12.060000px;}
.ws26_c00323{word-spacing:12.146400px;}
.ws36_c00323{word-spacing:12.643200px;}
.ws35_c00323{word-spacing:12.794400px;}
.ws25_c00323{word-spacing:13.867200px;}
.ws24_c00323{word-spacing:13.881600px;}
.ws23_c00323{word-spacing:16.358400px;}
.ws22_c00323{word-spacing:16.444800px;}
.ws33_c00323{word-spacing:18.561600px;}
.ws32_c00323{word-spacing:18.640800px;}
.ws31_c00323{word-spacing:19.584000px;}
.ws30_c00323{word-spacing:19.634400px;}
.ws1_c00323{word-spacing:21.780000px;}
.ws2_c00323{word-spacing:21.808800px;}
.wsf_c00323{word-spacing:22.176000px;}
.ws38_c00323{word-spacing:22.838400px;}
.ws37_c00323{word-spacing:22.860000px;}
.ws1b_c00323{word-spacing:23.947200px;}
.ws1a_c00323{word-spacing:23.954400px;}
.ws4_c00323{word-spacing:26.827200px;}
.ws3_c00323{word-spacing:26.935200px;}
.ws2d_c00323{word-spacing:27.554400px;}
.ws5_c00323{word-spacing:40.507200px;}
.wse_c00323{word-spacing:45.180000px;}
.ws18_c00323{word-spacing:49.773600px;}
.ws19_c00323{word-spacing:49.874400px;}
._1_c00323{margin-left:-13.449600px;}
._0_c00323{width:1.108800px;}
.fc0_c00323{color:rgb(0,0,0);}
.fs0_c00323{font-size:72.000000px;}
.y0_c00323{bottom:0.000000px;}
.y2_c00323{bottom:46.830450px;}
.y1_c00323{bottom:67.530450px;}
.y27_c00323{bottom:152.130450px;}
.y26_c00323{bottom:183.180450px;}
.y25_c00323{bottom:212.880450px;}
.y24_c00323{bottom:233.580450px;}
.y23_c00323{bottom:254.280450px;}
.y22_c00323{bottom:274.980450px;}
.y21_c00323{bottom:295.680450px;}
.y20_c00323{bottom:316.380450px;}
.y1f_c00323{bottom:337.080450px;}
.y1e_c00323{bottom:357.690450px;}
.y1d_c00323{bottom:378.390450px;}
.y1c_c00323{bottom:418.440450px;}
.y1b_c00323{bottom:458.490450px;}
.y1a_c00323{bottom:489.540450px;}
.y19_c00323{bottom:520.590450px;}
.y18_c00323{bottom:551.640450px;}
.y17_c00323{bottom:582.690450px;}
.y16_c00323{bottom:613.740450px;}
.y15_c00323{bottom:643.440450px;}
.y14_c00323{bottom:664.140450px;}
.y13_c00323{bottom:684.840450px;}
.y12_c00323{bottom:705.540450px;}
.y11_c00323{bottom:726.240450px;}
.y10_c00323{bottom:746.940450px;}
.yf_c00323{bottom:767.640450px;}
.ye_c00323{bottom:788.340450px;}
.yd_c00323{bottom:809.040450px;}
.yc_c00323{bottom:829.740450px;}
.yb_c00323{bottom:850.440450px;}
.ya_c00323{bottom:871.140450px;}
.y9_c00323{bottom:911.190450px;}
.y8_c00323{bottom:942.240450px;}
.y7_c00323{bottom:973.290450px;}
.y6_c00323{bottom:1004.340450px;}
.y5_c00323{bottom:1035.390450px;}
.y4_c00323{bottom:1066.440450px;}
.y3_c00323{bottom:1097.490450px;}
.h1_c00323{height:63.175781px;}
.h2_c00323{height:64.546875px;}
.h0_c00323{height:1263.000000px;}
.w1_c00323{width:892.500000px;}
.w0_c00323{width:892.830000px;}
.x0_c00323{left:0.000000px;}
.x2_c00323{left:127.620000px;}
.x3_c00323{left:202.950000px;}
.x1_c00323{left:695.880000px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls5_c00323{letter-spacing:-0.102400pt;}
.lsb_c00323{letter-spacing:-0.070400pt;}
.ls9_c00323{letter-spacing:-0.064000pt;}
.ls8_c00323{letter-spacing:-0.057600pt;}
.ls7_c00323{letter-spacing:-0.051200pt;}
.ls3_c00323{letter-spacing:-0.044800pt;}
.lsc_c00323{letter-spacing:-0.038400pt;}
.ls4_c00323{letter-spacing:-0.032000pt;}
.lsa_c00323{letter-spacing:-0.025600pt;}
.ls2_c00323{letter-spacing:-0.019200pt;}
.ls6_c00323{letter-spacing:-0.012800pt;}
.lsd_c00323{letter-spacing:-0.006400pt;}
.ls1_c00323{letter-spacing:0.000000pt;}
.ls0_c00323{letter-spacing:0.006400pt;}
.ws28_c00323{word-spacing:-3.385600pt;}
.ws29_c00323{word-spacing:-3.328000pt;}
.ws10_c00323{word-spacing:-2.041600pt;}
.wsc_c00323{word-spacing:-0.806400pt;}
.wsb_c00323{word-spacing:-0.787200pt;}
.ws2f_c00323{word-spacing:-0.486400pt;}
.ws13_c00323{word-spacing:-0.480000pt;}
.ws2e_c00323{word-spacing:-0.460800pt;}
.ws0_c00323{word-spacing:0.000000pt;}
.ws1d_c00323{word-spacing:0.032000pt;}
.ws1c_c00323{word-spacing:0.134400pt;}
.ws2a_c00323{word-spacing:0.147200pt;}
.wsd_c00323{word-spacing:0.153600pt;}
.ws34_c00323{word-spacing:0.160000pt;}
.ws11_c00323{word-spacing:1.728000pt;}
.ws12_c00323{word-spacing:1.804800pt;}
.ws14_c00323{word-spacing:2.092800pt;}
.ws7_c00323{word-spacing:2.252800pt;}
.ws6_c00323{word-spacing:2.425600pt;}
.ws8_c00323{word-spacing:2.483200pt;}
.ws21_c00323{word-spacing:3.040000pt;}
.ws20_c00323{word-spacing:3.046400pt;}
.ws2b_c00323{word-spacing:3.052800pt;}
.ws2c_c00323{word-spacing:3.072000pt;}
.ws15_c00323{word-spacing:3.628800pt;}
.ws16_c00323{word-spacing:3.718400pt;}
.ws17_c00323{word-spacing:5.286400pt;}
.ws1f_c00323{word-spacing:5.574400pt;}
.ws1e_c00323{word-spacing:5.651200pt;}
.ws9_c00323{word-spacing:7.520000pt;}
.wsa_c00323{word-spacing:7.526400pt;}
.ws27_c00323{word-spacing:10.720000pt;}
.ws26_c00323{word-spacing:10.796800pt;}
.ws36_c00323{word-spacing:11.238400pt;}
.ws35_c00323{word-spacing:11.372800pt;}
.ws25_c00323{word-spacing:12.326400pt;}
.ws24_c00323{word-spacing:12.339200pt;}
.ws23_c00323{word-spacing:14.540800pt;}
.ws22_c00323{word-spacing:14.617600pt;}
.ws33_c00323{word-spacing:16.499200pt;}
.ws32_c00323{word-spacing:16.569600pt;}
.ws31_c00323{word-spacing:17.408000pt;}
.ws30_c00323{word-spacing:17.452800pt;}
.ws1_c00323{word-spacing:19.360000pt;}
.ws2_c00323{word-spacing:19.385600pt;}
.wsf_c00323{word-spacing:19.712000pt;}
.ws38_c00323{word-spacing:20.300800pt;}
.ws37_c00323{word-spacing:20.320000pt;}
.ws1b_c00323{word-spacing:21.286400pt;}
.ws1a_c00323{word-spacing:21.292800pt;}
.ws4_c00323{word-spacing:23.846400pt;}
.ws3_c00323{word-spacing:23.942400pt;}
.ws2d_c00323{word-spacing:24.492800pt;}
.ws5_c00323{word-spacing:36.006400pt;}
.wse_c00323{word-spacing:40.160000pt;}
.ws18_c00323{word-spacing:44.243200pt;}
.ws19_c00323{word-spacing:44.332800pt;}
._1_c00323{margin-left:-11.955200pt;}
._0_c00323{width:0.985600pt;}
.fs0_c00323{font-size:64.000000pt;}
.y0_c00323{bottom:0.000000pt;}
.y2_c00323{bottom:41.627067pt;}
.y1_c00323{bottom:60.027067pt;}
.y27_c00323{bottom:135.227067pt;}
.y26_c00323{bottom:162.827067pt;}
.y25_c00323{bottom:189.227067pt;}
.y24_c00323{bottom:207.627067pt;}
.y23_c00323{bottom:226.027067pt;}
.y22_c00323{bottom:244.427067pt;}
.y21_c00323{bottom:262.827067pt;}
.y20_c00323{bottom:281.227067pt;}
.y1f_c00323{bottom:299.627067pt;}
.y1e_c00323{bottom:317.947067pt;}
.y1d_c00323{bottom:336.347067pt;}
.y1c_c00323{bottom:371.947067pt;}
.y1b_c00323{bottom:407.547067pt;}
.y1a_c00323{bottom:435.147067pt;}
.y19_c00323{bottom:462.747067pt;}
.y18_c00323{bottom:490.347067pt;}
.y17_c00323{bottom:517.947067pt;}
.y16_c00323{bottom:545.547067pt;}
.y15_c00323{bottom:571.947067pt;}
.y14_c00323{bottom:590.347067pt;}
.y13_c00323{bottom:608.747067pt;}
.y12_c00323{bottom:627.147067pt;}
.y11_c00323{bottom:645.547067pt;}
.y10_c00323{bottom:663.947067pt;}
.yf_c00323{bottom:682.347067pt;}
.ye_c00323{bottom:700.747067pt;}
.yd_c00323{bottom:719.147067pt;}
.yc_c00323{bottom:737.547067pt;}
.yb_c00323{bottom:755.947067pt;}
.ya_c00323{bottom:774.347067pt;}
.y9_c00323{bottom:809.947067pt;}
.y8_c00323{bottom:837.547067pt;}
.y7_c00323{bottom:865.147067pt;}
.y6_c00323{bottom:892.747067pt;}
.y5_c00323{bottom:920.347067pt;}
.y4_c00323{bottom:947.947067pt;}
.y3_c00323{bottom:975.547067pt;}
.h1_c00323{height:56.156250pt;}
.h2_c00323{height:57.375000pt;}
.h0_c00323{height:1122.666667pt;}
.w1_c00323{width:793.333333pt;}
.w0_c00323{width:793.626667pt;}
.x0_c00323{left:0.000000pt;}
.x2_c00323{left:113.440000pt;}
.x3_c00323{left:180.400000pt;}
.x1_c00323{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_64e3491581a16f27b152c18b.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.093262;font-style:normal;font-weight:normal;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_4a6f32250b5f16dd677e36b2.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.106934;font-style:normal;font-weight:normal;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_2a68614d85af76bc0b9c7aa8.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00324{vertical-align:0.000000px;}
.lsc_c00324{letter-spacing:-0.086400px;}
.lsb_c00324{letter-spacing:-0.079200px;}
.lsa_c00324{letter-spacing:-0.072000px;}
.ls4_c00324{letter-spacing:-0.064800px;}
.ls5_c00324{letter-spacing:-0.057600px;}
.ls6_c00324{letter-spacing:-0.050400px;}
.ls3_c00324{letter-spacing:-0.043200px;}
.lse_c00324{letter-spacing:-0.036000px;}
.lsd_c00324{letter-spacing:-0.028800px;}
.ls9_c00324{letter-spacing:-0.021600px;}
.ls7_c00324{letter-spacing:-0.014400px;}
.ls8_c00324{letter-spacing:-0.007200px;}
.ls2_c00324{letter-spacing:0.000000px;}
.ls1_c00324{letter-spacing:0.007200px;}
.ls0_c00324{letter-spacing:0.021600px;}
.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;}
}
.ws2a_c00324{word-spacing:-2.347200px;}
.ws29_c00324{word-spacing:-2.260800px;}
.ws3_c00324{word-spacing:-1.267200px;}
.ws2_c00324{word-spacing:-1.231200px;}
.ws0_c00324{word-spacing:0.000000px;}
.ws16_c00324{word-spacing:0.108000px;}
.wsa_c00324{word-spacing:0.165600px;}
.ws7_c00324{word-spacing:0.180000px;}
.ws2d_c00324{word-spacing:0.187200px;}
.ws10_c00324{word-spacing:0.237600px;}
.wse_c00324{word-spacing:1.620000px;}
.wsf_c00324{word-spacing:1.648800px;}
.ws1f_c00324{word-spacing:2.721600px;}
.ws20_c00324{word-spacing:2.728800px;}
.ws18_c00324{word-spacing:5.220000px;}
.ws17_c00324{word-spacing:5.227200px;}
.ws21_c00324{word-spacing:5.889600px;}
.ws22_c00324{word-spacing:5.896800px;}
.ws15_c00324{word-spacing:6.645600px;}
.ws1c_c00324{word-spacing:6.681600px;}
.ws14_c00324{word-spacing:7.041600px;}
.ws24_c00324{word-spacing:8.467200px;}
.ws6_c00324{word-spacing:9.165600px;}
.ws5_c00324{word-spacing:9.172800px;}
.ws1b_c00324{word-spacing:12.081600px;}
.ws1a_c00324{word-spacing:12.168000px;}
.ws19_c00324{word-spacing:13.161600px;}
.ws28_c00324{word-spacing:16.380000px;}
.ws25_c00324{word-spacing:18.828000px;}
.ws26_c00324{word-spacing:18.936000px;}
.wsc_c00324{word-spacing:20.656800px;}
.ws4_c00324{word-spacing:20.736000px;}
.wsb_c00324{word-spacing:20.757600px;}
.wsd_c00324{word-spacing:20.764800px;}
.ws1_c00324{word-spacing:21.081600px;}
.ws2c_c00324{word-spacing:21.780000px;}
.ws2b_c00324{word-spacing:21.794400px;}
.ws1d_c00324{word-spacing:24.868800px;}
.ws1e_c00324{word-spacing:25.056000px;}
.ws12_c00324{word-spacing:28.980000px;}
.ws13_c00324{word-spacing:29.008800px;}
.ws11_c00324{word-spacing:29.044800px;}
.ws23_c00324{word-spacing:34.740000px;}
.ws27_c00324{word-spacing:43.048800px;}
.ws9_c00324{word-spacing:956.325600px;}
.ws8_c00324{word-spacing:1016.870400px;}
._1_c00324{margin-left:-529.581600px;}
._0_c00324{width:1.152000px;}
._5_c00324{width:199.800000px;}
._3_c00324{width:320.040000px;}
._2_c00324{width:528.876000px;}
._4_c00324{width:552.628800px;}
.fc0_c00324{color:rgb(0,0,0);}
.fs0_c00324{font-size:72.000000px;}
.y0_c00324{bottom:0.000000px;}
.y2_c00324{bottom:46.830450px;}
.y1_c00324{bottom:67.530450px;}
.y22_c00324{bottom:150.150450px;}
.y21_c00324{bottom:170.850450px;}
.y20_c00324{bottom:191.550450px;}
.y1f_c00324{bottom:212.250450px;}
.y1e_c00324{bottom:232.950450px;}
.y1d_c00324{bottom:253.650450px;}
.y1c_c00324{bottom:274.350450px;}
.y1b_c00324{bottom:295.050450px;}
.y1a_c00324{bottom:315.750450px;}
.y19_c00324{bottom:336.450450px;}
.y18_c00324{bottom:357.150450px;}
.y17_c00324{bottom:377.850450px;}
.y16_c00324{bottom:398.550450px;}
.y15_c00324{bottom:419.250450px;}
.y14_c00324{bottom:439.950450px;}
.y13_c00324{bottom:480.000450px;}
.y12_c00324{bottom:511.050450px;}
.y11_c00324{bottom:542.100450px;}
.y10_c00324{bottom:582.150450px;}
.yf_c00324{bottom:613.200450px;}
.ye_c00324{bottom:644.160450px;}
.yd_c00324{bottom:684.210450px;}
.yc_c00324{bottom:724.260450px;}
.yb_c00324{bottom:774.120450px;}
.ya_c00324{bottom:823.890450px;}
.y9_c00324{bottom:873.660450px;}
.y8_c00324{bottom:923.520450px;}
.y7_c00324{bottom:973.290450px;}
.y6_c00324{bottom:1004.340450px;}
.y5_c00324{bottom:1035.390450px;}
.y4_c00324{bottom:1066.440450px;}
.y3_c00324{bottom:1097.490450px;}
.h1_c00324{height:63.175781px;}
.h2_c00324{height:64.546875px;}
.h3_c00324{height:75.093750px;}
.h0_c00324{height:1263.000000px;}
.w1_c00324{width:892.500000px;}
.w0_c00324{width:892.830000px;}
.x0_c00324{left:0.000000px;}
.x2_c00324{left:170.100000px;}
.x3_c00324{left:178.560000px;}
.x4_c00324{left:245.430000px;}
.x1_c00324{left:738.360000px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.lsc_c00324{letter-spacing:-0.076800pt;}
.lsb_c00324{letter-spacing:-0.070400pt;}
.lsa_c00324{letter-spacing:-0.064000pt;}
.ls4_c00324{letter-spacing:-0.057600pt;}
.ls5_c00324{letter-spacing:-0.051200pt;}
.ls6_c00324{letter-spacing:-0.044800pt;}
.ls3_c00324{letter-spacing:-0.038400pt;}
.lse_c00324{letter-spacing:-0.032000pt;}
.lsd_c00324{letter-spacing:-0.025600pt;}
.ls9_c00324{letter-spacing:-0.019200pt;}
.ls7_c00324{letter-spacing:-0.012800pt;}
.ls8_c00324{letter-spacing:-0.006400pt;}
.ls2_c00324{letter-spacing:0.000000pt;}
.ls1_c00324{letter-spacing:0.006400pt;}
.ls0_c00324{letter-spacing:0.019200pt;}
.ws2a_c00324{word-spacing:-2.086400pt;}
.ws29_c00324{word-spacing:-2.009600pt;}
.ws3_c00324{word-spacing:-1.126400pt;}
.ws2_c00324{word-spacing:-1.094400pt;}
.ws0_c00324{word-spacing:0.000000pt;}
.ws16_c00324{word-spacing:0.096000pt;}
.wsa_c00324{word-spacing:0.147200pt;}
.ws7_c00324{word-spacing:0.160000pt;}
.ws2d_c00324{word-spacing:0.166400pt;}
.ws10_c00324{word-spacing:0.211200pt;}
.wse_c00324{word-spacing:1.440000pt;}
.wsf_c00324{word-spacing:1.465600pt;}
.ws1f_c00324{word-spacing:2.419200pt;}
.ws20_c00324{word-spacing:2.425600pt;}
.ws18_c00324{word-spacing:4.640000pt;}
.ws17_c00324{word-spacing:4.646400pt;}
.ws21_c00324{word-spacing:5.235200pt;}
.ws22_c00324{word-spacing:5.241600pt;}
.ws15_c00324{word-spacing:5.907200pt;}
.ws1c_c00324{word-spacing:5.939200pt;}
.ws14_c00324{word-spacing:6.259200pt;}
.ws24_c00324{word-spacing:7.526400pt;}
.ws6_c00324{word-spacing:8.147200pt;}
.ws5_c00324{word-spacing:8.153600pt;}
.ws1b_c00324{word-spacing:10.739200pt;}
.ws1a_c00324{word-spacing:10.816000pt;}
.ws19_c00324{word-spacing:11.699200pt;}
.ws28_c00324{word-spacing:14.560000pt;}
.ws25_c00324{word-spacing:16.736000pt;}
.ws26_c00324{word-spacing:16.832000pt;}
.wsc_c00324{word-spacing:18.361600pt;}
.ws4_c00324{word-spacing:18.432000pt;}
.wsb_c00324{word-spacing:18.451200pt;}
.wsd_c00324{word-spacing:18.457600pt;}
.ws1_c00324{word-spacing:18.739200pt;}
.ws2c_c00324{word-spacing:19.360000pt;}
.ws2b_c00324{word-spacing:19.372800pt;}
.ws1d_c00324{word-spacing:22.105600pt;}
.ws1e_c00324{word-spacing:22.272000pt;}
.ws12_c00324{word-spacing:25.760000pt;}
.ws13_c00324{word-spacing:25.785600pt;}
.ws11_c00324{word-spacing:25.817600pt;}
.ws23_c00324{word-spacing:30.880000pt;}
.ws27_c00324{word-spacing:38.265600pt;}
.ws9_c00324{word-spacing:850.067200pt;}
.ws8_c00324{word-spacing:903.884800pt;}
._1_c00324{margin-left:-470.739200pt;}
._0_c00324{width:1.024000pt;}
._5_c00324{width:177.600000pt;}
._3_c00324{width:284.480000pt;}
._2_c00324{width:470.112000pt;}
._4_c00324{width:491.225600pt;}
.fs0_c00324{font-size:64.000000pt;}
.y0_c00324{bottom:0.000000pt;}
.y2_c00324{bottom:41.627067pt;}
.y1_c00324{bottom:60.027067pt;}
.y22_c00324{bottom:133.467067pt;}
.y21_c00324{bottom:151.867067pt;}
.y20_c00324{bottom:170.267067pt;}
.y1f_c00324{bottom:188.667067pt;}
.y1e_c00324{bottom:207.067067pt;}
.y1d_c00324{bottom:225.467067pt;}
.y1c_c00324{bottom:243.867067pt;}
.y1b_c00324{bottom:262.267067pt;}
.y1a_c00324{bottom:280.667067pt;}
.y19_c00324{bottom:299.067067pt;}
.y18_c00324{bottom:317.467067pt;}
.y17_c00324{bottom:335.867067pt;}
.y16_c00324{bottom:354.267067pt;}
.y15_c00324{bottom:372.667067pt;}
.y14_c00324{bottom:391.067067pt;}
.y13_c00324{bottom:426.667067pt;}
.y12_c00324{bottom:454.267067pt;}
.y11_c00324{bottom:481.867067pt;}
.y10_c00324{bottom:517.467067pt;}
.yf_c00324{bottom:545.067067pt;}
.ye_c00324{bottom:572.587067pt;}
.yd_c00324{bottom:608.187067pt;}
.yc_c00324{bottom:643.787067pt;}
.yb_c00324{bottom:688.107067pt;}
.ya_c00324{bottom:732.347067pt;}
.y9_c00324{bottom:776.587067pt;}
.y8_c00324{bottom:820.907067pt;}
.y7_c00324{bottom:865.147067pt;}
.y6_c00324{bottom:892.747067pt;}
.y5_c00324{bottom:920.347067pt;}
.y4_c00324{bottom:947.947067pt;}
.y3_c00324{bottom:975.547067pt;}
.h1_c00324{height:56.156250pt;}
.h2_c00324{height:57.375000pt;}
.h3_c00324{height:66.750000pt;}
.h0_c00324{height:1122.666667pt;}
.w1_c00324{width:793.333333pt;}
.w0_c00324{width:793.626667pt;}
.x0_c00324{left:0.000000pt;}
.x2_c00324{left:151.200000pt;}
.x3_c00324{left:158.720000pt;}
.x4_c00324{left:218.160000pt;}
.x1_c00324{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_af0c2eb617871f8df47ea339.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.093262;font-style:normal;font-weight:normal;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_f415223d99c3b1ccd613e64f.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.106934;font-style:normal;font-weight:normal;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_ceec8dcef716f4313a4bba4e.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00325;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls8_c00325{letter-spacing:-0.122400px;}
.lsd_c00325{letter-spacing:-0.093600px;}
.ls3_c00325{letter-spacing:-0.086400px;}
.lsc_c00325{letter-spacing:-0.079200px;}
.lse_c00325{letter-spacing:-0.064800px;}
.ls5_c00325{letter-spacing:-0.057600px;}
.ls9_c00325{letter-spacing:-0.050400px;}
.ls6_c00325{letter-spacing:-0.043200px;}
.ls4_c00325{letter-spacing:-0.036000px;}
.ls7_c00325{letter-spacing:-0.028800px;}
.lsa_c00325{letter-spacing:-0.021600px;}
.lsb_c00325{letter-spacing:-0.014400px;}
.ls2_c00325{letter-spacing:0.000000px;}
.ls1_c00325{letter-spacing:0.007200px;}
.ls0_c00325{letter-spacing:0.014400px;}
.lsf_c00325{letter-spacing:0.021600px;}
.ls10_c00325{letter-spacing:840.695688px;}
.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;}
}
.ws23_c00325{word-spacing:-4.485600px;}
.ws24_c00325{word-spacing:-4.478400px;}
.ws39_c00325{word-spacing:-3.535200px;}
.ws38_c00325{word-spacing:-3.420000px;}
.wsc_c00325{word-spacing:-2.361600px;}
.wsb_c00325{word-spacing:-2.311200px;}
.ws18_c00325{word-spacing:-1.288800px;}
.ws36_c00325{word-spacing:-1.274400px;}
.ws17_c00325{word-spacing:-1.252800px;}
.ws19_c00325{word-spacing:-1.245600px;}
.ws35_c00325{word-spacing:-1.188000px;}
.ws9_c00325{word-spacing:-0.295200px;}
.ws8_c00325{word-spacing:-0.108000px;}
.wsa_c00325{word-spacing:-0.079200px;}
.ws0_c00325{word-spacing:0.000000px;}
.ws3a_c00325{word-spacing:0.136800px;}
.ws11_c00325{word-spacing:0.144000px;}
.ws1e_c00325{word-spacing:0.180000px;}
.ws10_c00325{word-spacing:0.187200px;}
.ws12_c00325{word-spacing:0.237600px;}
.ws34_c00325{word-spacing:1.994400px;}
.ws31_c00325{word-spacing:2.541600px;}
.ws30_c00325{word-spacing:2.606400px;}
.ws16_c00325{word-spacing:2.671200px;}
.ws15_c00325{word-spacing:2.714400px;}
.ws37_c00325{word-spacing:3.067200px;}
.ws21_c00325{word-spacing:4.543200px;}
.ws33_c00325{word-spacing:6.192000px;}
.ws32_c00325{word-spacing:6.249600px;}
.ws2b_c00325{word-spacing:8.128800px;}
.ws2a_c00325{word-spacing:8.136000px;}
.ws7_c00325{word-spacing:9.799200px;}
.ws6_c00325{word-spacing:9.921600px;}
.ws29_c00325{word-spacing:10.641600px;}
.ws27_c00325{word-spacing:10.994400px;}
.wsf_c00325{word-spacing:12.751200px;}
.wse_c00325{word-spacing:12.902400px;}
.wsd_c00325{word-spacing:12.909600px;}
.ws14_c00325{word-spacing:18.828000px;}
.ws13_c00325{word-spacing:18.900000px;}
.ws2c_c00325{word-spacing:19.994400px;}
.ws1f_c00325{word-spacing:20.332800px;}
.ws1a_c00325{word-spacing:21.067200px;}
.ws1b_c00325{word-spacing:21.096000px;}
.ws4_c00325{word-spacing:24.681600px;}
.ws5_c00325{word-spacing:24.696000px;}
.ws28_c00325{word-spacing:27.583200px;}
.ws2_c00325{word-spacing:27.914400px;}
.ws3_c00325{word-spacing:27.936000px;}
.ws1_c00325{word-spacing:27.964800px;}
.ws22_c00325{word-spacing:28.980000px;}
.ws2d_c00325{word-spacing:29.628000px;}
.ws2f_c00325{word-spacing:30.348000px;}
.ws2e_c00325{word-spacing:30.434400px;}
.ws20_c00325{word-spacing:38.642400px;}
.ws26_c00325{word-spacing:44.467200px;}
.ws25_c00325{word-spacing:44.575200px;}
.ws1c_c00325{word-spacing:58.860000px;}
.ws1d_c00325{word-spacing:58.874400px;}
._0_c00325{width:1.252800px;}
.fc0_c00325{color:rgb(0,0,0);}
.fs0_c00325{font-size:72.000000px;}
.fs1_c00325{font-size:83.880000px;}
.y0_c00325{bottom:0.000000px;}
.y2_c00325{bottom:46.830450px;}
.y1_c00325{bottom:67.530450px;}
.y27_c00325{bottom:138.810450px;}
.y26_c00325{bottom:181.830450px;}
.y25_c00325{bottom:211.530450px;}
.y24_c00325{bottom:232.230450px;}
.y23_c00325{bottom:252.930450px;}
.y22_c00325{bottom:273.630450px;}
.y21_c00325{bottom:294.330450px;}
.y20_c00325{bottom:315.030450px;}
.y1f_c00325{bottom:335.730450px;}
.y1e_c00325{bottom:356.430450px;}
.y1d_c00325{bottom:377.040450px;}
.y1c_c00325{bottom:397.740450px;}
.y1b_c00325{bottom:418.440450px;}
.y1a_c00325{bottom:439.140450px;}
.y19_c00325{bottom:459.840450px;}
.y18_c00325{bottom:480.540450px;}
.y17_c00325{bottom:501.240450px;}
.y16_c00325{bottom:521.940450px;}
.y15_c00325{bottom:542.640450px;}
.y14_c00325{bottom:563.340450px;}
.y13_c00325{bottom:584.040450px;}
.y12_c00325{bottom:604.740450px;}
.y11_c00325{bottom:644.790450px;}
.y10_c00325{bottom:675.840450px;}
.yf_c00325{bottom:706.890450px;}
.ye_c00325{bottom:737.940450px;}
.yd_c00325{bottom:768.990450px;}
.yc_c00325{bottom:809.040450px;}
.yb_c00325{bottom:840.090450px;}
.ya_c00325{bottom:871.140450px;}
.y9_c00325{bottom:911.190450px;}
.y8_c00325{bottom:942.240450px;}
.y7_c00325{bottom:973.290450px;}
.y6_c00325{bottom:1004.340450px;}
.y5_c00325{bottom:1035.390450px;}
.y4_c00325{bottom:1066.440450px;}
.y3_c00325{bottom:1097.490450px;}
.h1_c00325{height:63.175781px;}
.h3_c00325{height:64.546875px;}
.h2_c00325{height:75.093750px;}
.h4_c00325{height:87.484219px;}
.h0_c00325{height:1263.000000px;}
.w1_c00325{width:892.500000px;}
.w0_c00325{width:892.830000px;}
.x0_c00325{left:0.000000px;}
.x2_c00325{left:127.620000px;}
.x4_c00325{left:181.620000px;}
.x3_c00325{left:202.950000px;}
.x1_c00325{left:695.880000px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls8_c00325{letter-spacing:-0.108800pt;}
.lsd_c00325{letter-spacing:-0.083200pt;}
.ls3_c00325{letter-spacing:-0.076800pt;}
.lsc_c00325{letter-spacing:-0.070400pt;}
.lse_c00325{letter-spacing:-0.057600pt;}
.ls5_c00325{letter-spacing:-0.051200pt;}
.ls9_c00325{letter-spacing:-0.044800pt;}
.ls6_c00325{letter-spacing:-0.038400pt;}
.ls4_c00325{letter-spacing:-0.032000pt;}
.ls7_c00325{letter-spacing:-0.025600pt;}
.lsa_c00325{letter-spacing:-0.019200pt;}
.lsb_c00325{letter-spacing:-0.012800pt;}
.ls2_c00325{letter-spacing:0.000000pt;}
.ls1_c00325{letter-spacing:0.006400pt;}
.ls0_c00325{letter-spacing:0.012800pt;}
.lsf_c00325{letter-spacing:0.019200pt;}
.ls10_c00325{letter-spacing:747.285056pt;}
.ws23_c00325{word-spacing:-3.987200pt;}
.ws24_c00325{word-spacing:-3.980800pt;}
.ws39_c00325{word-spacing:-3.142400pt;}
.ws38_c00325{word-spacing:-3.040000pt;}
.wsc_c00325{word-spacing:-2.099200pt;}
.wsb_c00325{word-spacing:-2.054400pt;}
.ws18_c00325{word-spacing:-1.145600pt;}
.ws36_c00325{word-spacing:-1.132800pt;}
.ws17_c00325{word-spacing:-1.113600pt;}
.ws19_c00325{word-spacing:-1.107200pt;}
.ws35_c00325{word-spacing:-1.056000pt;}
.ws9_c00325{word-spacing:-0.262400pt;}
.ws8_c00325{word-spacing:-0.096000pt;}
.wsa_c00325{word-spacing:-0.070400pt;}
.ws0_c00325{word-spacing:0.000000pt;}
.ws3a_c00325{word-spacing:0.121600pt;}
.ws11_c00325{word-spacing:0.128000pt;}
.ws1e_c00325{word-spacing:0.160000pt;}
.ws10_c00325{word-spacing:0.166400pt;}
.ws12_c00325{word-spacing:0.211200pt;}
.ws34_c00325{word-spacing:1.772800pt;}
.ws31_c00325{word-spacing:2.259200pt;}
.ws30_c00325{word-spacing:2.316800pt;}
.ws16_c00325{word-spacing:2.374400pt;}
.ws15_c00325{word-spacing:2.412800pt;}
.ws37_c00325{word-spacing:2.726400pt;}
.ws21_c00325{word-spacing:4.038400pt;}
.ws33_c00325{word-spacing:5.504000pt;}
.ws32_c00325{word-spacing:5.555200pt;}
.ws2b_c00325{word-spacing:7.225600pt;}
.ws2a_c00325{word-spacing:7.232000pt;}
.ws7_c00325{word-spacing:8.710400pt;}
.ws6_c00325{word-spacing:8.819200pt;}
.ws29_c00325{word-spacing:9.459200pt;}
.ws27_c00325{word-spacing:9.772800pt;}
.wsf_c00325{word-spacing:11.334400pt;}
.wse_c00325{word-spacing:11.468800pt;}
.wsd_c00325{word-spacing:11.475200pt;}
.ws14_c00325{word-spacing:16.736000pt;}
.ws13_c00325{word-spacing:16.800000pt;}
.ws2c_c00325{word-spacing:17.772800pt;}
.ws1f_c00325{word-spacing:18.073600pt;}
.ws1a_c00325{word-spacing:18.726400pt;}
.ws1b_c00325{word-spacing:18.752000pt;}
.ws4_c00325{word-spacing:21.939200pt;}
.ws5_c00325{word-spacing:21.952000pt;}
.ws28_c00325{word-spacing:24.518400pt;}
.ws2_c00325{word-spacing:24.812800pt;}
.ws3_c00325{word-spacing:24.832000pt;}
.ws1_c00325{word-spacing:24.857600pt;}
.ws22_c00325{word-spacing:25.760000pt;}
.ws2d_c00325{word-spacing:26.336000pt;}
.ws2f_c00325{word-spacing:26.976000pt;}
.ws2e_c00325{word-spacing:27.052800pt;}
.ws20_c00325{word-spacing:34.348800pt;}
.ws26_c00325{word-spacing:39.526400pt;}
.ws25_c00325{word-spacing:39.622400pt;}
.ws1c_c00325{word-spacing:52.320000pt;}
.ws1d_c00325{word-spacing:52.332800pt;}
._0_c00325{width:1.113600pt;}
.fs0_c00325{font-size:64.000000pt;}
.fs1_c00325{font-size:74.560000pt;}
.y0_c00325{bottom:0.000000pt;}
.y2_c00325{bottom:41.627067pt;}
.y1_c00325{bottom:60.027067pt;}
.y27_c00325{bottom:123.387067pt;}
.y26_c00325{bottom:161.627067pt;}
.y25_c00325{bottom:188.027067pt;}
.y24_c00325{bottom:206.427067pt;}
.y23_c00325{bottom:224.827067pt;}
.y22_c00325{bottom:243.227067pt;}
.y21_c00325{bottom:261.627067pt;}
.y20_c00325{bottom:280.027067pt;}
.y1f_c00325{bottom:298.427067pt;}
.y1e_c00325{bottom:316.827067pt;}
.y1d_c00325{bottom:335.147067pt;}
.y1c_c00325{bottom:353.547067pt;}
.y1b_c00325{bottom:371.947067pt;}
.y1a_c00325{bottom:390.347067pt;}
.y19_c00325{bottom:408.747067pt;}
.y18_c00325{bottom:427.147067pt;}
.y17_c00325{bottom:445.547067pt;}
.y16_c00325{bottom:463.947067pt;}
.y15_c00325{bottom:482.347067pt;}
.y14_c00325{bottom:500.747067pt;}
.y13_c00325{bottom:519.147067pt;}
.y12_c00325{bottom:537.547067pt;}
.y11_c00325{bottom:573.147067pt;}
.y10_c00325{bottom:600.747067pt;}
.yf_c00325{bottom:628.347067pt;}
.ye_c00325{bottom:655.947067pt;}
.yd_c00325{bottom:683.547067pt;}
.yc_c00325{bottom:719.147067pt;}
.yb_c00325{bottom:746.747067pt;}
.ya_c00325{bottom:774.347067pt;}
.y9_c00325{bottom:809.947067pt;}
.y8_c00325{bottom:837.547067pt;}
.y7_c00325{bottom:865.147067pt;}
.y6_c00325{bottom:892.747067pt;}
.y5_c00325{bottom:920.347067pt;}
.y4_c00325{bottom:947.947067pt;}
.y3_c00325{bottom:975.547067pt;}
.h1_c00325{height:56.156250pt;}
.h3_c00325{height:57.375000pt;}
.h2_c00325{height:66.750000pt;}
.h4_c00325{height:77.763750pt;}
.h0_c00325{height:1122.666667pt;}
.w1_c00325{width:793.333333pt;}
.w0_c00325{width:793.626667pt;}
.x0_c00325{left:0.000000pt;}
.x2_c00325{left:113.440000pt;}
.x4_c00325{left:161.440000pt;}
.x3_c00325{left:180.400000pt;}
.x1_c00325{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ce90048266d296d1f5bf7814.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.093262;font-style:normal;font-weight:normal;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_096d99f9ae46dc18f87fca40.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00326;src:url('chunks/assets/font_031a77eca08638f318b24afe.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:1.106934;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00326{font-family:ff4_c00326;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00326{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m1_c00326{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.v2_c00326{vertical-align:9.000000px;}
.v1_c00326{vertical-align:78.480000px;}
.lsa_c00326{letter-spacing:-0.036000px;}
.ls6_c00326{letter-spacing:-0.028800px;}
.ls8_c00326{letter-spacing:-0.021600px;}
.ls5_c00326{letter-spacing:-0.014400px;}
.ls4_c00326{letter-spacing:-0.007200px;}
.ls3_c00326{letter-spacing:0.000000px;}
.ls2_c00326{letter-spacing:0.014400px;}
.ls7_c00326{letter-spacing:0.021600px;}
.ls9_c00326{letter-spacing:0.036000px;}
.ls0_c00326{letter-spacing:0.075492px;}
.ls1_c00326{letter-spacing:0.144000px;}
.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;}
}
.ws7_c00326{word-spacing:-3.074400px;}
.wsa_c00326{word-spacing:-0.028800px;}
.ws0_c00326{word-spacing:0.000000px;}
.ws8_c00326{word-spacing:0.021600px;}
.ws9_c00326{word-spacing:0.180000px;}
.ws1_c00326{word-spacing:5.787720px;}
.ws5_c00326{word-spacing:6.292800px;}
.ws6_c00326{word-spacing:6.314400px;}
.ws4_c00326{word-spacing:34.293600px;}
.ws3_c00326{word-spacing:34.394400px;}
.ws2_c00326{word-spacing:42.667200px;}
._1_c00326{margin-left:-42.480000px;}
._0_c00326{margin-left:-6.123240px;}
._2_c00326{width:672.680074px;}
._3_c00326{width:795.838475px;}
.fc1_c00326{color:transparent;}
.fc0_c00326{color:rgb(0,0,0);}
.fs0_c00326{font-size:72.000000px;}
.fs1_c00326{font-size:83.880000px;}
.y0_c00326{bottom:0.000000px;}
.y2_c00326{bottom:46.830450px;}
.y1_c00326{bottom:67.530450px;}
.y27_c00326{bottom:144.570450px;}
.y26_c00326{bottom:165.270450px;}
.y25_c00326{bottom:185.970450px;}
.y24_c00326{bottom:206.670450px;}
.y23_c00326{bottom:227.370450px;}
.y22_c00326{bottom:248.070450px;}
.y2f_c00326{bottom:258.060450px;}
.y21_c00326{bottom:268.770450px;}
.y20_c00326{bottom:289.470450px;}
.y1f_c00326{bottom:310.170450px;}
.y1e_c00326{bottom:330.870450px;}
.y1d_c00326{bottom:351.570450px;}
.y2e_c00326{bottom:355.530450px;}
.y1c_c00326{bottom:372.270450px;}
.y1b_c00326{bottom:392.970450px;}
.y1a_c00326{bottom:413.670450px;}
.y19_c00326{bottom:434.370450px;}
.y18_c00326{bottom:455.070450px;}
.y2d_c00326{bottom:459.930450px;}
.y17_c00326{bottom:475.770450px;}
.y2c_c00326{bottom:478.380450px;}
.y16_c00326{bottom:496.470450px;}
.y15_c00326{bottom:517.170450px;}
.y14_c00326{bottom:537.870450px;}
.y13_c00326{bottom:558.570450px;}
.y12_c00326{bottom:579.270450px;}
.y2b_c00326{bottom:582.960450px;}
.y11_c00326{bottom:599.970450px;}
.y10_c00326{bottom:620.670450px;}
.yf_c00326{bottom:641.370450px;}
.ye_c00326{bottom:658.020450px;}
.y2a_c00326{bottom:672.870450px;}
.y29_c00326{bottom:674.220450px;}
.yd_c00326{bottom:757.920450px;}
.yc_c00326{bottom:788.970450px;}
.y28_c00326{bottom:816.600450px;}
.yb_c00326{bottom:820.020450px;}
.ya_c00326{bottom:860.070450px;}
.y9_c00326{bottom:900.120450px;}
.y8_c00326{bottom:931.170450px;}
.y7_c00326{bottom:962.220450px;}
.y6_c00326{bottom:993.270450px;}
.y5_c00326{bottom:1024.320450px;}
.y4_c00326{bottom:1064.370450px;}
.y3_c00326{bottom:1094.520450px;}
.h1_c00326{height:63.175781px;}
.h3_c00326{height:64.546875px;}
.h6_c00326{height:72.175781px;}
.h4_c00326{height:75.093750px;}
.h2_c00326{height:87.484219px;}
.h5_c00326{height:141.655781px;}
.h0_c00326{height:1263.000000px;}
.w1_c00326{width:892.500000px;}
.w0_c00326{width:892.830000px;}
.x0_c00326{left:0.000000px;}
.x2_c00326{left:170.098135px;}
.x4_c00326{left:188.092650px;}
.x3_c00326{left:224.100000px;}
.x9_c00326{left:376.380000px;}
.x6_c00326{left:388.800000px;}
.x8_c00326{left:496.080000px;}
.xb_c00326{left:506.970000px;}
.xc_c00326{left:560.160000px;}
.x5_c00326{left:645.030000px;}
.x7_c00326{left:655.567644px;}
.xa_c00326{left:716.572650px;}
.x1_c00326{left:738.360000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.v2_c00326{vertical-align:8.000000pt;}
.v1_c00326{vertical-align:69.760000pt;}
.lsa_c00326{letter-spacing:-0.032000pt;}
.ls6_c00326{letter-spacing:-0.025600pt;}
.ls8_c00326{letter-spacing:-0.019200pt;}
.ls5_c00326{letter-spacing:-0.012800pt;}
.ls4_c00326{letter-spacing:-0.006400pt;}
.ls3_c00326{letter-spacing:0.000000pt;}
.ls2_c00326{letter-spacing:0.012800pt;}
.ls7_c00326{letter-spacing:0.019200pt;}
.ls9_c00326{letter-spacing:0.032000pt;}
.ls0_c00326{letter-spacing:0.067104pt;}
.ls1_c00326{letter-spacing:0.128000pt;}
.ws7_c00326{word-spacing:-2.732800pt;}
.wsa_c00326{word-spacing:-0.025600pt;}
.ws0_c00326{word-spacing:0.000000pt;}
.ws8_c00326{word-spacing:0.019200pt;}
.ws9_c00326{word-spacing:0.160000pt;}
.ws1_c00326{word-spacing:5.144640pt;}
.ws5_c00326{word-spacing:5.593600pt;}
.ws6_c00326{word-spacing:5.612800pt;}
.ws4_c00326{word-spacing:30.483200pt;}
.ws3_c00326{word-spacing:30.572800pt;}
.ws2_c00326{word-spacing:37.926400pt;}
._1_c00326{margin-left:-37.760000pt;}
._0_c00326{margin-left:-5.442880pt;}
._2_c00326{width:597.937844pt;}
._3_c00326{width:707.411978pt;}
.fs0_c00326{font-size:64.000000pt;}
.fs1_c00326{font-size:74.560000pt;}
.y0_c00326{bottom:0.000000pt;}
.y2_c00326{bottom:41.627067pt;}
.y1_c00326{bottom:60.027067pt;}
.y27_c00326{bottom:128.507067pt;}
.y26_c00326{bottom:146.907067pt;}
.y25_c00326{bottom:165.307067pt;}
.y24_c00326{bottom:183.707067pt;}
.y23_c00326{bottom:202.107067pt;}
.y22_c00326{bottom:220.507067pt;}
.y2f_c00326{bottom:229.387067pt;}
.y21_c00326{bottom:238.907067pt;}
.y20_c00326{bottom:257.307067pt;}
.y1f_c00326{bottom:275.707067pt;}
.y1e_c00326{bottom:294.107067pt;}
.y1d_c00326{bottom:312.507067pt;}
.y2e_c00326{bottom:316.027067pt;}
.y1c_c00326{bottom:330.907067pt;}
.y1b_c00326{bottom:349.307067pt;}
.y1a_c00326{bottom:367.707067pt;}
.y19_c00326{bottom:386.107067pt;}
.y18_c00326{bottom:404.507067pt;}
.y2d_c00326{bottom:408.827067pt;}
.y17_c00326{bottom:422.907067pt;}
.y2c_c00326{bottom:425.227067pt;}
.y16_c00326{bottom:441.307067pt;}
.y15_c00326{bottom:459.707067pt;}
.y14_c00326{bottom:478.107067pt;}
.y13_c00326{bottom:496.507067pt;}
.y12_c00326{bottom:514.907067pt;}
.y2b_c00326{bottom:518.187067pt;}
.y11_c00326{bottom:533.307067pt;}
.y10_c00326{bottom:551.707067pt;}
.yf_c00326{bottom:570.107067pt;}
.ye_c00326{bottom:584.907067pt;}
.y2a_c00326{bottom:598.107067pt;}
.y29_c00326{bottom:599.307067pt;}
.yd_c00326{bottom:673.707067pt;}
.yc_c00326{bottom:701.307067pt;}
.y28_c00326{bottom:725.867067pt;}
.yb_c00326{bottom:728.907067pt;}
.ya_c00326{bottom:764.507067pt;}
.y9_c00326{bottom:800.107067pt;}
.y8_c00326{bottom:827.707067pt;}
.y7_c00326{bottom:855.307067pt;}
.y6_c00326{bottom:882.907067pt;}
.y5_c00326{bottom:910.507067pt;}
.y4_c00326{bottom:946.107067pt;}
.y3_c00326{bottom:972.907067pt;}
.h1_c00326{height:56.156250pt;}
.h3_c00326{height:57.375000pt;}
.h6_c00326{height:64.156250pt;}
.h4_c00326{height:66.750000pt;}
.h2_c00326{height:77.763750pt;}
.h5_c00326{height:125.916250pt;}
.h0_c00326{height:1122.666667pt;}
.w1_c00326{width:793.333333pt;}
.w0_c00326{width:793.626667pt;}
.x0_c00326{left:0.000000pt;}
.x2_c00326{left:151.198342pt;}
.x4_c00326{left:167.193467pt;}
.x3_c00326{left:199.200000pt;}
.x9_c00326{left:334.560000pt;}
.x6_c00326{left:345.600000pt;}
.x8_c00326{left:440.960000pt;}
.xb_c00326{left:450.640000pt;}
.xc_c00326{left:497.920000pt;}
.x5_c00326{left:573.360000pt;}
.x7_c00326{left:582.726795pt;}
.xa_c00326{left:636.953467pt;}
.x1_c00326{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f719001d8ff1383deb18e107.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.093262;font-style:normal;font-weight:normal;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_61361bef86b3317615d02658.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00327;src:url('chunks/assets/font_c91182e8e19221c79c8e50cb.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00327{vertical-align:0.000000px;}
.ls2_c00327{letter-spacing:-0.028800px;}
.ls3_c00327{letter-spacing:-0.007200px;}
.ls0_c00327{letter-spacing:0.000000px;}
.ls1_c00327{letter-spacing:0.041940px;}
.sc__c00327{text-shadow:none;}
.sc0_c00327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00327{-webkit-text-stroke:0px transparent;}
.sc0_c00327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00327{word-spacing:-19.987200px;}
.ws1_c00327{word-spacing:0.000000px;}
.ws4_c00327{word-spacing:0.158400px;}
.ws3_c00327{word-spacing:0.165600px;}
.ws2_c00327{word-spacing:9.772020px;}
.fc0_c00327{color:rgb(0,0,0);}
.fs0_c00327{font-size:72.000000px;}
.fs1_c00327{font-size:83.880000px;}
.y0_c00327{bottom:0.000000px;}
.y2_c00327{bottom:46.830450px;}
.y1_c00327{bottom:67.530450px;}
.y10_c00327{bottom:148.260450px;}
.yf_c00327{bottom:188.220450px;}
.ye_c00327{bottom:218.010450px;}
.yd_c00327{bottom:238.710450px;}
.yc_c00327{bottom:255.270450px;}
.yb_c00327{bottom:537.420450px;}
.ya_c00327{bottom:577.470450px;}
.y9_c00327{bottom:607.260450px;}
.y8_c00327{bottom:623.820450px;}
.y7_c00327{bottom:944.220450px;}
.y6_c00327{bottom:984.270450px;}
.y5_c00327{bottom:1024.320450px;}
.y4_c00327{bottom:1064.370450px;}
.y3_c00327{bottom:1094.520450px;}
.h1_c00327{height:63.175781px;}
.h3_c00327{height:64.546875px;}
.h2_c00327{height:87.484219px;}
.h0_c00327{height:1263.000000px;}
.w1_c00327{width:892.500000px;}
.w0_c00327{width:892.830000px;}
.x0_c00327{left:0.000000px;}
.x2_c00327{left:127.620000px;}
.x3_c00327{left:208.620000px;}
.x5_c00327{left:485.370000px;}
.x1_c00327{left:695.880000px;}
.x4_c00327{left:710.370000px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls2_c00327{letter-spacing:-0.025600pt;}
.ls3_c00327{letter-spacing:-0.006400pt;}
.ls0_c00327{letter-spacing:0.000000pt;}
.ls1_c00327{letter-spacing:0.037280pt;}
.ws0_c00327{word-spacing:-17.766400pt;}
.ws1_c00327{word-spacing:0.000000pt;}
.ws4_c00327{word-spacing:0.140800pt;}
.ws3_c00327{word-spacing:0.147200pt;}
.ws2_c00327{word-spacing:8.686240pt;}
.fs0_c00327{font-size:64.000000pt;}
.fs1_c00327{font-size:74.560000pt;}
.y0_c00327{bottom:0.000000pt;}
.y2_c00327{bottom:41.627067pt;}
.y1_c00327{bottom:60.027067pt;}
.y10_c00327{bottom:131.787067pt;}
.yf_c00327{bottom:167.307067pt;}
.ye_c00327{bottom:193.787067pt;}
.yd_c00327{bottom:212.187067pt;}
.yc_c00327{bottom:226.907067pt;}
.yb_c00327{bottom:477.707067pt;}
.ya_c00327{bottom:513.307067pt;}
.y9_c00327{bottom:539.787067pt;}
.y8_c00327{bottom:554.507067pt;}
.y7_c00327{bottom:839.307067pt;}
.y6_c00327{bottom:874.907067pt;}
.y5_c00327{bottom:910.507067pt;}
.y4_c00327{bottom:946.107067pt;}
.y3_c00327{bottom:972.907067pt;}
.h1_c00327{height:56.156250pt;}
.h3_c00327{height:57.375000pt;}
.h2_c00327{height:77.763750pt;}
.h0_c00327{height:1122.666667pt;}
.w1_c00327{width:793.333333pt;}
.w0_c00327{width:793.626667pt;}
.x0_c00327{left:0.000000pt;}
.x2_c00327{left:113.440000pt;}
.x3_c00327{left:185.440000pt;}
.x5_c00327{left:431.440000pt;}
.x1_c00327{left:618.560000pt;}
.x4_c00327{left:631.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_92672ff8266b6d167acb0eed.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.093262;font-style:normal;font-weight:normal;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_7ad159cdd5143d9785ade066.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00328{vertical-align:0.000000px;}
.ls2_c00328{letter-spacing:-0.014400px;}
.ls1_c00328{letter-spacing:0.000000px;}
.ls3_c00328{letter-spacing:0.028800px;}
.ls0_c00328{letter-spacing:0.043200px;}
.ls4_c00328{letter-spacing:843.998400px;}
.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;}
}
.ws0_c00328{word-spacing:0.000000px;}
.ws2_c00328{word-spacing:0.158400px;}
.ws1_c00328{word-spacing:0.172800px;}
.fc0_c00328{color:rgb(0,0,0);}
.fs0_c00328{font-size:72.000000px;}
.y0_c00328{bottom:0.000000px;}
.y2_c00328{bottom:46.830450px;}
.y1_c00328{bottom:67.530450px;}
.ya_c00328{bottom:203.790450px;}
.y9_c00328{bottom:243.840450px;}
.y8_c00328{bottom:279.930450px;}
.y7_c00328{bottom:561.990450px;}
.y6_c00328{bottom:602.040450px;}
.y5_c00328{bottom:638.130450px;}
.y4_c00328{bottom:1057.440450px;}
.y3_c00328{bottom:1097.490450px;}
.h1_c00328{height:63.175781px;}
.h2_c00328{height:64.546875px;}
.h0_c00328{height:1263.000000px;}
.w1_c00328{width:892.500000px;}
.w0_c00328{width:892.830000px;}
.x0_c00328{left:0.000000px;}
.x2_c00328{left:170.100000px;}
.x3_c00328{left:685.350000px;}
.x4_c00328{left:725.850000px;}
.x1_c00328{left:738.360000px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls2_c00328{letter-spacing:-0.012800pt;}
.ls1_c00328{letter-spacing:0.000000pt;}
.ls3_c00328{letter-spacing:0.025600pt;}
.ls0_c00328{letter-spacing:0.038400pt;}
.ls4_c00328{letter-spacing:750.220800pt;}
.ws0_c00328{word-spacing:0.000000pt;}
.ws2_c00328{word-spacing:0.140800pt;}
.ws1_c00328{word-spacing:0.153600pt;}
.fs0_c00328{font-size:64.000000pt;}
.y0_c00328{bottom:0.000000pt;}
.y2_c00328{bottom:41.627067pt;}
.y1_c00328{bottom:60.027067pt;}
.ya_c00328{bottom:181.147067pt;}
.y9_c00328{bottom:216.747067pt;}
.y8_c00328{bottom:248.827067pt;}
.y7_c00328{bottom:499.547067pt;}
.y6_c00328{bottom:535.147067pt;}
.y5_c00328{bottom:567.227067pt;}
.y4_c00328{bottom:939.947067pt;}
.y3_c00328{bottom:975.547067pt;}
.h1_c00328{height:56.156250pt;}
.h2_c00328{height:57.375000pt;}
.h0_c00328{height:1122.666667pt;}
.w1_c00328{width:793.333333pt;}
.w0_c00328{width:793.626667pt;}
.x0_c00328{left:0.000000pt;}
.x2_c00328{left:151.200000pt;}
.x3_c00328{left:609.200000pt;}
.x4_c00328{left:645.200000pt;}
.x1_c00328{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e58b3aef61f80cd8dc2ef10b.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.106934;font-style: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;}
.ls0_c00329{letter-spacing:0.000000px;}
.ls1_c00329{letter-spacing:846.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;}
}
.ws0_c00329{word-spacing:0.000000px;}
.fc0_c00329{color:rgb(0,0,0);}
.fs0_c00329{font-size:72.000000px;}
.y0_c00329{bottom:0.000000px;}
.y2_c00329{bottom:46.830450px;}
.y1_c00329{bottom:67.530450px;}
.y4_c00329{bottom:1057.530450px;}
.y3_c00329{bottom:1097.490450px;}
.h1_c00329{height:63.175781px;}
.h2_c00329{height:64.546875px;}
.h0_c00329{height:1263.000000px;}
.w1_c00329{width:892.500000px;}
.w0_c00329{width:892.830000px;}
.x0_c00329{left:0.000000px;}
.x2_c00329{left:127.620000px;}
.x1_c00329{left:695.880000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls0_c00329{letter-spacing:0.000000pt;}
.ls1_c00329{letter-spacing:752.000000pt;}
.ws0_c00329{word-spacing:0.000000pt;}
.fs0_c00329{font-size:64.000000pt;}
.y0_c00329{bottom:0.000000pt;}
.y2_c00329{bottom:41.627067pt;}
.y1_c00329{bottom:60.027067pt;}
.y4_c00329{bottom:940.027067pt;}
.y3_c00329{bottom:975.547067pt;}
.h1_c00329{height:56.156250pt;}
.h2_c00329{height:57.375000pt;}
.h0_c00329{height:1122.666667pt;}
.w1_c00329{width:793.333333pt;}
.w0_c00329{width:793.626667pt;}
.x0_c00329{left:0.000000pt;}
.x2_c00329{left:113.440000pt;}
.x1_c00329{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bf2c5b642a66d5e6b9e265bc.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.093262;font-style:normal;font-weight:normal;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_fd1cfa69102c4f135a61d847.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00330;src:url('chunks/assets/font_4b5a96843f3cf972efc73ed1.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:1.106934;font-style:normal;font-weight:normal;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_d2366642d2acb70b2fd6e944.woff2')format("woff");}.ff4_c00330{font-family:ff4_c00330;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00330{letter-spacing:-0.072000px;}
.lsb_c00330{letter-spacing:-0.064800px;}
.ls5_c00330{letter-spacing:-0.057600px;}
.lsf_c00330{letter-spacing:-0.050400px;}
.ls7_c00330{letter-spacing:-0.043200px;}
.ls6_c00330{letter-spacing:-0.036000px;}
.ls8_c00330{letter-spacing:-0.028800px;}
.lsa_c00330{letter-spacing:-0.021600px;}
.lse_c00330{letter-spacing:-0.014400px;}
.lsd_c00330{letter-spacing:-0.007200px;}
.ls4_c00330{letter-spacing:0.000000px;}
.ls3_c00330{letter-spacing:0.007200px;}
.ls1_c00330{letter-spacing:0.036000px;}
.ls0_c00330{letter-spacing:0.067104px;}
.lsc_c00330{letter-spacing:0.122400px;}
.ls2_c00330{letter-spacing:0.144000px;}
.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;}
}
.ws8_c00330{word-spacing:-3.528000px;}
.ws9_c00330{word-spacing:-3.398400px;}
.wsa_c00330{word-spacing:-3.304800px;}
.ws26_c00330{word-spacing:-2.354400px;}
.ws27_c00330{word-spacing:-2.340000px;}
.ws25_c00330{word-spacing:-2.325600px;}
.ws21_c00330{word-spacing:-1.620000px;}
.ws20_c00330{word-spacing:-1.526400px;}
.wsc_c00330{word-spacing:-0.266400px;}
.ws3_c00330{word-spacing:-0.216000px;}
.wsd_c00330{word-spacing:-0.201600px;}
.ws2_c00330{word-spacing:-0.144000px;}
.ws0_c00330{word-spacing:0.000000px;}
.ws1_c00330{word-spacing:0.025164px;}
.ws17_c00330{word-spacing:0.194400px;}
.ws33_c00330{word-spacing:0.597600px;}
.ws34_c00330{word-spacing:0.698400px;}
.ws2f_c00330{word-spacing:0.878400px;}
.ws30_c00330{word-spacing:0.907200px;}
.ws2c_c00330{word-spacing:2.584800px;}
.ws2b_c00330{word-spacing:2.707200px;}
.ws31_c00330{word-spacing:3.074400px;}
.ws32_c00330{word-spacing:3.146400px;}
.ws13_c00330{word-spacing:5.155200px;}
.ws12_c00330{word-spacing:5.162400px;}
.ws4_c00330{word-spacing:6.314400px;}
.ws5_c00330{word-spacing:6.372000px;}
.ws11_c00330{word-spacing:7.308000px;}
.ws10_c00330{word-spacing:7.401600px;}
.ws14_c00330{word-spacing:9.921600px;}
.ws2a_c00330{word-spacing:11.671200px;}
.wsb_c00330{word-spacing:11.707200px;}
.ws29_c00330{word-spacing:19.627200px;}
.ws28_c00330{word-spacing:19.634400px;}
.ws1e_c00330{word-spacing:23.976000px;}
.ws1f_c00330{word-spacing:23.990400px;}
.wsf_c00330{word-spacing:25.308000px;}
.wse_c00330{word-spacing:25.401600px;}
.ws24_c00330{word-spacing:26.100000px;}
.ws18_c00330{word-spacing:30.693600px;}
.ws19_c00330{word-spacing:30.772800px;}
.ws1d_c00330{word-spacing:31.471200px;}
.ws1c_c00330{word-spacing:31.507200px;}
.ws7_c00330{word-spacing:32.587200px;}
.ws6_c00330{word-spacing:32.608800px;}
.ws22_c00330{word-spacing:32.925600px;}
.ws23_c00330{word-spacing:32.947200px;}
.ws16_c00330{word-spacing:33.242400px;}
.ws15_c00330{word-spacing:33.321600px;}
.ws2e_c00330{word-spacing:35.820000px;}
.ws2d_c00330{word-spacing:35.863200px;}
.ws1a_c00330{word-spacing:36.856800px;}
.ws1b_c00330{word-spacing:36.878400px;}
._4_c00330{margin-left:-32.760000px;}
._2_c00330{margin-left:-1.152000px;}
._1_c00330{width:1.425600px;}
._3_c00330{width:32.932800px;}
._0_c00330{width:153.332640px;}
.fc0_c00330{color:rgb(0,0,0);}
.fs0_c00330{font-size:72.000000px;}
.fs1_c00330{font-size:83.880000px;}
.y0_c00330{bottom:0.000000px;}
.y2_c00330{bottom:46.830450px;}
.y1_c00330{bottom:67.530450px;}
.y21_c00330{bottom:142.770450px;}
.y20_c00330{bottom:173.820450px;}
.y1f_c00330{bottom:204.870450px;}
.y1e_c00330{bottom:235.920450px;}
.y1d_c00330{bottom:266.970450px;}
.y1c_c00330{bottom:298.020450px;}
.y1b_c00330{bottom:329.070450px;}
.y1a_c00330{bottom:360.120450px;}
.y19_c00330{bottom:391.170450px;}
.y18_c00330{bottom:422.220450px;}
.y17_c00330{bottom:462.270450px;}
.y16_c00330{bottom:493.320450px;}
.y15_c00330{bottom:524.280450px;}
.y14_c00330{bottom:555.420450px;}
.y13_c00330{bottom:586.470450px;}
.y12_c00330{bottom:617.520450px;}
.y11_c00330{bottom:657.570450px;}
.y10_c00330{bottom:688.620450px;}
.yf_c00330{bottom:719.580450px;}
.ye_c00330{bottom:750.630450px;}
.yd_c00330{bottom:781.770450px;}
.yc_c00330{bottom:821.820450px;}
.yb_c00330{bottom:852.870450px;}
.ya_c00330{bottom:883.920450px;}
.y9_c00330{bottom:914.970450px;}
.y8_c00330{bottom:946.020450px;}
.y7_c00330{bottom:977.070450px;}
.y6_c00330{bottom:1008.120450px;}
.y5_c00330{bottom:1039.170450px;}
.y4_c00330{bottom:1068.870450px;}
.y3_c00330{bottom:1094.520450px;}
.h1_c00330{height:63.175781px;}
.h3_c00330{height:64.546875px;}
.h4_c00330{height:75.093750px;}
.h2_c00330{height:87.484219px;}
.h0_c00330{height:1263.000000px;}
.w1_c00330{width:892.500000px;}
.w0_c00330{width:892.830000px;}
.x0_c00330{left:0.000000px;}
.x2_c00330{left:170.100000px;}
.x3_c00330{left:197.100000px;}
.x1_c00330{left:738.360000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls9_c00330{letter-spacing:-0.064000pt;}
.lsb_c00330{letter-spacing:-0.057600pt;}
.ls5_c00330{letter-spacing:-0.051200pt;}
.lsf_c00330{letter-spacing:-0.044800pt;}
.ls7_c00330{letter-spacing:-0.038400pt;}
.ls6_c00330{letter-spacing:-0.032000pt;}
.ls8_c00330{letter-spacing:-0.025600pt;}
.lsa_c00330{letter-spacing:-0.019200pt;}
.lse_c00330{letter-spacing:-0.012800pt;}
.lsd_c00330{letter-spacing:-0.006400pt;}
.ls4_c00330{letter-spacing:0.000000pt;}
.ls3_c00330{letter-spacing:0.006400pt;}
.ls1_c00330{letter-spacing:0.032000pt;}
.ls0_c00330{letter-spacing:0.059648pt;}
.lsc_c00330{letter-spacing:0.108800pt;}
.ls2_c00330{letter-spacing:0.128000pt;}
.ws8_c00330{word-spacing:-3.136000pt;}
.ws9_c00330{word-spacing:-3.020800pt;}
.wsa_c00330{word-spacing:-2.937600pt;}
.ws26_c00330{word-spacing:-2.092800pt;}
.ws27_c00330{word-spacing:-2.080000pt;}
.ws25_c00330{word-spacing:-2.067200pt;}
.ws21_c00330{word-spacing:-1.440000pt;}
.ws20_c00330{word-spacing:-1.356800pt;}
.wsc_c00330{word-spacing:-0.236800pt;}
.ws3_c00330{word-spacing:-0.192000pt;}
.wsd_c00330{word-spacing:-0.179200pt;}
.ws2_c00330{word-spacing:-0.128000pt;}
.ws0_c00330{word-spacing:0.000000pt;}
.ws1_c00330{word-spacing:0.022368pt;}
.ws17_c00330{word-spacing:0.172800pt;}
.ws33_c00330{word-spacing:0.531200pt;}
.ws34_c00330{word-spacing:0.620800pt;}
.ws2f_c00330{word-spacing:0.780800pt;}
.ws30_c00330{word-spacing:0.806400pt;}
.ws2c_c00330{word-spacing:2.297600pt;}
.ws2b_c00330{word-spacing:2.406400pt;}
.ws31_c00330{word-spacing:2.732800pt;}
.ws32_c00330{word-spacing:2.796800pt;}
.ws13_c00330{word-spacing:4.582400pt;}
.ws12_c00330{word-spacing:4.588800pt;}
.ws4_c00330{word-spacing:5.612800pt;}
.ws5_c00330{word-spacing:5.664000pt;}
.ws11_c00330{word-spacing:6.496000pt;}
.ws10_c00330{word-spacing:6.579200pt;}
.ws14_c00330{word-spacing:8.819200pt;}
.ws2a_c00330{word-spacing:10.374400pt;}
.wsb_c00330{word-spacing:10.406400pt;}
.ws29_c00330{word-spacing:17.446400pt;}
.ws28_c00330{word-spacing:17.452800pt;}
.ws1e_c00330{word-spacing:21.312000pt;}
.ws1f_c00330{word-spacing:21.324800pt;}
.wsf_c00330{word-spacing:22.496000pt;}
.wse_c00330{word-spacing:22.579200pt;}
.ws24_c00330{word-spacing:23.200000pt;}
.ws18_c00330{word-spacing:27.283200pt;}
.ws19_c00330{word-spacing:27.353600pt;}
.ws1d_c00330{word-spacing:27.974400pt;}
.ws1c_c00330{word-spacing:28.006400pt;}
.ws7_c00330{word-spacing:28.966400pt;}
.ws6_c00330{word-spacing:28.985600pt;}
.ws22_c00330{word-spacing:29.267200pt;}
.ws23_c00330{word-spacing:29.286400pt;}
.ws16_c00330{word-spacing:29.548800pt;}
.ws15_c00330{word-spacing:29.619200pt;}
.ws2e_c00330{word-spacing:31.840000pt;}
.ws2d_c00330{word-spacing:31.878400pt;}
.ws1a_c00330{word-spacing:32.761600pt;}
.ws1b_c00330{word-spacing:32.780800pt;}
._4_c00330{margin-left:-29.120000pt;}
._2_c00330{margin-left:-1.024000pt;}
._1_c00330{width:1.267200pt;}
._3_c00330{width:29.273600pt;}
._0_c00330{width:136.295680pt;}
.fs0_c00330{font-size:64.000000pt;}
.fs1_c00330{font-size:74.560000pt;}
.y0_c00330{bottom:0.000000pt;}
.y2_c00330{bottom:41.627067pt;}
.y1_c00330{bottom:60.027067pt;}
.y21_c00330{bottom:126.907067pt;}
.y20_c00330{bottom:154.507067pt;}
.y1f_c00330{bottom:182.107067pt;}
.y1e_c00330{bottom:209.707067pt;}
.y1d_c00330{bottom:237.307067pt;}
.y1c_c00330{bottom:264.907067pt;}
.y1b_c00330{bottom:292.507067pt;}
.y1a_c00330{bottom:320.107067pt;}
.y19_c00330{bottom:347.707067pt;}
.y18_c00330{bottom:375.307067pt;}
.y17_c00330{bottom:410.907067pt;}
.y16_c00330{bottom:438.507067pt;}
.y15_c00330{bottom:466.027067pt;}
.y14_c00330{bottom:493.707067pt;}
.y13_c00330{bottom:521.307067pt;}
.y12_c00330{bottom:548.907067pt;}
.y11_c00330{bottom:584.507067pt;}
.y10_c00330{bottom:612.107067pt;}
.yf_c00330{bottom:639.627067pt;}
.ye_c00330{bottom:667.227067pt;}
.yd_c00330{bottom:694.907067pt;}
.yc_c00330{bottom:730.507067pt;}
.yb_c00330{bottom:758.107067pt;}
.ya_c00330{bottom:785.707067pt;}
.y9_c00330{bottom:813.307067pt;}
.y8_c00330{bottom:840.907067pt;}
.y7_c00330{bottom:868.507067pt;}
.y6_c00330{bottom:896.107067pt;}
.y5_c00330{bottom:923.707067pt;}
.y4_c00330{bottom:950.107067pt;}
.y3_c00330{bottom:972.907067pt;}
.h1_c00330{height:56.156250pt;}
.h3_c00330{height:57.375000pt;}
.h4_c00330{height:66.750000pt;}
.h2_c00330{height:77.763750pt;}
.h0_c00330{height:1122.666667pt;}
.w1_c00330{width:793.333333pt;}
.w0_c00330{width:793.626667pt;}
.x0_c00330{left:0.000000pt;}
.x2_c00330{left:151.200000pt;}
.x3_c00330{left:175.200000pt;}
.x1_c00330{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_188ccaace393374d76db8f96.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.093262;font-style:normal;font-weight:normal;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_bf6e25b9019028496fd1baff.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.106934;font-style:normal;font-weight:normal;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_616fd1f888f6720a4eca761e.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsf_c00331{letter-spacing:-0.216000px;}
.lsd_c00331{letter-spacing:-0.072000px;}
.ls8_c00331{letter-spacing:-0.064800px;}
.lsc_c00331{letter-spacing:-0.057600px;}
.ls5_c00331{letter-spacing:-0.050400px;}
.ls4_c00331{letter-spacing:-0.043200px;}
.ls9_c00331{letter-spacing:-0.036000px;}
.ls6_c00331{letter-spacing:-0.028800px;}
.ls7_c00331{letter-spacing:-0.021600px;}
.lsb_c00331{letter-spacing:-0.014400px;}
.ls3_c00331{letter-spacing:-0.007200px;}
.ls2_c00331{letter-spacing:0.000000px;}
.ls0_c00331{letter-spacing:0.014400px;}
.lse_c00331{letter-spacing:0.021600px;}
.lsa_c00331{letter-spacing:0.057600px;}
.ls1_c00331{letter-spacing:0.144000px;}
.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;}
}
.wsb_c00331{word-spacing:-3.405600px;}
.ws15_c00331{word-spacing:-2.736000px;}
.ws16_c00331{word-spacing:-2.685600px;}
.ws14_c00331{word-spacing:-2.512800px;}
.ws8_c00331{word-spacing:-2.296800px;}
.ws7_c00331{word-spacing:-0.540000px;}
.ws0_c00331{word-spacing:0.000000px;}
.ws6_c00331{word-spacing:0.158400px;}
.ws29_c00331{word-spacing:0.172800px;}
.ws2b_c00331{word-spacing:0.259200px;}
.ws25_c00331{word-spacing:0.554400px;}
.ws26_c00331{word-spacing:0.568800px;}
.ws22_c00331{word-spacing:1.576800px;}
.ws20_c00331{word-spacing:1.612800px;}
.ws21_c00331{word-spacing:1.735200px;}
.wsc_c00331{word-spacing:1.994400px;}
.wsd_c00331{word-spacing:2.066400px;}
.ws4_c00331{word-spacing:3.024000px;}
.ws3_c00331{word-spacing:3.081600px;}
.ws2a_c00331{word-spacing:3.103200px;}
.ws28_c00331{word-spacing:5.572800px;}
.ws27_c00331{word-spacing:5.644800px;}
.ws1a_c00331{word-spacing:6.616800px;}
.ws19_c00331{word-spacing:6.667200px;}
.ws5_c00331{word-spacing:8.827200px;}
.ws18_c00331{word-spacing:9.093600px;}
.ws17_c00331{word-spacing:9.136800px;}
.ws1b_c00331{word-spacing:9.151200px;}
.ws1c_c00331{word-spacing:9.172800px;}
.ws24_c00331{word-spacing:11.246400px;}
.ws23_c00331{word-spacing:11.354400px;}
.ws2f_c00331{word-spacing:13.500000px;}
.ws2e_c00331{word-spacing:13.636800px;}
.wsf_c00331{word-spacing:16.372800px;}
.wse_c00331{word-spacing:16.380000px;}
.ws30_c00331{word-spacing:19.627200px;}
.ws2_c00331{word-spacing:23.558400px;}
.ws1_c00331{word-spacing:23.565600px;}
.ws1f_c00331{word-spacing:24.184800px;}
.ws1e_c00331{word-spacing:24.321600px;}
.ws10_c00331{word-spacing:28.288800px;}
.wsa_c00331{word-spacing:30.312000px;}
.ws2c_c00331{word-spacing:30.434400px;}
.ws9_c00331{word-spacing:30.441600px;}
.ws2d_c00331{word-spacing:30.542400px;}
.ws1d_c00331{word-spacing:32.256000px;}
.ws13_c00331{word-spacing:38.332800px;}
.ws12_c00331{word-spacing:56.246400px;}
.ws11_c00331{word-spacing:56.347200px;}
._0_c00331{width:1.224000px;}
.fc0_c00331{color:rgb(0,0,0);}
.fs0_c00331{font-size:72.000000px;}
.y0_c00331{bottom:0.000000px;}
.y2_c00331{bottom:46.830450px;}
.y1_c00331{bottom:67.530450px;}
.y22_c00331{bottom:162.480450px;}
.y21_c00331{bottom:193.530450px;}
.y20_c00331{bottom:224.580450px;}
.y1f_c00331{bottom:264.630450px;}
.y1e_c00331{bottom:295.680450px;}
.y1d_c00331{bottom:335.730450px;}
.y1c_c00331{bottom:366.690450px;}
.y1b_c00331{bottom:397.740450px;}
.y1a_c00331{bottom:428.790450px;}
.y19_c00331{bottom:459.840450px;}
.y18_c00331{bottom:490.890450px;}
.y17_c00331{bottom:521.940450px;}
.y16_c00331{bottom:552.990450px;}
.y15_c00331{bottom:584.040450px;}
.y14_c00331{bottom:615.090450px;}
.y13_c00331{bottom:646.140450px;}
.y12_c00331{bottom:677.190450px;}
.y11_c00331{bottom:708.240450px;}
.y10_c00331{bottom:739.290450px;}
.yf_c00331{bottom:770.340450px;}
.ye_c00331{bottom:810.390450px;}
.yd_c00331{bottom:840.090450px;}
.yc_c00331{bottom:860.790450px;}
.yb_c00331{bottom:881.490450px;}
.ya_c00331{bottom:902.190450px;}
.y9_c00331{bottom:922.890450px;}
.y8_c00331{bottom:943.590450px;}
.y7_c00331{bottom:964.290450px;}
.y6_c00331{bottom:1004.340450px;}
.y5_c00331{bottom:1035.390450px;}
.y4_c00331{bottom:1066.440450px;}
.y3_c00331{bottom:1097.490450px;}
.h1_c00331{height:63.175781px;}
.h2_c00331{height:64.546875px;}
.h3_c00331{height:75.093750px;}
.h0_c00331{height:1263.000000px;}
.w1_c00331{width:892.500000px;}
.w0_c00331{width:892.830000px;}
.x0_c00331{left:0.000000px;}
.x2_c00331{left:127.620000px;}
.x3_c00331{left:202.950000px;}
.x1_c00331{left:695.880000px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.lsf_c00331{letter-spacing:-0.192000pt;}
.lsd_c00331{letter-spacing:-0.064000pt;}
.ls8_c00331{letter-spacing:-0.057600pt;}
.lsc_c00331{letter-spacing:-0.051200pt;}
.ls5_c00331{letter-spacing:-0.044800pt;}
.ls4_c00331{letter-spacing:-0.038400pt;}
.ls9_c00331{letter-spacing:-0.032000pt;}
.ls6_c00331{letter-spacing:-0.025600pt;}
.ls7_c00331{letter-spacing:-0.019200pt;}
.lsb_c00331{letter-spacing:-0.012800pt;}
.ls3_c00331{letter-spacing:-0.006400pt;}
.ls2_c00331{letter-spacing:0.000000pt;}
.ls0_c00331{letter-spacing:0.012800pt;}
.lse_c00331{letter-spacing:0.019200pt;}
.lsa_c00331{letter-spacing:0.051200pt;}
.ls1_c00331{letter-spacing:0.128000pt;}
.wsb_c00331{word-spacing:-3.027200pt;}
.ws15_c00331{word-spacing:-2.432000pt;}
.ws16_c00331{word-spacing:-2.387200pt;}
.ws14_c00331{word-spacing:-2.233600pt;}
.ws8_c00331{word-spacing:-2.041600pt;}
.ws7_c00331{word-spacing:-0.480000pt;}
.ws0_c00331{word-spacing:0.000000pt;}
.ws6_c00331{word-spacing:0.140800pt;}
.ws29_c00331{word-spacing:0.153600pt;}
.ws2b_c00331{word-spacing:0.230400pt;}
.ws25_c00331{word-spacing:0.492800pt;}
.ws26_c00331{word-spacing:0.505600pt;}
.ws22_c00331{word-spacing:1.401600pt;}
.ws20_c00331{word-spacing:1.433600pt;}
.ws21_c00331{word-spacing:1.542400pt;}
.wsc_c00331{word-spacing:1.772800pt;}
.wsd_c00331{word-spacing:1.836800pt;}
.ws4_c00331{word-spacing:2.688000pt;}
.ws3_c00331{word-spacing:2.739200pt;}
.ws2a_c00331{word-spacing:2.758400pt;}
.ws28_c00331{word-spacing:4.953600pt;}
.ws27_c00331{word-spacing:5.017600pt;}
.ws1a_c00331{word-spacing:5.881600pt;}
.ws19_c00331{word-spacing:5.926400pt;}
.ws5_c00331{word-spacing:7.846400pt;}
.ws18_c00331{word-spacing:8.083200pt;}
.ws17_c00331{word-spacing:8.121600pt;}
.ws1b_c00331{word-spacing:8.134400pt;}
.ws1c_c00331{word-spacing:8.153600pt;}
.ws24_c00331{word-spacing:9.996800pt;}
.ws23_c00331{word-spacing:10.092800pt;}
.ws2f_c00331{word-spacing:12.000000pt;}
.ws2e_c00331{word-spacing:12.121600pt;}
.wsf_c00331{word-spacing:14.553600pt;}
.wse_c00331{word-spacing:14.560000pt;}
.ws30_c00331{word-spacing:17.446400pt;}
.ws2_c00331{word-spacing:20.940800pt;}
.ws1_c00331{word-spacing:20.947200pt;}
.ws1f_c00331{word-spacing:21.497600pt;}
.ws1e_c00331{word-spacing:21.619200pt;}
.ws10_c00331{word-spacing:25.145600pt;}
.wsa_c00331{word-spacing:26.944000pt;}
.ws2c_c00331{word-spacing:27.052800pt;}
.ws9_c00331{word-spacing:27.059200pt;}
.ws2d_c00331{word-spacing:27.148800pt;}
.ws1d_c00331{word-spacing:28.672000pt;}
.ws13_c00331{word-spacing:34.073600pt;}
.ws12_c00331{word-spacing:49.996800pt;}
.ws11_c00331{word-spacing:50.086400pt;}
._0_c00331{width:1.088000pt;}
.fs0_c00331{font-size:64.000000pt;}
.y0_c00331{bottom:0.000000pt;}
.y2_c00331{bottom:41.627067pt;}
.y1_c00331{bottom:60.027067pt;}
.y22_c00331{bottom:144.427067pt;}
.y21_c00331{bottom:172.027067pt;}
.y20_c00331{bottom:199.627067pt;}
.y1f_c00331{bottom:235.227067pt;}
.y1e_c00331{bottom:262.827067pt;}
.y1d_c00331{bottom:298.427067pt;}
.y1c_c00331{bottom:325.947067pt;}
.y1b_c00331{bottom:353.547067pt;}
.y1a_c00331{bottom:381.147067pt;}
.y19_c00331{bottom:408.747067pt;}
.y18_c00331{bottom:436.347067pt;}
.y17_c00331{bottom:463.947067pt;}
.y16_c00331{bottom:491.547067pt;}
.y15_c00331{bottom:519.147067pt;}
.y14_c00331{bottom:546.747067pt;}
.y13_c00331{bottom:574.347067pt;}
.y12_c00331{bottom:601.947067pt;}
.y11_c00331{bottom:629.547067pt;}
.y10_c00331{bottom:657.147067pt;}
.yf_c00331{bottom:684.747067pt;}
.ye_c00331{bottom:720.347067pt;}
.yd_c00331{bottom:746.747067pt;}
.yc_c00331{bottom:765.147067pt;}
.yb_c00331{bottom:783.547067pt;}
.ya_c00331{bottom:801.947067pt;}
.y9_c00331{bottom:820.347067pt;}
.y8_c00331{bottom:838.747067pt;}
.y7_c00331{bottom:857.147067pt;}
.y6_c00331{bottom:892.747067pt;}
.y5_c00331{bottom:920.347067pt;}
.y4_c00331{bottom:947.947067pt;}
.y3_c00331{bottom:975.547067pt;}
.h1_c00331{height:56.156250pt;}
.h2_c00331{height:57.375000pt;}
.h3_c00331{height:66.750000pt;}
.h0_c00331{height:1122.666667pt;}
.w1_c00331{width:793.333333pt;}
.w0_c00331{width:793.626667pt;}
.x0_c00331{left:0.000000pt;}
.x2_c00331{left:113.440000pt;}
.x3_c00331{left:180.400000pt;}
.x1_c00331{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b346ca62cd5fd2a41cdb0cad.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.093262;font-style:normal;font-weight:normal;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_4d22078e1ba7dc5f05b77870.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.106934;font-style:normal;font-weight:normal;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_61d4cfbfa044bdddee7b47bc.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.ls8_c00332{letter-spacing:-0.064800px;}
.lsb_c00332{letter-spacing:-0.057600px;}
.ls6_c00332{letter-spacing:-0.050400px;}
.ls2_c00332{letter-spacing:-0.043200px;}
.ls3_c00332{letter-spacing:-0.036000px;}
.ls9_c00332{letter-spacing:-0.028800px;}
.ls5_c00332{letter-spacing:-0.021600px;}
.ls4_c00332{letter-spacing:-0.014400px;}
.ls7_c00332{letter-spacing:-0.007200px;}
.ls1_c00332{letter-spacing:0.000000px;}
.ls0_c00332{letter-spacing:0.007200px;}
.lsa_c00332{letter-spacing:0.014400px;}
.lsc_c00332{letter-spacing:0.021600px;}
.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;}
}
.wsd_c00332{word-spacing:-2.325600px;}
.wsc_c00332{word-spacing:-2.296800px;}
.ws26_c00332{word-spacing:-0.972000px;}
.ws27_c00332{word-spacing:-0.885600px;}
.ws29_c00332{word-spacing:-0.662400px;}
.ws28_c00332{word-spacing:-0.525600px;}
.ws0_c00332{word-spacing:0.000000px;}
.ws15_c00332{word-spacing:0.036000px;}
.wsf_c00332{word-spacing:0.144000px;}
.ws1e_c00332{word-spacing:0.158400px;}
.ws17_c00332{word-spacing:0.172800px;}
.wsb_c00332{word-spacing:0.180000px;}
.wse_c00332{word-spacing:0.187200px;}
.ws2_c00332{word-spacing:0.194400px;}
.wsa_c00332{word-spacing:0.201600px;}
.ws14_c00332{word-spacing:0.208800px;}
.ws9_c00332{word-spacing:0.280800px;}
.ws25_c00332{word-spacing:0.316800px;}
.ws8_c00332{word-spacing:1.180800px;}
.ws7_c00332{word-spacing:1.231200px;}
.ws13_c00332{word-spacing:5.220000px;}
.ws12_c00332{word-spacing:5.234400px;}
.ws20_c00332{word-spacing:5.313600px;}
.ws1f_c00332{word-spacing:5.371200px;}
.ws22_c00332{word-spacing:7.387200px;}
.ws21_c00332{word-spacing:7.394400px;}
.ws1c_c00332{word-spacing:9.914400px;}
.ws1d_c00332{word-spacing:9.957600px;}
.ws1_c00332{word-spacing:10.281600px;}
.ws3_c00332{word-spacing:12.679200px;}
.ws5_c00332{word-spacing:12.780000px;}
.ws4_c00332{word-spacing:12.794400px;}
.ws6_c00332{word-spacing:12.808800px;}
.ws18_c00332{word-spacing:13.168800px;}
.ws19_c00332{word-spacing:13.262400px;}
.ws11_c00332{word-spacing:15.674400px;}
.ws10_c00332{word-spacing:15.696000px;}
.ws16_c00332{word-spacing:21.081600px;}
.ws23_c00332{word-spacing:21.693600px;}
.ws24_c00332{word-spacing:21.801600px;}
.ws1b_c00332{word-spacing:126.136800px;}
.ws1a_c00332{word-spacing:126.194400px;}
._6_c00332{margin-left:-71.280000px;}
._5_c00332{width:1.080000px;}
._3_c00332{width:33.840000px;}
._1_c00332{width:39.240000px;}
._4_c00332{width:41.760000px;}
._7_c00332{width:45.000000px;}
._9_c00332{width:47.520000px;}
._8_c00332{width:49.536000px;}
._2_c00332{width:54.720000px;}
._0_c00332{width:57.240000px;}
.fc0_c00332{color:rgb(0,0,0);}
.fs0_c00332{font-size:72.000000px;}
.y0_c00332{bottom:0.000000px;}
.y2_c00332{bottom:46.830450px;}
.y1_c00332{bottom:67.530450px;}
.y20_c00332{bottom:147.720450px;}
.y1f_c00332{bottom:178.770450px;}
.y1e_c00332{bottom:218.820450px;}
.y1d_c00332{bottom:251.130450px;}
.y1c_c00332{bottom:282.180450px;}
.y1b_c00332{bottom:313.140450px;}
.y1a_c00332{bottom:345.450450px;}
.y19_c00332{bottom:376.500450px;}
.y18_c00332{bottom:408.810450px;}
.y17_c00332{bottom:439.770450px;}
.y16_c00332{bottom:472.080450px;}
.y15_c00332{bottom:503.130450px;}
.y14_c00332{bottom:535.350450px;}
.y13_c00332{bottom:566.400450px;}
.y12_c00332{bottom:598.620450px;}
.y11_c00332{bottom:630.930450px;}
.y10_c00332{bottom:661.980450px;}
.yf_c00332{bottom:694.200450px;}
.ye_c00332{bottom:726.510450px;}
.yd_c00332{bottom:757.560450px;}
.yc_c00332{bottom:788.610450px;}
.yb_c00332{bottom:820.920450px;}
.ya_c00332{bottom:851.880450px;}
.y9_c00332{bottom:893.190450px;}
.y8_c00332{bottom:933.240450px;}
.y7_c00332{bottom:964.290450px;}
.y6_c00332{bottom:995.340450px;}
.y5_c00332{bottom:1026.390450px;}
.y4_c00332{bottom:1066.440450px;}
.y3_c00332{bottom:1097.490450px;}
.h1_c00332{height:63.175781px;}
.h2_c00332{height:64.546875px;}
.h0_c00332{height:1263.000000px;}
.w1_c00332{width:892.500000px;}
.w0_c00332{width:892.830000px;}
.x0_c00332{left:0.000000px;}
.x2_c00332{left:170.100000px;}
.x3_c00332{left:197.100000px;}
.x4_c00332{left:224.100000px;}
.x1_c00332{left:738.360000px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls8_c00332{letter-spacing:-0.057600pt;}
.lsb_c00332{letter-spacing:-0.051200pt;}
.ls6_c00332{letter-spacing:-0.044800pt;}
.ls2_c00332{letter-spacing:-0.038400pt;}
.ls3_c00332{letter-spacing:-0.032000pt;}
.ls9_c00332{letter-spacing:-0.025600pt;}
.ls5_c00332{letter-spacing:-0.019200pt;}
.ls4_c00332{letter-spacing:-0.012800pt;}
.ls7_c00332{letter-spacing:-0.006400pt;}
.ls1_c00332{letter-spacing:0.000000pt;}
.ls0_c00332{letter-spacing:0.006400pt;}
.lsa_c00332{letter-spacing:0.012800pt;}
.lsc_c00332{letter-spacing:0.019200pt;}
.wsd_c00332{word-spacing:-2.067200pt;}
.wsc_c00332{word-spacing:-2.041600pt;}
.ws26_c00332{word-spacing:-0.864000pt;}
.ws27_c00332{word-spacing:-0.787200pt;}
.ws29_c00332{word-spacing:-0.588800pt;}
.ws28_c00332{word-spacing:-0.467200pt;}
.ws0_c00332{word-spacing:0.000000pt;}
.ws15_c00332{word-spacing:0.032000pt;}
.wsf_c00332{word-spacing:0.128000pt;}
.ws1e_c00332{word-spacing:0.140800pt;}
.ws17_c00332{word-spacing:0.153600pt;}
.wsb_c00332{word-spacing:0.160000pt;}
.wse_c00332{word-spacing:0.166400pt;}
.ws2_c00332{word-spacing:0.172800pt;}
.wsa_c00332{word-spacing:0.179200pt;}
.ws14_c00332{word-spacing:0.185600pt;}
.ws9_c00332{word-spacing:0.249600pt;}
.ws25_c00332{word-spacing:0.281600pt;}
.ws8_c00332{word-spacing:1.049600pt;}
.ws7_c00332{word-spacing:1.094400pt;}
.ws13_c00332{word-spacing:4.640000pt;}
.ws12_c00332{word-spacing:4.652800pt;}
.ws20_c00332{word-spacing:4.723200pt;}
.ws1f_c00332{word-spacing:4.774400pt;}
.ws22_c00332{word-spacing:6.566400pt;}
.ws21_c00332{word-spacing:6.572800pt;}
.ws1c_c00332{word-spacing:8.812800pt;}
.ws1d_c00332{word-spacing:8.851200pt;}
.ws1_c00332{word-spacing:9.139200pt;}
.ws3_c00332{word-spacing:11.270400pt;}
.ws5_c00332{word-spacing:11.360000pt;}
.ws4_c00332{word-spacing:11.372800pt;}
.ws6_c00332{word-spacing:11.385600pt;}
.ws18_c00332{word-spacing:11.705600pt;}
.ws19_c00332{word-spacing:11.788800pt;}
.ws11_c00332{word-spacing:13.932800pt;}
.ws10_c00332{word-spacing:13.952000pt;}
.ws16_c00332{word-spacing:18.739200pt;}
.ws23_c00332{word-spacing:19.283200pt;}
.ws24_c00332{word-spacing:19.379200pt;}
.ws1b_c00332{word-spacing:112.121600pt;}
.ws1a_c00332{word-spacing:112.172800pt;}
._6_c00332{margin-left:-63.360000pt;}
._5_c00332{width:0.960000pt;}
._3_c00332{width:30.080000pt;}
._1_c00332{width:34.880000pt;}
._4_c00332{width:37.120000pt;}
._7_c00332{width:40.000000pt;}
._9_c00332{width:42.240000pt;}
._8_c00332{width:44.032000pt;}
._2_c00332{width:48.640000pt;}
._0_c00332{width:50.880000pt;}
.fs0_c00332{font-size:64.000000pt;}
.y0_c00332{bottom:0.000000pt;}
.y2_c00332{bottom:41.627067pt;}
.y1_c00332{bottom:60.027067pt;}
.y20_c00332{bottom:131.307067pt;}
.y1f_c00332{bottom:158.907067pt;}
.y1e_c00332{bottom:194.507067pt;}
.y1d_c00332{bottom:223.227067pt;}
.y1c_c00332{bottom:250.827067pt;}
.y1b_c00332{bottom:278.347067pt;}
.y1a_c00332{bottom:307.067067pt;}
.y19_c00332{bottom:334.667067pt;}
.y18_c00332{bottom:363.387067pt;}
.y17_c00332{bottom:390.907067pt;}
.y16_c00332{bottom:419.627067pt;}
.y15_c00332{bottom:447.227067pt;}
.y14_c00332{bottom:475.867067pt;}
.y13_c00332{bottom:503.467067pt;}
.y12_c00332{bottom:532.107067pt;}
.y11_c00332{bottom:560.827067pt;}
.y10_c00332{bottom:588.427067pt;}
.yf_c00332{bottom:617.067067pt;}
.ye_c00332{bottom:645.787067pt;}
.yd_c00332{bottom:673.387067pt;}
.yc_c00332{bottom:700.987067pt;}
.yb_c00332{bottom:729.707067pt;}
.ya_c00332{bottom:757.227067pt;}
.y9_c00332{bottom:793.947067pt;}
.y8_c00332{bottom:829.547067pt;}
.y7_c00332{bottom:857.147067pt;}
.y6_c00332{bottom:884.747067pt;}
.y5_c00332{bottom:912.347067pt;}
.y4_c00332{bottom:947.947067pt;}
.y3_c00332{bottom:975.547067pt;}
.h1_c00332{height:56.156250pt;}
.h2_c00332{height:57.375000pt;}
.h0_c00332{height:1122.666667pt;}
.w1_c00332{width:793.333333pt;}
.w0_c00332{width:793.626667pt;}
.x0_c00332{left:0.000000pt;}
.x2_c00332{left:151.200000pt;}
.x3_c00332{left:175.200000pt;}
.x4_c00332{left:199.200000pt;}
.x1_c00332{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5e1c5f61476dc25a6d2d29f6.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.093262;font-style:normal;font-weight:normal;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_3e81294cbd6ec44362948781.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.106934;font-style: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.079200px;}
.lsa_c00333{letter-spacing:-0.072000px;}
.ls7_c00333{letter-spacing:-0.064800px;}
.lsb_c00333{letter-spacing:-0.057600px;}
.ls8_c00333{letter-spacing:-0.050400px;}
.ls3_c00333{letter-spacing:-0.043200px;}
.ls1_c00333{letter-spacing:-0.036000px;}
.ls4_c00333{letter-spacing:-0.028800px;}
.ls6_c00333{letter-spacing:-0.021600px;}
.ls5_c00333{letter-spacing:-0.014400px;}
.ls0_c00333{letter-spacing:0.000000px;}
.ls9_c00333{letter-spacing:0.007200px;}
.lsc_c00333{letter-spacing:843.998400px;}
.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;}
}
.wsd_c00333{word-spacing:-1.303200px;}
.ws18_c00333{word-spacing:-0.144000px;}
.ws17_c00333{word-spacing:-0.129600px;}
.ws0_c00333{word-spacing:0.000000px;}
.ws1a_c00333{word-spacing:0.172800px;}
.wsa_c00333{word-spacing:0.180000px;}
.wsf_c00333{word-spacing:0.892800px;}
.ws10_c00333{word-spacing:0.907200px;}
.ws11_c00333{word-spacing:1.951200px;}
.ws12_c00333{word-spacing:1.972800px;}
.wsb_c00333{word-spacing:3.801600px;}
.wsc_c00333{word-spacing:3.852000px;}
.ws6_c00333{word-spacing:6.206400px;}
.ws5_c00333{word-spacing:6.307200px;}
.ws19_c00333{word-spacing:7.027200px;}
.ws7_c00333{word-spacing:8.820000px;}
.ws8_c00333{word-spacing:8.834400px;}
.ws16_c00333{word-spacing:18.511200px;}
.ws15_c00333{word-spacing:18.568800px;}
.ws1_c00333{word-spacing:28.274400px;}
.wse_c00333{word-spacing:28.303200px;}
.ws2_c00333{word-spacing:28.317600px;}
.ws14_c00333{word-spacing:31.111200px;}
.ws13_c00333{word-spacing:31.132800px;}
.ws4_c00333{word-spacing:36.187200px;}
.ws3_c00333{word-spacing:36.316800px;}
.ws9_c00333{word-spacing:53.467200px;}
._0_c00333{width:1.008000px;}
.fc0_c00333{color:rgb(0,0,0);}
.fs0_c00333{font-size:72.000000px;}
.y0_c00333{bottom:0.000000px;}
.y2_c00333{bottom:46.830450px;}
.y1_c00333{bottom:67.530450px;}
.y16_c00333{bottom:471.540450px;}
.y15_c00333{bottom:511.590450px;}
.y14_c00333{bottom:551.640450px;}
.y13_c00333{bottom:591.690450px;}
.y12_c00333{bottom:622.740450px;}
.y11_c00333{bottom:653.790450px;}
.y10_c00333{bottom:684.840450px;}
.yf_c00333{bottom:715.890450px;}
.ye_c00333{bottom:746.940450px;}
.yd_c00333{bottom:777.990450px;}
.yc_c00333{bottom:809.040450px;}
.yb_c00333{bottom:840.090450px;}
.ya_c00333{bottom:871.140450px;}
.y9_c00333{bottom:902.190450px;}
.y8_c00333{bottom:942.240450px;}
.y7_c00333{bottom:973.290450px;}
.y6_c00333{bottom:1004.340450px;}
.y5_c00333{bottom:1035.390450px;}
.y4_c00333{bottom:1066.440450px;}
.y3_c00333{bottom:1097.490450px;}
.h1_c00333{height:63.175781px;}
.h2_c00333{height:64.546875px;}
.h0_c00333{height:1263.000000px;}
.w1_c00333{width:892.500000px;}
.w0_c00333{width:892.830000px;}
.x0_c00333{left:0.000000px;}
.x2_c00333{left:127.620000px;}
.x1_c00333{left:695.880000px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls2_c00333{letter-spacing:-0.070400pt;}
.lsa_c00333{letter-spacing:-0.064000pt;}
.ls7_c00333{letter-spacing:-0.057600pt;}
.lsb_c00333{letter-spacing:-0.051200pt;}
.ls8_c00333{letter-spacing:-0.044800pt;}
.ls3_c00333{letter-spacing:-0.038400pt;}
.ls1_c00333{letter-spacing:-0.032000pt;}
.ls4_c00333{letter-spacing:-0.025600pt;}
.ls6_c00333{letter-spacing:-0.019200pt;}
.ls5_c00333{letter-spacing:-0.012800pt;}
.ls0_c00333{letter-spacing:0.000000pt;}
.ls9_c00333{letter-spacing:0.006400pt;}
.lsc_c00333{letter-spacing:750.220800pt;}
.wsd_c00333{word-spacing:-1.158400pt;}
.ws18_c00333{word-spacing:-0.128000pt;}
.ws17_c00333{word-spacing:-0.115200pt;}
.ws0_c00333{word-spacing:0.000000pt;}
.ws1a_c00333{word-spacing:0.153600pt;}
.wsa_c00333{word-spacing:0.160000pt;}
.wsf_c00333{word-spacing:0.793600pt;}
.ws10_c00333{word-spacing:0.806400pt;}
.ws11_c00333{word-spacing:1.734400pt;}
.ws12_c00333{word-spacing:1.753600pt;}
.wsb_c00333{word-spacing:3.379200pt;}
.wsc_c00333{word-spacing:3.424000pt;}
.ws6_c00333{word-spacing:5.516800pt;}
.ws5_c00333{word-spacing:5.606400pt;}
.ws19_c00333{word-spacing:6.246400pt;}
.ws7_c00333{word-spacing:7.840000pt;}
.ws8_c00333{word-spacing:7.852800pt;}
.ws16_c00333{word-spacing:16.454400pt;}
.ws15_c00333{word-spacing:16.505600pt;}
.ws1_c00333{word-spacing:25.132800pt;}
.wse_c00333{word-spacing:25.158400pt;}
.ws2_c00333{word-spacing:25.171200pt;}
.ws14_c00333{word-spacing:27.654400pt;}
.ws13_c00333{word-spacing:27.673600pt;}
.ws4_c00333{word-spacing:32.166400pt;}
.ws3_c00333{word-spacing:32.281600pt;}
.ws9_c00333{word-spacing:47.526400pt;}
._0_c00333{width:0.896000pt;}
.fs0_c00333{font-size:64.000000pt;}
.y0_c00333{bottom:0.000000pt;}
.y2_c00333{bottom:41.627067pt;}
.y1_c00333{bottom:60.027067pt;}
.y16_c00333{bottom:419.147067pt;}
.y15_c00333{bottom:454.747067pt;}
.y14_c00333{bottom:490.347067pt;}
.y13_c00333{bottom:525.947067pt;}
.y12_c00333{bottom:553.547067pt;}
.y11_c00333{bottom:581.147067pt;}
.y10_c00333{bottom:608.747067pt;}
.yf_c00333{bottom:636.347067pt;}
.ye_c00333{bottom:663.947067pt;}
.yd_c00333{bottom:691.547067pt;}
.yc_c00333{bottom:719.147067pt;}
.yb_c00333{bottom:746.747067pt;}
.ya_c00333{bottom:774.347067pt;}
.y9_c00333{bottom:801.947067pt;}
.y8_c00333{bottom:837.547067pt;}
.y7_c00333{bottom:865.147067pt;}
.y6_c00333{bottom:892.747067pt;}
.y5_c00333{bottom:920.347067pt;}
.y4_c00333{bottom:947.947067pt;}
.y3_c00333{bottom:975.547067pt;}
.h1_c00333{height:56.156250pt;}
.h2_c00333{height:57.375000pt;}
.h0_c00333{height:1122.666667pt;}
.w1_c00333{width:793.333333pt;}
.w0_c00333{width:793.626667pt;}
.x0_c00333{left:0.000000pt;}
.x2_c00333{left:113.440000pt;}
.x1_c00333{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4bca870a8ea913c43c2f49c8.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.093262;font-style:normal;font-weight:normal;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_a0e5264b1338438764a262e0.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00334;src:url('chunks/assets/font_fc27e1ae04e81821e6d5dbdf.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:1.106934;font-style:normal;font-weight:normal;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_a9538935d69fcb27b3a69925.woff2')format("woff");}.ff4_c00334{font-family:ff4_c00334;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsa_c00334{letter-spacing:-0.086400px;}
.ls8_c00334{letter-spacing:-0.072000px;}
.ls6_c00334{letter-spacing:-0.064800px;}
.ls9_c00334{letter-spacing:-0.057600px;}
.lsc_c00334{letter-spacing:-0.050400px;}
.ls7_c00334{letter-spacing:-0.043200px;}
.ls4_c00334{letter-spacing:-0.036000px;}
.lse_c00334{letter-spacing:-0.028800px;}
.lsb_c00334{letter-spacing:-0.021600px;}
.ls5_c00334{letter-spacing:-0.014400px;}
.lsd_c00334{letter-spacing:-0.007200px;}
.ls3_c00334{letter-spacing:0.000000px;}
.ls2_c00334{letter-spacing:0.014400px;}
.lsf_c00334{letter-spacing:0.057600px;}
.ls0_c00334{letter-spacing:0.075492px;}
.ls1_c00334{letter-spacing:0.144000px;}
.ls10_c00334{letter-spacing:0.158400px;}
.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;}
}
.ws6_c00334{word-spacing:-4.867200px;}
.ws7_c00334{word-spacing:-4.766400px;}
.wsf_c00334{word-spacing:-4.240800px;}
.wsd_c00334{word-spacing:-4.140000px;}
.wse_c00334{word-spacing:-4.111200px;}
.ws28_c00334{word-spacing:-1.605600px;}
.ws29_c00334{word-spacing:-1.576800px;}
.ws20_c00334{word-spacing:-0.604800px;}
.ws21_c00334{word-spacing:-0.518400px;}
.ws24_c00334{word-spacing:-0.216000px;}
.ws25_c00334{word-spacing:-0.136800px;}
.ws0_c00334{word-spacing:0.000000px;}
.ws1_c00334{word-spacing:0.016776px;}
.wsc_c00334{word-spacing:0.172800px;}
.ws15_c00334{word-spacing:0.180000px;}
.ws22_c00334{word-spacing:0.208800px;}
.ws2e_c00334{word-spacing:0.453600px;}
.ws23_c00334{word-spacing:0.561600px;}
.ws2d_c00334{word-spacing:0.568800px;}
.ws11_c00334{word-spacing:0.842400px;}
.ws10_c00334{word-spacing:0.885600px;}
.ws27_c00334{word-spacing:0.907200px;}
.ws26_c00334{word-spacing:1.029600px;}
.ws2f_c00334{word-spacing:1.252800px;}
.ws30_c00334{word-spacing:1.389600px;}
.ws1b_c00334{word-spacing:1.879200px;}
.ws1c_c00334{word-spacing:1.987200px;}
.ws16_c00334{word-spacing:2.404800px;}
.ws17_c00334{word-spacing:2.520000px;}
.ws4_c00334{word-spacing:4.132800px;}
.ws5_c00334{word-spacing:4.226400px;}
.ws2a_c00334{word-spacing:4.521600px;}
.ws31_c00334{word-spacing:4.608000px;}
.ws32_c00334{word-spacing:4.838400px;}
.ws14_c00334{word-spacing:4.874400px;}
.ws2b_c00334{word-spacing:5.508000px;}
.ws2c_c00334{word-spacing:5.529600px;}
.ws2_c00334{word-spacing:12.398400px;}
.ws3_c00334{word-spacing:12.434400px;}
.ws1d_c00334{word-spacing:13.485600px;}
.ws1e_c00334{word-spacing:13.500000px;}
.ws13_c00334{word-spacing:14.580000px;}
.ws12_c00334{word-spacing:14.616000px;}
.wsa_c00334{word-spacing:21.031200px;}
.wsb_c00334{word-spacing:21.124800px;}
.ws1f_c00334{word-spacing:22.514400px;}
.ws9_c00334{word-spacing:22.896000px;}
.ws8_c00334{word-spacing:22.910400px;}
.ws18_c00334{word-spacing:23.580000px;}
.ws1a_c00334{word-spacing:26.107200px;}
.ws19_c00334{word-spacing:48.772800px;}
._2_c00334{margin-left:-5.054400px;}
._1_c00334{width:1.180800px;}
._0_c00334{width:153.332640px;}
.fc0_c00334{color:rgb(0,0,0);}
.fs0_c00334{font-size:72.000000px;}
.fs1_c00334{font-size:83.880000px;}
.y0_c00334{bottom:0.000000px;}
.y2_c00334{bottom:46.830450px;}
.y1_c00334{bottom:67.530450px;}
.y22_c00334{bottom:190.020450px;}
.y21_c00334{bottom:210.720450px;}
.y20_c00334{bottom:231.420450px;}
.y1f_c00334{bottom:252.120450px;}
.y1e_c00334{bottom:272.820450px;}
.y1d_c00334{bottom:293.520450px;}
.y1c_c00334{bottom:314.220450px;}
.y1b_c00334{bottom:334.920450px;}
.y1a_c00334{bottom:355.620450px;}
.y19_c00334{bottom:376.320450px;}
.y18_c00334{bottom:416.370450px;}
.y17_c00334{bottom:447.420450px;}
.y16_c00334{bottom:478.470450px;}
.y15_c00334{bottom:509.520450px;}
.y14_c00334{bottom:540.570450px;}
.y13_c00334{bottom:571.620450px;}
.y12_c00334{bottom:602.670450px;}
.y11_c00334{bottom:633.720450px;}
.y10_c00334{bottom:664.770450px;}
.yf_c00334{bottom:704.820450px;}
.ye_c00334{bottom:735.870450px;}
.yd_c00334{bottom:766.920450px;}
.yc_c00334{bottom:797.970450px;}
.yb_c00334{bottom:829.020450px;}
.ya_c00334{bottom:869.070450px;}
.y9_c00334{bottom:900.120450px;}
.y8_c00334{bottom:931.170450px;}
.y7_c00334{bottom:962.220450px;}
.y6_c00334{bottom:993.270450px;}
.y5_c00334{bottom:1024.320450px;}
.y4_c00334{bottom:1064.370450px;}
.y3_c00334{bottom:1094.520450px;}
.h1_c00334{height:63.175781px;}
.h3_c00334{height:64.546875px;}
.h4_c00334{height:75.093750px;}
.h2_c00334{height:87.484219px;}
.h0_c00334{height:1263.000000px;}
.w1_c00334{width:892.500000px;}
.w0_c00334{width:892.830000px;}
.x0_c00334{left:0.000000px;}
.x2_c00334{left:170.100000px;}
.x3_c00334{left:197.100000px;}
.x4_c00334{left:245.430000px;}
.x1_c00334{left:738.360000px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.lsa_c00334{letter-spacing:-0.076800pt;}
.ls8_c00334{letter-spacing:-0.064000pt;}
.ls6_c00334{letter-spacing:-0.057600pt;}
.ls9_c00334{letter-spacing:-0.051200pt;}
.lsc_c00334{letter-spacing:-0.044800pt;}
.ls7_c00334{letter-spacing:-0.038400pt;}
.ls4_c00334{letter-spacing:-0.032000pt;}
.lse_c00334{letter-spacing:-0.025600pt;}
.lsb_c00334{letter-spacing:-0.019200pt;}
.ls5_c00334{letter-spacing:-0.012800pt;}
.lsd_c00334{letter-spacing:-0.006400pt;}
.ls3_c00334{letter-spacing:0.000000pt;}
.ls2_c00334{letter-spacing:0.012800pt;}
.lsf_c00334{letter-spacing:0.051200pt;}
.ls0_c00334{letter-spacing:0.067104pt;}
.ls1_c00334{letter-spacing:0.128000pt;}
.ls10_c00334{letter-spacing:0.140800pt;}
.ws6_c00334{word-spacing:-4.326400pt;}
.ws7_c00334{word-spacing:-4.236800pt;}
.wsf_c00334{word-spacing:-3.769600pt;}
.wsd_c00334{word-spacing:-3.680000pt;}
.wse_c00334{word-spacing:-3.654400pt;}
.ws28_c00334{word-spacing:-1.427200pt;}
.ws29_c00334{word-spacing:-1.401600pt;}
.ws20_c00334{word-spacing:-0.537600pt;}
.ws21_c00334{word-spacing:-0.460800pt;}
.ws24_c00334{word-spacing:-0.192000pt;}
.ws25_c00334{word-spacing:-0.121600pt;}
.ws0_c00334{word-spacing:0.000000pt;}
.ws1_c00334{word-spacing:0.014912pt;}
.wsc_c00334{word-spacing:0.153600pt;}
.ws15_c00334{word-spacing:0.160000pt;}
.ws22_c00334{word-spacing:0.185600pt;}
.ws2e_c00334{word-spacing:0.403200pt;}
.ws23_c00334{word-spacing:0.499200pt;}
.ws2d_c00334{word-spacing:0.505600pt;}
.ws11_c00334{word-spacing:0.748800pt;}
.ws10_c00334{word-spacing:0.787200pt;}
.ws27_c00334{word-spacing:0.806400pt;}
.ws26_c00334{word-spacing:0.915200pt;}
.ws2f_c00334{word-spacing:1.113600pt;}
.ws30_c00334{word-spacing:1.235200pt;}
.ws1b_c00334{word-spacing:1.670400pt;}
.ws1c_c00334{word-spacing:1.766400pt;}
.ws16_c00334{word-spacing:2.137600pt;}
.ws17_c00334{word-spacing:2.240000pt;}
.ws4_c00334{word-spacing:3.673600pt;}
.ws5_c00334{word-spacing:3.756800pt;}
.ws2a_c00334{word-spacing:4.019200pt;}
.ws31_c00334{word-spacing:4.096000pt;}
.ws32_c00334{word-spacing:4.300800pt;}
.ws14_c00334{word-spacing:4.332800pt;}
.ws2b_c00334{word-spacing:4.896000pt;}
.ws2c_c00334{word-spacing:4.915200pt;}
.ws2_c00334{word-spacing:11.020800pt;}
.ws3_c00334{word-spacing:11.052800pt;}
.ws1d_c00334{word-spacing:11.987200pt;}
.ws1e_c00334{word-spacing:12.000000pt;}
.ws13_c00334{word-spacing:12.960000pt;}
.ws12_c00334{word-spacing:12.992000pt;}
.wsa_c00334{word-spacing:18.694400pt;}
.wsb_c00334{word-spacing:18.777600pt;}
.ws1f_c00334{word-spacing:20.012800pt;}
.ws9_c00334{word-spacing:20.352000pt;}
.ws8_c00334{word-spacing:20.364800pt;}
.ws18_c00334{word-spacing:20.960000pt;}
.ws1a_c00334{word-spacing:23.206400pt;}
.ws19_c00334{word-spacing:43.353600pt;}
._2_c00334{margin-left:-4.492800pt;}
._1_c00334{width:1.049600pt;}
._0_c00334{width:136.295680pt;}
.fs0_c00334{font-size:64.000000pt;}
.fs1_c00334{font-size:74.560000pt;}
.y0_c00334{bottom:0.000000pt;}
.y2_c00334{bottom:41.627067pt;}
.y1_c00334{bottom:60.027067pt;}
.y22_c00334{bottom:168.907067pt;}
.y21_c00334{bottom:187.307067pt;}
.y20_c00334{bottom:205.707067pt;}
.y1f_c00334{bottom:224.107067pt;}
.y1e_c00334{bottom:242.507067pt;}
.y1d_c00334{bottom:260.907067pt;}
.y1c_c00334{bottom:279.307067pt;}
.y1b_c00334{bottom:297.707067pt;}
.y1a_c00334{bottom:316.107067pt;}
.y19_c00334{bottom:334.507067pt;}
.y18_c00334{bottom:370.107067pt;}
.y17_c00334{bottom:397.707067pt;}
.y16_c00334{bottom:425.307067pt;}
.y15_c00334{bottom:452.907067pt;}
.y14_c00334{bottom:480.507067pt;}
.y13_c00334{bottom:508.107067pt;}
.y12_c00334{bottom:535.707067pt;}
.y11_c00334{bottom:563.307067pt;}
.y10_c00334{bottom:590.907067pt;}
.yf_c00334{bottom:626.507067pt;}
.ye_c00334{bottom:654.107067pt;}
.yd_c00334{bottom:681.707067pt;}
.yc_c00334{bottom:709.307067pt;}
.yb_c00334{bottom:736.907067pt;}
.ya_c00334{bottom:772.507067pt;}
.y9_c00334{bottom:800.107067pt;}
.y8_c00334{bottom:827.707067pt;}
.y7_c00334{bottom:855.307067pt;}
.y6_c00334{bottom:882.907067pt;}
.y5_c00334{bottom:910.507067pt;}
.y4_c00334{bottom:946.107067pt;}
.y3_c00334{bottom:972.907067pt;}
.h1_c00334{height:56.156250pt;}
.h3_c00334{height:57.375000pt;}
.h4_c00334{height:66.750000pt;}
.h2_c00334{height:77.763750pt;}
.h0_c00334{height:1122.666667pt;}
.w1_c00334{width:793.333333pt;}
.w0_c00334{width:793.626667pt;}
.x0_c00334{left:0.000000pt;}
.x2_c00334{left:151.200000pt;}
.x3_c00334{left:175.200000pt;}
.x4_c00334{left:218.160000pt;}
.x1_c00334{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cf5a0d503ca1b88499e301a0.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.093262;font-style:normal;font-weight:normal;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_bf5f265fe5438f486175cf7f.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00335{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00335{vertical-align:0.000000px;}
.ls2_c00335{letter-spacing:-0.086400px;}
.ls7_c00335{letter-spacing:-0.072000px;}
.ls8_c00335{letter-spacing:-0.064800px;}
.ls1_c00335{letter-spacing:-0.043200px;}
.ls4_c00335{letter-spacing:-0.036000px;}
.ls6_c00335{letter-spacing:-0.028800px;}
.ls3_c00335{letter-spacing:-0.021600px;}
.ls5_c00335{letter-spacing:-0.014400px;}
.ls0_c00335{letter-spacing:0.000000px;}
.ls9_c00335{letter-spacing:843.998400px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00335{word-spacing:0.000000px;}
.ws11_c00335{word-spacing:0.187200px;}
.wsc_c00335{word-spacing:1.512000px;}
.wsd_c00335{word-spacing:1.548000px;}
.wse_c00335{word-spacing:1.663200px;}
.ws7_c00335{word-spacing:8.820000px;}
.ws8_c00335{word-spacing:8.877600px;}
.wsa_c00335{word-spacing:13.816800px;}
.ws9_c00335{word-spacing:13.867200px;}
.ws6_c00335{word-spacing:19.252800px;}
.ws5_c00335{word-spacing:19.260000px;}
.ws3_c00335{word-spacing:19.620000px;}
.ws4_c00335{word-spacing:19.634400px;}
.wsb_c00335{word-spacing:21.470400px;}
.ws10_c00335{word-spacing:24.249600px;}
.wsf_c00335{word-spacing:24.350400px;}
.ws1_c00335{word-spacing:31.816800px;}
.ws2_c00335{word-spacing:31.924800px;}
._0_c00335{width:1.094400px;}
.fc0_c00335{color:rgb(0,0,0);}
.fs0_c00335{font-size:72.000000px;}
.y0_c00335{bottom:0.000000px;}
.y2_c00335{bottom:46.830450px;}
.y1_c00335{bottom:67.530450px;}
.yc_c00335{bottom:809.040450px;}
.yb_c00335{bottom:849.090450px;}
.ya_c00335{bottom:880.140450px;}
.y9_c00335{bottom:911.190450px;}
.y8_c00335{bottom:942.240450px;}
.y7_c00335{bottom:973.290450px;}
.y6_c00335{bottom:1004.340450px;}
.y5_c00335{bottom:1035.390450px;}
.y4_c00335{bottom:1066.440450px;}
.y3_c00335{bottom:1097.490450px;}
.h1_c00335{height:63.175781px;}
.h2_c00335{height:64.546875px;}
.h0_c00335{height:1263.000000px;}
.w1_c00335{width:892.500000px;}
.w0_c00335{width:892.830000px;}
.x0_c00335{left:0.000000px;}
.x2_c00335{left:127.620000px;}
.x1_c00335{left:695.880000px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls2_c00335{letter-spacing:-0.076800pt;}
.ls7_c00335{letter-spacing:-0.064000pt;}
.ls8_c00335{letter-spacing:-0.057600pt;}
.ls1_c00335{letter-spacing:-0.038400pt;}
.ls4_c00335{letter-spacing:-0.032000pt;}
.ls6_c00335{letter-spacing:-0.025600pt;}
.ls3_c00335{letter-spacing:-0.019200pt;}
.ls5_c00335{letter-spacing:-0.012800pt;}
.ls0_c00335{letter-spacing:0.000000pt;}
.ls9_c00335{letter-spacing:750.220800pt;}
.ws0_c00335{word-spacing:0.000000pt;}
.ws11_c00335{word-spacing:0.166400pt;}
.wsc_c00335{word-spacing:1.344000pt;}
.wsd_c00335{word-spacing:1.376000pt;}
.wse_c00335{word-spacing:1.478400pt;}
.ws7_c00335{word-spacing:7.840000pt;}
.ws8_c00335{word-spacing:7.891200pt;}
.wsa_c00335{word-spacing:12.281600pt;}
.ws9_c00335{word-spacing:12.326400pt;}
.ws6_c00335{word-spacing:17.113600pt;}
.ws5_c00335{word-spacing:17.120000pt;}
.ws3_c00335{word-spacing:17.440000pt;}
.ws4_c00335{word-spacing:17.452800pt;}
.wsb_c00335{word-spacing:19.084800pt;}
.ws10_c00335{word-spacing:21.555200pt;}
.wsf_c00335{word-spacing:21.644800pt;}
.ws1_c00335{word-spacing:28.281600pt;}
.ws2_c00335{word-spacing:28.377600pt;}
._0_c00335{width:0.972800pt;}
.fs0_c00335{font-size:64.000000pt;}
.y0_c00335{bottom:0.000000pt;}
.y2_c00335{bottom:41.627067pt;}
.y1_c00335{bottom:60.027067pt;}
.yc_c00335{bottom:719.147067pt;}
.yb_c00335{bottom:754.747067pt;}
.ya_c00335{bottom:782.347067pt;}
.y9_c00335{bottom:809.947067pt;}
.y8_c00335{bottom:837.547067pt;}
.y7_c00335{bottom:865.147067pt;}
.y6_c00335{bottom:892.747067pt;}
.y5_c00335{bottom:920.347067pt;}
.y4_c00335{bottom:947.947067pt;}
.y3_c00335{bottom:975.547067pt;}
.h1_c00335{height:56.156250pt;}
.h2_c00335{height:57.375000pt;}
.h0_c00335{height:1122.666667pt;}
.w1_c00335{width:793.333333pt;}
.w0_c00335{width:793.626667pt;}
.x0_c00335{left:0.000000pt;}
.x2_c00335{left:113.440000pt;}
.x1_c00335{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_00d2ebeb8c27022bab0c8e8f.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.093262;font-style:normal;font-weight:normal;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_25c509092e0fb723afe1ec65.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00336;src:url('chunks/assets/font_c36b71a29d9f0df0fe35c126.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:1.106934;font-style:normal;font-weight:normal;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_61d4cfbfa044bdddee7b47bc.woff2')format("woff");}.ff4_c00336{font-family:ff4_c00336;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00336{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.lse_c00336{letter-spacing:-0.079200px;}
.lsa_c00336{letter-spacing:-0.072000px;}
.lsb_c00336{letter-spacing:-0.064800px;}
.lsd_c00336{letter-spacing:-0.057600px;}
.ls7_c00336{letter-spacing:-0.050400px;}
.ls4_c00336{letter-spacing:-0.043200px;}
.ls5_c00336{letter-spacing:-0.036000px;}
.ls9_c00336{letter-spacing:-0.028800px;}
.ls6_c00336{letter-spacing:-0.021600px;}
.ls8_c00336{letter-spacing:-0.014400px;}
.lsc_c00336{letter-spacing:-0.007200px;}
.ls3_c00336{letter-spacing:0.000000px;}
.ls2_c00336{letter-spacing:0.007200px;}
.ls1_c00336{letter-spacing:0.014400px;}
.ls0_c00336{letter-spacing:0.083880px;}
.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;}
}
.ws18_c00336{word-spacing:-3.765600px;}
.ws19_c00336{word-spacing:-3.736800px;}
.ws13_c00336{word-spacing:-0.871200px;}
.ws16_c00336{word-spacing:-0.504000px;}
.ws17_c00336{word-spacing:-0.381600px;}
.ws3_c00336{word-spacing:-0.165600px;}
.ws2_c00336{word-spacing:-0.158400px;}
.ws0_c00336{word-spacing:0.000000px;}
.ws1_c00336{word-spacing:0.008388px;}
.ws21_c00336{word-spacing:0.036000px;}
.wsf_c00336{word-spacing:0.100800px;}
.ws1b_c00336{word-spacing:0.144000px;}
.ws30_c00336{word-spacing:0.165600px;}
.ws9_c00336{word-spacing:0.172800px;}
.ws14_c00336{word-spacing:0.187200px;}
.ws1a_c00336{word-spacing:0.194400px;}
.ws12_c00336{word-spacing:0.201600px;}
.ws8_c00336{word-spacing:0.208800px;}
.ws1e_c00336{word-spacing:0.525600px;}
.ws20_c00336{word-spacing:0.561600px;}
.ws1f_c00336{word-spacing:0.640800px;}
.ws2c_c00336{word-spacing:1.742400px;}
.ws24_c00336{word-spacing:2.311200px;}
.ws25_c00336{word-spacing:2.340000px;}
.ws1c_c00336{word-spacing:3.441600px;}
.ws1d_c00336{word-spacing:3.528000px;}
.ws26_c00336{word-spacing:3.808800px;}
.ws27_c00336{word-spacing:3.837600px;}
.ws2a_c00336{word-spacing:4.507200px;}
.ws2b_c00336{word-spacing:4.514400px;}
.ws2d_c00336{word-spacing:8.474400px;}
.wsa_c00336{word-spacing:9.907200px;}
.wsb_c00336{word-spacing:9.950400px;}
.wse_c00336{word-spacing:10.872000px;}
.wsd_c00336{word-spacing:10.980000px;}
.wsc_c00336{word-spacing:11.095200px;}
.ws5_c00336{word-spacing:12.038400px;}
.ws4_c00336{word-spacing:12.060000px;}
.ws28_c00336{word-spacing:12.420000px;}
.ws29_c00336{word-spacing:12.470400px;}
.ws10_c00336{word-spacing:16.416000px;}
.ws7_c00336{word-spacing:19.584000px;}
.ws6_c00336{word-spacing:19.749600px;}
.ws2f_c00336{word-spacing:26.841600px;}
.ws2e_c00336{word-spacing:26.848800px;}
.ws15_c00336{word-spacing:30.384000px;}
.ws22_c00336{word-spacing:37.252800px;}
.ws11_c00336{word-spacing:37.267200px;}
.ws23_c00336{word-spacing:37.360800px;}
._1_c00336{width:1.058400px;}
._0_c00336{width:14.427360px;}
._5_c00336{width:24.552000px;}
._2_c00336{width:38.448000px;}
._3_c00336{width:54.720000px;}
._4_c00336{width:55.800000px;}
.fc0_c00336{color:rgb(0,0,0);}
.fs0_c00336{font-size:72.000000px;}
.fs1_c00336{font-size:83.880000px;}
.y0_c00336{bottom:0.000000px;}
.y2_c00336{bottom:46.830450px;}
.y1_c00336{bottom:67.530450px;}
.y25_c00336{bottom:137.640450px;}
.y24_c00336{bottom:167.340450px;}
.y23_c00336{bottom:188.040450px;}
.y22_c00336{bottom:208.740450px;}
.y21_c00336{bottom:229.440450px;}
.y20_c00336{bottom:250.140450px;}
.y1f_c00336{bottom:270.840450px;}
.y1e_c00336{bottom:291.540450px;}
.y1d_c00336{bottom:312.240450px;}
.y1c_c00336{bottom:352.290450px;}
.y1b_c00336{bottom:383.340450px;}
.y1a_c00336{bottom:423.390450px;}
.y19_c00336{bottom:454.440450px;}
.y18_c00336{bottom:485.490450px;}
.y17_c00336{bottom:516.540450px;}
.y16_c00336{bottom:547.590450px;}
.y15_c00336{bottom:587.640450px;}
.y14_c00336{bottom:617.340450px;}
.y13_c00336{bottom:637.950450px;}
.y12_c00336{bottom:659.910450px;}
.y11_c00336{bottom:680.520450px;}
.y10_c00336{bottom:702.480450px;}
.yf_c00336{bottom:724.350450px;}
.ye_c00336{bottom:746.310450px;}
.yd_c00336{bottom:767.010450px;}
.yc_c00336{bottom:787.710450px;}
.yb_c00336{bottom:829.020450px;}
.ya_c00336{bottom:860.070450px;}
.y9_c00336{bottom:891.120450px;}
.y8_c00336{bottom:931.170450px;}
.y7_c00336{bottom:962.220450px;}
.y6_c00336{bottom:993.270450px;}
.y5_c00336{bottom:1024.320450px;}
.y4_c00336{bottom:1064.370450px;}
.y3_c00336{bottom:1094.520450px;}
.h1_c00336{height:63.175781px;}
.h3_c00336{height:64.546875px;}
.h2_c00336{height:87.484219px;}
.h0_c00336{height:1263.000000px;}
.w1_c00336{width:892.500000px;}
.w0_c00336{width:892.830000px;}
.x0_c00336{left:0.000000px;}
.x2_c00336{left:170.100000px;}
.x5_c00336{left:245.430000px;}
.x3_c00336{left:272.430000px;}
.x4_c00336{left:299.430000px;}
.x1_c00336{left:738.360000px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.lse_c00336{letter-spacing:-0.070400pt;}
.lsa_c00336{letter-spacing:-0.064000pt;}
.lsb_c00336{letter-spacing:-0.057600pt;}
.lsd_c00336{letter-spacing:-0.051200pt;}
.ls7_c00336{letter-spacing:-0.044800pt;}
.ls4_c00336{letter-spacing:-0.038400pt;}
.ls5_c00336{letter-spacing:-0.032000pt;}
.ls9_c00336{letter-spacing:-0.025600pt;}
.ls6_c00336{letter-spacing:-0.019200pt;}
.ls8_c00336{letter-spacing:-0.012800pt;}
.lsc_c00336{letter-spacing:-0.006400pt;}
.ls3_c00336{letter-spacing:0.000000pt;}
.ls2_c00336{letter-spacing:0.006400pt;}
.ls1_c00336{letter-spacing:0.012800pt;}
.ls0_c00336{letter-spacing:0.074560pt;}
.ws18_c00336{word-spacing:-3.347200pt;}
.ws19_c00336{word-spacing:-3.321600pt;}
.ws13_c00336{word-spacing:-0.774400pt;}
.ws16_c00336{word-spacing:-0.448000pt;}
.ws17_c00336{word-spacing:-0.339200pt;}
.ws3_c00336{word-spacing:-0.147200pt;}
.ws2_c00336{word-spacing:-0.140800pt;}
.ws0_c00336{word-spacing:0.000000pt;}
.ws1_c00336{word-spacing:0.007456pt;}
.ws21_c00336{word-spacing:0.032000pt;}
.wsf_c00336{word-spacing:0.089600pt;}
.ws1b_c00336{word-spacing:0.128000pt;}
.ws30_c00336{word-spacing:0.147200pt;}
.ws9_c00336{word-spacing:0.153600pt;}
.ws14_c00336{word-spacing:0.166400pt;}
.ws1a_c00336{word-spacing:0.172800pt;}
.ws12_c00336{word-spacing:0.179200pt;}
.ws8_c00336{word-spacing:0.185600pt;}
.ws1e_c00336{word-spacing:0.467200pt;}
.ws20_c00336{word-spacing:0.499200pt;}
.ws1f_c00336{word-spacing:0.569600pt;}
.ws2c_c00336{word-spacing:1.548800pt;}
.ws24_c00336{word-spacing:2.054400pt;}
.ws25_c00336{word-spacing:2.080000pt;}
.ws1c_c00336{word-spacing:3.059200pt;}
.ws1d_c00336{word-spacing:3.136000pt;}
.ws26_c00336{word-spacing:3.385600pt;}
.ws27_c00336{word-spacing:3.411200pt;}
.ws2a_c00336{word-spacing:4.006400pt;}
.ws2b_c00336{word-spacing:4.012800pt;}
.ws2d_c00336{word-spacing:7.532800pt;}
.wsa_c00336{word-spacing:8.806400pt;}
.wsb_c00336{word-spacing:8.844800pt;}
.wse_c00336{word-spacing:9.664000pt;}
.wsd_c00336{word-spacing:9.760000pt;}
.wsc_c00336{word-spacing:9.862400pt;}
.ws5_c00336{word-spacing:10.700800pt;}
.ws4_c00336{word-spacing:10.720000pt;}
.ws28_c00336{word-spacing:11.040000pt;}
.ws29_c00336{word-spacing:11.084800pt;}
.ws10_c00336{word-spacing:14.592000pt;}
.ws7_c00336{word-spacing:17.408000pt;}
.ws6_c00336{word-spacing:17.555200pt;}
.ws2f_c00336{word-spacing:23.859200pt;}
.ws2e_c00336{word-spacing:23.865600pt;}
.ws15_c00336{word-spacing:27.008000pt;}
.ws22_c00336{word-spacing:33.113600pt;}
.ws11_c00336{word-spacing:33.126400pt;}
.ws23_c00336{word-spacing:33.209600pt;}
._1_c00336{width:0.940800pt;}
._0_c00336{width:12.824320pt;}
._5_c00336{width:21.824000pt;}
._2_c00336{width:34.176000pt;}
._3_c00336{width:48.640000pt;}
._4_c00336{width:49.600000pt;}
.fs0_c00336{font-size:64.000000pt;}
.fs1_c00336{font-size:74.560000pt;}
.y0_c00336{bottom:0.000000pt;}
.y2_c00336{bottom:41.627067pt;}
.y1_c00336{bottom:60.027067pt;}
.y25_c00336{bottom:122.347067pt;}
.y24_c00336{bottom:148.747067pt;}
.y23_c00336{bottom:167.147067pt;}
.y22_c00336{bottom:185.547067pt;}
.y21_c00336{bottom:203.947067pt;}
.y20_c00336{bottom:222.347067pt;}
.y1f_c00336{bottom:240.747067pt;}
.y1e_c00336{bottom:259.147067pt;}
.y1d_c00336{bottom:277.547067pt;}
.y1c_c00336{bottom:313.147067pt;}
.y1b_c00336{bottom:340.747067pt;}
.y1a_c00336{bottom:376.347067pt;}
.y19_c00336{bottom:403.947067pt;}
.y18_c00336{bottom:431.547067pt;}
.y17_c00336{bottom:459.147067pt;}
.y16_c00336{bottom:486.747067pt;}
.y15_c00336{bottom:522.347067pt;}
.y14_c00336{bottom:548.747067pt;}
.y13_c00336{bottom:567.067067pt;}
.y12_c00336{bottom:586.587067pt;}
.y11_c00336{bottom:604.907067pt;}
.y10_c00336{bottom:624.427067pt;}
.yf_c00336{bottom:643.867067pt;}
.ye_c00336{bottom:663.387067pt;}
.yd_c00336{bottom:681.787067pt;}
.yc_c00336{bottom:700.187067pt;}
.yb_c00336{bottom:736.907067pt;}
.ya_c00336{bottom:764.507067pt;}
.y9_c00336{bottom:792.107067pt;}
.y8_c00336{bottom:827.707067pt;}
.y7_c00336{bottom:855.307067pt;}
.y6_c00336{bottom:882.907067pt;}
.y5_c00336{bottom:910.507067pt;}
.y4_c00336{bottom:946.107067pt;}
.y3_c00336{bottom:972.907067pt;}
.h1_c00336{height:56.156250pt;}
.h3_c00336{height:57.375000pt;}
.h2_c00336{height:77.763750pt;}
.h0_c00336{height:1122.666667pt;}
.w1_c00336{width:793.333333pt;}
.w0_c00336{width:793.626667pt;}
.x0_c00336{left:0.000000pt;}
.x2_c00336{left:151.200000pt;}
.x5_c00336{left:218.160000pt;}
.x3_c00336{left:242.160000pt;}
.x4_c00336{left:266.160000pt;}
.x1_c00336{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0d160adb929cb9b6bcf1c5b0.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.093262;font-style:normal;font-weight:normal;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_736a4c3292d9f97653959b39.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.106934;font-style:normal;font-weight:normal;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_32c19f7fcc798d51faafce31.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lse_c00337{letter-spacing:-0.086400px;}
.ls5_c00337{letter-spacing:-0.079200px;}
.lsc_c00337{letter-spacing:-0.072000px;}
.ls9_c00337{letter-spacing:-0.057600px;}
.lsa_c00337{letter-spacing:-0.050400px;}
.lsd_c00337{letter-spacing:-0.043200px;}
.ls7_c00337{letter-spacing:-0.036000px;}
.ls8_c00337{letter-spacing:-0.028800px;}
.ls6_c00337{letter-spacing:-0.021600px;}
.lsb_c00337{letter-spacing:-0.014400px;}
.ls4_c00337{letter-spacing:-0.007200px;}
.ls3_c00337{letter-spacing:0.000000px;}
.ls1_c00337{letter-spacing:0.007200px;}
.ls2_c00337{letter-spacing:0.014400px;}
.ls0_c00337{letter-spacing:0.064800px;}
.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;}
}
.ws20_c00337{word-spacing:-3.780000px;}
.ws22_c00337{word-spacing:-3.657600px;}
.ws21_c00337{word-spacing:-3.535200px;}
.ws2a_c00337{word-spacing:-3.398400px;}
.wsf_c00337{word-spacing:-2.901600px;}
.wse_c00337{word-spacing:-2.772000px;}
.ws10_c00337{word-spacing:-2.721600px;}
.ws35_c00337{word-spacing:-2.368800px;}
.ws36_c00337{word-spacing:-2.332800px;}
.ws26_c00337{word-spacing:-0.892800px;}
.ws25_c00337{word-spacing:-0.878400px;}
.ws27_c00337{word-spacing:-0.849600px;}
.ws2e_c00337{word-spacing:-0.511200px;}
.ws2d_c00337{word-spacing:-0.381600px;}
.ws0_c00337{word-spacing:0.000000px;}
.ws34_c00337{word-spacing:0.144000px;}
.ws2f_c00337{word-spacing:0.151200px;}
.ws9_c00337{word-spacing:0.158400px;}
.ws43_c00337{word-spacing:0.172800px;}
.ws8_c00337{word-spacing:0.194400px;}
.ws33_c00337{word-spacing:0.201600px;}
.ws7_c00337{word-spacing:0.216000px;}
.ws3a_c00337{word-spacing:0.280800px;}
.ws5_c00337{word-spacing:0.460800px;}
.ws6_c00337{word-spacing:0.496800px;}
.ws11_c00337{word-spacing:0.907200px;}
.ws13_c00337{word-spacing:1.519200px;}
.ws12_c00337{word-spacing:1.591200px;}
.ws16_c00337{word-spacing:2.361600px;}
.ws14_c00337{word-spacing:3.038400px;}
.ws15_c00337{word-spacing:3.182400px;}
.ws3d_c00337{word-spacing:3.355200px;}
.ws3c_c00337{word-spacing:3.427200px;}
.ws1f_c00337{word-spacing:3.708000px;}
.ws1e_c00337{word-spacing:3.837600px;}
.wsb_c00337{word-spacing:4.521600px;}
.wsa_c00337{word-spacing:4.528800px;}
.ws1c_c00337{word-spacing:4.852800px;}
.ws1b_c00337{word-spacing:4.996800px;}
.ws1_c00337{word-spacing:5.443200px;}
.ws4_c00337{word-spacing:5.493600px;}
.ws2_c00337{word-spacing:5.565600px;}
.ws3_c00337{word-spacing:5.580000px;}
.ws18_c00337{word-spacing:6.264000px;}
.ws17_c00337{word-spacing:6.400800px;}
.wsd_c00337{word-spacing:9.180000px;}
.wsc_c00337{word-spacing:9.187200px;}
.ws30_c00337{word-spacing:10.202400px;}
.ws31_c00337{word-spacing:10.231200px;}
.ws28_c00337{word-spacing:14.248800px;}
.ws29_c00337{word-spacing:14.364000px;}
.ws37_c00337{word-spacing:16.380000px;}
.ws38_c00337{word-spacing:16.480800px;}
.ws2b_c00337{word-spacing:20.311200px;}
.ws2c_c00337{word-spacing:20.318400px;}
.ws32_c00337{word-spacing:21.067200px;}
.ws1d_c00337{word-spacing:22.536000px;}
.ws3e_c00337{word-spacing:23.112000px;}
.ws3f_c00337{word-spacing:23.248800px;}
.ws3b_c00337{word-spacing:28.612800px;}
.ws42_c00337{word-spacing:30.592800px;}
.ws41_c00337{word-spacing:30.924000px;}
.ws24_c00337{word-spacing:32.234400px;}
.ws23_c00337{word-spacing:32.284800px;}
.ws1a_c00337{word-spacing:37.620000px;}
.ws19_c00337{word-spacing:37.800000px;}
.ws39_c00337{word-spacing:45.928800px;}
.ws40_c00337{word-spacing:49.888800px;}
._0_c00337{width:1.339200px;}
.fc0_c00337{color:rgb(0,0,0);}
.fs0_c00337{font-size:72.000000px;}
.y0_c00337{bottom:0.000000px;}
.y2_c00337{bottom:46.830450px;}
.y1_c00337{bottom:67.530450px;}
.y29_c00337{bottom:140.430450px;}
.y28_c00337{bottom:161.130450px;}
.y27_c00337{bottom:181.830450px;}
.y26_c00337{bottom:202.530450px;}
.y25_c00337{bottom:223.230450px;}
.y24_c00337{bottom:243.930450px;}
.y23_c00337{bottom:264.630450px;}
.y22_c00337{bottom:285.330450px;}
.y21_c00337{bottom:306.030450px;}
.y20_c00337{bottom:326.730450px;}
.y1f_c00337{bottom:366.690450px;}
.y1e_c00337{bottom:397.740450px;}
.y1d_c00337{bottom:428.790450px;}
.y1c_c00337{bottom:458.490450px;}
.y1b_c00337{bottom:479.190450px;}
.y1a_c00337{bottom:499.890450px;}
.y19_c00337{bottom:520.590450px;}
.y18_c00337{bottom:541.290450px;}
.y17_c00337{bottom:561.990450px;}
.y16_c00337{bottom:582.690450px;}
.y15_c00337{bottom:603.390450px;}
.y14_c00337{bottom:624.090450px;}
.y13_c00337{bottom:644.790450px;}
.y12_c00337{bottom:665.490450px;}
.y11_c00337{bottom:686.190450px;}
.y10_c00337{bottom:706.890450px;}
.yf_c00337{bottom:727.590450px;}
.ye_c00337{bottom:748.290450px;}
.yd_c00337{bottom:768.990450px;}
.yc_c00337{bottom:809.040450px;}
.yb_c00337{bottom:840.090450px;}
.ya_c00337{bottom:871.140450px;}
.y9_c00337{bottom:902.190450px;}
.y8_c00337{bottom:933.240450px;}
.y7_c00337{bottom:964.290450px;}
.y6_c00337{bottom:995.340450px;}
.y5_c00337{bottom:1035.390450px;}
.y4_c00337{bottom:1066.440450px;}
.y3_c00337{bottom:1097.490450px;}
.h1_c00337{height:63.175781px;}
.h3_c00337{height:64.546875px;}
.h2_c00337{height:75.093750px;}
.h0_c00337{height:1263.000000px;}
.w1_c00337{width:892.500000px;}
.w0_c00337{width:892.830000px;}
.x0_c00337{left:0.000000px;}
.x2_c00337{left:127.620000px;}
.x3_c00337{left:202.950000px;}
.x1_c00337{left:695.880000px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.lse_c00337{letter-spacing:-0.076800pt;}
.ls5_c00337{letter-spacing:-0.070400pt;}
.lsc_c00337{letter-spacing:-0.064000pt;}
.ls9_c00337{letter-spacing:-0.051200pt;}
.lsa_c00337{letter-spacing:-0.044800pt;}
.lsd_c00337{letter-spacing:-0.038400pt;}
.ls7_c00337{letter-spacing:-0.032000pt;}
.ls8_c00337{letter-spacing:-0.025600pt;}
.ls6_c00337{letter-spacing:-0.019200pt;}
.lsb_c00337{letter-spacing:-0.012800pt;}
.ls4_c00337{letter-spacing:-0.006400pt;}
.ls3_c00337{letter-spacing:0.000000pt;}
.ls1_c00337{letter-spacing:0.006400pt;}
.ls2_c00337{letter-spacing:0.012800pt;}
.ls0_c00337{letter-spacing:0.057600pt;}
.ws20_c00337{word-spacing:-3.360000pt;}
.ws22_c00337{word-spacing:-3.251200pt;}
.ws21_c00337{word-spacing:-3.142400pt;}
.ws2a_c00337{word-spacing:-3.020800pt;}
.wsf_c00337{word-spacing:-2.579200pt;}
.wse_c00337{word-spacing:-2.464000pt;}
.ws10_c00337{word-spacing:-2.419200pt;}
.ws35_c00337{word-spacing:-2.105600pt;}
.ws36_c00337{word-spacing:-2.073600pt;}
.ws26_c00337{word-spacing:-0.793600pt;}
.ws25_c00337{word-spacing:-0.780800pt;}
.ws27_c00337{word-spacing:-0.755200pt;}
.ws2e_c00337{word-spacing:-0.454400pt;}
.ws2d_c00337{word-spacing:-0.339200pt;}
.ws0_c00337{word-spacing:0.000000pt;}
.ws34_c00337{word-spacing:0.128000pt;}
.ws2f_c00337{word-spacing:0.134400pt;}
.ws9_c00337{word-spacing:0.140800pt;}
.ws43_c00337{word-spacing:0.153600pt;}
.ws8_c00337{word-spacing:0.172800pt;}
.ws33_c00337{word-spacing:0.179200pt;}
.ws7_c00337{word-spacing:0.192000pt;}
.ws3a_c00337{word-spacing:0.249600pt;}
.ws5_c00337{word-spacing:0.409600pt;}
.ws6_c00337{word-spacing:0.441600pt;}
.ws11_c00337{word-spacing:0.806400pt;}
.ws13_c00337{word-spacing:1.350400pt;}
.ws12_c00337{word-spacing:1.414400pt;}
.ws16_c00337{word-spacing:2.099200pt;}
.ws14_c00337{word-spacing:2.700800pt;}
.ws15_c00337{word-spacing:2.828800pt;}
.ws3d_c00337{word-spacing:2.982400pt;}
.ws3c_c00337{word-spacing:3.046400pt;}
.ws1f_c00337{word-spacing:3.296000pt;}
.ws1e_c00337{word-spacing:3.411200pt;}
.wsb_c00337{word-spacing:4.019200pt;}
.wsa_c00337{word-spacing:4.025600pt;}
.ws1c_c00337{word-spacing:4.313600pt;}
.ws1b_c00337{word-spacing:4.441600pt;}
.ws1_c00337{word-spacing:4.838400pt;}
.ws4_c00337{word-spacing:4.883200pt;}
.ws2_c00337{word-spacing:4.947200pt;}
.ws3_c00337{word-spacing:4.960000pt;}
.ws18_c00337{word-spacing:5.568000pt;}
.ws17_c00337{word-spacing:5.689600pt;}
.wsd_c00337{word-spacing:8.160000pt;}
.wsc_c00337{word-spacing:8.166400pt;}
.ws30_c00337{word-spacing:9.068800pt;}
.ws31_c00337{word-spacing:9.094400pt;}
.ws28_c00337{word-spacing:12.665600pt;}
.ws29_c00337{word-spacing:12.768000pt;}
.ws37_c00337{word-spacing:14.560000pt;}
.ws38_c00337{word-spacing:14.649600pt;}
.ws2b_c00337{word-spacing:18.054400pt;}
.ws2c_c00337{word-spacing:18.060800pt;}
.ws32_c00337{word-spacing:18.726400pt;}
.ws1d_c00337{word-spacing:20.032000pt;}
.ws3e_c00337{word-spacing:20.544000pt;}
.ws3f_c00337{word-spacing:20.665600pt;}
.ws3b_c00337{word-spacing:25.433600pt;}
.ws42_c00337{word-spacing:27.193600pt;}
.ws41_c00337{word-spacing:27.488000pt;}
.ws24_c00337{word-spacing:28.652800pt;}
.ws23_c00337{word-spacing:28.697600pt;}
.ws1a_c00337{word-spacing:33.440000pt;}
.ws19_c00337{word-spacing:33.600000pt;}
.ws39_c00337{word-spacing:40.825600pt;}
.ws40_c00337{word-spacing:44.345600pt;}
._0_c00337{width:1.190400pt;}
.fs0_c00337{font-size:64.000000pt;}
.y0_c00337{bottom:0.000000pt;}
.y2_c00337{bottom:41.627067pt;}
.y1_c00337{bottom:60.027067pt;}
.y29_c00337{bottom:124.827067pt;}
.y28_c00337{bottom:143.227067pt;}
.y27_c00337{bottom:161.627067pt;}
.y26_c00337{bottom:180.027067pt;}
.y25_c00337{bottom:198.427067pt;}
.y24_c00337{bottom:216.827067pt;}
.y23_c00337{bottom:235.227067pt;}
.y22_c00337{bottom:253.627067pt;}
.y21_c00337{bottom:272.027067pt;}
.y20_c00337{bottom:290.427067pt;}
.y1f_c00337{bottom:325.947067pt;}
.y1e_c00337{bottom:353.547067pt;}
.y1d_c00337{bottom:381.147067pt;}
.y1c_c00337{bottom:407.547067pt;}
.y1b_c00337{bottom:425.947067pt;}
.y1a_c00337{bottom:444.347067pt;}
.y19_c00337{bottom:462.747067pt;}
.y18_c00337{bottom:481.147067pt;}
.y17_c00337{bottom:499.547067pt;}
.y16_c00337{bottom:517.947067pt;}
.y15_c00337{bottom:536.347067pt;}
.y14_c00337{bottom:554.747067pt;}
.y13_c00337{bottom:573.147067pt;}
.y12_c00337{bottom:591.547067pt;}
.y11_c00337{bottom:609.947067pt;}
.y10_c00337{bottom:628.347067pt;}
.yf_c00337{bottom:646.747067pt;}
.ye_c00337{bottom:665.147067pt;}
.yd_c00337{bottom:683.547067pt;}
.yc_c00337{bottom:719.147067pt;}
.yb_c00337{bottom:746.747067pt;}
.ya_c00337{bottom:774.347067pt;}
.y9_c00337{bottom:801.947067pt;}
.y8_c00337{bottom:829.547067pt;}
.y7_c00337{bottom:857.147067pt;}
.y6_c00337{bottom:884.747067pt;}
.y5_c00337{bottom:920.347067pt;}
.y4_c00337{bottom:947.947067pt;}
.y3_c00337{bottom:975.547067pt;}
.h1_c00337{height:56.156250pt;}
.h3_c00337{height:57.375000pt;}
.h2_c00337{height:66.750000pt;}
.h0_c00337{height:1122.666667pt;}
.w1_c00337{width:793.333333pt;}
.w0_c00337{width:793.626667pt;}
.x0_c00337{left:0.000000pt;}
.x2_c00337{left:113.440000pt;}
.x3_c00337{left:180.400000pt;}
.x1_c00337{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_87bec4f13dbd43a9f36e7e01.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.093262;font-style:normal;font-weight:normal;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_0d17b6473898b10e3d1c71a2.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00338{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00338{vertical-align:0.000000px;}
.ls2_c00338{letter-spacing:-0.072000px;}
.ls3_c00338{letter-spacing:-0.064800px;}
.ls9_c00338{letter-spacing:-0.057600px;}
.ls1_c00338{letter-spacing:-0.050400px;}
.ls4_c00338{letter-spacing:-0.043200px;}
.ls8_c00338{letter-spacing:-0.036000px;}
.lsa_c00338{letter-spacing:-0.028800px;}
.ls6_c00338{letter-spacing:-0.021600px;}
.ls5_c00338{letter-spacing:-0.014400px;}
.lsb_c00338{letter-spacing:-0.007200px;}
.ls0_c00338{letter-spacing:0.000000px;}
.ls7_c00338{letter-spacing:0.014400px;}
.lsc_c00338{letter-spacing:0.036000px;}
.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;}
}
.wsf_c00338{word-spacing:-3.045600px;}
.wse_c00338{word-spacing:-3.031200px;}
.ws1e_c00338{word-spacing:-2.347200px;}
.ws1f_c00338{word-spacing:-2.224800px;}
.ws2a_c00338{word-spacing:-1.317600px;}
.ws24_c00338{word-spacing:-1.238400px;}
.ws1_c00338{word-spacing:-0.151200px;}
.ws3_c00338{word-spacing:-0.136800px;}
.ws2_c00338{word-spacing:-0.129600px;}
.ws0_c00338{word-spacing:0.000000px;}
.ws7_c00338{word-spacing:0.064800px;}
.wsa_c00338{word-spacing:0.144000px;}
.wsc_c00338{word-spacing:0.172800px;}
.ws6_c00338{word-spacing:0.180000px;}
.ws20_c00338{word-spacing:0.187200px;}
.wsb_c00338{word-spacing:0.208800px;}
.ws19_c00338{word-spacing:0.252000px;}
.ws14_c00338{word-spacing:0.554400px;}
.ws27_c00338{word-spacing:0.936000px;}
.ws9_c00338{word-spacing:2.332800px;}
.ws1b_c00338{word-spacing:3.067200px;}
.ws1a_c00338{word-spacing:3.103200px;}
.ws32_c00338{word-spacing:4.032000px;}
.ws13_c00338{word-spacing:4.154400px;}
.ws12_c00338{word-spacing:4.176000px;}
.ws31_c00338{word-spacing:4.204800px;}
.ws23_c00338{word-spacing:6.660000px;}
.ws22_c00338{word-spacing:6.688800px;}
.ws4_c00338{word-spacing:7.761600px;}
.ws5_c00338{word-spacing:7.804800px;}
.ws8_c00338{word-spacing:9.568800px;}
.ws29_c00338{word-spacing:10.569600px;}
.ws28_c00338{word-spacing:10.720800px;}
.ws1d_c00338{word-spacing:13.845600px;}
.ws2b_c00338{word-spacing:16.732800px;}
.ws2c_c00338{word-spacing:16.747200px;}
.ws16_c00338{word-spacing:20.750400px;}
.ws15_c00338{word-spacing:20.901600px;}
.ws30_c00338{word-spacing:21.456000px;}
.ws2f_c00338{word-spacing:21.528000px;}
.ws18_c00338{word-spacing:23.947200px;}
.ws10_c00338{word-spacing:23.954400px;}
.ws11_c00338{word-spacing:24.076800px;}
.ws17_c00338{word-spacing:24.206400px;}
.ws2d_c00338{word-spacing:25.416000px;}
.ws2e_c00338{word-spacing:25.480800px;}
.wsd_c00338{word-spacing:27.180000px;}
.ws21_c00338{word-spacing:39.448800px;}
.ws1c_c00338{word-spacing:41.947200px;}
.ws26_c00338{word-spacing:48.405600px;}
.ws25_c00338{word-spacing:48.441600px;}
._8_c00338{margin-left:-18.720000px;}
._9_c00338{margin-left:-12.960000px;}
._7_c00338{margin-left:-11.520000px;}
._0_c00338{width:1.044000px;}
._5_c00338{width:3.744000px;}
._4_c00338{width:6.984000px;}
._1_c00338{width:18.360000px;}
._6_c00338{width:24.840000px;}
._2_c00338{width:27.720000px;}
._3_c00338{width:30.960000px;}
.fc0_c00338{color:rgb(0,0,0);}
.fs0_c00338{font-size:72.000000px;}
.y0_c00338{bottom:0.000000px;}
.y2_c00338{bottom:46.830450px;}
.y1_c00338{bottom:67.530450px;}
.y2a_c00338{bottom:132.780450px;}
.y29_c00338{bottom:163.830450px;}
.y28_c00338{bottom:194.880450px;}
.y27_c00338{bottom:234.930450px;}
.y26_c00338{bottom:265.980450px;}
.y25_c00338{bottom:297.030450px;}
.y24_c00338{bottom:328.080450px;}
.y23_c00338{bottom:368.040450px;}
.y22_c00338{bottom:406.740450px;}
.y21_c00338{bottom:427.440450px;}
.y20_c00338{bottom:448.140450px;}
.y1f_c00338{bottom:468.840450px;}
.y1e_c00338{bottom:489.540450px;}
.y1d_c00338{bottom:510.240450px;}
.y1c_c00338{bottom:530.940450px;}
.y1b_c00338{bottom:551.640450px;}
.y1a_c00338{bottom:572.340450px;}
.y19_c00338{bottom:593.040450px;}
.y18_c00338{bottom:613.740450px;}
.y17_c00338{bottom:634.440450px;}
.y16_c00338{bottom:655.140450px;}
.y15_c00338{bottom:675.840450px;}
.y14_c00338{bottom:696.540450px;}
.y13_c00338{bottom:717.240450px;}
.y12_c00338{bottom:737.940450px;}
.y11_c00338{bottom:758.640450px;}
.y10_c00338{bottom:779.340450px;}
.yf_c00338{bottom:800.040450px;}
.ye_c00338{bottom:820.740450px;}
.yd_c00338{bottom:841.440450px;}
.yc_c00338{bottom:862.140450px;}
.yb_c00338{bottom:882.840450px;}
.ya_c00338{bottom:903.540450px;}
.y9_c00338{bottom:924.240450px;}
.y8_c00338{bottom:944.940450px;}
.y7_c00338{bottom:965.640450px;}
.y6_c00338{bottom:986.340450px;}
.y5_c00338{bottom:1035.390450px;}
.y4_c00338{bottom:1066.440450px;}
.y3_c00338{bottom:1097.490450px;}
.h1_c00338{height:63.175781px;}
.h2_c00338{height:64.546875px;}
.h0_c00338{height:1263.000000px;}
.w1_c00338{width:892.500000px;}
.w0_c00338{width:892.830000px;}
.x0_c00338{left:0.000000px;}
.x2_c00338{left:170.100000px;}
.x3_c00338{left:218.430000px;}
.x4_c00338{left:245.430000px;}
.x1_c00338{left:738.360000px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls2_c00338{letter-spacing:-0.064000pt;}
.ls3_c00338{letter-spacing:-0.057600pt;}
.ls9_c00338{letter-spacing:-0.051200pt;}
.ls1_c00338{letter-spacing:-0.044800pt;}
.ls4_c00338{letter-spacing:-0.038400pt;}
.ls8_c00338{letter-spacing:-0.032000pt;}
.lsa_c00338{letter-spacing:-0.025600pt;}
.ls6_c00338{letter-spacing:-0.019200pt;}
.ls5_c00338{letter-spacing:-0.012800pt;}
.lsb_c00338{letter-spacing:-0.006400pt;}
.ls0_c00338{letter-spacing:0.000000pt;}
.ls7_c00338{letter-spacing:0.012800pt;}
.lsc_c00338{letter-spacing:0.032000pt;}
.wsf_c00338{word-spacing:-2.707200pt;}
.wse_c00338{word-spacing:-2.694400pt;}
.ws1e_c00338{word-spacing:-2.086400pt;}
.ws1f_c00338{word-spacing:-1.977600pt;}
.ws2a_c00338{word-spacing:-1.171200pt;}
.ws24_c00338{word-spacing:-1.100800pt;}
.ws1_c00338{word-spacing:-0.134400pt;}
.ws3_c00338{word-spacing:-0.121600pt;}
.ws2_c00338{word-spacing:-0.115200pt;}
.ws0_c00338{word-spacing:0.000000pt;}
.ws7_c00338{word-spacing:0.057600pt;}
.wsa_c00338{word-spacing:0.128000pt;}
.wsc_c00338{word-spacing:0.153600pt;}
.ws6_c00338{word-spacing:0.160000pt;}
.ws20_c00338{word-spacing:0.166400pt;}
.wsb_c00338{word-spacing:0.185600pt;}
.ws19_c00338{word-spacing:0.224000pt;}
.ws14_c00338{word-spacing:0.492800pt;}
.ws27_c00338{word-spacing:0.832000pt;}
.ws9_c00338{word-spacing:2.073600pt;}
.ws1b_c00338{word-spacing:2.726400pt;}
.ws1a_c00338{word-spacing:2.758400pt;}
.ws32_c00338{word-spacing:3.584000pt;}
.ws13_c00338{word-spacing:3.692800pt;}
.ws12_c00338{word-spacing:3.712000pt;}
.ws31_c00338{word-spacing:3.737600pt;}
.ws23_c00338{word-spacing:5.920000pt;}
.ws22_c00338{word-spacing:5.945600pt;}
.ws4_c00338{word-spacing:6.899200pt;}
.ws5_c00338{word-spacing:6.937600pt;}
.ws8_c00338{word-spacing:8.505600pt;}
.ws29_c00338{word-spacing:9.395200pt;}
.ws28_c00338{word-spacing:9.529600pt;}
.ws1d_c00338{word-spacing:12.307200pt;}
.ws2b_c00338{word-spacing:14.873600pt;}
.ws2c_c00338{word-spacing:14.886400pt;}
.ws16_c00338{word-spacing:18.444800pt;}
.ws15_c00338{word-spacing:18.579200pt;}
.ws30_c00338{word-spacing:19.072000pt;}
.ws2f_c00338{word-spacing:19.136000pt;}
.ws18_c00338{word-spacing:21.286400pt;}
.ws10_c00338{word-spacing:21.292800pt;}
.ws11_c00338{word-spacing:21.401600pt;}
.ws17_c00338{word-spacing:21.516800pt;}
.ws2d_c00338{word-spacing:22.592000pt;}
.ws2e_c00338{word-spacing:22.649600pt;}
.wsd_c00338{word-spacing:24.160000pt;}
.ws21_c00338{word-spacing:35.065600pt;}
.ws1c_c00338{word-spacing:37.286400pt;}
.ws26_c00338{word-spacing:43.027200pt;}
.ws25_c00338{word-spacing:43.059200pt;}
._8_c00338{margin-left:-16.640000pt;}
._9_c00338{margin-left:-11.520000pt;}
._7_c00338{margin-left:-10.240000pt;}
._0_c00338{width:0.928000pt;}
._5_c00338{width:3.328000pt;}
._4_c00338{width:6.208000pt;}
._1_c00338{width:16.320000pt;}
._6_c00338{width:22.080000pt;}
._2_c00338{width:24.640000pt;}
._3_c00338{width:27.520000pt;}
.fs0_c00338{font-size:64.000000pt;}
.y0_c00338{bottom:0.000000pt;}
.y2_c00338{bottom:41.627067pt;}
.y1_c00338{bottom:60.027067pt;}
.y2a_c00338{bottom:118.027067pt;}
.y29_c00338{bottom:145.627067pt;}
.y28_c00338{bottom:173.227067pt;}
.y27_c00338{bottom:208.827067pt;}
.y26_c00338{bottom:236.427067pt;}
.y25_c00338{bottom:264.027067pt;}
.y24_c00338{bottom:291.627067pt;}
.y23_c00338{bottom:327.147067pt;}
.y22_c00338{bottom:361.547067pt;}
.y21_c00338{bottom:379.947067pt;}
.y20_c00338{bottom:398.347067pt;}
.y1f_c00338{bottom:416.747067pt;}
.y1e_c00338{bottom:435.147067pt;}
.y1d_c00338{bottom:453.547067pt;}
.y1c_c00338{bottom:471.947067pt;}
.y1b_c00338{bottom:490.347067pt;}
.y1a_c00338{bottom:508.747067pt;}
.y19_c00338{bottom:527.147067pt;}
.y18_c00338{bottom:545.547067pt;}
.y17_c00338{bottom:563.947067pt;}
.y16_c00338{bottom:582.347067pt;}
.y15_c00338{bottom:600.747067pt;}
.y14_c00338{bottom:619.147067pt;}
.y13_c00338{bottom:637.547067pt;}
.y12_c00338{bottom:655.947067pt;}
.y11_c00338{bottom:674.347067pt;}
.y10_c00338{bottom:692.747067pt;}
.yf_c00338{bottom:711.147067pt;}
.ye_c00338{bottom:729.547067pt;}
.yd_c00338{bottom:747.947067pt;}
.yc_c00338{bottom:766.347067pt;}
.yb_c00338{bottom:784.747067pt;}
.ya_c00338{bottom:803.147067pt;}
.y9_c00338{bottom:821.547067pt;}
.y8_c00338{bottom:839.947067pt;}
.y7_c00338{bottom:858.347067pt;}
.y6_c00338{bottom:876.747067pt;}
.y5_c00338{bottom:920.347067pt;}
.y4_c00338{bottom:947.947067pt;}
.y3_c00338{bottom:975.547067pt;}
.h1_c00338{height:56.156250pt;}
.h2_c00338{height:57.375000pt;}
.h0_c00338{height:1122.666667pt;}
.w1_c00338{width:793.333333pt;}
.w0_c00338{width:793.626667pt;}
.x0_c00338{left:0.000000pt;}
.x2_c00338{left:151.200000pt;}
.x3_c00338{left:194.160000pt;}
.x4_c00338{left:218.160000pt;}
.x1_c00338{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_80e5097c2c65181ddfc62ff3.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.093262;font-style:normal;font-weight:normal;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_7f79764551a599f44fb870fb.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.ls3_c00339{letter-spacing:-0.064800px;}
.ls9_c00339{letter-spacing:-0.057600px;}
.ls7_c00339{letter-spacing:-0.050400px;}
.ls8_c00339{letter-spacing:-0.043200px;}
.ls4_c00339{letter-spacing:-0.036000px;}
.ls6_c00339{letter-spacing:-0.028800px;}
.ls2_c00339{letter-spacing:-0.021600px;}
.ls1_c00339{letter-spacing:-0.014400px;}
.ls5_c00339{letter-spacing:-0.007200px;}
.ls0_c00339{letter-spacing:0.000000px;}
.lsa_c00339{letter-spacing:843.998400px;}
.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;}
}
.ws16_c00339{word-spacing:-4.197600px;}
.ws9_c00339{word-spacing:-4.190400px;}
.ws15_c00339{word-spacing:-4.176000px;}
.ws8_c00339{word-spacing:-4.154400px;}
.ws1b_c00339{word-spacing:-3.060000px;}
.ws1a_c00339{word-spacing:-3.045600px;}
.ws14_c00339{word-spacing:-1.267200px;}
.ws0_c00339{word-spacing:0.000000px;}
.ws6_c00339{word-spacing:0.108000px;}
.ws7_c00339{word-spacing:0.172800px;}
.ws1e_c00339{word-spacing:0.180000px;}
.ws13_c00339{word-spacing:0.201600px;}
.ws1c_c00339{word-spacing:1.670400px;}
.ws1d_c00339{word-spacing:1.706400px;}
.wsf_c00339{word-spacing:3.801600px;}
.ws19_c00339{word-spacing:3.808800px;}
.ws10_c00339{word-spacing:3.816000px;}
.ws12_c00339{word-spacing:5.954400px;}
.ws11_c00339{word-spacing:5.961600px;}
.ws2_c00339{word-spacing:9.540000px;}
.ws3_c00339{word-spacing:9.583200px;}
.wsc_c00339{word-spacing:9.763200px;}
.wsa_c00339{word-spacing:9.806400px;}
.wsb_c00339{word-spacing:9.943200px;}
.ws4_c00339{word-spacing:11.707200px;}
.ws5_c00339{word-spacing:11.714400px;}
.ws1_c00339{word-spacing:12.772800px;}
.wse_c00339{word-spacing:25.747200px;}
.wsd_c00339{word-spacing:25.761600px;}
.ws17_c00339{word-spacing:30.700800px;}
.ws18_c00339{word-spacing:30.780000px;}
._1_c00339{margin-left:-1.022400px;}
._0_c00339{width:1.195200px;}
._2_c00339{width:3.182400px;}
.fc0_c00339{color:rgb(0,0,0);}
.fs0_c00339{font-size:72.000000px;}
.y0_c00339{bottom:0.000000px;}
.y2_c00339{bottom:46.830450px;}
.y1_c00339{bottom:67.530450px;}
.y16_c00339{bottom:462.540450px;}
.y15_c00339{bottom:502.590450px;}
.y14_c00339{bottom:542.640450px;}
.y13_c00339{bottom:573.690450px;}
.y12_c00339{bottom:604.740450px;}
.y11_c00339{bottom:635.790450px;}
.y10_c00339{bottom:666.840450px;}
.yf_c00339{bottom:697.890450px;}
.ye_c00339{bottom:728.940450px;}
.yd_c00339{bottom:768.990450px;}
.yc_c00339{bottom:800.040450px;}
.yb_c00339{bottom:831.090450px;}
.ya_c00339{bottom:871.140450px;}
.y9_c00339{bottom:902.190450px;}
.y8_c00339{bottom:933.240450px;}
.y7_c00339{bottom:964.290450px;}
.y6_c00339{bottom:1004.340450px;}
.y5_c00339{bottom:1035.390450px;}
.y4_c00339{bottom:1066.440450px;}
.y3_c00339{bottom:1097.490450px;}
.h1_c00339{height:63.175781px;}
.h2_c00339{height:64.546875px;}
.h0_c00339{height:1263.000000px;}
.w1_c00339{width:892.500000px;}
.w0_c00339{width:892.830000px;}
.x0_c00339{left:0.000000px;}
.x2_c00339{left:127.620000px;}
.x1_c00339{left:695.880000px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls3_c00339{letter-spacing:-0.057600pt;}
.ls9_c00339{letter-spacing:-0.051200pt;}
.ls7_c00339{letter-spacing:-0.044800pt;}
.ls8_c00339{letter-spacing:-0.038400pt;}
.ls4_c00339{letter-spacing:-0.032000pt;}
.ls6_c00339{letter-spacing:-0.025600pt;}
.ls2_c00339{letter-spacing:-0.019200pt;}
.ls1_c00339{letter-spacing:-0.012800pt;}
.ls5_c00339{letter-spacing:-0.006400pt;}
.ls0_c00339{letter-spacing:0.000000pt;}
.lsa_c00339{letter-spacing:750.220800pt;}
.ws16_c00339{word-spacing:-3.731200pt;}
.ws9_c00339{word-spacing:-3.724800pt;}
.ws15_c00339{word-spacing:-3.712000pt;}
.ws8_c00339{word-spacing:-3.692800pt;}
.ws1b_c00339{word-spacing:-2.720000pt;}
.ws1a_c00339{word-spacing:-2.707200pt;}
.ws14_c00339{word-spacing:-1.126400pt;}
.ws0_c00339{word-spacing:0.000000pt;}
.ws6_c00339{word-spacing:0.096000pt;}
.ws7_c00339{word-spacing:0.153600pt;}
.ws1e_c00339{word-spacing:0.160000pt;}
.ws13_c00339{word-spacing:0.179200pt;}
.ws1c_c00339{word-spacing:1.484800pt;}
.ws1d_c00339{word-spacing:1.516800pt;}
.wsf_c00339{word-spacing:3.379200pt;}
.ws19_c00339{word-spacing:3.385600pt;}
.ws10_c00339{word-spacing:3.392000pt;}
.ws12_c00339{word-spacing:5.292800pt;}
.ws11_c00339{word-spacing:5.299200pt;}
.ws2_c00339{word-spacing:8.480000pt;}
.ws3_c00339{word-spacing:8.518400pt;}
.wsc_c00339{word-spacing:8.678400pt;}
.wsa_c00339{word-spacing:8.716800pt;}
.wsb_c00339{word-spacing:8.838400pt;}
.ws4_c00339{word-spacing:10.406400pt;}
.ws5_c00339{word-spacing:10.412800pt;}
.ws1_c00339{word-spacing:11.353600pt;}
.wse_c00339{word-spacing:22.886400pt;}
.wsd_c00339{word-spacing:22.899200pt;}
.ws17_c00339{word-spacing:27.289600pt;}
.ws18_c00339{word-spacing:27.360000pt;}
._1_c00339{margin-left:-0.908800pt;}
._0_c00339{width:1.062400pt;}
._2_c00339{width:2.828800pt;}
.fs0_c00339{font-size:64.000000pt;}
.y0_c00339{bottom:0.000000pt;}
.y2_c00339{bottom:41.627067pt;}
.y1_c00339{bottom:60.027067pt;}
.y16_c00339{bottom:411.147067pt;}
.y15_c00339{bottom:446.747067pt;}
.y14_c00339{bottom:482.347067pt;}
.y13_c00339{bottom:509.947067pt;}
.y12_c00339{bottom:537.547067pt;}
.y11_c00339{bottom:565.147067pt;}
.y10_c00339{bottom:592.747067pt;}
.yf_c00339{bottom:620.347067pt;}
.ye_c00339{bottom:647.947067pt;}
.yd_c00339{bottom:683.547067pt;}
.yc_c00339{bottom:711.147067pt;}
.yb_c00339{bottom:738.747067pt;}
.ya_c00339{bottom:774.347067pt;}
.y9_c00339{bottom:801.947067pt;}
.y8_c00339{bottom:829.547067pt;}
.y7_c00339{bottom:857.147067pt;}
.y6_c00339{bottom:892.747067pt;}
.y5_c00339{bottom:920.347067pt;}
.y4_c00339{bottom:947.947067pt;}
.y3_c00339{bottom:975.547067pt;}
.h1_c00339{height:56.156250pt;}
.h2_c00339{height:57.375000pt;}
.h0_c00339{height:1122.666667pt;}
.w1_c00339{width:793.333333pt;}
.w0_c00339{width:793.626667pt;}
.x0_c00339{left:0.000000pt;}
.x2_c00339{left:113.440000pt;}
.x1_c00339{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e17566220d3494508a0aca85.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.093262;font-style:normal;font-weight:normal;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_0f6998841afd9f7eb9139539.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00340;src:url('chunks/assets/font_7c76f47a5b6cc43a6496f689.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:1.106934;font-style:normal;font-weight:normal;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_bb96fb0768b8943e3d99ed0f.woff2')format("woff");}.ff4_c00340{font-family:ff4_c00340;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00340{letter-spacing:-0.079200px;}
.ls9_c00340{letter-spacing:-0.064800px;}
.lsb_c00340{letter-spacing:-0.057600px;}
.lsa_c00340{letter-spacing:-0.050400px;}
.ls4_c00340{letter-spacing:-0.043200px;}
.ls2_c00340{letter-spacing:-0.036000px;}
.ls3_c00340{letter-spacing:-0.028800px;}
.ls5_c00340{letter-spacing:-0.021600px;}
.ls7_c00340{letter-spacing:-0.014400px;}
.ls8_c00340{letter-spacing:-0.007200px;}
.ls1_c00340{letter-spacing:0.000000px;}
.ls6_c00340{letter-spacing:0.007200px;}
.ls0_c00340{letter-spacing:0.050328px;}
.lsd_c00340{letter-spacing:0.151200px;}
.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;}
}
.ws1f_c00340{word-spacing:-0.892800px;}
.wsb_c00340{word-spacing:-0.525600px;}
.ws21_c00340{word-spacing:-0.014400px;}
.ws0_c00340{word-spacing:0.000000px;}
.ws1_c00340{word-spacing:0.041940px;}
.ws8_c00340{word-spacing:0.079200px;}
.ws26_c00340{word-spacing:0.100800px;}
.wsf_c00340{word-spacing:0.165600px;}
.ws20_c00340{word-spacing:0.172800px;}
.ws2e_c00340{word-spacing:0.180000px;}
.ws7_c00340{word-spacing:0.187200px;}
.ws12_c00340{word-spacing:0.194400px;}
.ws13_c00340{word-spacing:0.295200px;}
.ws2_c00340{word-spacing:0.554400px;}
.ws4_c00340{word-spacing:2.721600px;}
.ws3_c00340{word-spacing:2.779200px;}
.ws10_c00340{word-spacing:3.441600px;}
.ws11_c00340{word-spacing:3.456000px;}
.ws2b_c00340{word-spacing:4.132800px;}
.ws1e_c00340{word-spacing:4.874400px;}
.ws1d_c00340{word-spacing:4.939200px;}
.ws27_c00340{word-spacing:5.860800px;}
.ws28_c00340{word-spacing:5.947200px;}
.ws6_c00340{word-spacing:6.271200px;}
.ws5_c00340{word-spacing:6.300000px;}
.ws25_c00340{word-spacing:7.034400px;}
.ws24_c00340{word-spacing:7.099200px;}
.ws18_c00340{word-spacing:8.128800px;}
.wse_c00340{word-spacing:10.648800px;}
.wsd_c00340{word-spacing:10.684800px;}
.ws2a_c00340{word-spacing:10.864800px;}
.ws29_c00340{word-spacing:10.994400px;}
.ws22_c00340{word-spacing:11.347200px;}
.ws23_c00340{word-spacing:11.383200px;}
.ws30_c00340{word-spacing:16.005600px;}
.ws2f_c00340{word-spacing:16.027200px;}
.wsc_c00340{word-spacing:20.390400px;}
.ws9_c00340{word-spacing:23.205600px;}
.wsa_c00340{word-spacing:23.263200px;}
.ws1b_c00340{word-spacing:23.940000px;}
.ws1c_c00340{word-spacing:24.055200px;}
.ws19_c00340{word-spacing:26.820000px;}
.ws1a_c00340{word-spacing:26.856000px;}
.ws2c_c00340{word-spacing:27.165600px;}
.ws2d_c00340{word-spacing:27.194400px;}
.ws15_c00340{word-spacing:29.635200px;}
.ws14_c00340{word-spacing:29.721600px;}
.ws16_c00340{word-spacing:43.387200px;}
.ws17_c00340{word-spacing:43.408800px;}
._1_c00340{width:1.144800px;}
._0_c00340{width:153.332640px;}
.fc0_c00340{color:rgb(0,0,0);}
.fs0_c00340{font-size:72.000000px;}
.fs1_c00340{font-size:83.880000px;}
.y0_c00340{bottom:0.000000px;}
.y2_c00340{bottom:46.830450px;}
.y1_c00340{bottom:67.530450px;}
.y23_c00340{bottom:155.370450px;}
.y22_c00340{bottom:186.420450px;}
.y21_c00340{bottom:226.470450px;}
.y20_c00340{bottom:257.520450px;}
.y1f_c00340{bottom:288.570450px;}
.y1e_c00340{bottom:319.620450px;}
.y1d_c00340{bottom:350.670450px;}
.y1c_c00340{bottom:390.720450px;}
.y1b_c00340{bottom:421.770450px;}
.y1a_c00340{bottom:452.820450px;}
.y19_c00340{bottom:492.870450px;}
.y18_c00340{bottom:522.570450px;}
.y17_c00340{bottom:543.270450px;}
.y16_c00340{bottom:563.970450px;}
.y15_c00340{bottom:584.670450px;}
.y14_c00340{bottom:605.370450px;}
.y13_c00340{bottom:626.070450px;}
.y12_c00340{bottom:646.770450px;}
.y11_c00340{bottom:667.470450px;}
.y10_c00340{bottom:707.520450px;}
.yf_c00340{bottom:738.570450px;}
.ye_c00340{bottom:778.620450px;}
.yd_c00340{bottom:808.320450px;}
.yc_c00340{bottom:829.020450px;}
.yb_c00340{bottom:849.720450px;}
.ya_c00340{bottom:870.420450px;}
.y9_c00340{bottom:891.120450px;}
.y8_c00340{bottom:931.170450px;}
.y7_c00340{bottom:962.220450px;}
.y6_c00340{bottom:993.270450px;}
.y5_c00340{bottom:1024.320450px;}
.y4_c00340{bottom:1064.370450px;}
.y3_c00340{bottom:1094.520450px;}
.h1_c00340{height:63.175781px;}
.h3_c00340{height:64.546875px;}
.h4_c00340{height:75.093750px;}
.h2_c00340{height:87.484219px;}
.h0_c00340{height:1263.000000px;}
.w1_c00340{width:892.500000px;}
.w0_c00340{width:892.830000px;}
.x0_c00340{left:0.000000px;}
.x2_c00340{left:170.100000px;}
.x3_c00340{left:197.100000px;}
.x4_c00340{left:245.430000px;}
.x1_c00340{left:738.360000px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.lsc_c00340{letter-spacing:-0.070400pt;}
.ls9_c00340{letter-spacing:-0.057600pt;}
.lsb_c00340{letter-spacing:-0.051200pt;}
.lsa_c00340{letter-spacing:-0.044800pt;}
.ls4_c00340{letter-spacing:-0.038400pt;}
.ls2_c00340{letter-spacing:-0.032000pt;}
.ls3_c00340{letter-spacing:-0.025600pt;}
.ls5_c00340{letter-spacing:-0.019200pt;}
.ls7_c00340{letter-spacing:-0.012800pt;}
.ls8_c00340{letter-spacing:-0.006400pt;}
.ls1_c00340{letter-spacing:0.000000pt;}
.ls6_c00340{letter-spacing:0.006400pt;}
.ls0_c00340{letter-spacing:0.044736pt;}
.lsd_c00340{letter-spacing:0.134400pt;}
.ws1f_c00340{word-spacing:-0.793600pt;}
.wsb_c00340{word-spacing:-0.467200pt;}
.ws21_c00340{word-spacing:-0.012800pt;}
.ws0_c00340{word-spacing:0.000000pt;}
.ws1_c00340{word-spacing:0.037280pt;}
.ws8_c00340{word-spacing:0.070400pt;}
.ws26_c00340{word-spacing:0.089600pt;}
.wsf_c00340{word-spacing:0.147200pt;}
.ws20_c00340{word-spacing:0.153600pt;}
.ws2e_c00340{word-spacing:0.160000pt;}
.ws7_c00340{word-spacing:0.166400pt;}
.ws12_c00340{word-spacing:0.172800pt;}
.ws13_c00340{word-spacing:0.262400pt;}
.ws2_c00340{word-spacing:0.492800pt;}
.ws4_c00340{word-spacing:2.419200pt;}
.ws3_c00340{word-spacing:2.470400pt;}
.ws10_c00340{word-spacing:3.059200pt;}
.ws11_c00340{word-spacing:3.072000pt;}
.ws2b_c00340{word-spacing:3.673600pt;}
.ws1e_c00340{word-spacing:4.332800pt;}
.ws1d_c00340{word-spacing:4.390400pt;}
.ws27_c00340{word-spacing:5.209600pt;}
.ws28_c00340{word-spacing:5.286400pt;}
.ws6_c00340{word-spacing:5.574400pt;}
.ws5_c00340{word-spacing:5.600000pt;}
.ws25_c00340{word-spacing:6.252800pt;}
.ws24_c00340{word-spacing:6.310400pt;}
.ws18_c00340{word-spacing:7.225600pt;}
.wse_c00340{word-spacing:9.465600pt;}
.wsd_c00340{word-spacing:9.497600pt;}
.ws2a_c00340{word-spacing:9.657600pt;}
.ws29_c00340{word-spacing:9.772800pt;}
.ws22_c00340{word-spacing:10.086400pt;}
.ws23_c00340{word-spacing:10.118400pt;}
.ws30_c00340{word-spacing:14.227200pt;}
.ws2f_c00340{word-spacing:14.246400pt;}
.wsc_c00340{word-spacing:18.124800pt;}
.ws9_c00340{word-spacing:20.627200pt;}
.wsa_c00340{word-spacing:20.678400pt;}
.ws1b_c00340{word-spacing:21.280000pt;}
.ws1c_c00340{word-spacing:21.382400pt;}
.ws19_c00340{word-spacing:23.840000pt;}
.ws1a_c00340{word-spacing:23.872000pt;}
.ws2c_c00340{word-spacing:24.147200pt;}
.ws2d_c00340{word-spacing:24.172800pt;}
.ws15_c00340{word-spacing:26.342400pt;}
.ws14_c00340{word-spacing:26.419200pt;}
.ws16_c00340{word-spacing:38.566400pt;}
.ws17_c00340{word-spacing:38.585600pt;}
._1_c00340{width:1.017600pt;}
._0_c00340{width:136.295680pt;}
.fs0_c00340{font-size:64.000000pt;}
.fs1_c00340{font-size:74.560000pt;}
.y0_c00340{bottom:0.000000pt;}
.y2_c00340{bottom:41.627067pt;}
.y1_c00340{bottom:60.027067pt;}
.y23_c00340{bottom:138.107067pt;}
.y22_c00340{bottom:165.707067pt;}
.y21_c00340{bottom:201.307067pt;}
.y20_c00340{bottom:228.907067pt;}
.y1f_c00340{bottom:256.507067pt;}
.y1e_c00340{bottom:284.107067pt;}
.y1d_c00340{bottom:311.707067pt;}
.y1c_c00340{bottom:347.307067pt;}
.y1b_c00340{bottom:374.907067pt;}
.y1a_c00340{bottom:402.507067pt;}
.y19_c00340{bottom:438.107067pt;}
.y18_c00340{bottom:464.507067pt;}
.y17_c00340{bottom:482.907067pt;}
.y16_c00340{bottom:501.307067pt;}
.y15_c00340{bottom:519.707067pt;}
.y14_c00340{bottom:538.107067pt;}
.y13_c00340{bottom:556.507067pt;}
.y12_c00340{bottom:574.907067pt;}
.y11_c00340{bottom:593.307067pt;}
.y10_c00340{bottom:628.907067pt;}
.yf_c00340{bottom:656.507067pt;}
.ye_c00340{bottom:692.107067pt;}
.yd_c00340{bottom:718.507067pt;}
.yc_c00340{bottom:736.907067pt;}
.yb_c00340{bottom:755.307067pt;}
.ya_c00340{bottom:773.707067pt;}
.y9_c00340{bottom:792.107067pt;}
.y8_c00340{bottom:827.707067pt;}
.y7_c00340{bottom:855.307067pt;}
.y6_c00340{bottom:882.907067pt;}
.y5_c00340{bottom:910.507067pt;}
.y4_c00340{bottom:946.107067pt;}
.y3_c00340{bottom:972.907067pt;}
.h1_c00340{height:56.156250pt;}
.h3_c00340{height:57.375000pt;}
.h4_c00340{height:66.750000pt;}
.h2_c00340{height:77.763750pt;}
.h0_c00340{height:1122.666667pt;}
.w1_c00340{width:793.333333pt;}
.w0_c00340{width:793.626667pt;}
.x0_c00340{left:0.000000pt;}
.x2_c00340{left:151.200000pt;}
.x3_c00340{left:175.200000pt;}
.x4_c00340{left:218.160000pt;}
.x1_c00340{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2da461fad6c4015aff066d45.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.093262;font-style:normal;font-weight:normal;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_42c27deb4199f9bc1b929dcd.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.106934;font-style:normal;font-weight:normal;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_2fb256e91781e95f70d05783.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00341{letter-spacing:-0.158400px;}
.ls4_c00341{letter-spacing:-0.086400px;}
.lsa_c00341{letter-spacing:-0.079200px;}
.ls2_c00341{letter-spacing:-0.064800px;}
.ls1_c00341{letter-spacing:-0.057600px;}
.ls8_c00341{letter-spacing:-0.050400px;}
.ls5_c00341{letter-spacing:-0.043200px;}
.ls9_c00341{letter-spacing:-0.036000px;}
.ls7_c00341{letter-spacing:-0.028800px;}
.ls3_c00341{letter-spacing:-0.021600px;}
.lsc_c00341{letter-spacing:-0.014400px;}
.ls6_c00341{letter-spacing:-0.007200px;}
.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;}
}
.ws12_c00341{word-spacing:-2.340000px;}
.ws33_c00341{word-spacing:-1.764000px;}
.ws32_c00341{word-spacing:-1.519200px;}
.ws1f_c00341{word-spacing:-0.151200px;}
.ws20_c00341{word-spacing:-0.136800px;}
.ws0_c00341{word-spacing:0.000000px;}
.ws19_c00341{word-spacing:0.007200px;}
.ws28_c00341{word-spacing:0.093600px;}
.ws1c_c00341{word-spacing:0.144000px;}
.ws3_c00341{word-spacing:0.180000px;}
.wsb_c00341{word-spacing:0.201600px;}
.ws2d_c00341{word-spacing:0.360000px;}
.ws1d_c00341{word-spacing:1.620000px;}
.ws30_c00341{word-spacing:1.641600px;}
.ws31_c00341{word-spacing:1.663200px;}
.ws1e_c00341{word-spacing:1.677600px;}
.ws26_c00341{word-spacing:2.649600px;}
.ws25_c00341{word-spacing:2.707200px;}
.ws21_c00341{word-spacing:3.038400px;}
.ws22_c00341{word-spacing:3.103200px;}
.ws10_c00341{word-spacing:3.729600px;}
.ws11_c00341{word-spacing:3.823200px;}
.ws9_c00341{word-spacing:4.147200px;}
.ws2a_c00341{word-spacing:4.161600px;}
.wsa_c00341{word-spacing:4.168800px;}
.ws29_c00341{word-spacing:4.212000px;}
.ws2f_c00341{word-spacing:4.464000px;}
.ws2e_c00341{word-spacing:4.521600px;}
.wsf_c00341{word-spacing:4.867200px;}
.wsd_c00341{word-spacing:4.874400px;}
.wse_c00341{word-spacing:4.896000px;}
.ws1b_c00341{word-spacing:5.824800px;}
.ws1a_c00341{word-spacing:5.904000px;}
.ws1_c00341{word-spacing:5.911200px;}
.ws2_c00341{word-spacing:5.983200px;}
.wsc_c00341{word-spacing:8.481600px;}
.ws27_c00341{word-spacing:9.568800px;}
.ws14_c00341{word-spacing:9.784800px;}
.ws13_c00341{word-spacing:9.849600px;}
.ws2c_c00341{word-spacing:13.140000px;}
.ws2b_c00341{word-spacing:13.183200px;}
.ws5_c00341{word-spacing:13.903200px;}
.ws4_c00341{word-spacing:13.996800px;}
.ws7_c00341{word-spacing:14.256000px;}
.ws6_c00341{word-spacing:14.356800px;}
.ws24_c00341{word-spacing:15.645600px;}
.ws23_c00341{word-spacing:15.660000px;}
.ws15_c00341{word-spacing:27.187200px;}
.ws16_c00341{word-spacing:27.237600px;}
.ws17_c00341{word-spacing:34.718400px;}
.ws18_c00341{word-spacing:34.768800px;}
.ws8_c00341{word-spacing:55.281600px;}
._1_c00341{margin-left:-5.688000px;}
._0_c00341{width:1.094400px;}
.fc0_c00341{color:rgb(0,0,0);}
.fs0_c00341{font-size:72.000000px;}
.y0_c00341{bottom:0.000000px;}
.y2_c00341{bottom:46.830450px;}
.y1_c00341{bottom:67.530450px;}
.y22_c00341{bottom:193.440450px;}
.y21_c00341{bottom:224.580450px;}
.y20_c00341{bottom:255.630450px;}
.y1f_c00341{bottom:295.680450px;}
.y1e_c00341{bottom:326.730450px;}
.y1d_c00341{bottom:357.690450px;}
.y1c_c00341{bottom:397.740450px;}
.y1b_c00341{bottom:428.790450px;}
.y1a_c00341{bottom:459.840450px;}
.y19_c00341{bottom:490.890450px;}
.y18_c00341{bottom:521.940450px;}
.y17_c00341{bottom:552.990450px;}
.y16_c00341{bottom:584.040450px;}
.y15_c00341{bottom:615.090450px;}
.y14_c00341{bottom:646.140450px;}
.y13_c00341{bottom:675.840450px;}
.y12_c00341{bottom:696.540450px;}
.y11_c00341{bottom:717.240450px;}
.y10_c00341{bottom:737.940450px;}
.yf_c00341{bottom:758.640450px;}
.ye_c00341{bottom:779.340450px;}
.yd_c00341{bottom:800.040450px;}
.yc_c00341{bottom:820.740450px;}
.yb_c00341{bottom:841.440450px;}
.ya_c00341{bottom:862.140450px;}
.y9_c00341{bottom:902.190450px;}
.y8_c00341{bottom:933.240450px;}
.y7_c00341{bottom:964.290450px;}
.y6_c00341{bottom:995.340450px;}
.y5_c00341{bottom:1026.390450px;}
.y4_c00341{bottom:1066.440450px;}
.y3_c00341{bottom:1097.490450px;}
.h1_c00341{height:63.175781px;}
.h2_c00341{height:64.546875px;}
.h3_c00341{height:75.093750px;}
.h0_c00341{height:1263.000000px;}
.w1_c00341{width:892.500000px;}
.w0_c00341{width:892.830000px;}
.x0_c00341{left:0.000000px;}
.x2_c00341{left:127.620000px;}
.x3_c00341{left:202.950000px;}
.x1_c00341{left:695.880000px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.lsb_c00341{letter-spacing:-0.140800pt;}
.ls4_c00341{letter-spacing:-0.076800pt;}
.lsa_c00341{letter-spacing:-0.070400pt;}
.ls2_c00341{letter-spacing:-0.057600pt;}
.ls1_c00341{letter-spacing:-0.051200pt;}
.ls8_c00341{letter-spacing:-0.044800pt;}
.ls5_c00341{letter-spacing:-0.038400pt;}
.ls9_c00341{letter-spacing:-0.032000pt;}
.ls7_c00341{letter-spacing:-0.025600pt;}
.ls3_c00341{letter-spacing:-0.019200pt;}
.lsc_c00341{letter-spacing:-0.012800pt;}
.ls6_c00341{letter-spacing:-0.006400pt;}
.ls0_c00341{letter-spacing:0.000000pt;}
.ws12_c00341{word-spacing:-2.080000pt;}
.ws33_c00341{word-spacing:-1.568000pt;}
.ws32_c00341{word-spacing:-1.350400pt;}
.ws1f_c00341{word-spacing:-0.134400pt;}
.ws20_c00341{word-spacing:-0.121600pt;}
.ws0_c00341{word-spacing:0.000000pt;}
.ws19_c00341{word-spacing:0.006400pt;}
.ws28_c00341{word-spacing:0.083200pt;}
.ws1c_c00341{word-spacing:0.128000pt;}
.ws3_c00341{word-spacing:0.160000pt;}
.wsb_c00341{word-spacing:0.179200pt;}
.ws2d_c00341{word-spacing:0.320000pt;}
.ws1d_c00341{word-spacing:1.440000pt;}
.ws30_c00341{word-spacing:1.459200pt;}
.ws31_c00341{word-spacing:1.478400pt;}
.ws1e_c00341{word-spacing:1.491200pt;}
.ws26_c00341{word-spacing:2.355200pt;}
.ws25_c00341{word-spacing:2.406400pt;}
.ws21_c00341{word-spacing:2.700800pt;}
.ws22_c00341{word-spacing:2.758400pt;}
.ws10_c00341{word-spacing:3.315200pt;}
.ws11_c00341{word-spacing:3.398400pt;}
.ws9_c00341{word-spacing:3.686400pt;}
.ws2a_c00341{word-spacing:3.699200pt;}
.wsa_c00341{word-spacing:3.705600pt;}
.ws29_c00341{word-spacing:3.744000pt;}
.ws2f_c00341{word-spacing:3.968000pt;}
.ws2e_c00341{word-spacing:4.019200pt;}
.wsf_c00341{word-spacing:4.326400pt;}
.wsd_c00341{word-spacing:4.332800pt;}
.wse_c00341{word-spacing:4.352000pt;}
.ws1b_c00341{word-spacing:5.177600pt;}
.ws1a_c00341{word-spacing:5.248000pt;}
.ws1_c00341{word-spacing:5.254400pt;}
.ws2_c00341{word-spacing:5.318400pt;}
.wsc_c00341{word-spacing:7.539200pt;}
.ws27_c00341{word-spacing:8.505600pt;}
.ws14_c00341{word-spacing:8.697600pt;}
.ws13_c00341{word-spacing:8.755200pt;}
.ws2c_c00341{word-spacing:11.680000pt;}
.ws2b_c00341{word-spacing:11.718400pt;}
.ws5_c00341{word-spacing:12.358400pt;}
.ws4_c00341{word-spacing:12.441600pt;}
.ws7_c00341{word-spacing:12.672000pt;}
.ws6_c00341{word-spacing:12.761600pt;}
.ws24_c00341{word-spacing:13.907200pt;}
.ws23_c00341{word-spacing:13.920000pt;}
.ws15_c00341{word-spacing:24.166400pt;}
.ws16_c00341{word-spacing:24.211200pt;}
.ws17_c00341{word-spacing:30.860800pt;}
.ws18_c00341{word-spacing:30.905600pt;}
.ws8_c00341{word-spacing:49.139200pt;}
._1_c00341{margin-left:-5.056000pt;}
._0_c00341{width:0.972800pt;}
.fs0_c00341{font-size:64.000000pt;}
.y0_c00341{bottom:0.000000pt;}
.y2_c00341{bottom:41.627067pt;}
.y1_c00341{bottom:60.027067pt;}
.y22_c00341{bottom:171.947067pt;}
.y21_c00341{bottom:199.627067pt;}
.y20_c00341{bottom:227.227067pt;}
.y1f_c00341{bottom:262.827067pt;}
.y1e_c00341{bottom:290.427067pt;}
.y1d_c00341{bottom:317.947067pt;}
.y1c_c00341{bottom:353.547067pt;}
.y1b_c00341{bottom:381.147067pt;}
.y1a_c00341{bottom:408.747067pt;}
.y19_c00341{bottom:436.347067pt;}
.y18_c00341{bottom:463.947067pt;}
.y17_c00341{bottom:491.547067pt;}
.y16_c00341{bottom:519.147067pt;}
.y15_c00341{bottom:546.747067pt;}
.y14_c00341{bottom:574.347067pt;}
.y13_c00341{bottom:600.747067pt;}
.y12_c00341{bottom:619.147067pt;}
.y11_c00341{bottom:637.547067pt;}
.y10_c00341{bottom:655.947067pt;}
.yf_c00341{bottom:674.347067pt;}
.ye_c00341{bottom:692.747067pt;}
.yd_c00341{bottom:711.147067pt;}
.yc_c00341{bottom:729.547067pt;}
.yb_c00341{bottom:747.947067pt;}
.ya_c00341{bottom:766.347067pt;}
.y9_c00341{bottom:801.947067pt;}
.y8_c00341{bottom:829.547067pt;}
.y7_c00341{bottom:857.147067pt;}
.y6_c00341{bottom:884.747067pt;}
.y5_c00341{bottom:912.347067pt;}
.y4_c00341{bottom:947.947067pt;}
.y3_c00341{bottom:975.547067pt;}
.h1_c00341{height:56.156250pt;}
.h2_c00341{height:57.375000pt;}
.h3_c00341{height:66.750000pt;}
.h0_c00341{height:1122.666667pt;}
.w1_c00341{width:793.333333pt;}
.w0_c00341{width:793.626667pt;}
.x0_c00341{left:0.000000pt;}
.x2_c00341{left:113.440000pt;}
.x3_c00341{left:180.400000pt;}
.x1_c00341{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5e1c5f61476dc25a6d2d29f6.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.093262;font-style:normal;font-weight:normal;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_987ddebc13a02a7f271b3b2f.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00342;src:url('chunks/assets/font_71120785b7e5a911ad623bb5.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00342{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.lsc_c00342{letter-spacing:-0.079200px;}
.ls5_c00342{letter-spacing:-0.072000px;}
.lsb_c00342{letter-spacing:-0.064800px;}
.ls9_c00342{letter-spacing:-0.057600px;}
.lsa_c00342{letter-spacing:-0.050400px;}
.ls4_c00342{letter-spacing:-0.043200px;}
.ls1_c00342{letter-spacing:-0.036000px;}
.ls8_c00342{letter-spacing:-0.028800px;}
.ls6_c00342{letter-spacing:-0.021600px;}
.ls2_c00342{letter-spacing:-0.014400px;}
.ls7_c00342{letter-spacing:-0.007200px;}
.ls0_c00342{letter-spacing:0.000000px;}
.ls3_c00342{letter-spacing:0.151200px;}
.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;}
}
.ws19_c00342{word-spacing:-4.795200px;}
.ws18_c00342{word-spacing:-4.773600px;}
.ws9_c00342{word-spacing:-3.067200px;}
.wsc_c00342{word-spacing:-1.324800px;}
.wsd_c00342{word-spacing:-1.267200px;}
.ws12_c00342{word-spacing:-0.540000px;}
.ws13_c00342{word-spacing:-0.460800px;}
.ws5_c00342{word-spacing:-0.158400px;}
.ws6_c00342{word-spacing:-0.129600px;}
.ws0_c00342{word-spacing:0.000000px;}
.ws4_c00342{word-spacing:0.007200px;}
.ws24_c00342{word-spacing:0.036000px;}
.ws3_c00342{word-spacing:0.158400px;}
.ws8_c00342{word-spacing:0.165600px;}
.ws7_c00342{word-spacing:0.180000px;}
.wsa_c00342{word-spacing:0.194400px;}
.wsf_c00342{word-spacing:0.576000px;}
.wse_c00342{word-spacing:0.612000px;}
.ws1b_c00342{word-spacing:2.340000px;}
.ws22_c00342{word-spacing:2.707200px;}
.ws23_c00342{word-spacing:2.851200px;}
.ws20_c00342{word-spacing:3.808800px;}
.wsb_c00342{word-spacing:4.147200px;}
.ws10_c00342{word-spacing:8.100000px;}
.ws11_c00342{word-spacing:8.179200px;}
.ws15_c00342{word-spacing:9.057600px;}
.ws16_c00342{word-spacing:9.230400px;}
.ws26_c00342{word-spacing:14.594400px;}
.ws27_c00342{word-spacing:14.637600px;}
.ws17_c00342{word-spacing:18.194400px;}
.ws1a_c00342{word-spacing:18.201600px;}
.ws1_c00342{word-spacing:25.682400px;}
.ws2_c00342{word-spacing:25.732800px;}
.ws1f_c00342{word-spacing:30.772800px;}
.ws1e_c00342{word-spacing:30.823200px;}
.ws21_c00342{word-spacing:36.928800px;}
.ws1c_c00342{word-spacing:40.132800px;}
.ws1d_c00342{word-spacing:40.168800px;}
.ws14_c00342{word-spacing:43.041600px;}
.ws25_c00342{word-spacing:47.728800px;}
._0_c00342{width:1.368000px;}
.fc0_c00342{color:rgb(0,0,0);}
.fs0_c00342{font-size:72.000000px;}
.y0_c00342{bottom:0.000000px;}
.y2_c00342{bottom:46.830450px;}
.y1_c00342{bottom:67.530450px;}
.y20_c00342{bottom:134.130450px;}
.y1f_c00342{bottom:165.180450px;}
.y1e_c00342{bottom:205.230450px;}
.y1d_c00342{bottom:236.280450px;}
.y1c_c00342{bottom:267.330450px;}
.y1b_c00342{bottom:298.380450px;}
.y1a_c00342{bottom:338.430450px;}
.y19_c00342{bottom:369.390450px;}
.y18_c00342{bottom:400.440450px;}
.y17_c00342{bottom:440.490450px;}
.y16_c00342{bottom:471.540450px;}
.y15_c00342{bottom:502.590450px;}
.y14_c00342{bottom:542.640450px;}
.y13_c00342{bottom:573.690450px;}
.y12_c00342{bottom:604.740450px;}
.y11_c00342{bottom:635.790450px;}
.y10_c00342{bottom:666.840450px;}
.yf_c00342{bottom:697.890450px;}
.ye_c00342{bottom:728.940450px;}
.yd_c00342{bottom:759.990450px;}
.yc_c00342{bottom:791.040450px;}
.yb_c00342{bottom:822.090450px;}
.ya_c00342{bottom:853.140450px;}
.y9_c00342{bottom:893.190450px;}
.y8_c00342{bottom:924.240450px;}
.y7_c00342{bottom:955.290450px;}
.y6_c00342{bottom:995.340450px;}
.y5_c00342{bottom:1026.390450px;}
.y4_c00342{bottom:1066.440450px;}
.y3_c00342{bottom:1097.400450px;}
.h1_c00342{height:63.175781px;}
.h3_c00342{height:64.546875px;}
.h2_c00342{height:75.093750px;}
.h0_c00342{height:1263.000000px;}
.w1_c00342{width:892.500000px;}
.w0_c00342{width:892.830000px;}
.x0_c00342{left:0.000000px;}
.x2_c00342{left:170.100000px;}
.x1_c00342{left:738.360000px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.lsc_c00342{letter-spacing:-0.070400pt;}
.ls5_c00342{letter-spacing:-0.064000pt;}
.lsb_c00342{letter-spacing:-0.057600pt;}
.ls9_c00342{letter-spacing:-0.051200pt;}
.lsa_c00342{letter-spacing:-0.044800pt;}
.ls4_c00342{letter-spacing:-0.038400pt;}
.ls1_c00342{letter-spacing:-0.032000pt;}
.ls8_c00342{letter-spacing:-0.025600pt;}
.ls6_c00342{letter-spacing:-0.019200pt;}
.ls2_c00342{letter-spacing:-0.012800pt;}
.ls7_c00342{letter-spacing:-0.006400pt;}
.ls0_c00342{letter-spacing:0.000000pt;}
.ls3_c00342{letter-spacing:0.134400pt;}
.ws19_c00342{word-spacing:-4.262400pt;}
.ws18_c00342{word-spacing:-4.243200pt;}
.ws9_c00342{word-spacing:-2.726400pt;}
.wsc_c00342{word-spacing:-1.177600pt;}
.wsd_c00342{word-spacing:-1.126400pt;}
.ws12_c00342{word-spacing:-0.480000pt;}
.ws13_c00342{word-spacing:-0.409600pt;}
.ws5_c00342{word-spacing:-0.140800pt;}
.ws6_c00342{word-spacing:-0.115200pt;}
.ws0_c00342{word-spacing:0.000000pt;}
.ws4_c00342{word-spacing:0.006400pt;}
.ws24_c00342{word-spacing:0.032000pt;}
.ws3_c00342{word-spacing:0.140800pt;}
.ws8_c00342{word-spacing:0.147200pt;}
.ws7_c00342{word-spacing:0.160000pt;}
.wsa_c00342{word-spacing:0.172800pt;}
.wsf_c00342{word-spacing:0.512000pt;}
.wse_c00342{word-spacing:0.544000pt;}
.ws1b_c00342{word-spacing:2.080000pt;}
.ws22_c00342{word-spacing:2.406400pt;}
.ws23_c00342{word-spacing:2.534400pt;}
.ws20_c00342{word-spacing:3.385600pt;}
.wsb_c00342{word-spacing:3.686400pt;}
.ws10_c00342{word-spacing:7.200000pt;}
.ws11_c00342{word-spacing:7.270400pt;}
.ws15_c00342{word-spacing:8.051200pt;}
.ws16_c00342{word-spacing:8.204800pt;}
.ws26_c00342{word-spacing:12.972800pt;}
.ws27_c00342{word-spacing:13.011200pt;}
.ws17_c00342{word-spacing:16.172800pt;}
.ws1a_c00342{word-spacing:16.179200pt;}
.ws1_c00342{word-spacing:22.828800pt;}
.ws2_c00342{word-spacing:22.873600pt;}
.ws1f_c00342{word-spacing:27.353600pt;}
.ws1e_c00342{word-spacing:27.398400pt;}
.ws21_c00342{word-spacing:32.825600pt;}
.ws1c_c00342{word-spacing:35.673600pt;}
.ws1d_c00342{word-spacing:35.705600pt;}
.ws14_c00342{word-spacing:38.259200pt;}
.ws25_c00342{word-spacing:42.425600pt;}
._0_c00342{width:1.216000pt;}
.fs0_c00342{font-size:64.000000pt;}
.y0_c00342{bottom:0.000000pt;}
.y2_c00342{bottom:41.627067pt;}
.y1_c00342{bottom:60.027067pt;}
.y20_c00342{bottom:119.227067pt;}
.y1f_c00342{bottom:146.827067pt;}
.y1e_c00342{bottom:182.427067pt;}
.y1d_c00342{bottom:210.027067pt;}
.y1c_c00342{bottom:237.627067pt;}
.y1b_c00342{bottom:265.227067pt;}
.y1a_c00342{bottom:300.827067pt;}
.y19_c00342{bottom:328.347067pt;}
.y18_c00342{bottom:355.947067pt;}
.y17_c00342{bottom:391.547067pt;}
.y16_c00342{bottom:419.147067pt;}
.y15_c00342{bottom:446.747067pt;}
.y14_c00342{bottom:482.347067pt;}
.y13_c00342{bottom:509.947067pt;}
.y12_c00342{bottom:537.547067pt;}
.y11_c00342{bottom:565.147067pt;}
.y10_c00342{bottom:592.747067pt;}
.yf_c00342{bottom:620.347067pt;}
.ye_c00342{bottom:647.947067pt;}
.yd_c00342{bottom:675.547067pt;}
.yc_c00342{bottom:703.147067pt;}
.yb_c00342{bottom:730.747067pt;}
.ya_c00342{bottom:758.347067pt;}
.y9_c00342{bottom:793.947067pt;}
.y8_c00342{bottom:821.547067pt;}
.y7_c00342{bottom:849.147067pt;}
.y6_c00342{bottom:884.747067pt;}
.y5_c00342{bottom:912.347067pt;}
.y4_c00342{bottom:947.947067pt;}
.y3_c00342{bottom:975.467067pt;}
.h1_c00342{height:56.156250pt;}
.h3_c00342{height:57.375000pt;}
.h2_c00342{height:66.750000pt;}
.h0_c00342{height:1122.666667pt;}
.w1_c00342{width:793.333333pt;}
.w0_c00342{width:793.626667pt;}
.x0_c00342{left:0.000000pt;}
.x2_c00342{left:151.200000pt;}
.x1_c00342{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5e1c5f61476dc25a6d2d29f6.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.093262;font-style:normal;font-weight:normal;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_ef2beb22de44bf6336a7ad23.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.106934;font-style: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.043200px;}
.ls2_c00343{letter-spacing:-0.021600px;}
.ls0_c00343{letter-spacing:0.000000px;}
.ls3_c00343{letter-spacing:843.998400px;}
.sc__c00343{text-shadow:none;}
.sc0_c00343{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00343{-webkit-text-stroke:0px transparent;}
.sc0_c00343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00343{word-spacing:0.000000px;}
.ws3_c00343{word-spacing:0.180000px;}
.ws2_c00343{word-spacing:7.408800px;}
.ws1_c00343{word-spacing:7.473600px;}
.fc0_c00343{color:rgb(0,0,0);}
.fs0_c00343{font-size:72.000000px;}
.y0_c00343{bottom:0.000000px;}
.y2_c00343{bottom:46.830450px;}
.y1_c00343{bottom:67.530450px;}
.y5_c00343{bottom:1026.390450px;}
.y4_c00343{bottom:1066.440450px;}
.y3_c00343{bottom:1097.490450px;}
.h1_c00343{height:63.175781px;}
.h2_c00343{height:64.546875px;}
.h0_c00343{height:1263.000000px;}
.w1_c00343{width:892.500000px;}
.w0_c00343{width:892.830000px;}
.x0_c00343{left:0.000000px;}
.x2_c00343{left:127.620000px;}
.x1_c00343{left:695.880000px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls1_c00343{letter-spacing:-0.038400pt;}
.ls2_c00343{letter-spacing:-0.019200pt;}
.ls0_c00343{letter-spacing:0.000000pt;}
.ls3_c00343{letter-spacing:750.220800pt;}
.ws0_c00343{word-spacing:0.000000pt;}
.ws3_c00343{word-spacing:0.160000pt;}
.ws2_c00343{word-spacing:6.585600pt;}
.ws1_c00343{word-spacing:6.643200pt;}
.fs0_c00343{font-size:64.000000pt;}
.y0_c00343{bottom:0.000000pt;}
.y2_c00343{bottom:41.627067pt;}
.y1_c00343{bottom:60.027067pt;}
.y5_c00343{bottom:912.347067pt;}
.y4_c00343{bottom:947.947067pt;}
.y3_c00343{bottom:975.547067pt;}
.h1_c00343{height:56.156250pt;}
.h2_c00343{height:57.375000pt;}
.h0_c00343{height:1122.666667pt;}
.w1_c00343{width:793.333333pt;}
.w0_c00343{width:793.626667pt;}
.x0_c00343{left:0.000000pt;}
.x2_c00343{left:113.440000pt;}
.x1_c00343{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1216ac9d09f1d37be329b8d8.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.093262;font-style:normal;font-weight:normal;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_ef09b441b8d1efb41c8a35de.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00344;src:url('chunks/assets/font_75df3f4d20d562cf21d2e2b7.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00344{vertical-align:0.000000px;}
.lse_c00344{letter-spacing:-0.093600px;}
.lsc_c00344{letter-spacing:-0.086400px;}
.lsf_c00344{letter-spacing:-0.079200px;}
.ls8_c00344{letter-spacing:-0.072000px;}
.ls9_c00344{letter-spacing:-0.064800px;}
.lsd_c00344{letter-spacing:-0.057600px;}
.ls6_c00344{letter-spacing:-0.050400px;}
.ls3_c00344{letter-spacing:-0.043200px;}
.ls5_c00344{letter-spacing:-0.036000px;}
.ls4_c00344{letter-spacing:-0.028800px;}
.lsb_c00344{letter-spacing:-0.021600px;}
.ls7_c00344{letter-spacing:-0.014400px;}
.ls1_c00344{letter-spacing:0.000000px;}
.lsa_c00344{letter-spacing:0.007200px;}
.ls0_c00344{letter-spacing:0.075492px;}
.ls2_c00344{letter-spacing:0.100656px;}
.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;}
}
.ws2d_c00344{word-spacing:-4.838400px;}
.ws2e_c00344{word-spacing:-4.708800px;}
.ws25_c00344{word-spacing:-2.692800px;}
.ws26_c00344{word-spacing:-2.664000px;}
.ws30_c00344{word-spacing:-2.325600px;}
.ws31_c00344{word-spacing:-2.239200px;}
.ws1e_c00344{word-spacing:-2.095200px;}
.ws10_c00344{word-spacing:-1.987200px;}
.wsf_c00344{word-spacing:-1.886400px;}
.ws2a_c00344{word-spacing:-1.728000px;}
.ws29_c00344{word-spacing:-1.576800px;}
.ws2_c00344{word-spacing:-0.243252px;}
.ws18_c00344{word-spacing:-0.158400px;}
.ws17_c00344{word-spacing:-0.144000px;}
.ws2c_c00344{word-spacing:-0.136800px;}
.ws2b_c00344{word-spacing:-0.122400px;}
.ws0_c00344{word-spacing:0.000000px;}
.ws1f_c00344{word-spacing:0.100800px;}
.wsb_c00344{word-spacing:0.151200px;}
.ws33_c00344{word-spacing:0.158400px;}
.ws13_c00344{word-spacing:0.194400px;}
.ws11_c00344{word-spacing:0.878400px;}
.ws12_c00344{word-spacing:0.892800px;}
.ws24_c00344{word-spacing:1.267200px;}
.ws2f_c00344{word-spacing:1.288800px;}
.ws32_c00344{word-spacing:1.317600px;}
.ws20_c00344{word-spacing:2.332800px;}
.ws21_c00344{word-spacing:2.368800px;}
.ws23_c00344{word-spacing:3.412800px;}
.ws22_c00344{word-spacing:3.484800px;}
.ws16_c00344{word-spacing:7.056000px;}
.ws8_c00344{word-spacing:7.372800px;}
.ws7_c00344{word-spacing:7.408800px;}
.wsa_c00344{word-spacing:11.023200px;}
.ws9_c00344{word-spacing:11.030400px;}
.ws28_c00344{word-spacing:11.707200px;}
.ws27_c00344{word-spacing:11.728800px;}
.ws4_c00344{word-spacing:13.507200px;}
.ws3_c00344{word-spacing:13.521600px;}
.ws1b_c00344{word-spacing:13.550400px;}
.wsc_c00344{word-spacing:18.489600px;}
.wse_c00344{word-spacing:18.540000px;}
.wsd_c00344{word-spacing:18.554400px;}
.ws5_c00344{word-spacing:18.900000px;}
.ws6_c00344{word-spacing:18.914400px;}
.ws1a_c00344{word-spacing:20.001600px;}
.ws19_c00344{word-spacing:21.081600px;}
.ws1c_c00344{word-spacing:30.952800px;}
.ws1d_c00344{word-spacing:31.168800px;}
.ws14_c00344{word-spacing:44.827200px;}
.ws15_c00344{word-spacing:44.884800px;}
.ws1_c00344{word-spacing:153.382968px;}
._0_c00344{margin-left:-153.500400px;}
._1_c00344{width:1.080000px;}
.fc0_c00344{color:rgb(0,0,0);}
.fs0_c00344{font-size:72.000000px;}
.fs1_c00344{font-size:83.880000px;}
.y0_c00344{bottom:0.000000px;}
.y2_c00344{bottom:46.830450px;}
.y1_c00344{bottom:67.530450px;}
.y25_c00344{bottom:195.870450px;}
.y24_c00344{bottom:226.920450px;}
.y23_c00344{bottom:257.970450px;}
.y22_c00344{bottom:289.020450px;}
.y21_c00344{bottom:320.070450px;}
.y20_c00344{bottom:360.120450px;}
.y1f_c00344{bottom:389.820450px;}
.y1e_c00344{bottom:410.520450px;}
.y1d_c00344{bottom:431.220450px;}
.y1c_c00344{bottom:451.920450px;}
.y1b_c00344{bottom:472.620450px;}
.y1a_c00344{bottom:493.320450px;}
.y19_c00344{bottom:514.020450px;}
.y18_c00344{bottom:534.720450px;}
.y17_c00344{bottom:555.420450px;}
.y16_c00344{bottom:576.120450px;}
.y15_c00344{bottom:596.820450px;}
.y14_c00344{bottom:617.520450px;}
.y13_c00344{bottom:638.220450px;}
.y12_c00344{bottom:658.920450px;}
.y11_c00344{bottom:679.620450px;}
.y10_c00344{bottom:700.320450px;}
.yf_c00344{bottom:721.020450px;}
.ye_c00344{bottom:761.070450px;}
.yd_c00344{bottom:792.120450px;}
.yc_c00344{bottom:823.170450px;}
.yb_c00344{bottom:854.220450px;}
.ya_c00344{bottom:894.270450px;}
.y9_c00344{bottom:925.320450px;}
.y8_c00344{bottom:956.370450px;}
.y7_c00344{bottom:987.420450px;}
.y6_c00344{bottom:1018.470450px;}
.y5_c00344{bottom:1048.260450px;}
.y4_c00344{bottom:1068.960450px;}
.y3_c00344{bottom:1094.520450px;}
.h1_c00344{height:63.175781px;}
.h3_c00344{height:64.546875px;}
.h2_c00344{height:87.484219px;}
.h0_c00344{height:1263.000000px;}
.w1_c00344{width:892.500000px;}
.w0_c00344{width:892.830000px;}
.x0_c00344{left:0.000000px;}
.x2_c00344{left:170.100000px;}
.x3_c00344{left:197.100000px;}
.x4_c00344{left:245.430000px;}
.x1_c00344{left:738.360000px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.lse_c00344{letter-spacing:-0.083200pt;}
.lsc_c00344{letter-spacing:-0.076800pt;}
.lsf_c00344{letter-spacing:-0.070400pt;}
.ls8_c00344{letter-spacing:-0.064000pt;}
.ls9_c00344{letter-spacing:-0.057600pt;}
.lsd_c00344{letter-spacing:-0.051200pt;}
.ls6_c00344{letter-spacing:-0.044800pt;}
.ls3_c00344{letter-spacing:-0.038400pt;}
.ls5_c00344{letter-spacing:-0.032000pt;}
.ls4_c00344{letter-spacing:-0.025600pt;}
.lsb_c00344{letter-spacing:-0.019200pt;}
.ls7_c00344{letter-spacing:-0.012800pt;}
.ls1_c00344{letter-spacing:0.000000pt;}
.lsa_c00344{letter-spacing:0.006400pt;}
.ls0_c00344{letter-spacing:0.067104pt;}
.ls2_c00344{letter-spacing:0.089472pt;}
.ws2d_c00344{word-spacing:-4.300800pt;}
.ws2e_c00344{word-spacing:-4.185600pt;}
.ws25_c00344{word-spacing:-2.393600pt;}
.ws26_c00344{word-spacing:-2.368000pt;}
.ws30_c00344{word-spacing:-2.067200pt;}
.ws31_c00344{word-spacing:-1.990400pt;}
.ws1e_c00344{word-spacing:-1.862400pt;}
.ws10_c00344{word-spacing:-1.766400pt;}
.wsf_c00344{word-spacing:-1.676800pt;}
.ws2a_c00344{word-spacing:-1.536000pt;}
.ws29_c00344{word-spacing:-1.401600pt;}
.ws2_c00344{word-spacing:-0.216224pt;}
.ws18_c00344{word-spacing:-0.140800pt;}
.ws17_c00344{word-spacing:-0.128000pt;}
.ws2c_c00344{word-spacing:-0.121600pt;}
.ws2b_c00344{word-spacing:-0.108800pt;}
.ws0_c00344{word-spacing:0.000000pt;}
.ws1f_c00344{word-spacing:0.089600pt;}
.wsb_c00344{word-spacing:0.134400pt;}
.ws33_c00344{word-spacing:0.140800pt;}
.ws13_c00344{word-spacing:0.172800pt;}
.ws11_c00344{word-spacing:0.780800pt;}
.ws12_c00344{word-spacing:0.793600pt;}
.ws24_c00344{word-spacing:1.126400pt;}
.ws2f_c00344{word-spacing:1.145600pt;}
.ws32_c00344{word-spacing:1.171200pt;}
.ws20_c00344{word-spacing:2.073600pt;}
.ws21_c00344{word-spacing:2.105600pt;}
.ws23_c00344{word-spacing:3.033600pt;}
.ws22_c00344{word-spacing:3.097600pt;}
.ws16_c00344{word-spacing:6.272000pt;}
.ws8_c00344{word-spacing:6.553600pt;}
.ws7_c00344{word-spacing:6.585600pt;}
.wsa_c00344{word-spacing:9.798400pt;}
.ws9_c00344{word-spacing:9.804800pt;}
.ws28_c00344{word-spacing:10.406400pt;}
.ws27_c00344{word-spacing:10.425600pt;}
.ws4_c00344{word-spacing:12.006400pt;}
.ws3_c00344{word-spacing:12.019200pt;}
.ws1b_c00344{word-spacing:12.044800pt;}
.wsc_c00344{word-spacing:16.435200pt;}
.wse_c00344{word-spacing:16.480000pt;}
.wsd_c00344{word-spacing:16.492800pt;}
.ws5_c00344{word-spacing:16.800000pt;}
.ws6_c00344{word-spacing:16.812800pt;}
.ws1a_c00344{word-spacing:17.779200pt;}
.ws19_c00344{word-spacing:18.739200pt;}
.ws1c_c00344{word-spacing:27.513600pt;}
.ws1d_c00344{word-spacing:27.705600pt;}
.ws14_c00344{word-spacing:39.846400pt;}
.ws15_c00344{word-spacing:39.897600pt;}
.ws1_c00344{word-spacing:136.340416pt;}
._0_c00344{margin-left:-136.444800pt;}
._1_c00344{width:0.960000pt;}
.fs0_c00344{font-size:64.000000pt;}
.fs1_c00344{font-size:74.560000pt;}
.y0_c00344{bottom:0.000000pt;}
.y2_c00344{bottom:41.627067pt;}
.y1_c00344{bottom:60.027067pt;}
.y25_c00344{bottom:174.107067pt;}
.y24_c00344{bottom:201.707067pt;}
.y23_c00344{bottom:229.307067pt;}
.y22_c00344{bottom:256.907067pt;}
.y21_c00344{bottom:284.507067pt;}
.y20_c00344{bottom:320.107067pt;}
.y1f_c00344{bottom:346.507067pt;}
.y1e_c00344{bottom:364.907067pt;}
.y1d_c00344{bottom:383.307067pt;}
.y1c_c00344{bottom:401.707067pt;}
.y1b_c00344{bottom:420.107067pt;}
.y1a_c00344{bottom:438.507067pt;}
.y19_c00344{bottom:456.907067pt;}
.y18_c00344{bottom:475.307067pt;}
.y17_c00344{bottom:493.707067pt;}
.y16_c00344{bottom:512.107067pt;}
.y15_c00344{bottom:530.507067pt;}
.y14_c00344{bottom:548.907067pt;}
.y13_c00344{bottom:567.307067pt;}
.y12_c00344{bottom:585.707067pt;}
.y11_c00344{bottom:604.107067pt;}
.y10_c00344{bottom:622.507067pt;}
.yf_c00344{bottom:640.907067pt;}
.ye_c00344{bottom:676.507067pt;}
.yd_c00344{bottom:704.107067pt;}
.yc_c00344{bottom:731.707067pt;}
.yb_c00344{bottom:759.307067pt;}
.ya_c00344{bottom:794.907067pt;}
.y9_c00344{bottom:822.507067pt;}
.y8_c00344{bottom:850.107067pt;}
.y7_c00344{bottom:877.707067pt;}
.y6_c00344{bottom:905.307067pt;}
.y5_c00344{bottom:931.787067pt;}
.y4_c00344{bottom:950.187067pt;}
.y3_c00344{bottom:972.907067pt;}
.h1_c00344{height:56.156250pt;}
.h3_c00344{height:57.375000pt;}
.h2_c00344{height:77.763750pt;}
.h0_c00344{height:1122.666667pt;}
.w1_c00344{width:793.333333pt;}
.w0_c00344{width:793.626667pt;}
.x0_c00344{left:0.000000pt;}
.x2_c00344{left:151.200000pt;}
.x3_c00344{left:175.200000pt;}
.x4_c00344{left:218.160000pt;}
.x1_c00344{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7dfd1003c6f55c63a4989e3a.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.093262;font-style:normal;font-weight:normal;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_070d564bf1a558d63e56dff4.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.106934;font-style:normal;font-weight:normal;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_79f6b69a93c3fd8f28405a8a.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00345{letter-spacing:-0.100800px;}
.ls2_c00345{letter-spacing:-0.086400px;}
.ls7_c00345{letter-spacing:-0.072000px;}
.lsb_c00345{letter-spacing:-0.064800px;}
.ls3_c00345{letter-spacing:-0.057600px;}
.lse_c00345{letter-spacing:-0.050400px;}
.ls5_c00345{letter-spacing:-0.043200px;}
.lsc_c00345{letter-spacing:-0.036000px;}
.ls4_c00345{letter-spacing:-0.028800px;}
.ls6_c00345{letter-spacing:-0.021600px;}
.ls8_c00345{letter-spacing:-0.014400px;}
.lsa_c00345{letter-spacing:-0.007200px;}
.ls1_c00345{letter-spacing:0.000000px;}
.ls9_c00345{letter-spacing:0.007200px;}
.ls0_c00345{letter-spacing:0.144000px;}
.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;}
}
.ws13_c00345{word-spacing:-4.507200px;}
.ws12_c00345{word-spacing:-4.485600px;}
.ws2_c00345{word-spacing:-2.304000px;}
.ws1_c00345{word-spacing:-2.275200px;}
.ws6_c00345{word-spacing:-0.144000px;}
.ws0_c00345{word-spacing:0.000000px;}
.wsd_c00345{word-spacing:0.072000px;}
.wsc_c00345{word-spacing:0.165600px;}
.ws26_c00345{word-spacing:0.194400px;}
.ws2d_c00345{word-spacing:0.201600px;}
.ws35_c00345{word-spacing:0.432000px;}
.ws36_c00345{word-spacing:0.568800px;}
.ws31_c00345{word-spacing:1.360800px;}
.ws32_c00345{word-spacing:1.555200px;}
.ws2e_c00345{word-spacing:1.641600px;}
.ws11_c00345{word-spacing:2.700000px;}
.ws21_c00345{word-spacing:4.039200px;}
.ws20_c00345{word-spacing:4.161600px;}
.ws1f_c00345{word-spacing:4.219200px;}
.ws38_c00345{word-spacing:5.140800px;}
.ws37_c00345{word-spacing:5.234400px;}
.ws1c_c00345{word-spacing:5.824800px;}
.ws1d_c00345{word-spacing:5.940000px;}
.ws1e_c00345{word-spacing:5.976000px;}
.wsf_c00345{word-spacing:6.271200px;}
.wse_c00345{word-spacing:6.278400px;}
.ws5_c00345{word-spacing:6.660000px;}
.ws4_c00345{word-spacing:6.681600px;}
.ws14_c00345{word-spacing:8.114400px;}
.ws15_c00345{word-spacing:8.136000px;}
.ws23_c00345{word-spacing:9.072000px;}
.ws39_c00345{word-spacing:9.100800px;}
.ws22_c00345{word-spacing:9.201600px;}
.ws9_c00345{word-spacing:9.590400px;}
.ws8_c00345{word-spacing:9.828000px;}
.ws7_c00345{word-spacing:9.921600px;}
.ws3_c00345{word-spacing:11.707200px;}
.ws16_c00345{word-spacing:13.507200px;}
.ws27_c00345{word-spacing:14.882400px;}
.ws28_c00345{word-spacing:14.954400px;}
.wsb_c00345{word-spacing:15.631200px;}
.wsa_c00345{word-spacing:15.796800px;}
.ws30_c00345{word-spacing:16.624800px;}
.ws2f_c00345{word-spacing:16.689600px;}
.ws24_c00345{word-spacing:20.534400px;}
.ws25_c00345{word-spacing:20.548800px;}
.ws18_c00345{word-spacing:22.521600px;}
.ws17_c00345{word-spacing:22.557600px;}
.ws1b_c00345{word-spacing:22.852800px;}
.ws19_c00345{word-spacing:22.874400px;}
.ws1a_c00345{word-spacing:22.903200px;}
.ws2a_c00345{word-spacing:31.492800px;}
.ws29_c00345{word-spacing:31.507200px;}
.ws2c_c00345{word-spacing:32.227200px;}
.ws2b_c00345{word-spacing:32.241600px;}
.ws33_c00345{word-spacing:33.314400px;}
.ws34_c00345{word-spacing:60.667200px;}
.ws10_c00345{word-spacing:73.641600px;}
._0_c00345{width:1.137600px;}
.fc0_c00345{color:rgb(0,0,0);}
.fs0_c00345{font-size:72.000000px;}
.y0_c00345{bottom:0.000000px;}
.y2_c00345{bottom:46.830450px;}
.y1_c00345{bottom:67.530450px;}
.y23_c00345{bottom:140.430450px;}
.y22_c00345{bottom:161.130450px;}
.y21_c00345{bottom:181.830450px;}
.y20_c00345{bottom:202.530450px;}
.y1f_c00345{bottom:223.230450px;}
.y1e_c00345{bottom:243.930450px;}
.y1d_c00345{bottom:264.630450px;}
.y1c_c00345{bottom:285.330450px;}
.y1b_c00345{bottom:325.380450px;}
.y1a_c00345{bottom:356.430450px;}
.y19_c00345{bottom:387.390450px;}
.y18_c00345{bottom:418.440450px;}
.y17_c00345{bottom:458.490450px;}
.y16_c00345{bottom:489.540450px;}
.y15_c00345{bottom:520.590450px;}
.y14_c00345{bottom:551.640450px;}
.y13_c00345{bottom:582.690450px;}
.y12_c00345{bottom:613.740450px;}
.y11_c00345{bottom:653.790450px;}
.y10_c00345{bottom:684.840450px;}
.yf_c00345{bottom:715.890450px;}
.ye_c00345{bottom:746.940450px;}
.yd_c00345{bottom:777.990450px;}
.yc_c00345{bottom:808.950450px;}
.yb_c00345{bottom:840.090450px;}
.ya_c00345{bottom:871.140450px;}
.y9_c00345{bottom:911.190450px;}
.y8_c00345{bottom:942.240450px;}
.y7_c00345{bottom:973.290450px;}
.y6_c00345{bottom:1004.340450px;}
.y5_c00345{bottom:1035.390450px;}
.y4_c00345{bottom:1066.440450px;}
.y3_c00345{bottom:1097.490450px;}
.h1_c00345{height:63.175781px;}
.h2_c00345{height:64.546875px;}
.h3_c00345{height:75.093750px;}
.h0_c00345{height:1263.000000px;}
.w1_c00345{width:892.500000px;}
.w0_c00345{width:892.830000px;}
.x0_c00345{left:0.000000px;}
.x2_c00345{left:127.620000px;}
.x3_c00345{left:202.950000px;}
.x1_c00345{left:695.880000px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.lsd_c00345{letter-spacing:-0.089600pt;}
.ls2_c00345{letter-spacing:-0.076800pt;}
.ls7_c00345{letter-spacing:-0.064000pt;}
.lsb_c00345{letter-spacing:-0.057600pt;}
.ls3_c00345{letter-spacing:-0.051200pt;}
.lse_c00345{letter-spacing:-0.044800pt;}
.ls5_c00345{letter-spacing:-0.038400pt;}
.lsc_c00345{letter-spacing:-0.032000pt;}
.ls4_c00345{letter-spacing:-0.025600pt;}
.ls6_c00345{letter-spacing:-0.019200pt;}
.ls8_c00345{letter-spacing:-0.012800pt;}
.lsa_c00345{letter-spacing:-0.006400pt;}
.ls1_c00345{letter-spacing:0.000000pt;}
.ls9_c00345{letter-spacing:0.006400pt;}
.ls0_c00345{letter-spacing:0.128000pt;}
.ws13_c00345{word-spacing:-4.006400pt;}
.ws12_c00345{word-spacing:-3.987200pt;}
.ws2_c00345{word-spacing:-2.048000pt;}
.ws1_c00345{word-spacing:-2.022400pt;}
.ws6_c00345{word-spacing:-0.128000pt;}
.ws0_c00345{word-spacing:0.000000pt;}
.wsd_c00345{word-spacing:0.064000pt;}
.wsc_c00345{word-spacing:0.147200pt;}
.ws26_c00345{word-spacing:0.172800pt;}
.ws2d_c00345{word-spacing:0.179200pt;}
.ws35_c00345{word-spacing:0.384000pt;}
.ws36_c00345{word-spacing:0.505600pt;}
.ws31_c00345{word-spacing:1.209600pt;}
.ws32_c00345{word-spacing:1.382400pt;}
.ws2e_c00345{word-spacing:1.459200pt;}
.ws11_c00345{word-spacing:2.400000pt;}
.ws21_c00345{word-spacing:3.590400pt;}
.ws20_c00345{word-spacing:3.699200pt;}
.ws1f_c00345{word-spacing:3.750400pt;}
.ws38_c00345{word-spacing:4.569600pt;}
.ws37_c00345{word-spacing:4.652800pt;}
.ws1c_c00345{word-spacing:5.177600pt;}
.ws1d_c00345{word-spacing:5.280000pt;}
.ws1e_c00345{word-spacing:5.312000pt;}
.wsf_c00345{word-spacing:5.574400pt;}
.wse_c00345{word-spacing:5.580800pt;}
.ws5_c00345{word-spacing:5.920000pt;}
.ws4_c00345{word-spacing:5.939200pt;}
.ws14_c00345{word-spacing:7.212800pt;}
.ws15_c00345{word-spacing:7.232000pt;}
.ws23_c00345{word-spacing:8.064000pt;}
.ws39_c00345{word-spacing:8.089600pt;}
.ws22_c00345{word-spacing:8.179200pt;}
.ws9_c00345{word-spacing:8.524800pt;}
.ws8_c00345{word-spacing:8.736000pt;}
.ws7_c00345{word-spacing:8.819200pt;}
.ws3_c00345{word-spacing:10.406400pt;}
.ws16_c00345{word-spacing:12.006400pt;}
.ws27_c00345{word-spacing:13.228800pt;}
.ws28_c00345{word-spacing:13.292800pt;}
.wsb_c00345{word-spacing:13.894400pt;}
.wsa_c00345{word-spacing:14.041600pt;}
.ws30_c00345{word-spacing:14.777600pt;}
.ws2f_c00345{word-spacing:14.835200pt;}
.ws24_c00345{word-spacing:18.252800pt;}
.ws25_c00345{word-spacing:18.265600pt;}
.ws18_c00345{word-spacing:20.019200pt;}
.ws17_c00345{word-spacing:20.051200pt;}
.ws1b_c00345{word-spacing:20.313600pt;}
.ws19_c00345{word-spacing:20.332800pt;}
.ws1a_c00345{word-spacing:20.358400pt;}
.ws2a_c00345{word-spacing:27.993600pt;}
.ws29_c00345{word-spacing:28.006400pt;}
.ws2c_c00345{word-spacing:28.646400pt;}
.ws2b_c00345{word-spacing:28.659200pt;}
.ws33_c00345{word-spacing:29.612800pt;}
.ws34_c00345{word-spacing:53.926400pt;}
.ws10_c00345{word-spacing:65.459200pt;}
._0_c00345{width:1.011200pt;}
.fs0_c00345{font-size:64.000000pt;}
.y0_c00345{bottom:0.000000pt;}
.y2_c00345{bottom:41.627067pt;}
.y1_c00345{bottom:60.027067pt;}
.y23_c00345{bottom:124.827067pt;}
.y22_c00345{bottom:143.227067pt;}
.y21_c00345{bottom:161.627067pt;}
.y20_c00345{bottom:180.027067pt;}
.y1f_c00345{bottom:198.427067pt;}
.y1e_c00345{bottom:216.827067pt;}
.y1d_c00345{bottom:235.227067pt;}
.y1c_c00345{bottom:253.627067pt;}
.y1b_c00345{bottom:289.227067pt;}
.y1a_c00345{bottom:316.827067pt;}
.y19_c00345{bottom:344.347067pt;}
.y18_c00345{bottom:371.947067pt;}
.y17_c00345{bottom:407.547067pt;}
.y16_c00345{bottom:435.147067pt;}
.y15_c00345{bottom:462.747067pt;}
.y14_c00345{bottom:490.347067pt;}
.y13_c00345{bottom:517.947067pt;}
.y12_c00345{bottom:545.547067pt;}
.y11_c00345{bottom:581.147067pt;}
.y10_c00345{bottom:608.747067pt;}
.yf_c00345{bottom:636.347067pt;}
.ye_c00345{bottom:663.947067pt;}
.yd_c00345{bottom:691.547067pt;}
.yc_c00345{bottom:719.067067pt;}
.yb_c00345{bottom:746.747067pt;}
.ya_c00345{bottom:774.347067pt;}
.y9_c00345{bottom:809.947067pt;}
.y8_c00345{bottom:837.547067pt;}
.y7_c00345{bottom:865.147067pt;}
.y6_c00345{bottom:892.747067pt;}
.y5_c00345{bottom:920.347067pt;}
.y4_c00345{bottom:947.947067pt;}
.y3_c00345{bottom:975.547067pt;}
.h1_c00345{height:56.156250pt;}
.h2_c00345{height:57.375000pt;}
.h3_c00345{height:66.750000pt;}
.h0_c00345{height:1122.666667pt;}
.w1_c00345{width:793.333333pt;}
.w0_c00345{width:793.626667pt;}
.x0_c00345{left:0.000000pt;}
.x2_c00345{left:113.440000pt;}
.x3_c00345{left:180.400000pt;}
.x1_c00345{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d503944409faa6c7b71cd395.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.093262;font-style:normal;font-weight:normal;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_328d74e3607a263e1d0bac4b.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00346{vertical-align:0.000000px;}
.ls6_c00346{letter-spacing:-0.036000px;}
.ls4_c00346{letter-spacing:-0.028800px;}
.ls2_c00346{letter-spacing:-0.021600px;}
.ls3_c00346{letter-spacing:-0.014400px;}
.ls5_c00346{letter-spacing:-0.007200px;}
.ls1_c00346{letter-spacing:0.000000px;}
.ls0_c00346{letter-spacing:0.007200px;}
.ls7_c00346{letter-spacing:843.998400px;}
.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;}
}
.wsa_c00346{word-spacing:-0.014400px;}
.ws0_c00346{word-spacing:0.000000px;}
.ws6_c00346{word-spacing:0.165600px;}
.ws7_c00346{word-spacing:5.940000px;}
.ws1_c00346{word-spacing:9.388800px;}
.ws2_c00346{word-spacing:9.540000px;}
.ws9_c00346{word-spacing:11.340000px;}
.ws8_c00346{word-spacing:11.354400px;}
.ws4_c00346{word-spacing:17.452800px;}
.ws3_c00346{word-spacing:17.467200px;}
.ws5_c00346{word-spacing:33.667200px;}
.fc0_c00346{color:rgb(0,0,0);}
.fs0_c00346{font-size:72.000000px;}
.y0_c00346{bottom:0.000000px;}
.y2_c00346{bottom:46.830450px;}
.y1_c00346{bottom:67.530450px;}
.yb_c00346{bottom:863.490450px;}
.ya_c00346{bottom:903.540450px;}
.y9_c00346{bottom:934.590450px;}
.y8_c00346{bottom:965.640450px;}
.y7_c00346{bottom:1005.690450px;}
.y6_c00346{bottom:1035.390450px;}
.y5_c00346{bottom:1056.090450px;}
.y4_c00346{bottom:1076.790450px;}
.y3_c00346{bottom:1097.490450px;}
.h1_c00346{height:63.175781px;}
.h2_c00346{height:64.546875px;}
.h0_c00346{height:1263.000000px;}
.w1_c00346{width:892.500000px;}
.w0_c00346{width:892.830000px;}
.x0_c00346{left:0.000000px;}
.x2_c00346{left:170.100000px;}
.x3_c00346{left:245.430000px;}
.x1_c00346{left:738.360000px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls6_c00346{letter-spacing:-0.032000pt;}
.ls4_c00346{letter-spacing:-0.025600pt;}
.ls2_c00346{letter-spacing:-0.019200pt;}
.ls3_c00346{letter-spacing:-0.012800pt;}
.ls5_c00346{letter-spacing:-0.006400pt;}
.ls1_c00346{letter-spacing:0.000000pt;}
.ls0_c00346{letter-spacing:0.006400pt;}
.ls7_c00346{letter-spacing:750.220800pt;}
.wsa_c00346{word-spacing:-0.012800pt;}
.ws0_c00346{word-spacing:0.000000pt;}
.ws6_c00346{word-spacing:0.147200pt;}
.ws7_c00346{word-spacing:5.280000pt;}
.ws1_c00346{word-spacing:8.345600pt;}
.ws2_c00346{word-spacing:8.480000pt;}
.ws9_c00346{word-spacing:10.080000pt;}
.ws8_c00346{word-spacing:10.092800pt;}
.ws4_c00346{word-spacing:15.513600pt;}
.ws3_c00346{word-spacing:15.526400pt;}
.ws5_c00346{word-spacing:29.926400pt;}
.fs0_c00346{font-size:64.000000pt;}
.y0_c00346{bottom:0.000000pt;}
.y2_c00346{bottom:41.627067pt;}
.y1_c00346{bottom:60.027067pt;}
.yb_c00346{bottom:767.547067pt;}
.ya_c00346{bottom:803.147067pt;}
.y9_c00346{bottom:830.747067pt;}
.y8_c00346{bottom:858.347067pt;}
.y7_c00346{bottom:893.947067pt;}
.y6_c00346{bottom:920.347067pt;}
.y5_c00346{bottom:938.747067pt;}
.y4_c00346{bottom:957.147067pt;}
.y3_c00346{bottom:975.547067pt;}
.h1_c00346{height:56.156250pt;}
.h2_c00346{height:57.375000pt;}
.h0_c00346{height:1122.666667pt;}
.w1_c00346{width:793.333333pt;}
.w0_c00346{width:793.626667pt;}
.x0_c00346{left:0.000000pt;}
.x2_c00346{left:151.200000pt;}
.x3_c00346{left:218.160000pt;}
.x1_c00346{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5b9e32d7f0555c9a71804e58.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.106934;font-style: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;}
.ls0_c00347{letter-spacing:0.000000px;}
.ls1_c00347{letter-spacing:843.998400px;}
.sc__c00347{text-shadow:none;}
.sc0_c00347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00347{-webkit-text-stroke:0px transparent;}
.sc0_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00347{word-spacing:0.000000px;}
.fc0_c00347{color:rgb(0,0,0);}
.fs0_c00347{font-size:72.000000px;}
.y0_c00347{bottom:0.000000px;}
.y2_c00347{bottom:46.830450px;}
.y1_c00347{bottom:67.530450px;}
.y5_c00347{bottom:1017.390450px;}
.y4_c00347{bottom:1057.440450px;}
.y3_c00347{bottom:1097.490450px;}
.h1_c00347{height:63.175781px;}
.h2_c00347{height:64.546875px;}
.h0_c00347{height:1263.000000px;}
.w1_c00347{width:892.500000px;}
.w0_c00347{width:892.830000px;}
.x0_c00347{left:0.000000px;}
.x2_c00347{left:127.620000px;}
.x1_c00347{left:695.880000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls0_c00347{letter-spacing:0.000000pt;}
.ls1_c00347{letter-spacing:750.220800pt;}
.ws0_c00347{word-spacing:0.000000pt;}
.fs0_c00347{font-size:64.000000pt;}
.y0_c00347{bottom:0.000000pt;}
.y2_c00347{bottom:41.627067pt;}
.y1_c00347{bottom:60.027067pt;}
.y5_c00347{bottom:904.347067pt;}
.y4_c00347{bottom:939.947067pt;}
.y3_c00347{bottom:975.547067pt;}
.h1_c00347{height:56.156250pt;}
.h2_c00347{height:57.375000pt;}
.h0_c00347{height:1122.666667pt;}
.w1_c00347{width:793.333333pt;}
.w0_c00347{width:793.626667pt;}
.x0_c00347{left:0.000000pt;}
.x2_c00347{left:113.440000pt;}
.x1_c00347{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_67f1d63ab26f867c33f1835a.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.093262;font-style:normal;font-weight:normal;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_23d6a08e929ff2b76758efa3.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00348;src:url('chunks/assets/font_cc072e2dffdf3700d947be71.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:1.106934;font-style:normal;font-weight:normal;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_d52bded4b4d34c31d210a0cb.woff2')format("woff");}.ff4_c00348{font-family:ff4_c00348;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsf_c00348{letter-spacing:-0.086400px;}
.ls9_c00348{letter-spacing:-0.079200px;}
.lsc_c00348{letter-spacing:-0.072000px;}
.lsb_c00348{letter-spacing:-0.064800px;}
.lsd_c00348{letter-spacing:-0.057600px;}
.ls6_c00348{letter-spacing:-0.050400px;}
.ls4_c00348{letter-spacing:-0.043200px;}
.lsa_c00348{letter-spacing:-0.036000px;}
.ls7_c00348{letter-spacing:-0.028800px;}
.ls5_c00348{letter-spacing:-0.021600px;}
.ls8_c00348{letter-spacing:-0.014400px;}
.lse_c00348{letter-spacing:-0.007200px;}
.ls3_c00348{letter-spacing:0.000000px;}
.ls0_c00348{letter-spacing:0.025164px;}
.ls1_c00348{letter-spacing:0.144000px;}
.ls2_c00348{letter-spacing:5.904000px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00348{word-spacing:-19.951200px;}
.ws24_c00348{word-spacing:-0.583200px;}
.ws20_c00348{word-spacing:-0.532800px;}
.ws23_c00348{word-spacing:-0.511200px;}
.wsa_c00348{word-spacing:-0.158400px;}
.wsb_c00348{word-spacing:-0.122400px;}
.ws1_c00348{word-spacing:0.000000px;}
.ws2_c00348{word-spacing:0.067104px;}
.ws4_c00348{word-spacing:0.108000px;}
.ws13_c00348{word-spacing:0.172800px;}
.ws19_c00348{word-spacing:0.187200px;}
.ws3_c00348{word-spacing:0.201600px;}
.ws18_c00348{word-spacing:0.316800px;}
.ws2f_c00348{word-spacing:0.820800px;}
.ws30_c00348{word-spacing:0.892800px;}
.ws2b_c00348{word-spacing:2.253600px;}
.ws2c_c00348{word-spacing:2.376000px;}
.ws5_c00348{word-spacing:4.867200px;}
.wsf_c00348{word-spacing:5.630400px;}
.ws2e_c00348{word-spacing:5.680800px;}
.wse_c00348{word-spacing:5.724000px;}
.ws2d_c00348{word-spacing:5.882400px;}
.ws11_c00348{word-spacing:6.631200px;}
.ws10_c00348{word-spacing:6.739200px;}
.ws28_c00348{word-spacing:7.394400px;}
.ws26_c00348{word-spacing:13.773600px;}
.ws27_c00348{word-spacing:13.910400px;}
.ws6_c00348{word-spacing:14.248800px;}
.ws7_c00348{word-spacing:14.508000px;}
.ws14_c00348{word-spacing:15.703200px;}
.ws15_c00348{word-spacing:15.710400px;}
.ws1b_c00348{word-spacing:16.747200px;}
.ws1a_c00348{word-spacing:16.761600px;}
.ws1c_c00348{word-spacing:17.762400px;}
.ws22_c00348{word-spacing:17.805600px;}
.ws1d_c00348{word-spacing:17.827200px;}
.ws21_c00348{word-spacing:17.870400px;}
.wsc_c00348{word-spacing:20.714400px;}
.wsd_c00348{word-spacing:20.786400px;}
.ws1e_c00348{word-spacing:21.067200px;}
.ws1f_c00348{word-spacing:21.088800px;}
.ws25_c00348{word-spacing:21.794400px;}
.ws17_c00348{word-spacing:24.235200px;}
.ws16_c00348{word-spacing:24.271200px;}
.ws29_c00348{word-spacing:27.165600px;}
.ws2a_c00348{word-spacing:27.172800px;}
.ws8_c00348{word-spacing:29.707200px;}
.ws9_c00348{word-spacing:29.808000px;}
.ws12_c00348{word-spacing:78.314400px;}
._1_c00348{width:1.296000px;}
._0_c00348{width:187.555680px;}
.fc1_c00348{color:rgb(22,24,19);}
.fc0_c00348{color:rgb(0,0,0);}
.fs0_c00348{font-size:72.000000px;}
.fs1_c00348{font-size:83.880000px;}
.y0_c00348{bottom:0.000000px;}
.y2_c00348{bottom:46.830450px;}
.y1_c00348{bottom:67.530450px;}
.y20_c00348{bottom:149.970450px;}
.y1f_c00348{bottom:181.020450px;}
.y1e_c00348{bottom:212.070450px;}
.y1d_c00348{bottom:243.120450px;}
.y1c_c00348{bottom:274.170450px;}
.y1b_c00348{bottom:314.220450px;}
.y1a_c00348{bottom:345.270450px;}
.y19_c00348{bottom:376.320450px;}
.y18_c00348{bottom:407.370450px;}
.y17_c00348{bottom:438.420450px;}
.y16_c00348{bottom:469.470450px;}
.y15_c00348{bottom:500.520450px;}
.y14_c00348{bottom:531.570450px;}
.y13_c00348{bottom:562.620450px;}
.y12_c00348{bottom:602.670450px;}
.y11_c00348{bottom:633.720450px;}
.y10_c00348{bottom:664.770450px;}
.yf_c00348{bottom:704.820450px;}
.ye_c00348{bottom:735.870450px;}
.yd_c00348{bottom:766.920450px;}
.yc_c00348{bottom:797.970450px;}
.yb_c00348{bottom:829.020450px;}
.ya_c00348{bottom:860.070450px;}
.y9_c00348{bottom:900.120450px;}
.y8_c00348{bottom:931.170450px;}
.y7_c00348{bottom:962.220450px;}
.y6_c00348{bottom:993.270450px;}
.y5_c00348{bottom:1024.320450px;}
.y4_c00348{bottom:1064.370450px;}
.y3_c00348{bottom:1094.520450px;}
.h1_c00348{height:63.175781px;}
.h3_c00348{height:64.546875px;}
.h4_c00348{height:75.093750px;}
.h2_c00348{height:87.484219px;}
.h0_c00348{height:1263.000000px;}
.w1_c00348{width:892.500000px;}
.w0_c00348{width:892.830000px;}
.x0_c00348{left:0.000000px;}
.x2_c00348{left:170.100000px;}
.x3_c00348{left:224.100000px;}
.x1_c00348{left:738.360000px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.lsf_c00348{letter-spacing:-0.076800pt;}
.ls9_c00348{letter-spacing:-0.070400pt;}
.lsc_c00348{letter-spacing:-0.064000pt;}
.lsb_c00348{letter-spacing:-0.057600pt;}
.lsd_c00348{letter-spacing:-0.051200pt;}
.ls6_c00348{letter-spacing:-0.044800pt;}
.ls4_c00348{letter-spacing:-0.038400pt;}
.lsa_c00348{letter-spacing:-0.032000pt;}
.ls7_c00348{letter-spacing:-0.025600pt;}
.ls5_c00348{letter-spacing:-0.019200pt;}
.ls8_c00348{letter-spacing:-0.012800pt;}
.lse_c00348{letter-spacing:-0.006400pt;}
.ls3_c00348{letter-spacing:0.000000pt;}
.ls0_c00348{letter-spacing:0.022368pt;}
.ls1_c00348{letter-spacing:0.128000pt;}
.ls2_c00348{letter-spacing:5.248000pt;}
.ws0_c00348{word-spacing:-17.734400pt;}
.ws24_c00348{word-spacing:-0.518400pt;}
.ws20_c00348{word-spacing:-0.473600pt;}
.ws23_c00348{word-spacing:-0.454400pt;}
.wsa_c00348{word-spacing:-0.140800pt;}
.wsb_c00348{word-spacing:-0.108800pt;}
.ws1_c00348{word-spacing:0.000000pt;}
.ws2_c00348{word-spacing:0.059648pt;}
.ws4_c00348{word-spacing:0.096000pt;}
.ws13_c00348{word-spacing:0.153600pt;}
.ws19_c00348{word-spacing:0.166400pt;}
.ws3_c00348{word-spacing:0.179200pt;}
.ws18_c00348{word-spacing:0.281600pt;}
.ws2f_c00348{word-spacing:0.729600pt;}
.ws30_c00348{word-spacing:0.793600pt;}
.ws2b_c00348{word-spacing:2.003200pt;}
.ws2c_c00348{word-spacing:2.112000pt;}
.ws5_c00348{word-spacing:4.326400pt;}
.wsf_c00348{word-spacing:5.004800pt;}
.ws2e_c00348{word-spacing:5.049600pt;}
.wse_c00348{word-spacing:5.088000pt;}
.ws2d_c00348{word-spacing:5.228800pt;}
.ws11_c00348{word-spacing:5.894400pt;}
.ws10_c00348{word-spacing:5.990400pt;}
.ws28_c00348{word-spacing:6.572800pt;}
.ws26_c00348{word-spacing:12.243200pt;}
.ws27_c00348{word-spacing:12.364800pt;}
.ws6_c00348{word-spacing:12.665600pt;}
.ws7_c00348{word-spacing:12.896000pt;}
.ws14_c00348{word-spacing:13.958400pt;}
.ws15_c00348{word-spacing:13.964800pt;}
.ws1b_c00348{word-spacing:14.886400pt;}
.ws1a_c00348{word-spacing:14.899200pt;}
.ws1c_c00348{word-spacing:15.788800pt;}
.ws22_c00348{word-spacing:15.827200pt;}
.ws1d_c00348{word-spacing:15.846400pt;}
.ws21_c00348{word-spacing:15.884800pt;}
.wsc_c00348{word-spacing:18.412800pt;}
.wsd_c00348{word-spacing:18.476800pt;}
.ws1e_c00348{word-spacing:18.726400pt;}
.ws1f_c00348{word-spacing:18.745600pt;}
.ws25_c00348{word-spacing:19.372800pt;}
.ws17_c00348{word-spacing:21.542400pt;}
.ws16_c00348{word-spacing:21.574400pt;}
.ws29_c00348{word-spacing:24.147200pt;}
.ws2a_c00348{word-spacing:24.153600pt;}
.ws8_c00348{word-spacing:26.406400pt;}
.ws9_c00348{word-spacing:26.496000pt;}
.ws12_c00348{word-spacing:69.612800pt;}
._1_c00348{width:1.152000pt;}
._0_c00348{width:166.716160pt;}
.fs0_c00348{font-size:64.000000pt;}
.fs1_c00348{font-size:74.560000pt;}
.y0_c00348{bottom:0.000000pt;}
.y2_c00348{bottom:41.627067pt;}
.y1_c00348{bottom:60.027067pt;}
.y20_c00348{bottom:133.307067pt;}
.y1f_c00348{bottom:160.907067pt;}
.y1e_c00348{bottom:188.507067pt;}
.y1d_c00348{bottom:216.107067pt;}
.y1c_c00348{bottom:243.707067pt;}
.y1b_c00348{bottom:279.307067pt;}
.y1a_c00348{bottom:306.907067pt;}
.y19_c00348{bottom:334.507067pt;}
.y18_c00348{bottom:362.107067pt;}
.y17_c00348{bottom:389.707067pt;}
.y16_c00348{bottom:417.307067pt;}
.y15_c00348{bottom:444.907067pt;}
.y14_c00348{bottom:472.507067pt;}
.y13_c00348{bottom:500.107067pt;}
.y12_c00348{bottom:535.707067pt;}
.y11_c00348{bottom:563.307067pt;}
.y10_c00348{bottom:590.907067pt;}
.yf_c00348{bottom:626.507067pt;}
.ye_c00348{bottom:654.107067pt;}
.yd_c00348{bottom:681.707067pt;}
.yc_c00348{bottom:709.307067pt;}
.yb_c00348{bottom:736.907067pt;}
.ya_c00348{bottom:764.507067pt;}
.y9_c00348{bottom:800.107067pt;}
.y8_c00348{bottom:827.707067pt;}
.y7_c00348{bottom:855.307067pt;}
.y6_c00348{bottom:882.907067pt;}
.y5_c00348{bottom:910.507067pt;}
.y4_c00348{bottom:946.107067pt;}
.y3_c00348{bottom:972.907067pt;}
.h1_c00348{height:56.156250pt;}
.h3_c00348{height:57.375000pt;}
.h4_c00348{height:66.750000pt;}
.h2_c00348{height:77.763750pt;}
.h0_c00348{height:1122.666667pt;}
.w1_c00348{width:793.333333pt;}
.w0_c00348{width:793.626667pt;}
.x0_c00348{left:0.000000pt;}
.x2_c00348{left:151.200000pt;}
.x3_c00348{left:199.200000pt;}
.x1_c00348{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9f71ae42f468fa1f827ede92.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.093262;font-style:normal;font-weight:normal;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_edc780f6c71bcdbc162b4158.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.106934;font-style:normal;font-weight:normal;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_948048f7d8b435351abfda92.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:0.938477;font-style:normal;font-weight:normal;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_9c9b45648b06e99804a737c7.woff2')format("woff");}.ff4_c00349{font-family:ff4_c00349;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00349{letter-spacing:-0.201600px;}
.ls5_c00349{letter-spacing:-0.057600px;}
.ls4_c00349{letter-spacing:-0.050400px;}
.lsa_c00349{letter-spacing:-0.043200px;}
.ls9_c00349{letter-spacing:-0.036000px;}
.ls3_c00349{letter-spacing:-0.028800px;}
.ls6_c00349{letter-spacing:-0.021600px;}
.ls7_c00349{letter-spacing:-0.014400px;}
.ls8_c00349{letter-spacing:-0.007200px;}
.ls2_c00349{letter-spacing:0.000000px;}
.ls1_c00349{letter-spacing:0.086400px;}
.ls0_c00349{letter-spacing:0.158400px;}
.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:-72.086400px;}
.ws0_c00349{word-spacing:-71.942400px;}
.ws13_c00349{word-spacing:-3.420000px;}
.ws1c_c00349{word-spacing:-1.958400px;}
.ws3_c00349{word-spacing:-1.252800px;}
.ws23_c00349{word-spacing:-0.561600px;}
.ws10_c00349{word-spacing:-0.540000px;}
.ws22_c00349{word-spacing:-0.532800px;}
.wsf_c00349{word-spacing:-0.525600px;}
.ws2_c00349{word-spacing:0.000000px;}
.wsd_c00349{word-spacing:0.043200px;}
.ws25_c00349{word-spacing:0.172800px;}
.ws14_c00349{word-spacing:0.180000px;}
.ws4_c00349{word-spacing:0.187200px;}
.ws1a_c00349{word-spacing:0.194400px;}
.ws19_c00349{word-spacing:0.273600px;}
.ws24_c00349{word-spacing:1.670400px;}
.ws17_c00349{word-spacing:2.340000px;}
.ws18_c00349{word-spacing:2.354400px;}
.wsc_c00349{word-spacing:4.140000px;}
.ws1d_c00349{word-spacing:4.154400px;}
.wse_c00349{word-spacing:4.586400px;}
.ws9_c00349{word-spacing:4.896000px;}
.ws11_c00349{word-spacing:5.198400px;}
.ws2d_c00349{word-spacing:5.205600px;}
.ws2c_c00349{word-spacing:5.212800px;}
.ws29_c00349{word-spacing:5.227200px;}
.ws2b_c00349{word-spacing:5.234400px;}
.ws12_c00349{word-spacing:5.256000px;}
.ws2a_c00349{word-spacing:5.400000px;}
.ws15_c00349{word-spacing:5.601600px;}
.ws16_c00349{word-spacing:5.608800px;}
.ws1f_c00349{word-spacing:9.136800px;}
.ws1e_c00349{word-spacing:9.180000px;}
.ws28_c00349{word-spacing:10.440000px;}
.ws26_c00349{word-spacing:10.576800px;}
.ws27_c00349{word-spacing:10.742400px;}
.ws7_c00349{word-spacing:13.435200px;}
.ws8_c00349{word-spacing:13.500000px;}
.ws1b_c00349{word-spacing:14.976000px;}
.ws5_c00349{word-spacing:15.264000px;}
.ws6_c00349{word-spacing:15.336000px;}
.wsb_c00349{word-spacing:16.372800px;}
.wsa_c00349{word-spacing:16.430400px;}
.ws21_c00349{word-spacing:18.158400px;}
.ws20_c00349{word-spacing:48.074400px;}
._0_c00349{width:1.080000px;}
.fc0_c00349{color:rgb(0,0,0);}
.fs0_c00349{font-size:72.000000px;}
.y0_c00349{bottom:0.000000px;}
.y2_c00349{bottom:46.830450px;}
.y1_c00349{bottom:67.530450px;}
.y20_c00349{bottom:185.880450px;}
.y1f_c00349{bottom:216.930450px;}
.y1e_c00349{bottom:256.980450px;}
.y1d_c00349{bottom:286.680450px;}
.y1c_c00349{bottom:307.380450px;}
.y1b_c00349{bottom:328.080450px;}
.y1a_c00349{bottom:348.690450px;}
.y19_c00349{bottom:369.390450px;}
.y18_c00349{bottom:409.440450px;}
.y17_c00349{bottom:440.490450px;}
.y16_c00349{bottom:471.540450px;}
.y15_c00349{bottom:511.590450px;}
.y14_c00349{bottom:542.640450px;}
.y13_c00349{bottom:573.690450px;}
.y12_c00349{bottom:604.740450px;}
.y11_c00349{bottom:635.790450px;}
.y10_c00349{bottom:666.840450px;}
.yf_c00349{bottom:706.890450px;}
.ye_c00349{bottom:737.940450px;}
.yd_c00349{bottom:768.990450px;}
.yc_c00349{bottom:800.040450px;}
.yb_c00349{bottom:831.090450px;}
.ya_c00349{bottom:871.140450px;}
.y9_c00349{bottom:902.190450px;}
.y8_c00349{bottom:933.240450px;}
.y7_c00349{bottom:964.290450px;}
.y6_c00349{bottom:995.340450px;}
.y5_c00349{bottom:1026.390450px;}
.y4_c00349{bottom:1066.440450px;}
.y3_c00349{bottom:1097.490450px;}
.h1_c00349{height:63.175781px;}
.h2_c00349{height:64.546875px;}
.h3_c00349{height:75.093750px;}
.h0_c00349{height:1263.000000px;}
.w1_c00349{width:892.500000px;}
.w0_c00349{width:892.830000px;}
.x0_c00349{left:0.000000px;}
.x2_c00349{left:127.620000px;}
.x3_c00349{left:202.950000px;}
.x1_c00349{left:695.880000px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.lsb_c00349{letter-spacing:-0.179200pt;}
.ls5_c00349{letter-spacing:-0.051200pt;}
.ls4_c00349{letter-spacing:-0.044800pt;}
.lsa_c00349{letter-spacing:-0.038400pt;}
.ls9_c00349{letter-spacing:-0.032000pt;}
.ls3_c00349{letter-spacing:-0.025600pt;}
.ls6_c00349{letter-spacing:-0.019200pt;}
.ls7_c00349{letter-spacing:-0.012800pt;}
.ls8_c00349{letter-spacing:-0.006400pt;}
.ls2_c00349{letter-spacing:0.000000pt;}
.ls1_c00349{letter-spacing:0.076800pt;}
.ls0_c00349{letter-spacing:0.140800pt;}
.ws1_c00349{word-spacing:-64.076800pt;}
.ws0_c00349{word-spacing:-63.948800pt;}
.ws13_c00349{word-spacing:-3.040000pt;}
.ws1c_c00349{word-spacing:-1.740800pt;}
.ws3_c00349{word-spacing:-1.113600pt;}
.ws23_c00349{word-spacing:-0.499200pt;}
.ws10_c00349{word-spacing:-0.480000pt;}
.ws22_c00349{word-spacing:-0.473600pt;}
.wsf_c00349{word-spacing:-0.467200pt;}
.ws2_c00349{word-spacing:0.000000pt;}
.wsd_c00349{word-spacing:0.038400pt;}
.ws25_c00349{word-spacing:0.153600pt;}
.ws14_c00349{word-spacing:0.160000pt;}
.ws4_c00349{word-spacing:0.166400pt;}
.ws1a_c00349{word-spacing:0.172800pt;}
.ws19_c00349{word-spacing:0.243200pt;}
.ws24_c00349{word-spacing:1.484800pt;}
.ws17_c00349{word-spacing:2.080000pt;}
.ws18_c00349{word-spacing:2.092800pt;}
.wsc_c00349{word-spacing:3.680000pt;}
.ws1d_c00349{word-spacing:3.692800pt;}
.wse_c00349{word-spacing:4.076800pt;}
.ws9_c00349{word-spacing:4.352000pt;}
.ws11_c00349{word-spacing:4.620800pt;}
.ws2d_c00349{word-spacing:4.627200pt;}
.ws2c_c00349{word-spacing:4.633600pt;}
.ws29_c00349{word-spacing:4.646400pt;}
.ws2b_c00349{word-spacing:4.652800pt;}
.ws12_c00349{word-spacing:4.672000pt;}
.ws2a_c00349{word-spacing:4.800000pt;}
.ws15_c00349{word-spacing:4.979200pt;}
.ws16_c00349{word-spacing:4.985600pt;}
.ws1f_c00349{word-spacing:8.121600pt;}
.ws1e_c00349{word-spacing:8.160000pt;}
.ws28_c00349{word-spacing:9.280000pt;}
.ws26_c00349{word-spacing:9.401600pt;}
.ws27_c00349{word-spacing:9.548800pt;}
.ws7_c00349{word-spacing:11.942400pt;}
.ws8_c00349{word-spacing:12.000000pt;}
.ws1b_c00349{word-spacing:13.312000pt;}
.ws5_c00349{word-spacing:13.568000pt;}
.ws6_c00349{word-spacing:13.632000pt;}
.wsb_c00349{word-spacing:14.553600pt;}
.wsa_c00349{word-spacing:14.604800pt;}
.ws21_c00349{word-spacing:16.140800pt;}
.ws20_c00349{word-spacing:42.732800pt;}
._0_c00349{width:0.960000pt;}
.fs0_c00349{font-size:64.000000pt;}
.y0_c00349{bottom:0.000000pt;}
.y2_c00349{bottom:41.627067pt;}
.y1_c00349{bottom:60.027067pt;}
.y20_c00349{bottom:165.227067pt;}
.y1f_c00349{bottom:192.827067pt;}
.y1e_c00349{bottom:228.427067pt;}
.y1d_c00349{bottom:254.827067pt;}
.y1c_c00349{bottom:273.227067pt;}
.y1b_c00349{bottom:291.627067pt;}
.y1a_c00349{bottom:309.947067pt;}
.y19_c00349{bottom:328.347067pt;}
.y18_c00349{bottom:363.947067pt;}
.y17_c00349{bottom:391.547067pt;}
.y16_c00349{bottom:419.147067pt;}
.y15_c00349{bottom:454.747067pt;}
.y14_c00349{bottom:482.347067pt;}
.y13_c00349{bottom:509.947067pt;}
.y12_c00349{bottom:537.547067pt;}
.y11_c00349{bottom:565.147067pt;}
.y10_c00349{bottom:592.747067pt;}
.yf_c00349{bottom:628.347067pt;}
.ye_c00349{bottom:655.947067pt;}
.yd_c00349{bottom:683.547067pt;}
.yc_c00349{bottom:711.147067pt;}
.yb_c00349{bottom:738.747067pt;}
.ya_c00349{bottom:774.347067pt;}
.y9_c00349{bottom:801.947067pt;}
.y8_c00349{bottom:829.547067pt;}
.y7_c00349{bottom:857.147067pt;}
.y6_c00349{bottom:884.747067pt;}
.y5_c00349{bottom:912.347067pt;}
.y4_c00349{bottom:947.947067pt;}
.y3_c00349{bottom:975.547067pt;}
.h1_c00349{height:56.156250pt;}
.h2_c00349{height:57.375000pt;}
.h3_c00349{height:66.750000pt;}
.h0_c00349{height:1122.666667pt;}
.w1_c00349{width:793.333333pt;}
.w0_c00349{width:793.626667pt;}
.x0_c00349{left:0.000000pt;}
.x2_c00349{left:113.440000pt;}
.x3_c00349{left:180.400000pt;}
.x1_c00349{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8d02a196d85ff9d6760a8f4e.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.093262;font-style:normal;font-weight:normal;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_616cdbde262a65d4bee358fb.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00350;src:url('chunks/assets/font_c232f6285bcb8830c74c6d37.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00350{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.ls7_c00350{letter-spacing:-0.201600px;}
.lsa_c00350{letter-spacing:-0.151200px;}
.ls8_c00350{letter-spacing:-0.064800px;}
.lsd_c00350{letter-spacing:-0.057600px;}
.ls6_c00350{letter-spacing:-0.050400px;}
.ls9_c00350{letter-spacing:-0.043200px;}
.ls5_c00350{letter-spacing:-0.036000px;}
.ls4_c00350{letter-spacing:-0.028800px;}
.ls3_c00350{letter-spacing:-0.021600px;}
.ls2_c00350{letter-spacing:-0.014400px;}
.lsb_c00350{letter-spacing:-0.007200px;}
.ls1_c00350{letter-spacing:0.000000px;}
.ls0_c00350{letter-spacing:0.007200px;}
.lsc_c00350{letter-spacing:0.158400px;}
.sc__c00350{text-shadow:none;}
.sc0_c00350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00350{-webkit-text-stroke:0px transparent;}
.sc0_c00350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00350{word-spacing:-19.972800px;}
.ws1a_c00350{word-spacing:-4.118400px;}
.ws1b_c00350{word-spacing:-4.096800px;}
.ws2c_c00350{word-spacing:-2.736000px;}
.ws2d_c00350{word-spacing:-2.671200px;}
.ws2a_c00350{word-spacing:-1.310400px;}
.ws29_c00350{word-spacing:-1.238400px;}
.ws2b_c00350{word-spacing:-0.187200px;}
.ws1_c00350{word-spacing:0.000000px;}
.ws14_c00350{word-spacing:0.151200px;}
.ws23_c00350{word-spacing:0.172800px;}
.ws2e_c00350{word-spacing:0.180000px;}
.ws5_c00350{word-spacing:0.187200px;}
.ws9_c00350{word-spacing:0.237600px;}
.ws22_c00350{word-spacing:0.266400px;}
.ws8_c00350{word-spacing:0.928800px;}
.ws19_c00350{word-spacing:1.605600px;}
.ws12_c00350{word-spacing:1.627200px;}
.ws11_c00350{word-spacing:1.641600px;}
.ws18_c00350{word-spacing:1.699200px;}
.ws15_c00350{word-spacing:2.296800px;}
.ws16_c00350{word-spacing:2.332800px;}
.ws17_c00350{word-spacing:2.368800px;}
.ws26_c00350{word-spacing:2.786400px;}
.ws27_c00350{word-spacing:2.793600px;}
.ws2f_c00350{word-spacing:3.405600px;}
.wsb_c00350{word-spacing:3.722400px;}
.ws7_c00350{word-spacing:3.787200px;}
.ws6_c00350{word-spacing:3.794400px;}
.wsa_c00350{word-spacing:3.823200px;}
.wsc_c00350{word-spacing:6.652800px;}
.wsd_c00350{word-spacing:6.674400px;}
.ws13_c00350{word-spacing:12.074400px;}
.wse_c00350{word-spacing:12.592800px;}
.ws10_c00350{word-spacing:12.643200px;}
.wsf_c00350{word-spacing:12.801600px;}
.ws1d_c00350{word-spacing:14.378400px;}
.ws1e_c00350{word-spacing:14.594400px;}
.ws1c_c00350{word-spacing:14.601600px;}
.ws4_c00350{word-spacing:15.998400px;}
.ws2_c00350{word-spacing:16.012800px;}
.ws3_c00350{word-spacing:16.020000px;}
.ws21_c00350{word-spacing:17.143200px;}
.ws25_c00350{word-spacing:17.812800px;}
.ws24_c00350{word-spacing:17.820000px;}
.ws30_c00350{word-spacing:23.241600px;}
.ws28_c00350{word-spacing:30.873600px;}
.ws1f_c00350{word-spacing:42.228000px;}
.ws20_c00350{word-spacing:42.314400px;}
._1_c00350{margin-left:-29.952000px;}
._2_c00350{margin-left:-23.040000px;}
._0_c00350{width:1.152000px;}
.fc0_c00350{color:rgb(0,0,0);}
.fs0_c00350{font-size:72.000000px;}
.y0_c00350{bottom:0.000000px;}
.y2_c00350{bottom:46.830450px;}
.y1_c00350{bottom:67.530450px;}
.y21_c00350{bottom:187.230450px;}
.y20_c00350{bottom:207.930450px;}
.y1f_c00350{bottom:228.630450px;}
.y1e_c00350{bottom:249.330450px;}
.y1d_c00350{bottom:289.380450px;}
.y1c_c00350{bottom:320.430450px;}
.y1b_c00350{bottom:360.390450px;}
.y1a_c00350{bottom:391.440450px;}
.y19_c00350{bottom:422.490450px;}
.y18_c00350{bottom:453.540450px;}
.y17_c00350{bottom:484.590450px;}
.y16_c00350{bottom:524.640450px;}
.y15_c00350{bottom:555.690450px;}
.y14_c00350{bottom:586.740450px;}
.y13_c00350{bottom:617.790450px;}
.y12_c00350{bottom:657.840450px;}
.y11_c00350{bottom:688.800450px;}
.y10_c00350{bottom:719.850450px;}
.yf_c00350{bottom:750.990450px;}
.ye_c00350{bottom:791.040450px;}
.yd_c00350{bottom:820.740450px;}
.yc_c00350{bottom:841.440450px;}
.yb_c00350{bottom:862.140450px;}
.ya_c00350{bottom:882.840450px;}
.y9_c00350{bottom:903.540450px;}
.y8_c00350{bottom:924.240450px;}
.y7_c00350{bottom:964.200450px;}
.y6_c00350{bottom:995.250450px;}
.y5_c00350{bottom:1026.390450px;}
.y4_c00350{bottom:1066.440450px;}
.y3_c00350{bottom:1097.490450px;}
.h1_c00350{height:63.175781px;}
.h3_c00350{height:64.546875px;}
.h2_c00350{height:75.093750px;}
.h0_c00350{height:1263.000000px;}
.w1_c00350{width:892.500000px;}
.w0_c00350{width:892.830000px;}
.x0_c00350{left:0.000000px;}
.x2_c00350{left:170.100000px;}
.x3_c00350{left:245.430000px;}
.x1_c00350{left:738.360000px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls7_c00350{letter-spacing:-0.179200pt;}
.lsa_c00350{letter-spacing:-0.134400pt;}
.ls8_c00350{letter-spacing:-0.057600pt;}
.lsd_c00350{letter-spacing:-0.051200pt;}
.ls6_c00350{letter-spacing:-0.044800pt;}
.ls9_c00350{letter-spacing:-0.038400pt;}
.ls5_c00350{letter-spacing:-0.032000pt;}
.ls4_c00350{letter-spacing:-0.025600pt;}
.ls3_c00350{letter-spacing:-0.019200pt;}
.ls2_c00350{letter-spacing:-0.012800pt;}
.lsb_c00350{letter-spacing:-0.006400pt;}
.ls1_c00350{letter-spacing:0.000000pt;}
.ls0_c00350{letter-spacing:0.006400pt;}
.lsc_c00350{letter-spacing:0.140800pt;}
.ws0_c00350{word-spacing:-17.753600pt;}
.ws1a_c00350{word-spacing:-3.660800pt;}
.ws1b_c00350{word-spacing:-3.641600pt;}
.ws2c_c00350{word-spacing:-2.432000pt;}
.ws2d_c00350{word-spacing:-2.374400pt;}
.ws2a_c00350{word-spacing:-1.164800pt;}
.ws29_c00350{word-spacing:-1.100800pt;}
.ws2b_c00350{word-spacing:-0.166400pt;}
.ws1_c00350{word-spacing:0.000000pt;}
.ws14_c00350{word-spacing:0.134400pt;}
.ws23_c00350{word-spacing:0.153600pt;}
.ws2e_c00350{word-spacing:0.160000pt;}
.ws5_c00350{word-spacing:0.166400pt;}
.ws9_c00350{word-spacing:0.211200pt;}
.ws22_c00350{word-spacing:0.236800pt;}
.ws8_c00350{word-spacing:0.825600pt;}
.ws19_c00350{word-spacing:1.427200pt;}
.ws12_c00350{word-spacing:1.446400pt;}
.ws11_c00350{word-spacing:1.459200pt;}
.ws18_c00350{word-spacing:1.510400pt;}
.ws15_c00350{word-spacing:2.041600pt;}
.ws16_c00350{word-spacing:2.073600pt;}
.ws17_c00350{word-spacing:2.105600pt;}
.ws26_c00350{word-spacing:2.476800pt;}
.ws27_c00350{word-spacing:2.483200pt;}
.ws2f_c00350{word-spacing:3.027200pt;}
.wsb_c00350{word-spacing:3.308800pt;}
.ws7_c00350{word-spacing:3.366400pt;}
.ws6_c00350{word-spacing:3.372800pt;}
.wsa_c00350{word-spacing:3.398400pt;}
.wsc_c00350{word-spacing:5.913600pt;}
.wsd_c00350{word-spacing:5.932800pt;}
.ws13_c00350{word-spacing:10.732800pt;}
.wse_c00350{word-spacing:11.193600pt;}
.ws10_c00350{word-spacing:11.238400pt;}
.wsf_c00350{word-spacing:11.379200pt;}
.ws1d_c00350{word-spacing:12.780800pt;}
.ws1e_c00350{word-spacing:12.972800pt;}
.ws1c_c00350{word-spacing:12.979200pt;}
.ws4_c00350{word-spacing:14.220800pt;}
.ws2_c00350{word-spacing:14.233600pt;}
.ws3_c00350{word-spacing:14.240000pt;}
.ws21_c00350{word-spacing:15.238400pt;}
.ws25_c00350{word-spacing:15.833600pt;}
.ws24_c00350{word-spacing:15.840000pt;}
.ws30_c00350{word-spacing:20.659200pt;}
.ws28_c00350{word-spacing:27.443200pt;}
.ws1f_c00350{word-spacing:37.536000pt;}
.ws20_c00350{word-spacing:37.612800pt;}
._1_c00350{margin-left:-26.624000pt;}
._2_c00350{margin-left:-20.480000pt;}
._0_c00350{width:1.024000pt;}
.fs0_c00350{font-size:64.000000pt;}
.y0_c00350{bottom:0.000000pt;}
.y2_c00350{bottom:41.627067pt;}
.y1_c00350{bottom:60.027067pt;}
.y21_c00350{bottom:166.427067pt;}
.y20_c00350{bottom:184.827067pt;}
.y1f_c00350{bottom:203.227067pt;}
.y1e_c00350{bottom:221.627067pt;}
.y1d_c00350{bottom:257.227067pt;}
.y1c_c00350{bottom:284.827067pt;}
.y1b_c00350{bottom:320.347067pt;}
.y1a_c00350{bottom:347.947067pt;}
.y19_c00350{bottom:375.547067pt;}
.y18_c00350{bottom:403.147067pt;}
.y17_c00350{bottom:430.747067pt;}
.y16_c00350{bottom:466.347067pt;}
.y15_c00350{bottom:493.947067pt;}
.y14_c00350{bottom:521.547067pt;}
.y13_c00350{bottom:549.147067pt;}
.y12_c00350{bottom:584.747067pt;}
.y11_c00350{bottom:612.267067pt;}
.y10_c00350{bottom:639.867067pt;}
.yf_c00350{bottom:667.547067pt;}
.ye_c00350{bottom:703.147067pt;}
.yd_c00350{bottom:729.547067pt;}
.yc_c00350{bottom:747.947067pt;}
.yb_c00350{bottom:766.347067pt;}
.ya_c00350{bottom:784.747067pt;}
.y9_c00350{bottom:803.147067pt;}
.y8_c00350{bottom:821.547067pt;}
.y7_c00350{bottom:857.067067pt;}
.y6_c00350{bottom:884.667067pt;}
.y5_c00350{bottom:912.347067pt;}
.y4_c00350{bottom:947.947067pt;}
.y3_c00350{bottom:975.547067pt;}
.h1_c00350{height:56.156250pt;}
.h3_c00350{height:57.375000pt;}
.h2_c00350{height:66.750000pt;}
.h0_c00350{height:1122.666667pt;}
.w1_c00350{width:793.333333pt;}
.w0_c00350{width:793.626667pt;}
.x0_c00350{left:0.000000pt;}
.x2_c00350{left:151.200000pt;}
.x3_c00350{left:218.160000pt;}
.x1_c00350{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_64e3491581a16f27b152c18b.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.093262;font-style:normal;font-weight:normal;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_cb42e4d7624475b2b949e67c.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.106934;font-style:normal;font-weight:normal;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_61d4cfbfa044bdddee7b47bc.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:0.666504;font-style: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;}
.lsc_c00351{letter-spacing:-0.115200px;}
.lsa_c00351{letter-spacing:-0.079200px;}
.ls5_c00351{letter-spacing:-0.064800px;}
.ls1_c00351{letter-spacing:-0.057600px;}
.ls4_c00351{letter-spacing:-0.050400px;}
.ls9_c00351{letter-spacing:-0.043200px;}
.ls6_c00351{letter-spacing:-0.036000px;}
.ls3_c00351{letter-spacing:-0.028800px;}
.ls8_c00351{letter-spacing:-0.021600px;}
.ls7_c00351{letter-spacing:-0.014400px;}
.ls2_c00351{letter-spacing:-0.007200px;}
.ls0_c00351{letter-spacing:0.000000px;}
.lsb_c00351{letter-spacing:0.028800px;}
.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;}
}
.ws16_c00351{word-spacing:-3.391200px;}
.ws6_c00351{word-spacing:-1.663200px;}
.ws7_c00351{word-spacing:-1.576800px;}
.wse_c00351{word-spacing:-0.907200px;}
.ws0_c00351{word-spacing:0.000000px;}
.ws1a_c00351{word-spacing:0.028800px;}
.ws24_c00351{word-spacing:0.057600px;}
.ws1b_c00351{word-spacing:0.064800px;}
.ws1f_c00351{word-spacing:0.086400px;}
.ws18_c00351{word-spacing:0.093600px;}
.wsd_c00351{word-spacing:0.129600px;}
.ws5_c00351{word-spacing:0.158400px;}
.ws12_c00351{word-spacing:0.165600px;}
.wsc_c00351{word-spacing:0.180000px;}
.ws3_c00351{word-spacing:0.187200px;}
.ws17_c00351{word-spacing:0.194400px;}
.ws1e_c00351{word-spacing:0.201600px;}
.ws4_c00351{word-spacing:0.208800px;}
.ws25_c00351{word-spacing:0.439200px;}
.ws26_c00351{word-spacing:0.540000px;}
.ws13_c00351{word-spacing:0.900000px;}
.ws1c_c00351{word-spacing:2.340000px;}
.ws1d_c00351{word-spacing:2.347200px;}
.wsb_c00351{word-spacing:4.492800px;}
.wsa_c00351{word-spacing:4.514400px;}
.ws9_c00351{word-spacing:5.882400px;}
.ws8_c00351{word-spacing:5.968800px;}
.ws14_c00351{word-spacing:6.228000px;}
.ws15_c00351{word-spacing:6.357600px;}
.ws2_c00351{word-spacing:6.552000px;}
.ws10_c00351{word-spacing:6.645600px;}
.ws11_c00351{word-spacing:6.681600px;}
.ws1_c00351{word-spacing:6.696000px;}
.wsf_c00351{word-spacing:12.787200px;}
.ws27_c00351{word-spacing:17.769600px;}
.ws28_c00351{word-spacing:17.928000px;}
.ws2b_c00351{word-spacing:20.707200px;}
.ws2c_c00351{word-spacing:20.793600px;}
.ws2a_c00351{word-spacing:32.169600px;}
.ws29_c00351{word-spacing:32.220000px;}
.ws22_c00351{word-spacing:54.878400px;}
.ws21_c00351{word-spacing:54.885600px;}
.ws23_c00351{word-spacing:54.892800px;}
.ws19_c00351{word-spacing:54.900000px;}
.ws20_c00351{word-spacing:54.914400px;}
._2_c00351{margin-left:-55.080000px;}
._0_c00351{margin-left:-6.480000px;}
._4_c00351{margin-left:-2.160000px;}
._1_c00351{width:1.872000px;}
._3_c00351{width:54.864000px;}
.fc0_c00351{color:rgb(0,0,0);}
.fs0_c00351{font-size:72.000000px;}
.y0_c00351{bottom:0.000000px;}
.y2_c00351{bottom:46.830450px;}
.y1_c00351{bottom:67.530450px;}
.y23_c00351{bottom:156.810450px;}
.y22_c00351{bottom:187.860450px;}
.y21_c00351{bottom:227.910450px;}
.y20_c00351{bottom:258.960450px;}
.y1f_c00351{bottom:290.010450px;}
.y1e_c00351{bottom:329.970450px;}
.y1d_c00351{bottom:362.280450px;}
.y1c_c00351{bottom:394.500450px;}
.y1b_c00351{bottom:426.810450px;}
.y1a_c00351{bottom:459.030450px;}
.y19_c00351{bottom:500.340450px;}
.y18_c00351{bottom:540.390450px;}
.y17_c00351{bottom:571.440450px;}
.y16_c00351{bottom:611.400450px;}
.y15_c00351{bottom:643.710450px;}
.y14_c00351{bottom:675.930450px;}
.y13_c00351{bottom:717.240450px;}
.y12_c00351{bottom:748.290450px;}
.y11_c00351{bottom:779.340450px;}
.y10_c00351{bottom:819.390450px;}
.yf_c00351{bottom:849.090450px;}
.ye_c00351{bottom:869.790450px;}
.yd_c00351{bottom:890.490450px;}
.yc_c00351{bottom:911.190450px;}
.yb_c00351{bottom:931.890450px;}
.ya_c00351{bottom:952.590450px;}
.y9_c00351{bottom:973.290450px;}
.y8_c00351{bottom:993.990450px;}
.y7_c00351{bottom:1014.690450px;}
.y6_c00351{bottom:1035.390450px;}
.y5_c00351{bottom:1056.090450px;}
.y4_c00351{bottom:1076.790450px;}
.y3_c00351{bottom:1097.490450px;}
.h1_c00351{height:63.175781px;}
.h2_c00351{height:64.546875px;}
.h0_c00351{height:1263.000000px;}
.w1_c00351{width:892.500000px;}
.w0_c00351{width:892.830000px;}
.x0_c00351{left:0.000000px;}
.x2_c00351{left:127.620000px;}
.x4_c00351{left:154.620000px;}
.x3_c00351{left:202.950000px;}
.x1_c00351{left:695.880000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.lsc_c00351{letter-spacing:-0.102400pt;}
.lsa_c00351{letter-spacing:-0.070400pt;}
.ls5_c00351{letter-spacing:-0.057600pt;}
.ls1_c00351{letter-spacing:-0.051200pt;}
.ls4_c00351{letter-spacing:-0.044800pt;}
.ls9_c00351{letter-spacing:-0.038400pt;}
.ls6_c00351{letter-spacing:-0.032000pt;}
.ls3_c00351{letter-spacing:-0.025600pt;}
.ls8_c00351{letter-spacing:-0.019200pt;}
.ls7_c00351{letter-spacing:-0.012800pt;}
.ls2_c00351{letter-spacing:-0.006400pt;}
.ls0_c00351{letter-spacing:0.000000pt;}
.lsb_c00351{letter-spacing:0.025600pt;}
.ws16_c00351{word-spacing:-3.014400pt;}
.ws6_c00351{word-spacing:-1.478400pt;}
.ws7_c00351{word-spacing:-1.401600pt;}
.wse_c00351{word-spacing:-0.806400pt;}
.ws0_c00351{word-spacing:0.000000pt;}
.ws1a_c00351{word-spacing:0.025600pt;}
.ws24_c00351{word-spacing:0.051200pt;}
.ws1b_c00351{word-spacing:0.057600pt;}
.ws1f_c00351{word-spacing:0.076800pt;}
.ws18_c00351{word-spacing:0.083200pt;}
.wsd_c00351{word-spacing:0.115200pt;}
.ws5_c00351{word-spacing:0.140800pt;}
.ws12_c00351{word-spacing:0.147200pt;}
.wsc_c00351{word-spacing:0.160000pt;}
.ws3_c00351{word-spacing:0.166400pt;}
.ws17_c00351{word-spacing:0.172800pt;}
.ws1e_c00351{word-spacing:0.179200pt;}
.ws4_c00351{word-spacing:0.185600pt;}
.ws25_c00351{word-spacing:0.390400pt;}
.ws26_c00351{word-spacing:0.480000pt;}
.ws13_c00351{word-spacing:0.800000pt;}
.ws1c_c00351{word-spacing:2.080000pt;}
.ws1d_c00351{word-spacing:2.086400pt;}
.wsb_c00351{word-spacing:3.993600pt;}
.wsa_c00351{word-spacing:4.012800pt;}
.ws9_c00351{word-spacing:5.228800pt;}
.ws8_c00351{word-spacing:5.305600pt;}
.ws14_c00351{word-spacing:5.536000pt;}
.ws15_c00351{word-spacing:5.651200pt;}
.ws2_c00351{word-spacing:5.824000pt;}
.ws10_c00351{word-spacing:5.907200pt;}
.ws11_c00351{word-spacing:5.939200pt;}
.ws1_c00351{word-spacing:5.952000pt;}
.wsf_c00351{word-spacing:11.366400pt;}
.ws27_c00351{word-spacing:15.795200pt;}
.ws28_c00351{word-spacing:15.936000pt;}
.ws2b_c00351{word-spacing:18.406400pt;}
.ws2c_c00351{word-spacing:18.483200pt;}
.ws2a_c00351{word-spacing:28.595200pt;}
.ws29_c00351{word-spacing:28.640000pt;}
.ws22_c00351{word-spacing:48.780800pt;}
.ws21_c00351{word-spacing:48.787200pt;}
.ws23_c00351{word-spacing:48.793600pt;}
.ws19_c00351{word-spacing:48.800000pt;}
.ws20_c00351{word-spacing:48.812800pt;}
._2_c00351{margin-left:-48.960000pt;}
._0_c00351{margin-left:-5.760000pt;}
._4_c00351{margin-left:-1.920000pt;}
._1_c00351{width:1.664000pt;}
._3_c00351{width:48.768000pt;}
.fs0_c00351{font-size:64.000000pt;}
.y0_c00351{bottom:0.000000pt;}
.y2_c00351{bottom:41.627067pt;}
.y1_c00351{bottom:60.027067pt;}
.y23_c00351{bottom:139.387067pt;}
.y22_c00351{bottom:166.987067pt;}
.y21_c00351{bottom:202.587067pt;}
.y20_c00351{bottom:230.187067pt;}
.y1f_c00351{bottom:257.787067pt;}
.y1e_c00351{bottom:293.307067pt;}
.y1d_c00351{bottom:322.027067pt;}
.y1c_c00351{bottom:350.667067pt;}
.y1b_c00351{bottom:379.387067pt;}
.y1a_c00351{bottom:408.027067pt;}
.y19_c00351{bottom:444.747067pt;}
.y18_c00351{bottom:480.347067pt;}
.y17_c00351{bottom:507.947067pt;}
.y16_c00351{bottom:543.467067pt;}
.y15_c00351{bottom:572.187067pt;}
.y14_c00351{bottom:600.827067pt;}
.y13_c00351{bottom:637.547067pt;}
.y12_c00351{bottom:665.147067pt;}
.y11_c00351{bottom:692.747067pt;}
.y10_c00351{bottom:728.347067pt;}
.yf_c00351{bottom:754.747067pt;}
.ye_c00351{bottom:773.147067pt;}
.yd_c00351{bottom:791.547067pt;}
.yc_c00351{bottom:809.947067pt;}
.yb_c00351{bottom:828.347067pt;}
.ya_c00351{bottom:846.747067pt;}
.y9_c00351{bottom:865.147067pt;}
.y8_c00351{bottom:883.547067pt;}
.y7_c00351{bottom:901.947067pt;}
.y6_c00351{bottom:920.347067pt;}
.y5_c00351{bottom:938.747067pt;}
.y4_c00351{bottom:957.147067pt;}
.y3_c00351{bottom:975.547067pt;}
.h1_c00351{height:56.156250pt;}
.h2_c00351{height:57.375000pt;}
.h0_c00351{height:1122.666667pt;}
.w1_c00351{width:793.333333pt;}
.w0_c00351{width:793.626667pt;}
.x0_c00351{left:0.000000pt;}
.x2_c00351{left:113.440000pt;}
.x4_c00351{left:137.440000pt;}
.x3_c00351{left:180.400000pt;}
.x1_c00351{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4bca870a8ea913c43c2f49c8.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.093262;font-style:normal;font-weight:normal;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_f637a030dbb92bd14946fdf4.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00352{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.v0_c00352{vertical-align:0.000000px;}
.ls3_c00352{letter-spacing:-0.043200px;}
.ls5_c00352{letter-spacing:-0.036000px;}
.ls4_c00352{letter-spacing:-0.028800px;}
.ls7_c00352{letter-spacing:-0.021600px;}
.ls8_c00352{letter-spacing:-0.014400px;}
.ls6_c00352{letter-spacing:-0.007200px;}
.ls2_c00352{letter-spacing:0.000000px;}
.ls1_c00352{letter-spacing:0.007200px;}
.ls0_c00352{letter-spacing:0.014400px;}
.ls9_c00352{letter-spacing:844.351200px;}
.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;}
}
.wsd_c00352{word-spacing:-2.700000px;}
.wsc_c00352{word-spacing:-2.692800px;}
.ws9_c00352{word-spacing:-1.274400px;}
.ws8_c00352{word-spacing:-1.238400px;}
.ws0_c00352{word-spacing:0.000000px;}
.ws7_c00352{word-spacing:0.158400px;}
.ws16_c00352{word-spacing:0.208800px;}
.ws12_c00352{word-spacing:1.951200px;}
.ws13_c00352{word-spacing:1.987200px;}
.wse_c00352{word-spacing:6.660000px;}
.wsf_c00352{word-spacing:6.674400px;}
.ws5_c00352{word-spacing:10.231200px;}
.ws6_c00352{word-spacing:10.252800px;}
.wsb_c00352{word-spacing:23.284800px;}
.wsa_c00352{word-spacing:23.299200px;}
.ws15_c00352{word-spacing:24.667200px;}
.ws14_c00352{word-spacing:24.789600px;}
.ws2_c00352{word-spacing:27.136800px;}
.ws1_c00352{word-spacing:27.216000px;}
.ws10_c00352{word-spacing:33.933600px;}
.ws11_c00352{word-spacing:34.048800px;}
.ws4_c00352{word-spacing:56.224800px;}
.ws3_c00352{word-spacing:56.289600px;}
._0_c00352{width:1.015200px;}
.fc0_c00352{color:rgb(0,0,0);}
.fs0_c00352{font-size:72.000000px;}
.y0_c00352{bottom:0.000000px;}
.y2_c00352{bottom:46.830450px;}
.y1_c00352{bottom:67.530450px;}
.y11_c00352{bottom:492.240450px;}
.y10_c00352{bottom:532.290450px;}
.yf_c00352{bottom:563.340450px;}
.ye_c00352{bottom:594.390450px;}
.yd_c00352{bottom:625.440450px;}
.yc_c00352{bottom:656.490450px;}
.yb_c00352{bottom:687.540450px;}
.ya_c00352{bottom:718.590450px;}
.y9_c00352{bottom:749.640450px;}
.y8_c00352{bottom:789.690450px;}
.y7_c00352{bottom:825.780450px;}
.y6_c00352{bottom:1004.340450px;}
.y5_c00352{bottom:1035.390450px;}
.y4_c00352{bottom:1066.440450px;}
.y3_c00352{bottom:1097.490450px;}
.h1_c00352{height:63.175781px;}
.h2_c00352{height:64.546875px;}
.h0_c00352{height:1263.000000px;}
.w1_c00352{width:892.500000px;}
.w0_c00352{width:892.830000px;}
.x0_c00352{left:0.000000px;}
.x2_c00352{left:170.098135px;}
.x1_c00352{left:738.360000px;}
.x3_c00352{left:765.366968px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls3_c00352{letter-spacing:-0.038400pt;}
.ls5_c00352{letter-spacing:-0.032000pt;}
.ls4_c00352{letter-spacing:-0.025600pt;}
.ls7_c00352{letter-spacing:-0.019200pt;}
.ls8_c00352{letter-spacing:-0.012800pt;}
.ls6_c00352{letter-spacing:-0.006400pt;}
.ls2_c00352{letter-spacing:0.000000pt;}
.ls1_c00352{letter-spacing:0.006400pt;}
.ls0_c00352{letter-spacing:0.012800pt;}
.ls9_c00352{letter-spacing:750.534400pt;}
.wsd_c00352{word-spacing:-2.400000pt;}
.wsc_c00352{word-spacing:-2.393600pt;}
.ws9_c00352{word-spacing:-1.132800pt;}
.ws8_c00352{word-spacing:-1.100800pt;}
.ws0_c00352{word-spacing:0.000000pt;}
.ws7_c00352{word-spacing:0.140800pt;}
.ws16_c00352{word-spacing:0.185600pt;}
.ws12_c00352{word-spacing:1.734400pt;}
.ws13_c00352{word-spacing:1.766400pt;}
.wse_c00352{word-spacing:5.920000pt;}
.wsf_c00352{word-spacing:5.932800pt;}
.ws5_c00352{word-spacing:9.094400pt;}
.ws6_c00352{word-spacing:9.113600pt;}
.wsb_c00352{word-spacing:20.697600pt;}
.wsa_c00352{word-spacing:20.710400pt;}
.ws15_c00352{word-spacing:21.926400pt;}
.ws14_c00352{word-spacing:22.035200pt;}
.ws2_c00352{word-spacing:24.121600pt;}
.ws1_c00352{word-spacing:24.192000pt;}
.ws10_c00352{word-spacing:30.163200pt;}
.ws11_c00352{word-spacing:30.265600pt;}
.ws4_c00352{word-spacing:49.977600pt;}
.ws3_c00352{word-spacing:50.035200pt;}
._0_c00352{width:0.902400pt;}
.fs0_c00352{font-size:64.000000pt;}
.y0_c00352{bottom:0.000000pt;}
.y2_c00352{bottom:41.627067pt;}
.y1_c00352{bottom:60.027067pt;}
.y11_c00352{bottom:437.547067pt;}
.y10_c00352{bottom:473.147067pt;}
.yf_c00352{bottom:500.747067pt;}
.ye_c00352{bottom:528.347067pt;}
.yd_c00352{bottom:555.947067pt;}
.yc_c00352{bottom:583.547067pt;}
.yb_c00352{bottom:611.147067pt;}
.ya_c00352{bottom:638.747067pt;}
.y9_c00352{bottom:666.347067pt;}
.y8_c00352{bottom:701.947067pt;}
.y7_c00352{bottom:734.027067pt;}
.y6_c00352{bottom:892.747067pt;}
.y5_c00352{bottom:920.347067pt;}
.y4_c00352{bottom:947.947067pt;}
.y3_c00352{bottom:975.547067pt;}
.h1_c00352{height:56.156250pt;}
.h2_c00352{height:57.375000pt;}
.h0_c00352{height:1122.666667pt;}
.w1_c00352{width:793.333333pt;}
.w0_c00352{width:793.626667pt;}
.x0_c00352{left:0.000000pt;}
.x2_c00352{left:151.198342pt;}
.x1_c00352{left:656.320000pt;}
.x3_c00352{left:680.326193pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1216ac9d09f1d37be329b8d8.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.106934;font-style: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;}
.ls0_c00353{letter-spacing:0.000000px;}
.ls1_c00353{letter-spacing:843.998400px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00353{word-spacing:0.000000px;}
.fc0_c00353{color:rgb(0,0,0);}
.fs0_c00353{font-size:72.000000px;}
.y0_c00353{bottom:0.000000px;}
.y2_c00353{bottom:46.830450px;}
.y1_c00353{bottom:67.530450px;}
.y6_c00353{bottom:977.340450px;}
.y5_c00353{bottom:1017.390450px;}
.y4_c00353{bottom:1057.440450px;}
.y3_c00353{bottom:1097.490450px;}
.h1_c00353{height:63.175781px;}
.h2_c00353{height:64.546875px;}
.h0_c00353{height:1263.000000px;}
.w1_c00353{width:892.500000px;}
.w0_c00353{width:892.830000px;}
.x0_c00353{left:0.000000px;}
.x2_c00353{left:127.620000px;}
.x1_c00353{left:695.880000px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls0_c00353{letter-spacing:0.000000pt;}
.ls1_c00353{letter-spacing:750.220800pt;}
.ws0_c00353{word-spacing:0.000000pt;}
.fs0_c00353{font-size:64.000000pt;}
.y0_c00353{bottom:0.000000pt;}
.y2_c00353{bottom:41.627067pt;}
.y1_c00353{bottom:60.027067pt;}
.y6_c00353{bottom:868.747067pt;}
.y5_c00353{bottom:904.347067pt;}
.y4_c00353{bottom:939.947067pt;}
.y3_c00353{bottom:975.547067pt;}
.h1_c00353{height:56.156250pt;}
.h2_c00353{height:57.375000pt;}
.h0_c00353{height:1122.666667pt;}
.w1_c00353{width:793.333333pt;}
.w0_c00353{width:793.626667pt;}
.x0_c00353{left:0.000000pt;}
.x2_c00353{left:113.440000pt;}
.x1_c00353{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4bca870a8ea913c43c2f49c8.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.093262;font-style:normal;font-weight:normal;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_4a731dcb87fed49731695471.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00354;src:url('chunks/assets/font_7f4d2df3d510dc7e9bbf1620.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:1.106934;font-style:normal;font-weight:normal;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_045b9e08568131dc8f87d773.woff2')format("woff");}.ff4_c00354{font-family:ff4_c00354;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls5_c00354{letter-spacing:-0.093600px;}
.lsa_c00354{letter-spacing:-0.086400px;}
.ls3_c00354{letter-spacing:-0.079200px;}
.lse_c00354{letter-spacing:-0.072000px;}
.ls10_c00354{letter-spacing:-0.064800px;}
.lsd_c00354{letter-spacing:-0.057600px;}
.lsb_c00354{letter-spacing:-0.050400px;}
.ls8_c00354{letter-spacing:-0.043200px;}
.ls4_c00354{letter-spacing:-0.036000px;}
.ls9_c00354{letter-spacing:-0.028800px;}
.ls7_c00354{letter-spacing:-0.021600px;}
.lsc_c00354{letter-spacing:-0.014400px;}
.ls6_c00354{letter-spacing:-0.007200px;}
.ls2_c00354{letter-spacing:0.000000px;}
.ls1_c00354{letter-spacing:0.007200px;}
.lsf_c00354{letter-spacing:0.021600px;}
.ls0_c00354{letter-spacing:0.025164px;}
.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;}
}
.ws3_c00354{word-spacing:-3.045600px;}
.ws2_c00354{word-spacing:-3.002400px;}
.wsd_c00354{word-spacing:-2.592000px;}
.ws25_c00354{word-spacing:-2.498400px;}
.ws7_c00354{word-spacing:-2.354400px;}
.ws24_c00354{word-spacing:-2.318400px;}
.ws6_c00354{word-spacing:-2.275200px;}
.ws8_c00354{word-spacing:-2.246400px;}
.ws26_c00354{word-spacing:-1.238400px;}
.ws9_c00354{word-spacing:-0.986400px;}
.wsa_c00354{word-spacing:-0.878400px;}
.ws0_c00354{word-spacing:0.000000px;}
.ws1_c00354{word-spacing:0.150984px;}
.ws32_c00354{word-spacing:0.151200px;}
.ws19_c00354{word-spacing:0.172800px;}
.ws22_c00354{word-spacing:0.180000px;}
.wsf_c00354{word-spacing:0.187200px;}
.ws31_c00354{word-spacing:0.208800px;}
.ws23_c00354{word-spacing:0.316800px;}
.ws2d_c00354{word-spacing:0.417600px;}
.ws2b_c00354{word-spacing:1.288800px;}
.ws2c_c00354{word-spacing:1.303200px;}
.ws10_c00354{word-spacing:1.627200px;}
.ws11_c00354{word-spacing:1.648800px;}
.ws14_c00354{word-spacing:2.671200px;}
.wsb_c00354{word-spacing:2.707200px;}
.ws13_c00354{word-spacing:2.736000px;}
.wsc_c00354{word-spacing:2.764800px;}
.ws18_c00354{word-spacing:3.765600px;}
.ws17_c00354{word-spacing:3.866400px;}
.ws1b_c00354{word-spacing:5.241600px;}
.ws1c_c00354{word-spacing:5.256000px;}
.ws2a_c00354{word-spacing:5.824800px;}
.ws29_c00354{word-spacing:5.875200px;}
.ws30_c00354{word-spacing:5.968800px;}
.ws4_c00354{word-spacing:6.602400px;}
.ws5_c00354{word-spacing:6.732000px;}
.ws1a_c00354{word-spacing:8.812800px;}
.wse_c00354{word-spacing:12.801600px;}
.ws2e_c00354{word-spacing:15.278400px;}
.ws2f_c00354{word-spacing:15.292800px;}
.ws28_c00354{word-spacing:15.904800px;}
.ws27_c00354{word-spacing:16.005600px;}
.ws20_c00354{word-spacing:20.484000px;}
.ws1f_c00354{word-spacing:20.570400px;}
.ws21_c00354{word-spacing:20.685600px;}
.ws16_c00354{word-spacing:21.772800px;}
.ws15_c00354{word-spacing:21.808800px;}
.ws12_c00354{word-spacing:22.852800px;}
.ws1e_c00354{word-spacing:30.110400px;}
.ws1d_c00354{word-spacing:30.175200px;}
._2_c00354{margin-left:-5.428800px;}
._1_c00354{width:1.224000px;}
._0_c00354{width:187.471800px;}
.fc0_c00354{color:rgb(0,0,0);}
.fs0_c00354{font-size:72.000000px;}
.fs1_c00354{font-size:83.880000px;}
.y0_c00354{bottom:0.000000px;}
.y2_c00354{bottom:46.830450px;}
.y1_c00354{bottom:67.530450px;}
.y20_c00354{bottom:149.970450px;}
.y1f_c00354{bottom:180.930450px;}
.y1e_c00354{bottom:212.070450px;}
.y1d_c00354{bottom:252.120450px;}
.y1c_c00354{bottom:283.170450px;}
.y1b_c00354{bottom:314.220450px;}
.y1a_c00354{bottom:345.270450px;}
.y19_c00354{bottom:376.320450px;}
.y18_c00354{bottom:407.370450px;}
.y17_c00354{bottom:447.420450px;}
.y16_c00354{bottom:478.470450px;}
.y15_c00354{bottom:509.520450px;}
.y14_c00354{bottom:540.570450px;}
.y13_c00354{bottom:571.620450px;}
.y12_c00354{bottom:611.670450px;}
.y11_c00354{bottom:642.720450px;}
.y10_c00354{bottom:673.770450px;}
.yf_c00354{bottom:704.820450px;}
.ye_c00354{bottom:735.870450px;}
.yd_c00354{bottom:766.920450px;}
.yc_c00354{bottom:806.970450px;}
.yb_c00354{bottom:838.020450px;}
.ya_c00354{bottom:869.070450px;}
.y9_c00354{bottom:900.120450px;}
.y8_c00354{bottom:931.170450px;}
.y7_c00354{bottom:962.220450px;}
.y6_c00354{bottom:993.270450px;}
.y5_c00354{bottom:1024.320450px;}
.y4_c00354{bottom:1064.370450px;}
.y3_c00354{bottom:1094.520450px;}
.h1_c00354{height:63.175781px;}
.h3_c00354{height:64.546875px;}
.h4_c00354{height:75.093750px;}
.h2_c00354{height:87.484219px;}
.h0_c00354{height:1263.000000px;}
.w1_c00354{width:892.500000px;}
.w0_c00354{width:892.830000px;}
.x0_c00354{left:0.000000px;}
.x2_c00354{left:170.100000px;}
.x3_c00354{left:224.100000px;}
.x1_c00354{left:738.360000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls5_c00354{letter-spacing:-0.083200pt;}
.lsa_c00354{letter-spacing:-0.076800pt;}
.ls3_c00354{letter-spacing:-0.070400pt;}
.lse_c00354{letter-spacing:-0.064000pt;}
.ls10_c00354{letter-spacing:-0.057600pt;}
.lsd_c00354{letter-spacing:-0.051200pt;}
.lsb_c00354{letter-spacing:-0.044800pt;}
.ls8_c00354{letter-spacing:-0.038400pt;}
.ls4_c00354{letter-spacing:-0.032000pt;}
.ls9_c00354{letter-spacing:-0.025600pt;}
.ls7_c00354{letter-spacing:-0.019200pt;}
.lsc_c00354{letter-spacing:-0.012800pt;}
.ls6_c00354{letter-spacing:-0.006400pt;}
.ls2_c00354{letter-spacing:0.000000pt;}
.ls1_c00354{letter-spacing:0.006400pt;}
.lsf_c00354{letter-spacing:0.019200pt;}
.ls0_c00354{letter-spacing:0.022368pt;}
.ws3_c00354{word-spacing:-2.707200pt;}
.ws2_c00354{word-spacing:-2.668800pt;}
.wsd_c00354{word-spacing:-2.304000pt;}
.ws25_c00354{word-spacing:-2.220800pt;}
.ws7_c00354{word-spacing:-2.092800pt;}
.ws24_c00354{word-spacing:-2.060800pt;}
.ws6_c00354{word-spacing:-2.022400pt;}
.ws8_c00354{word-spacing:-1.996800pt;}
.ws26_c00354{word-spacing:-1.100800pt;}
.ws9_c00354{word-spacing:-0.876800pt;}
.wsa_c00354{word-spacing:-0.780800pt;}
.ws0_c00354{word-spacing:0.000000pt;}
.ws1_c00354{word-spacing:0.134208pt;}
.ws32_c00354{word-spacing:0.134400pt;}
.ws19_c00354{word-spacing:0.153600pt;}
.ws22_c00354{word-spacing:0.160000pt;}
.wsf_c00354{word-spacing:0.166400pt;}
.ws31_c00354{word-spacing:0.185600pt;}
.ws23_c00354{word-spacing:0.281600pt;}
.ws2d_c00354{word-spacing:0.371200pt;}
.ws2b_c00354{word-spacing:1.145600pt;}
.ws2c_c00354{word-spacing:1.158400pt;}
.ws10_c00354{word-spacing:1.446400pt;}
.ws11_c00354{word-spacing:1.465600pt;}
.ws14_c00354{word-spacing:2.374400pt;}
.wsb_c00354{word-spacing:2.406400pt;}
.ws13_c00354{word-spacing:2.432000pt;}
.wsc_c00354{word-spacing:2.457600pt;}
.ws18_c00354{word-spacing:3.347200pt;}
.ws17_c00354{word-spacing:3.436800pt;}
.ws1b_c00354{word-spacing:4.659200pt;}
.ws1c_c00354{word-spacing:4.672000pt;}
.ws2a_c00354{word-spacing:5.177600pt;}
.ws29_c00354{word-spacing:5.222400pt;}
.ws30_c00354{word-spacing:5.305600pt;}
.ws4_c00354{word-spacing:5.868800pt;}
.ws5_c00354{word-spacing:5.984000pt;}
.ws1a_c00354{word-spacing:7.833600pt;}
.wse_c00354{word-spacing:11.379200pt;}
.ws2e_c00354{word-spacing:13.580800pt;}
.ws2f_c00354{word-spacing:13.593600pt;}
.ws28_c00354{word-spacing:14.137600pt;}
.ws27_c00354{word-spacing:14.227200pt;}
.ws20_c00354{word-spacing:18.208000pt;}
.ws1f_c00354{word-spacing:18.284800pt;}
.ws21_c00354{word-spacing:18.387200pt;}
.ws16_c00354{word-spacing:19.353600pt;}
.ws15_c00354{word-spacing:19.385600pt;}
.ws12_c00354{word-spacing:20.313600pt;}
.ws1e_c00354{word-spacing:26.764800pt;}
.ws1d_c00354{word-spacing:26.822400pt;}
._2_c00354{margin-left:-4.825600pt;}
._1_c00354{width:1.088000pt;}
._0_c00354{width:166.641600pt;}
.fs0_c00354{font-size:64.000000pt;}
.fs1_c00354{font-size:74.560000pt;}
.y0_c00354{bottom:0.000000pt;}
.y2_c00354{bottom:41.627067pt;}
.y1_c00354{bottom:60.027067pt;}
.y20_c00354{bottom:133.307067pt;}
.y1f_c00354{bottom:160.827067pt;}
.y1e_c00354{bottom:188.507067pt;}
.y1d_c00354{bottom:224.107067pt;}
.y1c_c00354{bottom:251.707067pt;}
.y1b_c00354{bottom:279.307067pt;}
.y1a_c00354{bottom:306.907067pt;}
.y19_c00354{bottom:334.507067pt;}
.y18_c00354{bottom:362.107067pt;}
.y17_c00354{bottom:397.707067pt;}
.y16_c00354{bottom:425.307067pt;}
.y15_c00354{bottom:452.907067pt;}
.y14_c00354{bottom:480.507067pt;}
.y13_c00354{bottom:508.107067pt;}
.y12_c00354{bottom:543.707067pt;}
.y11_c00354{bottom:571.307067pt;}
.y10_c00354{bottom:598.907067pt;}
.yf_c00354{bottom:626.507067pt;}
.ye_c00354{bottom:654.107067pt;}
.yd_c00354{bottom:681.707067pt;}
.yc_c00354{bottom:717.307067pt;}
.yb_c00354{bottom:744.907067pt;}
.ya_c00354{bottom:772.507067pt;}
.y9_c00354{bottom:800.107067pt;}
.y8_c00354{bottom:827.707067pt;}
.y7_c00354{bottom:855.307067pt;}
.y6_c00354{bottom:882.907067pt;}
.y5_c00354{bottom:910.507067pt;}
.y4_c00354{bottom:946.107067pt;}
.y3_c00354{bottom:972.907067pt;}
.h1_c00354{height:56.156250pt;}
.h3_c00354{height:57.375000pt;}
.h4_c00354{height:66.750000pt;}
.h2_c00354{height:77.763750pt;}
.h0_c00354{height:1122.666667pt;}
.w1_c00354{width:793.333333pt;}
.w0_c00354{width:793.626667pt;}
.x0_c00354{left:0.000000pt;}
.x2_c00354{left:151.200000pt;}
.x3_c00354{left:199.200000pt;}
.x1_c00354{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_84f133b9021b2d03f2dfa78d.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.093262;font-style:normal;font-weight:normal;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_37f5e48ecc4b8b03b2915344.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.106934;font-style:normal;font-weight:normal;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_db5f932bcf5f7fdde1cec080.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00355{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.ls3_c00355{letter-spacing:-0.072000px;}
.ls7_c00355{letter-spacing:-0.064800px;}
.lsd_c00355{letter-spacing:-0.057600px;}
.ls5_c00355{letter-spacing:-0.050400px;}
.lsa_c00355{letter-spacing:-0.043200px;}
.ls4_c00355{letter-spacing:-0.036000px;}
.ls2_c00355{letter-spacing:-0.028800px;}
.lsb_c00355{letter-spacing:-0.021600px;}
.ls9_c00355{letter-spacing:-0.014400px;}
.ls8_c00355{letter-spacing:-0.007200px;}
.ls1_c00355{letter-spacing:0.000000px;}
.ls6_c00355{letter-spacing:0.014400px;}
.ls0_c00355{letter-spacing:0.021600px;}
.lsc_c00355{letter-spacing:0.144000px;}
.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;}
}
.ws32_c00355{word-spacing:-3.384000px;}
.ws1_c00355{word-spacing:-2.332800px;}
.ws2_c00355{word-spacing:-2.217600px;}
.wsa_c00355{word-spacing:-0.914400px;}
.ws9_c00355{word-spacing:-0.871200px;}
.ws8_c00355{word-spacing:-0.856800px;}
.ws15_c00355{word-spacing:-0.237600px;}
.ws2c_c00355{word-spacing:-0.187200px;}
.ws14_c00355{word-spacing:-0.158400px;}
.ws0_c00355{word-spacing:0.000000px;}
.wsd_c00355{word-spacing:0.136800px;}
.ws20_c00355{word-spacing:0.172800px;}
.ws1e_c00355{word-spacing:0.180000px;}
.ws16_c00355{word-spacing:0.187200px;}
.ws1d_c00355{word-spacing:0.194400px;}
.ws27_c00355{word-spacing:0.338400px;}
.ws2e_c00355{word-spacing:0.460800px;}
.ws2f_c00355{word-spacing:0.554400px;}
.wsc_c00355{word-spacing:0.892800px;}
.wsb_c00355{word-spacing:1.000800px;}
.ws30_c00355{word-spacing:1.195200px;}
.ws31_c00355{word-spacing:1.238400px;}
.ws1b_c00355{word-spacing:1.612800px;}
.ws1c_c00355{word-spacing:1.620000px;}
.ws33_c00355{word-spacing:2.700000px;}
.ws22_c00355{word-spacing:3.772800px;}
.ws11_c00355{word-spacing:4.140000px;}
.ws10_c00355{word-spacing:4.154400px;}
.ws12_c00355{word-spacing:4.161600px;}
.ws13_c00355{word-spacing:5.659200px;}
.ws3_c00355{word-spacing:5.954400px;}
.ws4_c00355{word-spacing:5.968800px;}
.wsf_c00355{word-spacing:6.955200px;}
.wse_c00355{word-spacing:7.041600px;}
.ws19_c00355{word-spacing:10.274400px;}
.ws1a_c00355{word-spacing:10.303200px;}
.ws2b_c00355{word-spacing:11.383200px;}
.ws17_c00355{word-spacing:13.420800px;}
.ws18_c00355{word-spacing:13.514400px;}
.ws29_c00355{word-spacing:13.867200px;}
.ws2a_c00355{word-spacing:13.874400px;}
.ws1f_c00355{word-spacing:14.198400px;}
.ws25_c00355{word-spacing:18.547200px;}
.ws26_c00355{word-spacing:18.561600px;}
.ws21_c00355{word-spacing:19.987200px;}
.ws2d_c00355{word-spacing:25.056000px;}
.ws6_c00355{word-spacing:26.416800px;}
.ws7_c00355{word-spacing:26.424000px;}
.ws5_c00355{word-spacing:26.467200px;}
.ws24_c00355{word-spacing:27.547200px;}
.ws23_c00355{word-spacing:27.583200px;}
.ws28_c00355{word-spacing:28.641600px;}
.ws34_c00355{word-spacing:72.943200px;}
._0_c00355{width:1.173600px;}
.fc0_c00355{color:rgb(0,0,0);}
.fs0_c00355{font-size:72.000000px;}
.y0_c00355{bottom:0.000000px;}
.y2_c00355{bottom:46.830450px;}
.y1_c00355{bottom:67.530450px;}
.y24_c00355{bottom:163.830450px;}
.y23_c00355{bottom:184.530450px;}
.y22_c00355{bottom:205.230450px;}
.y21_c00355{bottom:225.930450px;}
.y20_c00355{bottom:246.630450px;}
.y1f_c00355{bottom:267.330450px;}
.y1e_c00355{bottom:288.030450px;}
.y1d_c00355{bottom:308.730450px;}
.y1c_c00355{bottom:329.430450px;}
.y1b_c00355{bottom:350.040450px;}
.y1a_c00355{bottom:370.740450px;}
.y19_c00355{bottom:391.440450px;}
.y18_c00355{bottom:412.140450px;}
.y17_c00355{bottom:432.840450px;}
.y16_c00355{bottom:453.540450px;}
.y15_c00355{bottom:493.590450px;}
.y14_c00355{bottom:533.640450px;}
.y13_c00355{bottom:564.690450px;}
.y12_c00355{bottom:604.740450px;}
.y11_c00355{bottom:635.790450px;}
.y10_c00355{bottom:675.840450px;}
.yf_c00355{bottom:706.890450px;}
.ye_c00355{bottom:737.940450px;}
.yd_c00355{bottom:777.990450px;}
.yc_c00355{bottom:808.950450px;}
.yb_c00355{bottom:840.000450px;}
.ya_c00355{bottom:871.140450px;}
.y9_c00355{bottom:902.190450px;}
.y8_c00355{bottom:942.240450px;}
.y7_c00355{bottom:973.200450px;}
.y6_c00355{bottom:1004.340450px;}
.y5_c00355{bottom:1035.390450px;}
.y4_c00355{bottom:1066.350450px;}
.y3_c00355{bottom:1097.490450px;}
.h1_c00355{height:63.175781px;}
.h3_c00355{height:64.546875px;}
.h2_c00355{height:75.093750px;}
.h0_c00355{height:1263.000000px;}
.w1_c00355{width:892.500000px;}
.w0_c00355{width:892.830000px;}
.x0_c00355{left:0.000000px;}
.x2_c00355{left:127.620000px;}
.x3_c00355{left:202.950000px;}
.x1_c00355{left:695.880000px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls3_c00355{letter-spacing:-0.064000pt;}
.ls7_c00355{letter-spacing:-0.057600pt;}
.lsd_c00355{letter-spacing:-0.051200pt;}
.ls5_c00355{letter-spacing:-0.044800pt;}
.lsa_c00355{letter-spacing:-0.038400pt;}
.ls4_c00355{letter-spacing:-0.032000pt;}
.ls2_c00355{letter-spacing:-0.025600pt;}
.lsb_c00355{letter-spacing:-0.019200pt;}
.ls9_c00355{letter-spacing:-0.012800pt;}
.ls8_c00355{letter-spacing:-0.006400pt;}
.ls1_c00355{letter-spacing:0.000000pt;}
.ls6_c00355{letter-spacing:0.012800pt;}
.ls0_c00355{letter-spacing:0.019200pt;}
.lsc_c00355{letter-spacing:0.128000pt;}
.ws32_c00355{word-spacing:-3.008000pt;}
.ws1_c00355{word-spacing:-2.073600pt;}
.ws2_c00355{word-spacing:-1.971200pt;}
.wsa_c00355{word-spacing:-0.812800pt;}
.ws9_c00355{word-spacing:-0.774400pt;}
.ws8_c00355{word-spacing:-0.761600pt;}
.ws15_c00355{word-spacing:-0.211200pt;}
.ws2c_c00355{word-spacing:-0.166400pt;}
.ws14_c00355{word-spacing:-0.140800pt;}
.ws0_c00355{word-spacing:0.000000pt;}
.wsd_c00355{word-spacing:0.121600pt;}
.ws20_c00355{word-spacing:0.153600pt;}
.ws1e_c00355{word-spacing:0.160000pt;}
.ws16_c00355{word-spacing:0.166400pt;}
.ws1d_c00355{word-spacing:0.172800pt;}
.ws27_c00355{word-spacing:0.300800pt;}
.ws2e_c00355{word-spacing:0.409600pt;}
.ws2f_c00355{word-spacing:0.492800pt;}
.wsc_c00355{word-spacing:0.793600pt;}
.wsb_c00355{word-spacing:0.889600pt;}
.ws30_c00355{word-spacing:1.062400pt;}
.ws31_c00355{word-spacing:1.100800pt;}
.ws1b_c00355{word-spacing:1.433600pt;}
.ws1c_c00355{word-spacing:1.440000pt;}
.ws33_c00355{word-spacing:2.400000pt;}
.ws22_c00355{word-spacing:3.353600pt;}
.ws11_c00355{word-spacing:3.680000pt;}
.ws10_c00355{word-spacing:3.692800pt;}
.ws12_c00355{word-spacing:3.699200pt;}
.ws13_c00355{word-spacing:5.030400pt;}
.ws3_c00355{word-spacing:5.292800pt;}
.ws4_c00355{word-spacing:5.305600pt;}
.wsf_c00355{word-spacing:6.182400pt;}
.wse_c00355{word-spacing:6.259200pt;}
.ws19_c00355{word-spacing:9.132800pt;}
.ws1a_c00355{word-spacing:9.158400pt;}
.ws2b_c00355{word-spacing:10.118400pt;}
.ws17_c00355{word-spacing:11.929600pt;}
.ws18_c00355{word-spacing:12.012800pt;}
.ws29_c00355{word-spacing:12.326400pt;}
.ws2a_c00355{word-spacing:12.332800pt;}
.ws1f_c00355{word-spacing:12.620800pt;}
.ws25_c00355{word-spacing:16.486400pt;}
.ws26_c00355{word-spacing:16.499200pt;}
.ws21_c00355{word-spacing:17.766400pt;}
.ws2d_c00355{word-spacing:22.272000pt;}
.ws6_c00355{word-spacing:23.481600pt;}
.ws7_c00355{word-spacing:23.488000pt;}
.ws5_c00355{word-spacing:23.526400pt;}
.ws24_c00355{word-spacing:24.486400pt;}
.ws23_c00355{word-spacing:24.518400pt;}
.ws28_c00355{word-spacing:25.459200pt;}
.ws34_c00355{word-spacing:64.838400pt;}
._0_c00355{width:1.043200pt;}
.fs0_c00355{font-size:64.000000pt;}
.y0_c00355{bottom:0.000000pt;}
.y2_c00355{bottom:41.627067pt;}
.y1_c00355{bottom:60.027067pt;}
.y24_c00355{bottom:145.627067pt;}
.y23_c00355{bottom:164.027067pt;}
.y22_c00355{bottom:182.427067pt;}
.y21_c00355{bottom:200.827067pt;}
.y20_c00355{bottom:219.227067pt;}
.y1f_c00355{bottom:237.627067pt;}
.y1e_c00355{bottom:256.027067pt;}
.y1d_c00355{bottom:274.427067pt;}
.y1c_c00355{bottom:292.827067pt;}
.y1b_c00355{bottom:311.147067pt;}
.y1a_c00355{bottom:329.547067pt;}
.y19_c00355{bottom:347.947067pt;}
.y18_c00355{bottom:366.347067pt;}
.y17_c00355{bottom:384.747067pt;}
.y16_c00355{bottom:403.147067pt;}
.y15_c00355{bottom:438.747067pt;}
.y14_c00355{bottom:474.347067pt;}
.y13_c00355{bottom:501.947067pt;}
.y12_c00355{bottom:537.547067pt;}
.y11_c00355{bottom:565.147067pt;}
.y10_c00355{bottom:600.747067pt;}
.yf_c00355{bottom:628.347067pt;}
.ye_c00355{bottom:655.947067pt;}
.yd_c00355{bottom:691.547067pt;}
.yc_c00355{bottom:719.067067pt;}
.yb_c00355{bottom:746.667067pt;}
.ya_c00355{bottom:774.347067pt;}
.y9_c00355{bottom:801.947067pt;}
.y8_c00355{bottom:837.547067pt;}
.y7_c00355{bottom:865.067067pt;}
.y6_c00355{bottom:892.747067pt;}
.y5_c00355{bottom:920.347067pt;}
.y4_c00355{bottom:947.867067pt;}
.y3_c00355{bottom:975.547067pt;}
.h1_c00355{height:56.156250pt;}
.h3_c00355{height:57.375000pt;}
.h2_c00355{height:66.750000pt;}
.h0_c00355{height:1122.666667pt;}
.w1_c00355{width:793.333333pt;}
.w0_c00355{width:793.626667pt;}
.x0_c00355{left:0.000000pt;}
.x2_c00355{left:113.440000pt;}
.x3_c00355{left:180.400000pt;}
.x1_c00355{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_45d96eae3d04d638f71a2c6f.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.093262;font-style:normal;font-weight:normal;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_9699ab34715a0aa99d90e8f3.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.106934;font-style:normal;font-weight:normal;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_591ef7035aea16d8b2cf40c8.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00356{letter-spacing:-0.072000px;}
.lsb_c00356{letter-spacing:-0.064800px;}
.ls6_c00356{letter-spacing:-0.057600px;}
.ls4_c00356{letter-spacing:-0.050400px;}
.ls2_c00356{letter-spacing:-0.043200px;}
.ls3_c00356{letter-spacing:-0.036000px;}
.ls5_c00356{letter-spacing:-0.028800px;}
.lsa_c00356{letter-spacing:-0.021600px;}
.ls7_c00356{letter-spacing:-0.014400px;}
.ls8_c00356{letter-spacing:-0.007200px;}
.ls1_c00356{letter-spacing:0.000000px;}
.ls0_c00356{letter-spacing:0.007200px;}
.ls9_c00356{letter-spacing:0.021600px;}
.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;}
}
.wsd_c00356{word-spacing:-4.543200px;}
.wsc_c00356{word-spacing:-4.492800px;}
.ws20_c00356{word-spacing:-4.168800px;}
.ws21_c00356{word-spacing:-3.967200px;}
.ws2b_c00356{word-spacing:-1.612800px;}
.ws2c_c00356{word-spacing:-0.900000px;}
.ws0_c00356{word-spacing:0.000000px;}
.ws25_c00356{word-spacing:0.086400px;}
.ws9_c00356{word-spacing:0.093600px;}
.ws13_c00356{word-spacing:0.158400px;}
.ws8_c00356{word-spacing:0.172800px;}
.ws26_c00356{word-spacing:0.180000px;}
.ws2_c00356{word-spacing:0.201600px;}
.ws24_c00356{word-spacing:0.216000px;}
.ws1_c00356{word-spacing:0.561600px;}
.ws3_c00356{word-spacing:0.820800px;}
.ws1b_c00356{word-spacing:0.892800px;}
.ws1a_c00356{word-spacing:0.914400px;}
.ws4_c00356{word-spacing:0.928800px;}
.ws1c_c00356{word-spacing:2.030400px;}
.wse_c00356{word-spacing:2.354400px;}
.ws16_c00356{word-spacing:2.721600px;}
.ws17_c00356{word-spacing:2.736000px;}
.ws2a_c00356{word-spacing:4.507200px;}
.ws5_c00356{word-spacing:4.867200px;}
.ws1f_c00356{word-spacing:4.975200px;}
.ws22_c00356{word-spacing:5.544000px;}
.ws2f_c00356{word-spacing:5.572800px;}
.ws23_c00356{word-spacing:5.601600px;}
.ws14_c00356{word-spacing:5.961600px;}
.ws15_c00356{word-spacing:5.976000px;}
.ws12_c00356{word-spacing:7.740000px;}
.ws11_c00356{word-spacing:7.754400px;}
.ws10_c00356{word-spacing:8.092800px;}
.wsf_c00356{word-spacing:8.114400px;}
.ws28_c00356{word-spacing:10.260000px;}
.ws27_c00356{word-spacing:10.281600px;}
.ws7_c00356{word-spacing:10.648800px;}
.ws6_c00356{word-spacing:10.656000px;}
.ws29_c00356{word-spacing:11.347200px;}
.ws2d_c00356{word-spacing:14.925600px;}
.ws2e_c00356{word-spacing:14.947200px;}
.ws30_c00356{word-spacing:18.396000px;}
.ws18_c00356{word-spacing:18.554400px;}
.ws31_c00356{word-spacing:18.568800px;}
.ws19_c00356{word-spacing:18.583200px;}
.ws1d_c00356{word-spacing:18.640800px;}
.ws1e_c00356{word-spacing:18.734400px;}
.wsb_c00356{word-spacing:23.169600px;}
.wsa_c00356{word-spacing:23.176800px;}
.ws35_c00356{word-spacing:26.467200px;}
.ws34_c00356{word-spacing:26.553600px;}
.ws33_c00356{word-spacing:49.852800px;}
.ws32_c00356{word-spacing:50.004000px;}
._1_c00356{margin-left:-7.588800px;}
._0_c00356{width:1.224000px;}
.fc0_c00356{color:rgb(0,0,0);}
.fs0_c00356{font-size:72.000000px;}
.y0_c00356{bottom:0.000000px;}
.y2_c00356{bottom:46.830450px;}
.y1_c00356{bottom:67.530450px;}
.y27_c00356{bottom:134.130450px;}
.y26_c00356{bottom:154.830450px;}
.y25_c00356{bottom:175.530450px;}
.y24_c00356{bottom:196.230450px;}
.y23_c00356{bottom:216.930450px;}
.y22_c00356{bottom:256.980450px;}
.y21_c00356{bottom:297.030450px;}
.y20_c00356{bottom:328.080450px;}
.y1f_c00356{bottom:359.040450px;}
.y1e_c00356{bottom:390.090450px;}
.y1d_c00356{bottom:421.140450px;}
.y1c_c00356{bottom:452.190450px;}
.y1b_c00356{bottom:492.240450px;}
.y1a_c00356{bottom:521.940450px;}
.y19_c00356{bottom:542.640450px;}
.y18_c00356{bottom:563.340450px;}
.y17_c00356{bottom:584.040450px;}
.y16_c00356{bottom:604.740450px;}
.y15_c00356{bottom:625.440450px;}
.y14_c00356{bottom:646.140450px;}
.y13_c00356{bottom:666.840450px;}
.y12_c00356{bottom:687.540450px;}
.y11_c00356{bottom:708.240450px;}
.y10_c00356{bottom:728.940450px;}
.yf_c00356{bottom:768.990450px;}
.ye_c00356{bottom:800.040450px;}
.yd_c00356{bottom:831.090450px;}
.yc_c00356{bottom:862.140450px;}
.yb_c00356{bottom:893.190450px;}
.ya_c00356{bottom:924.240450px;}
.y9_c00356{bottom:964.290450px;}
.y8_c00356{bottom:993.990450px;}
.y7_c00356{bottom:1014.690450px;}
.y6_c00356{bottom:1035.390450px;}
.y5_c00356{bottom:1056.090450px;}
.y4_c00356{bottom:1076.790450px;}
.y3_c00356{bottom:1097.490450px;}
.h1_c00356{height:63.175781px;}
.h2_c00356{height:64.546875px;}
.h3_c00356{height:75.093750px;}
.h0_c00356{height:1263.000000px;}
.w1_c00356{width:892.500000px;}
.w0_c00356{width:892.830000px;}
.x0_c00356{left:0.000000px;}
.x2_c00356{left:170.100000px;}
.x3_c00356{left:245.430000px;}
.x1_c00356{left:738.360000px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.lsc_c00356{letter-spacing:-0.064000pt;}
.lsb_c00356{letter-spacing:-0.057600pt;}
.ls6_c00356{letter-spacing:-0.051200pt;}
.ls4_c00356{letter-spacing:-0.044800pt;}
.ls2_c00356{letter-spacing:-0.038400pt;}
.ls3_c00356{letter-spacing:-0.032000pt;}
.ls5_c00356{letter-spacing:-0.025600pt;}
.lsa_c00356{letter-spacing:-0.019200pt;}
.ls7_c00356{letter-spacing:-0.012800pt;}
.ls8_c00356{letter-spacing:-0.006400pt;}
.ls1_c00356{letter-spacing:0.000000pt;}
.ls0_c00356{letter-spacing:0.006400pt;}
.ls9_c00356{letter-spacing:0.019200pt;}
.wsd_c00356{word-spacing:-4.038400pt;}
.wsc_c00356{word-spacing:-3.993600pt;}
.ws20_c00356{word-spacing:-3.705600pt;}
.ws21_c00356{word-spacing:-3.526400pt;}
.ws2b_c00356{word-spacing:-1.433600pt;}
.ws2c_c00356{word-spacing:-0.800000pt;}
.ws0_c00356{word-spacing:0.000000pt;}
.ws25_c00356{word-spacing:0.076800pt;}
.ws9_c00356{word-spacing:0.083200pt;}
.ws13_c00356{word-spacing:0.140800pt;}
.ws8_c00356{word-spacing:0.153600pt;}
.ws26_c00356{word-spacing:0.160000pt;}
.ws2_c00356{word-spacing:0.179200pt;}
.ws24_c00356{word-spacing:0.192000pt;}
.ws1_c00356{word-spacing:0.499200pt;}
.ws3_c00356{word-spacing:0.729600pt;}
.ws1b_c00356{word-spacing:0.793600pt;}
.ws1a_c00356{word-spacing:0.812800pt;}
.ws4_c00356{word-spacing:0.825600pt;}
.ws1c_c00356{word-spacing:1.804800pt;}
.wse_c00356{word-spacing:2.092800pt;}
.ws16_c00356{word-spacing:2.419200pt;}
.ws17_c00356{word-spacing:2.432000pt;}
.ws2a_c00356{word-spacing:4.006400pt;}
.ws5_c00356{word-spacing:4.326400pt;}
.ws1f_c00356{word-spacing:4.422400pt;}
.ws22_c00356{word-spacing:4.928000pt;}
.ws2f_c00356{word-spacing:4.953600pt;}
.ws23_c00356{word-spacing:4.979200pt;}
.ws14_c00356{word-spacing:5.299200pt;}
.ws15_c00356{word-spacing:5.312000pt;}
.ws12_c00356{word-spacing:6.880000pt;}
.ws11_c00356{word-spacing:6.892800pt;}
.ws10_c00356{word-spacing:7.193600pt;}
.wsf_c00356{word-spacing:7.212800pt;}
.ws28_c00356{word-spacing:9.120000pt;}
.ws27_c00356{word-spacing:9.139200pt;}
.ws7_c00356{word-spacing:9.465600pt;}
.ws6_c00356{word-spacing:9.472000pt;}
.ws29_c00356{word-spacing:10.086400pt;}
.ws2d_c00356{word-spacing:13.267200pt;}
.ws2e_c00356{word-spacing:13.286400pt;}
.ws30_c00356{word-spacing:16.352000pt;}
.ws18_c00356{word-spacing:16.492800pt;}
.ws31_c00356{word-spacing:16.505600pt;}
.ws19_c00356{word-spacing:16.518400pt;}
.ws1d_c00356{word-spacing:16.569600pt;}
.ws1e_c00356{word-spacing:16.652800pt;}
.wsb_c00356{word-spacing:20.595200pt;}
.wsa_c00356{word-spacing:20.601600pt;}
.ws35_c00356{word-spacing:23.526400pt;}
.ws34_c00356{word-spacing:23.603200pt;}
.ws33_c00356{word-spacing:44.313600pt;}
.ws32_c00356{word-spacing:44.448000pt;}
._1_c00356{margin-left:-6.745600pt;}
._0_c00356{width:1.088000pt;}
.fs0_c00356{font-size:64.000000pt;}
.y0_c00356{bottom:0.000000pt;}
.y2_c00356{bottom:41.627067pt;}
.y1_c00356{bottom:60.027067pt;}
.y27_c00356{bottom:119.227067pt;}
.y26_c00356{bottom:137.627067pt;}
.y25_c00356{bottom:156.027067pt;}
.y24_c00356{bottom:174.427067pt;}
.y23_c00356{bottom:192.827067pt;}
.y22_c00356{bottom:228.427067pt;}
.y21_c00356{bottom:264.027067pt;}
.y20_c00356{bottom:291.627067pt;}
.y1f_c00356{bottom:319.147067pt;}
.y1e_c00356{bottom:346.747067pt;}
.y1d_c00356{bottom:374.347067pt;}
.y1c_c00356{bottom:401.947067pt;}
.y1b_c00356{bottom:437.547067pt;}
.y1a_c00356{bottom:463.947067pt;}
.y19_c00356{bottom:482.347067pt;}
.y18_c00356{bottom:500.747067pt;}
.y17_c00356{bottom:519.147067pt;}
.y16_c00356{bottom:537.547067pt;}
.y15_c00356{bottom:555.947067pt;}
.y14_c00356{bottom:574.347067pt;}
.y13_c00356{bottom:592.747067pt;}
.y12_c00356{bottom:611.147067pt;}
.y11_c00356{bottom:629.547067pt;}
.y10_c00356{bottom:647.947067pt;}
.yf_c00356{bottom:683.547067pt;}
.ye_c00356{bottom:711.147067pt;}
.yd_c00356{bottom:738.747067pt;}
.yc_c00356{bottom:766.347067pt;}
.yb_c00356{bottom:793.947067pt;}
.ya_c00356{bottom:821.547067pt;}
.y9_c00356{bottom:857.147067pt;}
.y8_c00356{bottom:883.547067pt;}
.y7_c00356{bottom:901.947067pt;}
.y6_c00356{bottom:920.347067pt;}
.y5_c00356{bottom:938.747067pt;}
.y4_c00356{bottom:957.147067pt;}
.y3_c00356{bottom:975.547067pt;}
.h1_c00356{height:56.156250pt;}
.h2_c00356{height:57.375000pt;}
.h3_c00356{height:66.750000pt;}
.h0_c00356{height:1122.666667pt;}
.w1_c00356{width:793.333333pt;}
.w0_c00356{width:793.626667pt;}
.x0_c00356{left:0.000000pt;}
.x2_c00356{left:151.200000pt;}
.x3_c00356{left:218.160000pt;}
.x1_c00356{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f069737648f797f935e12057.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.093262;font-style:normal;font-weight:normal;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_98d1d19fb85ea4319f402ff7.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.106934;font-style:normal;font-weight:normal;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_c800c225fb69c028432bffc8.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00357{letter-spacing:-0.115200px;}
.lsa_c00357{letter-spacing:-0.086400px;}
.ls4_c00357{letter-spacing:-0.057600px;}
.ls3_c00357{letter-spacing:-0.050400px;}
.ls7_c00357{letter-spacing:-0.043200px;}
.ls5_c00357{letter-spacing:-0.036000px;}
.ls2_c00357{letter-spacing:-0.028800px;}
.ls6_c00357{letter-spacing:-0.021600px;}
.ls8_c00357{letter-spacing:-0.014400px;}
.ls1_c00357{letter-spacing:0.000000px;}
.ls0_c00357{letter-spacing:0.144000px;}
.lsb_c00357{letter-spacing:843.998400px;}
.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;}
}
.ws6_c00357{word-spacing:-0.900000px;}
.ws5_c00357{word-spacing:-0.885600px;}
.ws1_c00357{word-spacing:-0.590400px;}
.ws0_c00357{word-spacing:0.000000px;}
.wsd_c00357{word-spacing:0.172800px;}
.ws1b_c00357{word-spacing:0.201600px;}
.ws9_c00357{word-spacing:0.504000px;}
.wsa_c00357{word-spacing:0.568800px;}
.ws18_c00357{word-spacing:1.274400px;}
.ws1a_c00357{word-spacing:1.324800px;}
.ws19_c00357{word-spacing:1.353600px;}
.wsc_c00357{word-spacing:3.060000px;}
.ws17_c00357{word-spacing:3.074400px;}
.ws16_c00357{word-spacing:3.153600px;}
.ws8_c00357{word-spacing:7.113600px;}
.ws7_c00357{word-spacing:8.481600px;}
.ws14_c00357{word-spacing:8.733600px;}
.ws15_c00357{word-spacing:8.913600px;}
.ws2_c00357{word-spacing:9.079200px;}
.ws13_c00357{word-spacing:9.158400px;}
.ws11_c00357{word-spacing:9.201600px;}
.ws3_c00357{word-spacing:9.216000px;}
.ws12_c00357{word-spacing:9.316800px;}
.ws10_c00357{word-spacing:10.972800px;}
.wsf_c00357{word-spacing:11.008800px;}
.wse_c00357{word-spacing:11.376000px;}
.wsb_c00357{word-spacing:18.158400px;}
.ws4_c00357{word-spacing:39.427200px;}
.fc0_c00357{color:rgb(0,0,0);}
.fs0_c00357{font-size:72.000000px;}
.y0_c00357{bottom:0.000000px;}
.y2_c00357{bottom:46.830450px;}
.y1_c00357{bottom:67.530450px;}
.y17_c00357{bottom:548.040450px;}
.y16_c00357{bottom:586.740450px;}
.y15_c00357{bottom:625.440450px;}
.y14_c00357{bottom:674.490450px;}
.y13_c00357{bottom:705.540450px;}
.y12_c00357{bottom:736.590450px;}
.y11_c00357{bottom:767.640450px;}
.y10_c00357{bottom:798.690450px;}
.yf_c00357{bottom:829.740450px;}
.ye_c00357{bottom:860.790450px;}
.yd_c00357{bottom:890.490450px;}
.yc_c00357{bottom:911.190450px;}
.yb_c00357{bottom:931.890450px;}
.ya_c00357{bottom:952.590450px;}
.y9_c00357{bottom:973.290450px;}
.y8_c00357{bottom:993.990450px;}
.y7_c00357{bottom:1014.690450px;}
.y6_c00357{bottom:1035.390450px;}
.y5_c00357{bottom:1056.090450px;}
.y4_c00357{bottom:1076.790450px;}
.y3_c00357{bottom:1097.490450px;}
.h1_c00357{height:63.175781px;}
.h2_c00357{height:64.546875px;}
.h3_c00357{height:75.093750px;}
.h0_c00357{height:1263.000000px;}
.w1_c00357{width:892.500000px;}
.w0_c00357{width:892.830000px;}
.x0_c00357{left:0.000000px;}
.x2_c00357{left:127.620000px;}
.x3_c00357{left:202.950000px;}
.x1_c00357{left:695.880000px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls9_c00357{letter-spacing:-0.102400pt;}
.lsa_c00357{letter-spacing:-0.076800pt;}
.ls4_c00357{letter-spacing:-0.051200pt;}
.ls3_c00357{letter-spacing:-0.044800pt;}
.ls7_c00357{letter-spacing:-0.038400pt;}
.ls5_c00357{letter-spacing:-0.032000pt;}
.ls2_c00357{letter-spacing:-0.025600pt;}
.ls6_c00357{letter-spacing:-0.019200pt;}
.ls8_c00357{letter-spacing:-0.012800pt;}
.ls1_c00357{letter-spacing:0.000000pt;}
.ls0_c00357{letter-spacing:0.128000pt;}
.lsb_c00357{letter-spacing:750.220800pt;}
.ws6_c00357{word-spacing:-0.800000pt;}
.ws5_c00357{word-spacing:-0.787200pt;}
.ws1_c00357{word-spacing:-0.524800pt;}
.ws0_c00357{word-spacing:0.000000pt;}
.wsd_c00357{word-spacing:0.153600pt;}
.ws1b_c00357{word-spacing:0.179200pt;}
.ws9_c00357{word-spacing:0.448000pt;}
.wsa_c00357{word-spacing:0.505600pt;}
.ws18_c00357{word-spacing:1.132800pt;}
.ws1a_c00357{word-spacing:1.177600pt;}
.ws19_c00357{word-spacing:1.203200pt;}
.wsc_c00357{word-spacing:2.720000pt;}
.ws17_c00357{word-spacing:2.732800pt;}
.ws16_c00357{word-spacing:2.803200pt;}
.ws8_c00357{word-spacing:6.323200pt;}
.ws7_c00357{word-spacing:7.539200pt;}
.ws14_c00357{word-spacing:7.763200pt;}
.ws15_c00357{word-spacing:7.923200pt;}
.ws2_c00357{word-spacing:8.070400pt;}
.ws13_c00357{word-spacing:8.140800pt;}
.ws11_c00357{word-spacing:8.179200pt;}
.ws3_c00357{word-spacing:8.192000pt;}
.ws12_c00357{word-spacing:8.281600pt;}
.ws10_c00357{word-spacing:9.753600pt;}
.wsf_c00357{word-spacing:9.785600pt;}
.wse_c00357{word-spacing:10.112000pt;}
.wsb_c00357{word-spacing:16.140800pt;}
.ws4_c00357{word-spacing:35.046400pt;}
.fs0_c00357{font-size:64.000000pt;}
.y0_c00357{bottom:0.000000pt;}
.y2_c00357{bottom:41.627067pt;}
.y1_c00357{bottom:60.027067pt;}
.y17_c00357{bottom:487.147067pt;}
.y16_c00357{bottom:521.547067pt;}
.y15_c00357{bottom:555.947067pt;}
.y14_c00357{bottom:599.547067pt;}
.y13_c00357{bottom:627.147067pt;}
.y12_c00357{bottom:654.747067pt;}
.y11_c00357{bottom:682.347067pt;}
.y10_c00357{bottom:709.947067pt;}
.yf_c00357{bottom:737.547067pt;}
.ye_c00357{bottom:765.147067pt;}
.yd_c00357{bottom:791.547067pt;}
.yc_c00357{bottom:809.947067pt;}
.yb_c00357{bottom:828.347067pt;}
.ya_c00357{bottom:846.747067pt;}
.y9_c00357{bottom:865.147067pt;}
.y8_c00357{bottom:883.547067pt;}
.y7_c00357{bottom:901.947067pt;}
.y6_c00357{bottom:920.347067pt;}
.y5_c00357{bottom:938.747067pt;}
.y4_c00357{bottom:957.147067pt;}
.y3_c00357{bottom:975.547067pt;}
.h1_c00357{height:56.156250pt;}
.h2_c00357{height:57.375000pt;}
.h3_c00357{height:66.750000pt;}
.h0_c00357{height:1122.666667pt;}
.w1_c00357{width:793.333333pt;}
.w0_c00357{width:793.626667pt;}
.x0_c00357{left:0.000000pt;}
.x2_c00357{left:113.440000pt;}
.x3_c00357{left:180.400000pt;}
.x1_c00357{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3194b5b9e07e399e816ce42f.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.093262;font-style:normal;font-weight:normal;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_3998975ed69a1c1d167c6748.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00358;src:url('chunks/assets/font_a0d3991477a334912fba69f8.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:1.106934;font-style:normal;font-weight:normal;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_c473421a5a7a3f8d82332ecd.woff2')format("woff");}.ff4_c00358{font-family:ff4_c00358;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsf_c00358{letter-spacing:-0.122400px;}
.ls8_c00358{letter-spacing:-0.079200px;}
.lsd_c00358{letter-spacing:-0.072000px;}
.ls7_c00358{letter-spacing:-0.064800px;}
.ls9_c00358{letter-spacing:-0.057600px;}
.lsc_c00358{letter-spacing:-0.050400px;}
.ls5_c00358{letter-spacing:-0.043200px;}
.lse_c00358{letter-spacing:-0.036000px;}
.ls4_c00358{letter-spacing:-0.028800px;}
.ls6_c00358{letter-spacing:-0.021600px;}
.lsa_c00358{letter-spacing:-0.014400px;}
.ls2_c00358{letter-spacing:0.000000px;}
.lsb_c00358{letter-spacing:0.007200px;}
.ls1_c00358{letter-spacing:0.014400px;}
.ls0_c00358{letter-spacing:0.041940px;}
.ls3_c00358{letter-spacing:0.058716px;}
.sc__c00358{text-shadow:none;}
.sc0_c00358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00358{-webkit-text-stroke:0px transparent;}
.sc0_c00358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00358{word-spacing:-20.030400px;}
.ws15_c00358{word-spacing:-2.368800px;}
.ws16_c00358{word-spacing:-2.152800px;}
.ws8_c00358{word-spacing:-0.583200px;}
.ws7_c00358{word-spacing:-0.496800px;}
.ws1_c00358{word-spacing:0.000000px;}
.ws2_c00358{word-spacing:0.150984px;}
.ws20_c00358{word-spacing:0.158400px;}
.ws10_c00358{word-spacing:0.172800px;}
.wsc_c00358{word-spacing:0.180000px;}
.ws29_c00358{word-spacing:0.194400px;}
.wsf_c00358{word-spacing:0.302400px;}
.ws23_c00358{word-spacing:1.648800px;}
.ws2a_c00358{word-spacing:1.936800px;}
.ws2c_c00358{word-spacing:1.987200px;}
.ws2b_c00358{word-spacing:2.080800px;}
.ws11_c00358{word-spacing:2.361600px;}
.ws12_c00358{word-spacing:2.376000px;}
.ws3_c00358{word-spacing:2.764800px;}
.ws4_c00358{word-spacing:2.779200px;}
.ws27_c00358{word-spacing:3.715200px;}
.ws28_c00358{word-spacing:3.801600px;}
.ws1f_c00358{word-spacing:3.996000px;}
.ws18_c00358{word-spacing:4.068000px;}
.ws1e_c00358{word-spacing:4.140000px;}
.ws17_c00358{word-spacing:4.197600px;}
.ws14_c00358{word-spacing:5.918400px;}
.ws13_c00358{word-spacing:5.961600px;}
.wsd_c00358{word-spacing:9.813600px;}
.wse_c00358{word-spacing:9.979200px;}
.ws26_c00358{word-spacing:11.023200px;}
.ws25_c00358{word-spacing:12.060000px;}
.ws24_c00358{word-spacing:12.189600px;}
.ws9_c00358{word-spacing:14.220000px;}
.ws2e_c00358{word-spacing:14.558400px;}
.ws2d_c00358{word-spacing:14.572800px;}
.ws1a_c00358{word-spacing:15.184800px;}
.ws1b_c00358{word-spacing:15.292800px;}
.ws1c_c00358{word-spacing:15.328800px;}
.ws19_c00358{word-spacing:17.143200px;}
.wsb_c00358{word-spacing:22.111200px;}
.wsa_c00358{word-spacing:22.176000px;}
.ws1d_c00358{word-spacing:25.401600px;}
.ws6_c00358{word-spacing:27.230400px;}
.ws5_c00358{word-spacing:27.259200px;}
.ws21_c00358{word-spacing:46.159200px;}
.ws22_c00358{word-spacing:46.231200px;}
._1_c00358{width:1.152000px;}
._0_c00358{width:187.471800px;}
.fc0_c00358{color:rgb(0,0,0);}
.fs0_c00358{font-size:72.000000px;}
.fs1_c00358{font-size:83.880000px;}
.y0_c00358{bottom:0.000000px;}
.y2_c00358{bottom:46.830450px;}
.y1_c00358{bottom:67.530450px;}
.y21_c00358{bottom:184.350450px;}
.y20_c00358{bottom:215.400450px;}
.y1f_c00358{bottom:255.450450px;}
.y1e_c00358{bottom:286.500450px;}
.y1d_c00358{bottom:317.550450px;}
.y1c_c00358{bottom:357.600450px;}
.y1b_c00358{bottom:388.650450px;}
.y1a_c00358{bottom:419.700450px;}
.y19_c00358{bottom:450.750450px;}
.y18_c00358{bottom:490.800450px;}
.y17_c00358{bottom:520.500450px;}
.y16_c00358{bottom:541.200450px;}
.y15_c00358{bottom:561.900450px;}
.y14_c00358{bottom:582.600450px;}
.y13_c00358{bottom:603.300450px;}
.y12_c00358{bottom:624.000450px;}
.y11_c00358{bottom:644.700450px;}
.y10_c00358{bottom:665.400450px;}
.yf_c00358{bottom:686.010450px;}
.ye_c00358{bottom:726.060450px;}
.yd_c00358{bottom:757.110450px;}
.yc_c00358{bottom:797.160450px;}
.yb_c00358{bottom:828.210450px;}
.ya_c00358{bottom:859.260450px;}
.y9_c00358{bottom:890.310450px;}
.y8_c00358{bottom:930.360450px;}
.y7_c00358{bottom:961.410450px;}
.y6_c00358{bottom:992.460450px;}
.y5_c00358{bottom:1031.160450px;}
.y4_c00358{bottom:1070.404950px;}
.y3_c00358{bottom:1094.520450px;}
.h1_c00358{height:63.175781px;}
.h3_c00358{height:64.546875px;}
.h4_c00358{height:75.093750px;}
.h2_c00358{height:87.484219px;}
.h0_c00358{height:1263.000000px;}
.w1_c00358{width:892.500000px;}
.w0_c00358{width:892.830000px;}
.x0_c00358{left:0.000000px;}
.x2_c00358{left:170.100000px;}
.x3_c00358{left:224.100000px;}
.x5_c00358{left:245.430000px;}
.x4_c00358{left:261.908910px;}
.x1_c00358{left:738.360000px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.lsf_c00358{letter-spacing:-0.108800pt;}
.ls8_c00358{letter-spacing:-0.070400pt;}
.lsd_c00358{letter-spacing:-0.064000pt;}
.ls7_c00358{letter-spacing:-0.057600pt;}
.ls9_c00358{letter-spacing:-0.051200pt;}
.lsc_c00358{letter-spacing:-0.044800pt;}
.ls5_c00358{letter-spacing:-0.038400pt;}
.lse_c00358{letter-spacing:-0.032000pt;}
.ls4_c00358{letter-spacing:-0.025600pt;}
.ls6_c00358{letter-spacing:-0.019200pt;}
.lsa_c00358{letter-spacing:-0.012800pt;}
.ls2_c00358{letter-spacing:0.000000pt;}
.lsb_c00358{letter-spacing:0.006400pt;}
.ls1_c00358{letter-spacing:0.012800pt;}
.ls0_c00358{letter-spacing:0.037280pt;}
.ls3_c00358{letter-spacing:0.052192pt;}
.ws0_c00358{word-spacing:-17.804800pt;}
.ws15_c00358{word-spacing:-2.105600pt;}
.ws16_c00358{word-spacing:-1.913600pt;}
.ws8_c00358{word-spacing:-0.518400pt;}
.ws7_c00358{word-spacing:-0.441600pt;}
.ws1_c00358{word-spacing:0.000000pt;}
.ws2_c00358{word-spacing:0.134208pt;}
.ws20_c00358{word-spacing:0.140800pt;}
.ws10_c00358{word-spacing:0.153600pt;}
.wsc_c00358{word-spacing:0.160000pt;}
.ws29_c00358{word-spacing:0.172800pt;}
.wsf_c00358{word-spacing:0.268800pt;}
.ws23_c00358{word-spacing:1.465600pt;}
.ws2a_c00358{word-spacing:1.721600pt;}
.ws2c_c00358{word-spacing:1.766400pt;}
.ws2b_c00358{word-spacing:1.849600pt;}
.ws11_c00358{word-spacing:2.099200pt;}
.ws12_c00358{word-spacing:2.112000pt;}
.ws3_c00358{word-spacing:2.457600pt;}
.ws4_c00358{word-spacing:2.470400pt;}
.ws27_c00358{word-spacing:3.302400pt;}
.ws28_c00358{word-spacing:3.379200pt;}
.ws1f_c00358{word-spacing:3.552000pt;}
.ws18_c00358{word-spacing:3.616000pt;}
.ws1e_c00358{word-spacing:3.680000pt;}
.ws17_c00358{word-spacing:3.731200pt;}
.ws14_c00358{word-spacing:5.260800pt;}
.ws13_c00358{word-spacing:5.299200pt;}
.wsd_c00358{word-spacing:8.723200pt;}
.wse_c00358{word-spacing:8.870400pt;}
.ws26_c00358{word-spacing:9.798400pt;}
.ws25_c00358{word-spacing:10.720000pt;}
.ws24_c00358{word-spacing:10.835200pt;}
.ws9_c00358{word-spacing:12.640000pt;}
.ws2e_c00358{word-spacing:12.940800pt;}
.ws2d_c00358{word-spacing:12.953600pt;}
.ws1a_c00358{word-spacing:13.497600pt;}
.ws1b_c00358{word-spacing:13.593600pt;}
.ws1c_c00358{word-spacing:13.625600pt;}
.ws19_c00358{word-spacing:15.238400pt;}
.wsb_c00358{word-spacing:19.654400pt;}
.wsa_c00358{word-spacing:19.712000pt;}
.ws1d_c00358{word-spacing:22.579200pt;}
.ws6_c00358{word-spacing:24.204800pt;}
.ws5_c00358{word-spacing:24.230400pt;}
.ws21_c00358{word-spacing:41.030400pt;}
.ws22_c00358{word-spacing:41.094400pt;}
._1_c00358{width:1.024000pt;}
._0_c00358{width:166.641600pt;}
.fs0_c00358{font-size:64.000000pt;}
.fs1_c00358{font-size:74.560000pt;}
.y0_c00358{bottom:0.000000pt;}
.y2_c00358{bottom:41.627067pt;}
.y1_c00358{bottom:60.027067pt;}
.y21_c00358{bottom:163.867067pt;}
.y20_c00358{bottom:191.467067pt;}
.y1f_c00358{bottom:227.067067pt;}
.y1e_c00358{bottom:254.667067pt;}
.y1d_c00358{bottom:282.267067pt;}
.y1c_c00358{bottom:317.867067pt;}
.y1b_c00358{bottom:345.467067pt;}
.y1a_c00358{bottom:373.067067pt;}
.y19_c00358{bottom:400.667067pt;}
.y18_c00358{bottom:436.267067pt;}
.y17_c00358{bottom:462.667067pt;}
.y16_c00358{bottom:481.067067pt;}
.y15_c00358{bottom:499.467067pt;}
.y14_c00358{bottom:517.867067pt;}
.y13_c00358{bottom:536.267067pt;}
.y12_c00358{bottom:554.667067pt;}
.y11_c00358{bottom:573.067067pt;}
.y10_c00358{bottom:591.467067pt;}
.yf_c00358{bottom:609.787067pt;}
.ye_c00358{bottom:645.387067pt;}
.yd_c00358{bottom:672.987067pt;}
.yc_c00358{bottom:708.587067pt;}
.yb_c00358{bottom:736.187067pt;}
.ya_c00358{bottom:763.787067pt;}
.y9_c00358{bottom:791.387067pt;}
.y8_c00358{bottom:826.987067pt;}
.y7_c00358{bottom:854.587067pt;}
.y6_c00358{bottom:882.187067pt;}
.y5_c00358{bottom:916.587067pt;}
.y4_c00358{bottom:951.471067pt;}
.y3_c00358{bottom:972.907067pt;}
.h1_c00358{height:56.156250pt;}
.h3_c00358{height:57.375000pt;}
.h4_c00358{height:66.750000pt;}
.h2_c00358{height:77.763750pt;}
.h0_c00358{height:1122.666667pt;}
.w1_c00358{width:793.333333pt;}
.w0_c00358{width:793.626667pt;}
.x0_c00358{left:0.000000pt;}
.x2_c00358{left:151.200000pt;}
.x3_c00358{left:199.200000pt;}
.x5_c00358{left:218.160000pt;}
.x4_c00358{left:232.807920pt;}
.x1_c00358{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_75331004187027f91f539155.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.093262;font-style:normal;font-weight:normal;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_bc49012d933c8a5cc71f3930.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:1.106934;font-style: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.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.lsb_c00359{letter-spacing:-0.057600px;}
.ls7_c00359{letter-spacing:-0.050400px;}
.lsa_c00359{letter-spacing:-0.043200px;}
.ls2_c00359{letter-spacing:-0.036000px;}
.ls9_c00359{letter-spacing:-0.028800px;}
.ls5_c00359{letter-spacing:-0.021600px;}
.ls3_c00359{letter-spacing:-0.014400px;}
.ls6_c00359{letter-spacing:-0.007200px;}
.ls1_c00359{letter-spacing:0.000000px;}
.ls4_c00359{letter-spacing:0.007200px;}
.ls0_c00359{letter-spacing:0.014400px;}
.ls8_c00359{letter-spacing:0.036000px;}
.lsc_c00359{letter-spacing:844.351200px;}
.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;}
}
.ws14_c00359{word-spacing:-4.507200px;}
.ws15_c00359{word-spacing:-4.492800px;}
.ws4_c00359{word-spacing:-3.052800px;}
.ws17_c00359{word-spacing:-0.266400px;}
.ws16_c00359{word-spacing:-0.151200px;}
.ws0_c00359{word-spacing:0.000000px;}
.ws13_c00359{word-spacing:0.129600px;}
.ws10_c00359{word-spacing:0.151200px;}
.ws3_c00359{word-spacing:0.158400px;}
.wsc_c00359{word-spacing:0.165600px;}
.ws1b_c00359{word-spacing:0.172800px;}
.wsd_c00359{word-spacing:0.180000px;}
.wse_c00359{word-spacing:0.187200px;}
.ws1a_c00359{word-spacing:0.259200px;}
.ws19_c00359{word-spacing:0.525600px;}
.ws18_c00359{word-spacing:0.540000px;}
.wsb_c00359{word-spacing:0.914400px;}
.wsa_c00359{word-spacing:0.972000px;}
.ws9_c00359{word-spacing:3.319200px;}
.ws7_c00359{word-spacing:3.420000px;}
.ws8_c00359{word-spacing:3.427200px;}
.ws5_c00359{word-spacing:4.132800px;}
.ws12_c00359{word-spacing:6.235200px;}
.ws11_c00359{word-spacing:6.343200px;}
.ws2_c00359{word-spacing:15.307200px;}
.ws1_c00359{word-spacing:15.328800px;}
.ws6_c00359{word-spacing:24.343200px;}
.wsf_c00359{word-spacing:33.703200px;}
.fc0_c00359{color:rgb(0,0,0);}
.fs0_c00359{font-size:72.000000px;}
.y0_c00359{bottom:0.000000px;}
.y2_c00359{bottom:46.830450px;}
.y1_c00359{bottom:67.530450px;}
.y1b_c00359{bottom:203.340450px;}
.y1a_c00359{bottom:242.040450px;}
.y19_c00359{bottom:291.090450px;}
.y18_c00359{bottom:322.140450px;}
.y17_c00359{bottom:353.190450px;}
.y16_c00359{bottom:384.240450px;}
.y15_c00359{bottom:424.290450px;}
.y14_c00359{bottom:455.340450px;}
.y13_c00359{bottom:491.430450px;}
.y12_c00359{bottom:638.490450px;}
.y11_c00359{bottom:678.540450px;}
.y10_c00359{bottom:708.240450px;}
.yf_c00359{bottom:728.940450px;}
.ye_c00359{bottom:749.640450px;}
.yd_c00359{bottom:770.340450px;}
.yc_c00359{bottom:791.040450px;}
.yb_c00359{bottom:831.090450px;}
.ya_c00359{bottom:862.140450px;}
.y9_c00359{bottom:902.190450px;}
.y8_c00359{bottom:933.240450px;}
.y7_c00359{bottom:964.290450px;}
.y6_c00359{bottom:995.340450px;}
.y5_c00359{bottom:1026.390450px;}
.y4_c00359{bottom:1066.440450px;}
.y3_c00359{bottom:1097.490450px;}
.h1_c00359{height:63.175781px;}
.h2_c00359{height:64.546875px;}
.h0_c00359{height:1263.000000px;}
.w1_c00359{width:892.500000px;}
.w0_c00359{width:892.830000px;}
.x0_c00359{left:0.000000px;}
.x2_c00359{left:127.618135px;}
.x3_c00359{left:202.953361px;}
.x1_c00359{left:695.880000px;}
.x4_c00359{left:723.876563px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.lsb_c00359{letter-spacing:-0.051200pt;}
.ls7_c00359{letter-spacing:-0.044800pt;}
.lsa_c00359{letter-spacing:-0.038400pt;}
.ls2_c00359{letter-spacing:-0.032000pt;}
.ls9_c00359{letter-spacing:-0.025600pt;}
.ls5_c00359{letter-spacing:-0.019200pt;}
.ls3_c00359{letter-spacing:-0.012800pt;}
.ls6_c00359{letter-spacing:-0.006400pt;}
.ls1_c00359{letter-spacing:0.000000pt;}
.ls4_c00359{letter-spacing:0.006400pt;}
.ls0_c00359{letter-spacing:0.012800pt;}
.ls8_c00359{letter-spacing:0.032000pt;}
.lsc_c00359{letter-spacing:750.534400pt;}
.ws14_c00359{word-spacing:-4.006400pt;}
.ws15_c00359{word-spacing:-3.993600pt;}
.ws4_c00359{word-spacing:-2.713600pt;}
.ws17_c00359{word-spacing:-0.236800pt;}
.ws16_c00359{word-spacing:-0.134400pt;}
.ws0_c00359{word-spacing:0.000000pt;}
.ws13_c00359{word-spacing:0.115200pt;}
.ws10_c00359{word-spacing:0.134400pt;}
.ws3_c00359{word-spacing:0.140800pt;}
.wsc_c00359{word-spacing:0.147200pt;}
.ws1b_c00359{word-spacing:0.153600pt;}
.wsd_c00359{word-spacing:0.160000pt;}
.wse_c00359{word-spacing:0.166400pt;}
.ws1a_c00359{word-spacing:0.230400pt;}
.ws19_c00359{word-spacing:0.467200pt;}
.ws18_c00359{word-spacing:0.480000pt;}
.wsb_c00359{word-spacing:0.812800pt;}
.wsa_c00359{word-spacing:0.864000pt;}
.ws9_c00359{word-spacing:2.950400pt;}
.ws7_c00359{word-spacing:3.040000pt;}
.ws8_c00359{word-spacing:3.046400pt;}
.ws5_c00359{word-spacing:3.673600pt;}
.ws12_c00359{word-spacing:5.542400pt;}
.ws11_c00359{word-spacing:5.638400pt;}
.ws2_c00359{word-spacing:13.606400pt;}
.ws1_c00359{word-spacing:13.625600pt;}
.ws6_c00359{word-spacing:21.638400pt;}
.wsf_c00359{word-spacing:29.958400pt;}
.fs0_c00359{font-size:64.000000pt;}
.y0_c00359{bottom:0.000000pt;}
.y2_c00359{bottom:41.627067pt;}
.y1_c00359{bottom:60.027067pt;}
.y1b_c00359{bottom:180.747067pt;}
.y1a_c00359{bottom:215.147067pt;}
.y19_c00359{bottom:258.747067pt;}
.y18_c00359{bottom:286.347067pt;}
.y17_c00359{bottom:313.947067pt;}
.y16_c00359{bottom:341.547067pt;}
.y15_c00359{bottom:377.147067pt;}
.y14_c00359{bottom:404.747067pt;}
.y13_c00359{bottom:436.827067pt;}
.y12_c00359{bottom:567.547067pt;}
.y11_c00359{bottom:603.147067pt;}
.y10_c00359{bottom:629.547067pt;}
.yf_c00359{bottom:647.947067pt;}
.ye_c00359{bottom:666.347067pt;}
.yd_c00359{bottom:684.747067pt;}
.yc_c00359{bottom:703.147067pt;}
.yb_c00359{bottom:738.747067pt;}
.ya_c00359{bottom:766.347067pt;}
.y9_c00359{bottom:801.947067pt;}
.y8_c00359{bottom:829.547067pt;}
.y7_c00359{bottom:857.147067pt;}
.y6_c00359{bottom:884.747067pt;}
.y5_c00359{bottom:912.347067pt;}
.y4_c00359{bottom:947.947067pt;}
.y3_c00359{bottom:975.547067pt;}
.h1_c00359{height:56.156250pt;}
.h2_c00359{height:57.375000pt;}
.h0_c00359{height:1122.666667pt;}
.w1_c00359{width:793.333333pt;}
.w0_c00359{width:793.626667pt;}
.x0_c00359{left:0.000000pt;}
.x2_c00359{left:113.438342pt;}
.x3_c00359{left:180.402987pt;}
.x1_c00359{left:618.560000pt;}
.x4_c00359{left:643.445834pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f58327093c4a1731aa292b6b.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.093262;font-style:normal;font-weight:normal;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_cd09772a9893044035547954.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00360;src:url('chunks/assets/font_27d3a945349947b25742d744.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:1.106934;font-style:normal;font-weight:normal;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_b4aa802e7e250c974716e8ed.woff2')format("woff");}.ff4_c00360{font-family:ff4_c00360;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00360{letter-spacing:-0.100800px;}
.lsf_c00360{letter-spacing:-0.093600px;}
.ls7_c00360{letter-spacing:-0.072000px;}
.lse_c00360{letter-spacing:-0.057600px;}
.lsb_c00360{letter-spacing:-0.050400px;}
.ls9_c00360{letter-spacing:-0.043200px;}
.ls8_c00360{letter-spacing:-0.036000px;}
.ls6_c00360{letter-spacing:-0.028800px;}
.lsa_c00360{letter-spacing:-0.021600px;}
.lsc_c00360{letter-spacing:-0.014400px;}
.ls5_c00360{letter-spacing:-0.007200px;}
.ls3_c00360{letter-spacing:0.000000px;}
.ls2_c00360{letter-spacing:0.007200px;}
.ls1_c00360{letter-spacing:0.014400px;}
.ls4_c00360{letter-spacing:0.058716px;}
.ls0_c00360{letter-spacing:0.067104px;}
.sc__c00360{text-shadow:none;}
.sc0_c00360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00360{-webkit-text-stroke:0px transparent;}
.sc0_c00360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00360{word-spacing:-20.008800px;}
.ws22_c00360{word-spacing:-4.147200px;}
.ws21_c00360{word-spacing:-4.060800px;}
.ws29_c00360{word-spacing:-3.405600px;}
.ws10_c00360{word-spacing:-1.260000px;}
.ws1_c00360{word-spacing:0.000000px;}
.ws2_c00360{word-spacing:0.025164px;}
.ws3_c00360{word-spacing:0.117432px;}
.ws1a_c00360{word-spacing:0.180000px;}
.ws18_c00360{word-spacing:0.194400px;}
.ws19_c00360{word-spacing:0.216000px;}
.ws11_c00360{word-spacing:0.259200px;}
.ws4_c00360{word-spacing:0.525600px;}
.ws5_c00360{word-spacing:0.547200px;}
.ws13_c00360{word-spacing:0.554400px;}
.ws20_c00360{word-spacing:0.561600px;}
.ws14_c00360{word-spacing:0.633600px;}
.ws16_c00360{word-spacing:2.988000px;}
.wse_c00360{word-spacing:3.009600px;}
.ws17_c00360{word-spacing:3.067200px;}
.wsf_c00360{word-spacing:3.074400px;}
.ws9_c00360{word-spacing:3.672000px;}
.wsa_c00360{word-spacing:3.765600px;}
.ws12_c00360{word-spacing:4.852800px;}
.ws1f_c00360{word-spacing:5.205600px;}
.ws1e_c00360{word-spacing:5.234400px;}
.ws8_c00360{word-spacing:5.241600px;}
.ws23_c00360{word-spacing:7.732800px;}
.ws24_c00360{word-spacing:7.747200px;}
.ws25_c00360{word-spacing:8.100000px;}
.wsd_c00360{word-spacing:9.158400px;}
.ws7_c00360{word-spacing:9.194400px;}
.wsb_c00360{word-spacing:9.201600px;}
.ws28_c00360{word-spacing:9.208800px;}
.ws6_c00360{word-spacing:9.230400px;}
.wsc_c00360{word-spacing:9.316800px;}
.ws2c_c00360{word-spacing:13.752000px;}
.ws2a_c00360{word-spacing:13.766400px;}
.ws2b_c00360{word-spacing:13.845600px;}
.ws2e_c00360{word-spacing:23.572800px;}
.ws2d_c00360{word-spacing:23.659200px;}
.ws26_c00360{word-spacing:33.991200px;}
.ws27_c00360{word-spacing:34.020000px;}
.ws15_c00360{word-spacing:37.274400px;}
.ws1d_c00360{word-spacing:39.434400px;}
.ws1c_c00360{word-spacing:55.260000px;}
.ws1b_c00360{word-spacing:55.267200px;}
._2_c00360{margin-left:-1.036800px;}
._1_c00360{width:1.368000px;}
._0_c00360{width:153.332640px;}
.fc0_c00360{color:rgb(0,0,0);}
.fs0_c00360{font-size:72.000000px;}
.fs1_c00360{font-size:83.880000px;}
.y0_c00360{bottom:0.000000px;}
.y2_c00360{bottom:46.830450px;}
.y1_c00360{bottom:67.530450px;}
.y21_c00360{bottom:145.020450px;}
.y20_c00360{bottom:176.070450px;}
.y1f_c00360{bottom:207.120450px;}
.y1e_c00360{bottom:238.170450px;}
.y1d_c00360{bottom:269.220450px;}
.y1c_c00360{bottom:309.270450px;}
.y1b_c00360{bottom:340.320450px;}
.y1a_c00360{bottom:371.370450px;}
.y19_c00360{bottom:402.420450px;}
.y18_c00360{bottom:442.470450px;}
.y17_c00360{bottom:472.170450px;}
.y16_c00360{bottom:492.870450px;}
.y15_c00360{bottom:513.570450px;}
.y14_c00360{bottom:534.270450px;}
.y13_c00360{bottom:554.970450px;}
.y12_c00360{bottom:595.020450px;}
.y11_c00360{bottom:635.070450px;}
.y10_c00360{bottom:666.120450px;}
.yf_c00360{bottom:697.170450px;}
.ye_c00360{bottom:728.220450px;}
.yd_c00360{bottom:759.270450px;}
.yc_c00360{bottom:799.320450px;}
.yb_c00360{bottom:830.370450px;}
.ya_c00360{bottom:861.420450px;}
.y9_c00360{bottom:892.470450px;}
.y8_c00360{bottom:923.520450px;}
.y7_c00360{bottom:954.570450px;}
.y6_c00360{bottom:985.620450px;}
.y5_c00360{bottom:1016.670450px;}
.y4_c00360{bottom:1055.370450px;}
.y3_c00360{bottom:1094.520450px;}
.h1_c00360{height:63.175781px;}
.h3_c00360{height:64.546875px;}
.h4_c00360{height:75.093750px;}
.h2_c00360{height:87.484219px;}
.h0_c00360{height:1263.000000px;}
.w1_c00360{width:892.500000px;}
.w0_c00360{width:892.830000px;}
.x0_c00360{left:0.000000px;}
.x2_c00360{left:170.100000px;}
.x3_c00360{left:197.100000px;}
.x4_c00360{left:245.430000px;}
.x1_c00360{left:738.360000px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.lsd_c00360{letter-spacing:-0.089600pt;}
.lsf_c00360{letter-spacing:-0.083200pt;}
.ls7_c00360{letter-spacing:-0.064000pt;}
.lse_c00360{letter-spacing:-0.051200pt;}
.lsb_c00360{letter-spacing:-0.044800pt;}
.ls9_c00360{letter-spacing:-0.038400pt;}
.ls8_c00360{letter-spacing:-0.032000pt;}
.ls6_c00360{letter-spacing:-0.025600pt;}
.lsa_c00360{letter-spacing:-0.019200pt;}
.lsc_c00360{letter-spacing:-0.012800pt;}
.ls5_c00360{letter-spacing:-0.006400pt;}
.ls3_c00360{letter-spacing:0.000000pt;}
.ls2_c00360{letter-spacing:0.006400pt;}
.ls1_c00360{letter-spacing:0.012800pt;}
.ls4_c00360{letter-spacing:0.052192pt;}
.ls0_c00360{letter-spacing:0.059648pt;}
.ws0_c00360{word-spacing:-17.785600pt;}
.ws22_c00360{word-spacing:-3.686400pt;}
.ws21_c00360{word-spacing:-3.609600pt;}
.ws29_c00360{word-spacing:-3.027200pt;}
.ws10_c00360{word-spacing:-1.120000pt;}
.ws1_c00360{word-spacing:0.000000pt;}
.ws2_c00360{word-spacing:0.022368pt;}
.ws3_c00360{word-spacing:0.104384pt;}
.ws1a_c00360{word-spacing:0.160000pt;}
.ws18_c00360{word-spacing:0.172800pt;}
.ws19_c00360{word-spacing:0.192000pt;}
.ws11_c00360{word-spacing:0.230400pt;}
.ws4_c00360{word-spacing:0.467200pt;}
.ws5_c00360{word-spacing:0.486400pt;}
.ws13_c00360{word-spacing:0.492800pt;}
.ws20_c00360{word-spacing:0.499200pt;}
.ws14_c00360{word-spacing:0.563200pt;}
.ws16_c00360{word-spacing:2.656000pt;}
.wse_c00360{word-spacing:2.675200pt;}
.ws17_c00360{word-spacing:2.726400pt;}
.wsf_c00360{word-spacing:2.732800pt;}
.ws9_c00360{word-spacing:3.264000pt;}
.wsa_c00360{word-spacing:3.347200pt;}
.ws12_c00360{word-spacing:4.313600pt;}
.ws1f_c00360{word-spacing:4.627200pt;}
.ws1e_c00360{word-spacing:4.652800pt;}
.ws8_c00360{word-spacing:4.659200pt;}
.ws23_c00360{word-spacing:6.873600pt;}
.ws24_c00360{word-spacing:6.886400pt;}
.ws25_c00360{word-spacing:7.200000pt;}
.wsd_c00360{word-spacing:8.140800pt;}
.ws7_c00360{word-spacing:8.172800pt;}
.wsb_c00360{word-spacing:8.179200pt;}
.ws28_c00360{word-spacing:8.185600pt;}
.ws6_c00360{word-spacing:8.204800pt;}
.wsc_c00360{word-spacing:8.281600pt;}
.ws2c_c00360{word-spacing:12.224000pt;}
.ws2a_c00360{word-spacing:12.236800pt;}
.ws2b_c00360{word-spacing:12.307200pt;}
.ws2e_c00360{word-spacing:20.953600pt;}
.ws2d_c00360{word-spacing:21.030400pt;}
.ws26_c00360{word-spacing:30.214400pt;}
.ws27_c00360{word-spacing:30.240000pt;}
.ws15_c00360{word-spacing:33.132800pt;}
.ws1d_c00360{word-spacing:35.052800pt;}
.ws1c_c00360{word-spacing:49.120000pt;}
.ws1b_c00360{word-spacing:49.126400pt;}
._2_c00360{margin-left:-0.921600pt;}
._1_c00360{width:1.216000pt;}
._0_c00360{width:136.295680pt;}
.fs0_c00360{font-size:64.000000pt;}
.fs1_c00360{font-size:74.560000pt;}
.y0_c00360{bottom:0.000000pt;}
.y2_c00360{bottom:41.627067pt;}
.y1_c00360{bottom:60.027067pt;}
.y21_c00360{bottom:128.907067pt;}
.y20_c00360{bottom:156.507067pt;}
.y1f_c00360{bottom:184.107067pt;}
.y1e_c00360{bottom:211.707067pt;}
.y1d_c00360{bottom:239.307067pt;}
.y1c_c00360{bottom:274.907067pt;}
.y1b_c00360{bottom:302.507067pt;}
.y1a_c00360{bottom:330.107067pt;}
.y19_c00360{bottom:357.707067pt;}
.y18_c00360{bottom:393.307067pt;}
.y17_c00360{bottom:419.707067pt;}
.y16_c00360{bottom:438.107067pt;}
.y15_c00360{bottom:456.507067pt;}
.y14_c00360{bottom:474.907067pt;}
.y13_c00360{bottom:493.307067pt;}
.y12_c00360{bottom:528.907067pt;}
.y11_c00360{bottom:564.507067pt;}
.y10_c00360{bottom:592.107067pt;}
.yf_c00360{bottom:619.707067pt;}
.ye_c00360{bottom:647.307067pt;}
.yd_c00360{bottom:674.907067pt;}
.yc_c00360{bottom:710.507067pt;}
.yb_c00360{bottom:738.107067pt;}
.ya_c00360{bottom:765.707067pt;}
.y9_c00360{bottom:793.307067pt;}
.y8_c00360{bottom:820.907067pt;}
.y7_c00360{bottom:848.507067pt;}
.y6_c00360{bottom:876.107067pt;}
.y5_c00360{bottom:903.707067pt;}
.y4_c00360{bottom:938.107067pt;}
.y3_c00360{bottom:972.907067pt;}
.h1_c00360{height:56.156250pt;}
.h3_c00360{height:57.375000pt;}
.h4_c00360{height:66.750000pt;}
.h2_c00360{height:77.763750pt;}
.h0_c00360{height:1122.666667pt;}
.w1_c00360{width:793.333333pt;}
.w0_c00360{width:793.626667pt;}
.x0_c00360{left:0.000000pt;}
.x2_c00360{left:151.200000pt;}
.x3_c00360{left:175.200000pt;}
.x4_c00360{left:218.160000pt;}
.x1_c00360{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_af0c2eb617871f8df47ea339.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.093262;font-style:normal;font-weight:normal;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_081661c359eceb6bac53df65.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.106934;font-style: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;}
.ls18_c00361{letter-spacing:-0.258516px;}
.ls14_c00361{letter-spacing:-0.102204px;}
.ls1d_c00361{letter-spacing:-0.079200px;}
.ls16_c00361{letter-spacing:-0.078156px;}
.ls12_c00361{letter-spacing:-0.072144px;}
.ls24_c00361{letter-spacing:-0.072000px;}
.ls22_c00361{letter-spacing:-0.064800px;}
.lse_c00361{letter-spacing:-0.060120px;}
.ls21_c00361{letter-spacing:-0.057600px;}
.lsd_c00361{letter-spacing:-0.054108px;}
.ls1c_c00361{letter-spacing:-0.050400px;}
.ls10_c00361{letter-spacing:-0.048096px;}
.ls1e_c00361{letter-spacing:-0.043200px;}
.ls15_c00361{letter-spacing:-0.042084px;}
.lsf_c00361{letter-spacing:-0.036072px;}
.ls1a_c00361{letter-spacing:-0.036000px;}
.ls19_c00361{letter-spacing:-0.030060px;}
.ls1b_c00361{letter-spacing:-0.028800px;}
.ls13_c00361{letter-spacing:-0.024048px;}
.ls1f_c00361{letter-spacing:-0.021600px;}
.lsc_c00361{letter-spacing:-0.018036px;}
.lsb_c00361{letter-spacing:-0.014400px;}
.ls11_c00361{letter-spacing:-0.012024px;}
.ls20_c00361{letter-spacing:-0.007200px;}
.ls17_c00361{letter-spacing:-0.006012px;}
.lsa_c00361{letter-spacing:0.000000px;}
.ls23_c00361{letter-spacing:0.007200px;}
.ls1_c00361{letter-spacing:0.012024px;}
.ls2_c00361{letter-spacing:0.018036px;}
.ls5_c00361{letter-spacing:0.024048px;}
.ls0_c00361{letter-spacing:0.030060px;}
.ls7_c00361{letter-spacing:0.036072px;}
.ls6_c00361{letter-spacing:0.042084px;}
.ls9_c00361{letter-spacing:0.054108px;}
.ls3_c00361{letter-spacing:0.060120px;}
.ls4_c00361{letter-spacing:0.072144px;}
.ls8_c00361{letter-spacing:0.114228px;}
.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;}
}
.ws1f_c00361{word-spacing:-3.391200px;}
.ws20_c00361{word-spacing:-3.362400px;}
.ws10_c00361{word-spacing:-2.278548px;}
.ws2d_c00361{word-spacing:-0.468000px;}
.ws2e_c00361{word-spacing:-0.432000px;}
.ws1c_c00361{word-spacing:-0.162324px;}
.wse_c00361{word-spacing:-0.126252px;}
.ws1b_c00361{word-spacing:-0.114228px;}
.ws4_c00361{word-spacing:-0.090180px;}
.ws16_c00361{word-spacing:-0.084168px;}
.ws0_c00361{word-spacing:0.000000px;}
.ws37_c00361{word-spacing:0.158400px;}
.ws1_c00361{word-spacing:0.172800px;}
.ws24_c00361{word-spacing:0.468000px;}
.ws25_c00361{word-spacing:0.597600px;}
.ws2c_c00361{word-spacing:0.928800px;}
.ws12_c00361{word-spacing:1.256508px;}
.ws8_c00361{word-spacing:1.941876px;}
.ws19_c00361{word-spacing:3.060108px;}
.ws2f_c00361{word-spacing:3.067200px;}
.ws30_c00361{word-spacing:3.081600px;}
.ws36_c00361{word-spacing:3.463200px;}
.ws35_c00361{word-spacing:3.520800px;}
.ws2b_c00361{word-spacing:5.558400px;}
.ws2a_c00361{word-spacing:5.616000px;}
.ws3_c00361{word-spacing:5.963904px;}
.ws2_c00361{word-spacing:7.028028px;}
.wsd_c00361{word-spacing:9.192348px;}
.ws18_c00361{word-spacing:9.240444px;}
.ws29_c00361{word-spacing:9.907200px;}
.ws28_c00361{word-spacing:9.928800px;}
.wsb_c00361{word-spacing:11.356668px;}
.ws34_c00361{word-spacing:11.988000px;}
.ws33_c00361{word-spacing:12.088800px;}
.ws22_c00361{word-spacing:13.521600px;}
.ws23_c00361{word-spacing:13.528800px;}
.ws1e_c00361{word-spacing:13.795200px;}
.ws1d_c00361{word-spacing:13.802400px;}
.ws27_c00361{word-spacing:16.365600px;}
.ws26_c00361{word-spacing:16.444800px;}
.ws21_c00361{word-spacing:17.841600px;}
.ws15_c00361{word-spacing:18.925776px;}
.wsf_c00361{word-spacing:19.370664px;}
.ws7_c00361{word-spacing:21.066048px;}
.ws5_c00361{word-spacing:27.919728px;}
.ws31_c00361{word-spacing:30.405600px;}
.ws32_c00361{word-spacing:30.535200px;}
.ws9_c00361{word-spacing:37.983816px;}
.ws13_c00361{word-spacing:58.899564px;}
.wsa_c00361{word-spacing:126.252000px;}
.ws11_c00361{word-spacing:149.277960px;}
.ws17_c00361{word-spacing:149.656716px;}
.ws14_c00361{word-spacing:155.716812px;}
.wsc_c00361{word-spacing:156.107592px;}
.ws1a_c00361{word-spacing:179.380044px;}
.ws6_c00361{word-spacing:255.756492px;}
._0_c00361{margin-left:-1.022040px;}
._1_c00361{width:1.142280px;}
.fc0_c00361{color:rgb(0,0,0);}
.fs1_c00361{font-size:60.120000px;}
.fs0_c00361{font-size:72.000000px;}
.y0_c00361{bottom:0.000000px;}
.y2_c00361{bottom:46.830450px;}
.y1_c00361{bottom:67.530450px;}
.y3d_c00361{bottom:161.580450px;}
.y3c_c00361{bottom:182.280450px;}
.y3b_c00361{bottom:202.980450px;}
.y3a_c00361{bottom:223.680450px;}
.y39_c00361{bottom:244.380450px;}
.y38_c00361{bottom:265.080450px;}
.y37_c00361{bottom:285.780450px;}
.y36_c00361{bottom:325.830450px;}
.y35_c00361{bottom:356.880450px;}
.y34_c00361{bottom:387.930450px;}
.y33_c00361{bottom:418.980450px;}
.y32_c00361{bottom:450.030450px;}
.y31_c00361{bottom:481.080450px;}
.y30_c00361{bottom:512.130450px;}
.y2f_c00361{bottom:543.180450px;}
.y2e_c00361{bottom:583.230450px;}
.y2d_c00361{bottom:633.000450px;}
.y2c_c00361{bottom:664.050450px;}
.y1c_c00361{bottom:711.442200px;}
.y1b_c00361{bottom:737.368950px;}
.y1a_c00361{bottom:763.205520px;}
.y27_c00361{bottom:789.087180px;}
.y19_c00361{bottom:789.132270px;}
.y26_c00361{bottom:814.923750px;}
.y21_c00361{bottom:814.938780px;}
.y18_c00361{bottom:814.968840px;}
.y2b_c00361{bottom:840.835470px;}
.y25_c00361{bottom:840.850500px;}
.y20_c00361{bottom:840.865530px;}
.y17_c00361{bottom:840.895590px;}
.y2a_c00361{bottom:866.672040px;}
.y24_c00361{bottom:866.687070px;}
.y1f_c00361{bottom:866.702100px;}
.y16_c00361{bottom:866.732160px;}
.y29_c00361{bottom:892.508610px;}
.y23_c00361{bottom:892.523640px;}
.y1e_c00361{bottom:892.538670px;}
.y15_c00361{bottom:892.568730px;}
.y28_c00361{bottom:918.420330px;}
.y22_c00361{bottom:918.435360px;}
.y1d_c00361{bottom:918.450390px;}
.y14_c00361{bottom:918.480450px;}
.y13_c00361{bottom:963.055470px;}
.yf_c00361{bottom:963.070500px;}
.yb_c00361{bottom:963.085530px;}
.y7_c00361{bottom:963.100560px;}
.y12_c00361{bottom:988.892040px;}
.ye_c00361{bottom:988.907070px;}
.ya_c00361{bottom:988.922100px;}
.y6_c00361{bottom:988.937130px;}
.y11_c00361{bottom:1014.818790px;}
.yd_c00361{bottom:1014.833820px;}
.y9_c00361{bottom:1014.848850px;}
.y5_c00361{bottom:1014.863880px;}
.y10_c00361{bottom:1040.655360px;}
.yc_c00361{bottom:1040.670390px;}
.y8_c00361{bottom:1040.685420px;}
.y4_c00361{bottom:1040.700450px;}
.y3_c00361{bottom:1087.680450px;}
.h3_c00361{height:53.896641px;}
.h1_c00361{height:63.175781px;}
.h2_c00361{height:64.546875px;}
.h0_c00361{height:1263.000000px;}
.w1_c00361{width:892.500000px;}
.w0_c00361{width:892.830000px;}
.x0_c00361{left:0.000000px;}
.x2_c00361{left:127.620000px;}
.x4_c00361{left:136.080000px;}
.x8_c00361{left:202.950000px;}
.x5_c00361{left:284.666580px;}
.x3_c00361{left:323.190000px;}
.x6_c00361{left:433.253160px;}
.x7_c00361{left:581.929920px;}
.x1_c00361{left:695.880000px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls18_c00361{letter-spacing:-0.229792pt;}
.ls14_c00361{letter-spacing:-0.090848pt;}
.ls1d_c00361{letter-spacing:-0.070400pt;}
.ls16_c00361{letter-spacing:-0.069472pt;}
.ls12_c00361{letter-spacing:-0.064128pt;}
.ls24_c00361{letter-spacing:-0.064000pt;}
.ls22_c00361{letter-spacing:-0.057600pt;}
.lse_c00361{letter-spacing:-0.053440pt;}
.ls21_c00361{letter-spacing:-0.051200pt;}
.lsd_c00361{letter-spacing:-0.048096pt;}
.ls1c_c00361{letter-spacing:-0.044800pt;}
.ls10_c00361{letter-spacing:-0.042752pt;}
.ls1e_c00361{letter-spacing:-0.038400pt;}
.ls15_c00361{letter-spacing:-0.037408pt;}
.lsf_c00361{letter-spacing:-0.032064pt;}
.ls1a_c00361{letter-spacing:-0.032000pt;}
.ls19_c00361{letter-spacing:-0.026720pt;}
.ls1b_c00361{letter-spacing:-0.025600pt;}
.ls13_c00361{letter-spacing:-0.021376pt;}
.ls1f_c00361{letter-spacing:-0.019200pt;}
.lsc_c00361{letter-spacing:-0.016032pt;}
.lsb_c00361{letter-spacing:-0.012800pt;}
.ls11_c00361{letter-spacing:-0.010688pt;}
.ls20_c00361{letter-spacing:-0.006400pt;}
.ls17_c00361{letter-spacing:-0.005344pt;}
.lsa_c00361{letter-spacing:0.000000pt;}
.ls23_c00361{letter-spacing:0.006400pt;}
.ls1_c00361{letter-spacing:0.010688pt;}
.ls2_c00361{letter-spacing:0.016032pt;}
.ls5_c00361{letter-spacing:0.021376pt;}
.ls0_c00361{letter-spacing:0.026720pt;}
.ls7_c00361{letter-spacing:0.032064pt;}
.ls6_c00361{letter-spacing:0.037408pt;}
.ls9_c00361{letter-spacing:0.048096pt;}
.ls3_c00361{letter-spacing:0.053440pt;}
.ls4_c00361{letter-spacing:0.064128pt;}
.ls8_c00361{letter-spacing:0.101536pt;}
.ws1f_c00361{word-spacing:-3.014400pt;}
.ws20_c00361{word-spacing:-2.988800pt;}
.ws10_c00361{word-spacing:-2.025376pt;}
.ws2d_c00361{word-spacing:-0.416000pt;}
.ws2e_c00361{word-spacing:-0.384000pt;}
.ws1c_c00361{word-spacing:-0.144288pt;}
.wse_c00361{word-spacing:-0.112224pt;}
.ws1b_c00361{word-spacing:-0.101536pt;}
.ws4_c00361{word-spacing:-0.080160pt;}
.ws16_c00361{word-spacing:-0.074816pt;}
.ws0_c00361{word-spacing:0.000000pt;}
.ws37_c00361{word-spacing:0.140800pt;}
.ws1_c00361{word-spacing:0.153600pt;}
.ws24_c00361{word-spacing:0.416000pt;}
.ws25_c00361{word-spacing:0.531200pt;}
.ws2c_c00361{word-spacing:0.825600pt;}
.ws12_c00361{word-spacing:1.116896pt;}
.ws8_c00361{word-spacing:1.726112pt;}
.ws19_c00361{word-spacing:2.720096pt;}
.ws2f_c00361{word-spacing:2.726400pt;}
.ws30_c00361{word-spacing:2.739200pt;}
.ws36_c00361{word-spacing:3.078400pt;}
.ws35_c00361{word-spacing:3.129600pt;}
.ws2b_c00361{word-spacing:4.940800pt;}
.ws2a_c00361{word-spacing:4.992000pt;}
.ws3_c00361{word-spacing:5.301248pt;}
.ws2_c00361{word-spacing:6.247136pt;}
.wsd_c00361{word-spacing:8.170976pt;}
.ws18_c00361{word-spacing:8.213728pt;}
.ws29_c00361{word-spacing:8.806400pt;}
.ws28_c00361{word-spacing:8.825600pt;}
.wsb_c00361{word-spacing:10.094816pt;}
.ws34_c00361{word-spacing:10.656000pt;}
.ws33_c00361{word-spacing:10.745600pt;}
.ws22_c00361{word-spacing:12.019200pt;}
.ws23_c00361{word-spacing:12.025600pt;}
.ws1e_c00361{word-spacing:12.262400pt;}
.ws1d_c00361{word-spacing:12.268800pt;}
.ws27_c00361{word-spacing:14.547200pt;}
.ws26_c00361{word-spacing:14.617600pt;}
.ws21_c00361{word-spacing:15.859200pt;}
.ws15_c00361{word-spacing:16.822912pt;}
.wsf_c00361{word-spacing:17.218368pt;}
.ws7_c00361{word-spacing:18.725376pt;}
.ws5_c00361{word-spacing:24.817536pt;}
.ws31_c00361{word-spacing:27.027200pt;}
.ws32_c00361{word-spacing:27.142400pt;}
.ws9_c00361{word-spacing:33.763392pt;}
.ws13_c00361{word-spacing:52.355168pt;}
.wsa_c00361{word-spacing:112.224000pt;}
.ws11_c00361{word-spacing:132.691520pt;}
.ws17_c00361{word-spacing:133.028192pt;}
.ws14_c00361{word-spacing:138.414944pt;}
.wsc_c00361{word-spacing:138.762304pt;}
.ws1a_c00361{word-spacing:159.448928pt;}
.ws6_c00361{word-spacing:227.339104pt;}
._0_c00361{margin-left:-0.908480pt;}
._1_c00361{width:1.015360pt;}
.fs1_c00361{font-size:53.440000pt;}
.fs0_c00361{font-size:64.000000pt;}
.y0_c00361{bottom:0.000000pt;}
.y2_c00361{bottom:41.627067pt;}
.y1_c00361{bottom:60.027067pt;}
.y3d_c00361{bottom:143.627067pt;}
.y3c_c00361{bottom:162.027067pt;}
.y3b_c00361{bottom:180.427067pt;}
.y3a_c00361{bottom:198.827067pt;}
.y39_c00361{bottom:217.227067pt;}
.y38_c00361{bottom:235.627067pt;}
.y37_c00361{bottom:254.027067pt;}
.y36_c00361{bottom:289.627067pt;}
.y35_c00361{bottom:317.227067pt;}
.y34_c00361{bottom:344.827067pt;}
.y33_c00361{bottom:372.427067pt;}
.y32_c00361{bottom:400.027067pt;}
.y31_c00361{bottom:427.627067pt;}
.y30_c00361{bottom:455.227067pt;}
.y2f_c00361{bottom:482.827067pt;}
.y2e_c00361{bottom:518.427067pt;}
.y2d_c00361{bottom:562.667067pt;}
.y2c_c00361{bottom:590.267067pt;}
.y1c_c00361{bottom:632.393067pt;}
.y1b_c00361{bottom:655.439067pt;}
.y1a_c00361{bottom:678.404907pt;}
.y27_c00361{bottom:701.410827pt;}
.y19_c00361{bottom:701.450907pt;}
.y26_c00361{bottom:724.376667pt;}
.y21_c00361{bottom:724.390027pt;}
.y18_c00361{bottom:724.416747pt;}
.y2b_c00361{bottom:747.409307pt;}
.y25_c00361{bottom:747.422667pt;}
.y20_c00361{bottom:747.436027pt;}
.y17_c00361{bottom:747.462747pt;}
.y2a_c00361{bottom:770.375147pt;}
.y24_c00361{bottom:770.388507pt;}
.y1f_c00361{bottom:770.401867pt;}
.y16_c00361{bottom:770.428587pt;}
.y29_c00361{bottom:793.340987pt;}
.y23_c00361{bottom:793.354347pt;}
.y1e_c00361{bottom:793.367707pt;}
.y15_c00361{bottom:793.394427pt;}
.y28_c00361{bottom:816.373627pt;}
.y22_c00361{bottom:816.386987pt;}
.y1d_c00361{bottom:816.400347pt;}
.y14_c00361{bottom:816.427067pt;}
.y13_c00361{bottom:856.049307pt;}
.yf_c00361{bottom:856.062667pt;}
.yb_c00361{bottom:856.076027pt;}
.y7_c00361{bottom:856.089387pt;}
.y12_c00361{bottom:879.015147pt;}
.ye_c00361{bottom:879.028507pt;}
.ya_c00361{bottom:879.041867pt;}
.y6_c00361{bottom:879.055227pt;}
.y11_c00361{bottom:902.061147pt;}
.yd_c00361{bottom:902.074507pt;}
.y9_c00361{bottom:902.087867pt;}
.y5_c00361{bottom:902.101227pt;}
.y10_c00361{bottom:925.026987pt;}
.yc_c00361{bottom:925.040347pt;}
.y8_c00361{bottom:925.053707pt;}
.y4_c00361{bottom:925.067067pt;}
.y3_c00361{bottom:966.827067pt;}
.h3_c00361{height:47.908125pt;}
.h1_c00361{height:56.156250pt;}
.h2_c00361{height:57.375000pt;}
.h0_c00361{height:1122.666667pt;}
.w1_c00361{width:793.333333pt;}
.w0_c00361{width:793.626667pt;}
.x0_c00361{left:0.000000pt;}
.x2_c00361{left:113.440000pt;}
.x4_c00361{left:120.960000pt;}
.x8_c00361{left:180.400000pt;}
.x5_c00361{left:253.036960pt;}
.x3_c00361{left:287.280000pt;}
.x6_c00361{left:385.113920pt;}
.x7_c00361{left:517.271040pt;}
.x1_c00361{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cf5a0d503ca1b88499e301a0.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.093262;font-style:normal;font-weight:normal;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_4406b6eda21573b7d48a44fe.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.106934;font-style:normal;font-weight:normal;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_37dd457cbc830fc6ffc55008.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls5_c00362{letter-spacing:-0.086400px;}
.lsa_c00362{letter-spacing:-0.079200px;}
.ls6_c00362{letter-spacing:-0.072000px;}
.ls7_c00362{letter-spacing:-0.064800px;}
.ls3_c00362{letter-spacing:-0.057600px;}
.ls2_c00362{letter-spacing:-0.050400px;}
.lsb_c00362{letter-spacing:-0.043200px;}
.ls4_c00362{letter-spacing:-0.036000px;}
.ls1_c00362{letter-spacing:-0.028800px;}
.ls9_c00362{letter-spacing:-0.021600px;}
.ls8_c00362{letter-spacing:-0.014400px;}
.lsc_c00362{letter-spacing:-0.007200px;}
.ls0_c00362{letter-spacing:0.000000px;}
.lsd_c00362{letter-spacing:843.998400px;}
.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;}
}
.ws3_c00362{word-spacing:-2.001600px;}
.ws2_c00362{word-spacing:-1.980000px;}
.ws13_c00362{word-spacing:-1.670400px;}
.ws12_c00362{word-spacing:-1.562400px;}
.ws7_c00362{word-spacing:-1.245600px;}
.ws1e_c00362{word-spacing:-0.914400px;}
.ws1f_c00362{word-spacing:-0.900000px;}
.ws0_c00362{word-spacing:0.000000px;}
.wsf_c00362{word-spacing:0.122400px;}
.ws10_c00362{word-spacing:0.144000px;}
.ws23_c00362{word-spacing:0.165600px;}
.ws11_c00362{word-spacing:0.180000px;}
.ws22_c00362{word-spacing:0.280800px;}
.ws1_c00362{word-spacing:1.267200px;}
.wsd_c00362{word-spacing:3.333600px;}
.wse_c00362{word-spacing:3.412800px;}
.ws4_c00362{word-spacing:3.448800px;}
.ws19_c00362{word-spacing:3.765600px;}
.ws18_c00362{word-spacing:3.916800px;}
.ws21_c00362{word-spacing:4.881600px;}
.ws20_c00362{word-spacing:4.888800px;}
.wsb_c00362{word-spacing:5.212800px;}
.wsc_c00362{word-spacing:5.306400px;}
.ws15_c00362{word-spacing:11.340000px;}
.ws16_c00362{word-spacing:11.361600px;}
.ws17_c00362{word-spacing:11.397600px;}
.ws14_c00362{word-spacing:15.285600px;}
.ws6_c00362{word-spacing:17.114400px;}
.ws1d_c00362{word-spacing:17.121600px;}
.ws1c_c00362{word-spacing:17.179200px;}
.ws5_c00362{word-spacing:17.251200px;}
.wsa_c00362{word-spacing:18.568800px;}
.ws9_c00362{word-spacing:27.590400px;}
.ws8_c00362{word-spacing:27.604800px;}
.ws1a_c00362{word-spacing:43.387200px;}
.ws1b_c00362{word-spacing:43.416000px;}
._0_c00362{width:1.036800px;}
.fc0_c00362{color:rgb(0,0,0);}
.fs0_c00362{font-size:72.000000px;}
.y0_c00362{bottom:0.000000px;}
.y2_c00362{bottom:46.830450px;}
.y1_c00362{bottom:67.530450px;}
.y1b_c00362{bottom:339.690450px;}
.y1a_c00362{bottom:379.740450px;}
.y19_c00362{bottom:410.790450px;}
.y18_c00362{bottom:450.840450px;}
.y17_c00362{bottom:481.890450px;}
.y16_c00362{bottom:512.940450px;}
.y15_c00362{bottom:543.990450px;}
.y14_c00362{bottom:574.950450px;}
.y13_c00362{bottom:606.090450px;}
.y12_c00362{bottom:637.140450px;}
.y11_c00362{bottom:668.190450px;}
.y10_c00362{bottom:708.240450px;}
.yf_c00362{bottom:737.940450px;}
.ye_c00362{bottom:758.640450px;}
.yd_c00362{bottom:779.340450px;}
.yc_c00362{bottom:800.040450px;}
.yb_c00362{bottom:840.090450px;}
.ya_c00362{bottom:871.140450px;}
.y9_c00362{bottom:911.190450px;}
.y8_c00362{bottom:942.240450px;}
.y7_c00362{bottom:973.290450px;}
.y6_c00362{bottom:1004.340450px;}
.y5_c00362{bottom:1035.390450px;}
.y4_c00362{bottom:1066.440450px;}
.y3_c00362{bottom:1097.490450px;}
.h1_c00362{height:63.175781px;}
.h2_c00362{height:64.546875px;}
.h3_c00362{height:75.093750px;}
.h0_c00362{height:1263.000000px;}
.w1_c00362{width:892.500000px;}
.w0_c00362{width:892.830000px;}
.x0_c00362{left:0.000000px;}
.x2_c00362{left:170.100000px;}
.x3_c00362{left:245.430000px;}
.x1_c00362{left:738.360000px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls5_c00362{letter-spacing:-0.076800pt;}
.lsa_c00362{letter-spacing:-0.070400pt;}
.ls6_c00362{letter-spacing:-0.064000pt;}
.ls7_c00362{letter-spacing:-0.057600pt;}
.ls3_c00362{letter-spacing:-0.051200pt;}
.ls2_c00362{letter-spacing:-0.044800pt;}
.lsb_c00362{letter-spacing:-0.038400pt;}
.ls4_c00362{letter-spacing:-0.032000pt;}
.ls1_c00362{letter-spacing:-0.025600pt;}
.ls9_c00362{letter-spacing:-0.019200pt;}
.ls8_c00362{letter-spacing:-0.012800pt;}
.lsc_c00362{letter-spacing:-0.006400pt;}
.ls0_c00362{letter-spacing:0.000000pt;}
.lsd_c00362{letter-spacing:750.220800pt;}
.ws3_c00362{word-spacing:-1.779200pt;}
.ws2_c00362{word-spacing:-1.760000pt;}
.ws13_c00362{word-spacing:-1.484800pt;}
.ws12_c00362{word-spacing:-1.388800pt;}
.ws7_c00362{word-spacing:-1.107200pt;}
.ws1e_c00362{word-spacing:-0.812800pt;}
.ws1f_c00362{word-spacing:-0.800000pt;}
.ws0_c00362{word-spacing:0.000000pt;}
.wsf_c00362{word-spacing:0.108800pt;}
.ws10_c00362{word-spacing:0.128000pt;}
.ws23_c00362{word-spacing:0.147200pt;}
.ws11_c00362{word-spacing:0.160000pt;}
.ws22_c00362{word-spacing:0.249600pt;}
.ws1_c00362{word-spacing:1.126400pt;}
.wsd_c00362{word-spacing:2.963200pt;}
.wse_c00362{word-spacing:3.033600pt;}
.ws4_c00362{word-spacing:3.065600pt;}
.ws19_c00362{word-spacing:3.347200pt;}
.ws18_c00362{word-spacing:3.481600pt;}
.ws21_c00362{word-spacing:4.339200pt;}
.ws20_c00362{word-spacing:4.345600pt;}
.wsb_c00362{word-spacing:4.633600pt;}
.wsc_c00362{word-spacing:4.716800pt;}
.ws15_c00362{word-spacing:10.080000pt;}
.ws16_c00362{word-spacing:10.099200pt;}
.ws17_c00362{word-spacing:10.131200pt;}
.ws14_c00362{word-spacing:13.587200pt;}
.ws6_c00362{word-spacing:15.212800pt;}
.ws1d_c00362{word-spacing:15.219200pt;}
.ws1c_c00362{word-spacing:15.270400pt;}
.ws5_c00362{word-spacing:15.334400pt;}
.wsa_c00362{word-spacing:16.505600pt;}
.ws9_c00362{word-spacing:24.524800pt;}
.ws8_c00362{word-spacing:24.537600pt;}
.ws1a_c00362{word-spacing:38.566400pt;}
.ws1b_c00362{word-spacing:38.592000pt;}
._0_c00362{width:0.921600pt;}
.fs0_c00362{font-size:64.000000pt;}
.y0_c00362{bottom:0.000000pt;}
.y2_c00362{bottom:41.627067pt;}
.y1_c00362{bottom:60.027067pt;}
.y1b_c00362{bottom:301.947067pt;}
.y1a_c00362{bottom:337.547067pt;}
.y19_c00362{bottom:365.147067pt;}
.y18_c00362{bottom:400.747067pt;}
.y17_c00362{bottom:428.347067pt;}
.y16_c00362{bottom:455.947067pt;}
.y15_c00362{bottom:483.547067pt;}
.y14_c00362{bottom:511.067067pt;}
.y13_c00362{bottom:538.747067pt;}
.y12_c00362{bottom:566.347067pt;}
.y11_c00362{bottom:593.947067pt;}
.y10_c00362{bottom:629.547067pt;}
.yf_c00362{bottom:655.947067pt;}
.ye_c00362{bottom:674.347067pt;}
.yd_c00362{bottom:692.747067pt;}
.yc_c00362{bottom:711.147067pt;}
.yb_c00362{bottom:746.747067pt;}
.ya_c00362{bottom:774.347067pt;}
.y9_c00362{bottom:809.947067pt;}
.y8_c00362{bottom:837.547067pt;}
.y7_c00362{bottom:865.147067pt;}
.y6_c00362{bottom:892.747067pt;}
.y5_c00362{bottom:920.347067pt;}
.y4_c00362{bottom:947.947067pt;}
.y3_c00362{bottom:975.547067pt;}
.h1_c00362{height:56.156250pt;}
.h2_c00362{height:57.375000pt;}
.h3_c00362{height:66.750000pt;}
.h0_c00362{height:1122.666667pt;}
.w1_c00362{width:793.333333pt;}
.w0_c00362{width:793.626667pt;}
.x0_c00362{left:0.000000pt;}
.x2_c00362{left:151.200000pt;}
.x3_c00362{left:218.160000pt;}
.x1_c00362{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7dfd1003c6f55c63a4989e3a.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00363{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.ls0_c00363{letter-spacing:0.000000px;}
.ls1_c00363{letter-spacing:843.998400px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00363{word-spacing:0.000000px;}
.fc0_c00363{color:rgb(0,0,0);}
.fs0_c00363{font-size:72.000000px;}
.y0_c00363{bottom:0.000000px;}
.y2_c00363{bottom:46.830450px;}
.y1_c00363{bottom:67.530450px;}
.y5_c00363{bottom:1017.390450px;}
.y4_c00363{bottom:1057.440450px;}
.y3_c00363{bottom:1097.490450px;}
.h1_c00363{height:63.175781px;}
.h2_c00363{height:64.546875px;}
.h0_c00363{height:1263.000000px;}
.w1_c00363{width:892.500000px;}
.w0_c00363{width:892.830000px;}
.x0_c00363{left:0.000000px;}
.x2_c00363{left:127.620000px;}
.x1_c00363{left:695.880000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls0_c00363{letter-spacing:0.000000pt;}
.ls1_c00363{letter-spacing:750.220800pt;}
.ws0_c00363{word-spacing:0.000000pt;}
.fs0_c00363{font-size:64.000000pt;}
.y0_c00363{bottom:0.000000pt;}
.y2_c00363{bottom:41.627067pt;}
.y1_c00363{bottom:60.027067pt;}
.y5_c00363{bottom:904.347067pt;}
.y4_c00363{bottom:939.947067pt;}
.y3_c00363{bottom:975.547067pt;}
.h1_c00363{height:56.156250pt;}
.h2_c00363{height:57.375000pt;}
.h0_c00363{height:1122.666667pt;}
.w1_c00363{width:793.333333pt;}
.w0_c00363{width:793.626667pt;}
.x0_c00363{left:0.000000pt;}
.x2_c00363{left:113.440000pt;}
.x1_c00363{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_84f133b9021b2d03f2dfa78d.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.093262;font-style:normal;font-weight:normal;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_464f7091c45609541285a807.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00364;src:url('chunks/assets/font_eaf20e1e3e22e7408955dd79.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:1.106934;font-style:normal;font-weight:normal;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_0272cfdd0ee34bf85479b95a.woff2')format("woff");}.ff4_c00364{font-family:ff4_c00364;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00364;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00364{font-family:ff5_c00364;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00364{letter-spacing:-0.086400px;}
.lsb_c00364{letter-spacing:-0.064800px;}
.lsd_c00364{letter-spacing:-0.057600px;}
.ls2_c00364{letter-spacing:-0.050400px;}
.ls8_c00364{letter-spacing:-0.043200px;}
.ls4_c00364{letter-spacing:-0.036000px;}
.ls6_c00364{letter-spacing:-0.028800px;}
.ls3_c00364{letter-spacing:-0.021600px;}
.lsa_c00364{letter-spacing:-0.014400px;}
.ls9_c00364{letter-spacing:-0.007200px;}
.ls1_c00364{letter-spacing:0.000000px;}
.ls5_c00364{letter-spacing:0.021600px;}
.lse_c00364{letter-spacing:0.115200px;}
.ls7_c00364{letter-spacing:0.151200px;}
.ls0_c00364{letter-spacing:11.664000px;}
.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;}
}
.ws1c_c00364{word-spacing:-3.391200px;}
.ws1b_c00364{word-spacing:-3.355200px;}
.ws26_c00364{word-spacing:-3.103200px;}
.ws2b_c00364{word-spacing:-3.081600px;}
.ws2c_c00364{word-spacing:-3.060000px;}
.ws27_c00364{word-spacing:-3.024000px;}
.ws2d_c00364{word-spacing:-0.676800px;}
.ws2e_c00364{word-spacing:-0.590400px;}
.ws7_c00364{word-spacing:-0.525600px;}
.ws16_c00364{word-spacing:-0.496800px;}
.ws15_c00364{word-spacing:-0.417600px;}
.ws0_c00364{word-spacing:0.000000px;}
.ws24_c00364{word-spacing:0.043200px;}
.ws30_c00364{word-spacing:0.064800px;}
.wsa_c00364{word-spacing:0.136800px;}
.ws10_c00364{word-spacing:0.158400px;}
.ws13_c00364{word-spacing:0.165600px;}
.ws23_c00364{word-spacing:0.172800px;}
.ws2f_c00364{word-spacing:0.180000px;}
.wsb_c00364{word-spacing:0.187200px;}
.ws20_c00364{word-spacing:0.194400px;}
.ws14_c00364{word-spacing:0.201600px;}
.wse_c00364{word-spacing:0.943200px;}
.wsf_c00364{word-spacing:0.979200px;}
.ws1f_c00364{word-spacing:2.253600px;}
.ws1e_c00364{word-spacing:2.332800px;}
.ws4_c00364{word-spacing:2.340000px;}
.ws3_c00364{word-spacing:2.361600px;}
.ws12_c00364{word-spacing:4.132800px;}
.ws11_c00364{word-spacing:4.161600px;}
.ws6_c00364{word-spacing:6.948000px;}
.ws5_c00364{word-spacing:7.048800px;}
.wsc_c00364{word-spacing:7.696800px;}
.wsd_c00364{word-spacing:7.804800px;}
.ws25_c00364{word-spacing:8.841600px;}
.ws28_c00364{word-spacing:11.563200px;}
.ws29_c00364{word-spacing:11.707200px;}
.ws2a_c00364{word-spacing:11.714400px;}
.ws22_c00364{word-spacing:13.752000px;}
.ws8_c00364{word-spacing:13.874400px;}
.ws9_c00364{word-spacing:13.888800px;}
.ws21_c00364{word-spacing:13.896000px;}
.ws1d_c00364{word-spacing:15.300000px;}
.ws2_c00364{word-spacing:17.812800px;}
.ws19_c00364{word-spacing:24.652800px;}
.ws1a_c00364{word-spacing:24.688800px;}
.ws18_c00364{word-spacing:63.907200px;}
.ws17_c00364{word-spacing:63.928800px;}
.ws1_c00364{word-spacing:153.458460px;}
._1_c00364{margin-left:-3.960000px;}
._2_c00364{margin-left:-1.051200px;}
._0_c00364{width:1.281600px;}
.fc0_c00364{color:rgb(0,0,0);}
.fs0_c00364{font-size:72.000000px;}
.fs1_c00364{font-size:83.880000px;}
.y0_c00364{bottom:0.000000px;}
.y2_c00364{bottom:46.830450px;}
.y1_c00364{bottom:67.530450px;}
.y21_c00364{bottom:155.370450px;}
.y20_c00364{bottom:186.420450px;}
.y1f_c00364{bottom:226.470450px;}
.y1e_c00364{bottom:257.520450px;}
.y1d_c00364{bottom:288.570450px;}
.y1c_c00364{bottom:328.620450px;}
.y1b_c00364{bottom:359.670450px;}
.y1a_c00364{bottom:390.720450px;}
.y19_c00364{bottom:430.770450px;}
.y18_c00364{bottom:461.820450px;}
.y17_c00364{bottom:501.870450px;}
.y16_c00364{bottom:531.570450px;}
.y15_c00364{bottom:552.270450px;}
.y14_c00364{bottom:572.970450px;}
.y13_c00364{bottom:593.670450px;}
.y12_c00364{bottom:614.370450px;}
.y11_c00364{bottom:635.070450px;}
.y10_c00364{bottom:655.770450px;}
.yf_c00364{bottom:695.820450px;}
.ye_c00364{bottom:726.870450px;}
.yd_c00364{bottom:766.920450px;}
.yc_c00364{bottom:797.970450px;}
.yb_c00364{bottom:829.020450px;}
.ya_c00364{bottom:869.070450px;}
.y9_c00364{bottom:900.120450px;}
.y8_c00364{bottom:931.170450px;}
.y7_c00364{bottom:962.220450px;}
.y6_c00364{bottom:993.270450px;}
.y5_c00364{bottom:1024.320450px;}
.y4_c00364{bottom:1064.370450px;}
.y3_c00364{bottom:1094.520450px;}
.h1_c00364{height:63.175781px;}
.h3_c00364{height:64.546875px;}
.h4_c00364{height:75.093750px;}
.h2_c00364{height:87.484219px;}
.h0_c00364{height:1263.000000px;}
.w1_c00364{width:892.500000px;}
.w0_c00364{width:892.830000px;}
.x0_c00364{left:0.000000px;}
.x2_c00364{left:170.100000px;}
.x3_c00364{left:197.100000px;}
.x4_c00364{left:245.430000px;}
.x1_c00364{left:738.360000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.lsc_c00364{letter-spacing:-0.076800pt;}
.lsb_c00364{letter-spacing:-0.057600pt;}
.lsd_c00364{letter-spacing:-0.051200pt;}
.ls2_c00364{letter-spacing:-0.044800pt;}
.ls8_c00364{letter-spacing:-0.038400pt;}
.ls4_c00364{letter-spacing:-0.032000pt;}
.ls6_c00364{letter-spacing:-0.025600pt;}
.ls3_c00364{letter-spacing:-0.019200pt;}
.lsa_c00364{letter-spacing:-0.012800pt;}
.ls9_c00364{letter-spacing:-0.006400pt;}
.ls1_c00364{letter-spacing:0.000000pt;}
.ls5_c00364{letter-spacing:0.019200pt;}
.lse_c00364{letter-spacing:0.102400pt;}
.ls7_c00364{letter-spacing:0.134400pt;}
.ls0_c00364{letter-spacing:10.368000pt;}
.ws1c_c00364{word-spacing:-3.014400pt;}
.ws1b_c00364{word-spacing:-2.982400pt;}
.ws26_c00364{word-spacing:-2.758400pt;}
.ws2b_c00364{word-spacing:-2.739200pt;}
.ws2c_c00364{word-spacing:-2.720000pt;}
.ws27_c00364{word-spacing:-2.688000pt;}
.ws2d_c00364{word-spacing:-0.601600pt;}
.ws2e_c00364{word-spacing:-0.524800pt;}
.ws7_c00364{word-spacing:-0.467200pt;}
.ws16_c00364{word-spacing:-0.441600pt;}
.ws15_c00364{word-spacing:-0.371200pt;}
.ws0_c00364{word-spacing:0.000000pt;}
.ws24_c00364{word-spacing:0.038400pt;}
.ws30_c00364{word-spacing:0.057600pt;}
.wsa_c00364{word-spacing:0.121600pt;}
.ws10_c00364{word-spacing:0.140800pt;}
.ws13_c00364{word-spacing:0.147200pt;}
.ws23_c00364{word-spacing:0.153600pt;}
.ws2f_c00364{word-spacing:0.160000pt;}
.wsb_c00364{word-spacing:0.166400pt;}
.ws20_c00364{word-spacing:0.172800pt;}
.ws14_c00364{word-spacing:0.179200pt;}
.wse_c00364{word-spacing:0.838400pt;}
.wsf_c00364{word-spacing:0.870400pt;}
.ws1f_c00364{word-spacing:2.003200pt;}
.ws1e_c00364{word-spacing:2.073600pt;}
.ws4_c00364{word-spacing:2.080000pt;}
.ws3_c00364{word-spacing:2.099200pt;}
.ws12_c00364{word-spacing:3.673600pt;}
.ws11_c00364{word-spacing:3.699200pt;}
.ws6_c00364{word-spacing:6.176000pt;}
.ws5_c00364{word-spacing:6.265600pt;}
.wsc_c00364{word-spacing:6.841600pt;}
.wsd_c00364{word-spacing:6.937600pt;}
.ws25_c00364{word-spacing:7.859200pt;}
.ws28_c00364{word-spacing:10.278400pt;}
.ws29_c00364{word-spacing:10.406400pt;}
.ws2a_c00364{word-spacing:10.412800pt;}
.ws22_c00364{word-spacing:12.224000pt;}
.ws8_c00364{word-spacing:12.332800pt;}
.ws9_c00364{word-spacing:12.345600pt;}
.ws21_c00364{word-spacing:12.352000pt;}
.ws1d_c00364{word-spacing:13.600000pt;}
.ws2_c00364{word-spacing:15.833600pt;}
.ws19_c00364{word-spacing:21.913600pt;}
.ws1a_c00364{word-spacing:21.945600pt;}
.ws18_c00364{word-spacing:56.806400pt;}
.ws17_c00364{word-spacing:56.825600pt;}
.ws1_c00364{word-spacing:136.407520pt;}
._1_c00364{margin-left:-3.520000pt;}
._2_c00364{margin-left:-0.934400pt;}
._0_c00364{width:1.139200pt;}
.fs0_c00364{font-size:64.000000pt;}
.fs1_c00364{font-size:74.560000pt;}
.y0_c00364{bottom:0.000000pt;}
.y2_c00364{bottom:41.627067pt;}
.y1_c00364{bottom:60.027067pt;}
.y21_c00364{bottom:138.107067pt;}
.y20_c00364{bottom:165.707067pt;}
.y1f_c00364{bottom:201.307067pt;}
.y1e_c00364{bottom:228.907067pt;}
.y1d_c00364{bottom:256.507067pt;}
.y1c_c00364{bottom:292.107067pt;}
.y1b_c00364{bottom:319.707067pt;}
.y1a_c00364{bottom:347.307067pt;}
.y19_c00364{bottom:382.907067pt;}
.y18_c00364{bottom:410.507067pt;}
.y17_c00364{bottom:446.107067pt;}
.y16_c00364{bottom:472.507067pt;}
.y15_c00364{bottom:490.907067pt;}
.y14_c00364{bottom:509.307067pt;}
.y13_c00364{bottom:527.707067pt;}
.y12_c00364{bottom:546.107067pt;}
.y11_c00364{bottom:564.507067pt;}
.y10_c00364{bottom:582.907067pt;}
.yf_c00364{bottom:618.507067pt;}
.ye_c00364{bottom:646.107067pt;}
.yd_c00364{bottom:681.707067pt;}
.yc_c00364{bottom:709.307067pt;}
.yb_c00364{bottom:736.907067pt;}
.ya_c00364{bottom:772.507067pt;}
.y9_c00364{bottom:800.107067pt;}
.y8_c00364{bottom:827.707067pt;}
.y7_c00364{bottom:855.307067pt;}
.y6_c00364{bottom:882.907067pt;}
.y5_c00364{bottom:910.507067pt;}
.y4_c00364{bottom:946.107067pt;}
.y3_c00364{bottom:972.907067pt;}
.h1_c00364{height:56.156250pt;}
.h3_c00364{height:57.375000pt;}
.h4_c00364{height:66.750000pt;}
.h2_c00364{height:77.763750pt;}
.h0_c00364{height:1122.666667pt;}
.w1_c00364{width:793.333333pt;}
.w0_c00364{width:793.626667pt;}
.x0_c00364{left:0.000000pt;}
.x2_c00364{left:151.200000pt;}
.x3_c00364{left:175.200000pt;}
.x4_c00364{left:218.160000pt;}
.x1_c00364{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cf5a0d503ca1b88499e301a0.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.093262;font-style:normal;font-weight:normal;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_46984d3829afd56b2a71c19d.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.106934;font-style:normal;font-weight:normal;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_fb374574827a3861654ee04b.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00365{letter-spacing:-0.072000px;}
.ls9_c00365{letter-spacing:-0.064800px;}
.lsb_c00365{letter-spacing:-0.057600px;}
.ls8_c00365{letter-spacing:-0.050400px;}
.ls7_c00365{letter-spacing:-0.043200px;}
.lsd_c00365{letter-spacing:-0.036000px;}
.lsa_c00365{letter-spacing:-0.028800px;}
.ls4_c00365{letter-spacing:-0.021600px;}
.ls5_c00365{letter-spacing:-0.014400px;}
.ls6_c00365{letter-spacing:-0.007200px;}
.ls2_c00365{letter-spacing:0.000000px;}
.ls3_c00365{letter-spacing:0.115200px;}
.ls0_c00365{letter-spacing:0.144000px;}
.ls1_c00365{letter-spacing:0.468000px;}
.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;}
}
.ws23_c00365{word-spacing:-2.844000px;}
.ws22_c00365{word-spacing:-2.772000px;}
.ws15_c00365{word-spacing:-2.707200px;}
.wsf_c00365{word-spacing:-1.612800px;}
.wse_c00365{word-spacing:-1.598400px;}
.ws2a_c00365{word-spacing:-1.231200px;}
.ws17_c00365{word-spacing:-1.094400px;}
.ws16_c00365{word-spacing:-0.892800px;}
.ws0_c00365{word-spacing:0.000000px;}
.ws1_c00365{word-spacing:0.043200px;}
.ws1d_c00365{word-spacing:0.050400px;}
.ws12_c00365{word-spacing:0.086400px;}
.ws21_c00365{word-spacing:0.100800px;}
.ws5_c00365{word-spacing:0.165600px;}
.ws1c_c00365{word-spacing:0.172800px;}
.ws2_c00365{word-spacing:0.180000px;}
.ws8_c00365{word-spacing:0.208800px;}
.ws7_c00365{word-spacing:2.340000px;}
.ws6_c00365{word-spacing:2.361600px;}
.wsd_c00365{word-spacing:2.721600px;}
.wsc_c00365{word-spacing:2.728800px;}
.ws26_c00365{word-spacing:4.147200px;}
.ws27_c00365{word-spacing:4.154400px;}
.ws11_c00365{word-spacing:5.205600px;}
.ws10_c00365{word-spacing:5.220000px;}
.ws1f_c00365{word-spacing:7.898400px;}
.ws20_c00365{word-spacing:8.121600px;}
.ws1e_c00365{word-spacing:8.164800px;}
.ws13_c00365{word-spacing:9.187200px;}
.ws14_c00365{word-spacing:9.201600px;}
.ws28_c00365{word-spacing:10.965600px;}
.ws29_c00365{word-spacing:10.972800px;}
.wsb_c00365{word-spacing:12.780000px;}
.ws9_c00365{word-spacing:14.241600px;}
.wsa_c00365{word-spacing:14.349600px;}
.ws4_c00365{word-spacing:15.652800px;}
.ws3_c00365{word-spacing:15.660000px;}
.ws18_c00365{word-spacing:27.842400px;}
.ws19_c00365{word-spacing:27.943200px;}
.ws25_c00365{word-spacing:28.274400px;}
.ws24_c00365{word-spacing:28.288800px;}
.ws1a_c00365{word-spacing:63.532800px;}
.ws1b_c00365{word-spacing:63.576000px;}
._0_c00365{margin-left:-1.080000px;}
._1_c00365{width:1.267200px;}
.fc0_c00365{color:rgb(0,0,0);}
.fs0_c00365{font-size:72.000000px;}
.y0_c00365{bottom:0.000000px;}
.y2_c00365{bottom:46.830450px;}
.y1_c00365{bottom:67.530450px;}
.y1e_c00365{bottom:169.230450px;}
.y1d_c00365{bottom:200.280450px;}
.y1c_c00365{bottom:231.330450px;}
.y1b_c00365{bottom:262.380450px;}
.y1a_c00365{bottom:293.430450px;}
.y19_c00365{bottom:333.390450px;}
.y18_c00365{bottom:364.440450px;}
.y17_c00365{bottom:404.490450px;}
.y16_c00365{bottom:435.540450px;}
.y15_c00365{bottom:475.590450px;}
.y14_c00365{bottom:506.640450px;}
.y13_c00365{bottom:537.690450px;}
.y12_c00365{bottom:568.740450px;}
.y11_c00365{bottom:608.790450px;}
.y10_c00365{bottom:639.840450px;}
.yf_c00365{bottom:679.890450px;}
.ye_c00365{bottom:710.940450px;}
.yd_c00365{bottom:741.990450px;}
.yc_c00365{bottom:773.040450px;}
.yb_c00365{bottom:813.090450px;}
.ya_c00365{bottom:844.140450px;}
.y9_c00365{bottom:884.190450px;}
.y8_c00365{bottom:915.240450px;}
.y7_c00365{bottom:955.290450px;}
.y6_c00365{bottom:986.340450px;}
.y5_c00365{bottom:1026.390450px;}
.y4_c00365{bottom:1057.440450px;}
.y3_c00365{bottom:1097.490450px;}
.h1_c00365{height:63.175781px;}
.h3_c00365{height:64.546875px;}
.h2_c00365{height:75.093750px;}
.h0_c00365{height:1263.000000px;}
.w1_c00365{width:892.500000px;}
.w0_c00365{width:892.830000px;}
.x0_c00365{left:0.000000px;}
.x2_c00365{left:127.620000px;}
.x1_c00365{left:695.880000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.lsc_c00365{letter-spacing:-0.064000pt;}
.ls9_c00365{letter-spacing:-0.057600pt;}
.lsb_c00365{letter-spacing:-0.051200pt;}
.ls8_c00365{letter-spacing:-0.044800pt;}
.ls7_c00365{letter-spacing:-0.038400pt;}
.lsd_c00365{letter-spacing:-0.032000pt;}
.lsa_c00365{letter-spacing:-0.025600pt;}
.ls4_c00365{letter-spacing:-0.019200pt;}
.ls5_c00365{letter-spacing:-0.012800pt;}
.ls6_c00365{letter-spacing:-0.006400pt;}
.ls2_c00365{letter-spacing:0.000000pt;}
.ls3_c00365{letter-spacing:0.102400pt;}
.ls0_c00365{letter-spacing:0.128000pt;}
.ls1_c00365{letter-spacing:0.416000pt;}
.ws23_c00365{word-spacing:-2.528000pt;}
.ws22_c00365{word-spacing:-2.464000pt;}
.ws15_c00365{word-spacing:-2.406400pt;}
.wsf_c00365{word-spacing:-1.433600pt;}
.wse_c00365{word-spacing:-1.420800pt;}
.ws2a_c00365{word-spacing:-1.094400pt;}
.ws17_c00365{word-spacing:-0.972800pt;}
.ws16_c00365{word-spacing:-0.793600pt;}
.ws0_c00365{word-spacing:0.000000pt;}
.ws1_c00365{word-spacing:0.038400pt;}
.ws1d_c00365{word-spacing:0.044800pt;}
.ws12_c00365{word-spacing:0.076800pt;}
.ws21_c00365{word-spacing:0.089600pt;}
.ws5_c00365{word-spacing:0.147200pt;}
.ws1c_c00365{word-spacing:0.153600pt;}
.ws2_c00365{word-spacing:0.160000pt;}
.ws8_c00365{word-spacing:0.185600pt;}
.ws7_c00365{word-spacing:2.080000pt;}
.ws6_c00365{word-spacing:2.099200pt;}
.wsd_c00365{word-spacing:2.419200pt;}
.wsc_c00365{word-spacing:2.425600pt;}
.ws26_c00365{word-spacing:3.686400pt;}
.ws27_c00365{word-spacing:3.692800pt;}
.ws11_c00365{word-spacing:4.627200pt;}
.ws10_c00365{word-spacing:4.640000pt;}
.ws1f_c00365{word-spacing:7.020800pt;}
.ws20_c00365{word-spacing:7.219200pt;}
.ws1e_c00365{word-spacing:7.257600pt;}
.ws13_c00365{word-spacing:8.166400pt;}
.ws14_c00365{word-spacing:8.179200pt;}
.ws28_c00365{word-spacing:9.747200pt;}
.ws29_c00365{word-spacing:9.753600pt;}
.wsb_c00365{word-spacing:11.360000pt;}
.ws9_c00365{word-spacing:12.659200pt;}
.wsa_c00365{word-spacing:12.755200pt;}
.ws4_c00365{word-spacing:13.913600pt;}
.ws3_c00365{word-spacing:13.920000pt;}
.ws18_c00365{word-spacing:24.748800pt;}
.ws19_c00365{word-spacing:24.838400pt;}
.ws25_c00365{word-spacing:25.132800pt;}
.ws24_c00365{word-spacing:25.145600pt;}
.ws1a_c00365{word-spacing:56.473600pt;}
.ws1b_c00365{word-spacing:56.512000pt;}
._0_c00365{margin-left:-0.960000pt;}
._1_c00365{width:1.126400pt;}
.fs0_c00365{font-size:64.000000pt;}
.y0_c00365{bottom:0.000000pt;}
.y2_c00365{bottom:41.627067pt;}
.y1_c00365{bottom:60.027067pt;}
.y1e_c00365{bottom:150.427067pt;}
.y1d_c00365{bottom:178.027067pt;}
.y1c_c00365{bottom:205.627067pt;}
.y1b_c00365{bottom:233.227067pt;}
.y1a_c00365{bottom:260.827067pt;}
.y19_c00365{bottom:296.347067pt;}
.y18_c00365{bottom:323.947067pt;}
.y17_c00365{bottom:359.547067pt;}
.y16_c00365{bottom:387.147067pt;}
.y15_c00365{bottom:422.747067pt;}
.y14_c00365{bottom:450.347067pt;}
.y13_c00365{bottom:477.947067pt;}
.y12_c00365{bottom:505.547067pt;}
.y11_c00365{bottom:541.147067pt;}
.y10_c00365{bottom:568.747067pt;}
.yf_c00365{bottom:604.347067pt;}
.ye_c00365{bottom:631.947067pt;}
.yd_c00365{bottom:659.547067pt;}
.yc_c00365{bottom:687.147067pt;}
.yb_c00365{bottom:722.747067pt;}
.ya_c00365{bottom:750.347067pt;}
.y9_c00365{bottom:785.947067pt;}
.y8_c00365{bottom:813.547067pt;}
.y7_c00365{bottom:849.147067pt;}
.y6_c00365{bottom:876.747067pt;}
.y5_c00365{bottom:912.347067pt;}
.y4_c00365{bottom:939.947067pt;}
.y3_c00365{bottom:975.547067pt;}
.h1_c00365{height:56.156250pt;}
.h3_c00365{height:57.375000pt;}
.h2_c00365{height:66.750000pt;}
.h0_c00365{height:1122.666667pt;}
.w1_c00365{width:793.333333pt;}
.w0_c00365{width:793.626667pt;}
.x0_c00365{left:0.000000pt;}
.x2_c00365{left:113.440000pt;}
.x1_c00365{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_248a958e6129ef9b783d7693.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.093262;font-style:normal;font-weight:normal;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_e656efca3e9f13b66d9f183f.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls4_c00366{letter-spacing:-0.072000px;}
.ls1_c00366{letter-spacing:-0.057600px;}
.ls3_c00366{letter-spacing:-0.050400px;}
.ls9_c00366{letter-spacing:-0.043200px;}
.ls2_c00366{letter-spacing:-0.036000px;}
.ls6_c00366{letter-spacing:-0.021600px;}
.ls8_c00366{letter-spacing:-0.014400px;}
.ls7_c00366{letter-spacing:-0.007200px;}
.ls0_c00366{letter-spacing:0.000000px;}
.ls5_c00366{letter-spacing:0.028800px;}
.lsa_c00366{letter-spacing:843.998400px;}
.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;}
}
.ws6_c00366{word-spacing:-2.124000px;}
.ws5_c00366{word-spacing:-2.044800px;}
.ws7_c00366{word-spacing:-1.965600px;}
.ws0_c00366{word-spacing:0.000000px;}
.wse_c00366{word-spacing:0.172800px;}
.ws2_c00366{word-spacing:3.434400px;}
.ws1_c00366{word-spacing:3.528000px;}
.wsa_c00366{word-spacing:12.045600px;}
.wsb_c00366{word-spacing:12.052800px;}
.ws9_c00366{word-spacing:23.565600px;}
.ws8_c00366{word-spacing:23.580000px;}
.ws3_c00366{word-spacing:31.528800px;}
.ws4_c00366{word-spacing:31.550400px;}
.wsc_c00366{word-spacing:37.980000px;}
.wsd_c00366{word-spacing:38.001600px;}
._0_c00366{width:1.087200px;}
.fc0_c00366{color:rgb(0,0,0);}
.fs0_c00366{font-size:72.000000px;}
.y0_c00366{bottom:0.000000px;}
.y2_c00366{bottom:46.830450px;}
.y1_c00366{bottom:67.530450px;}
.yb_c00366{bottom:831.090450px;}
.ya_c00366{bottom:871.140450px;}
.y9_c00366{bottom:902.190450px;}
.y8_c00366{bottom:933.240450px;}
.y7_c00366{bottom:964.290450px;}
.y6_c00366{bottom:1004.340450px;}
.y5_c00366{bottom:1035.390450px;}
.y4_c00366{bottom:1066.440450px;}
.y3_c00366{bottom:1097.490450px;}
.h1_c00366{height:63.175781px;}
.h2_c00366{height:64.546875px;}
.h0_c00366{height:1263.000000px;}
.w1_c00366{width:892.500000px;}
.w0_c00366{width:892.830000px;}
.x0_c00366{left:0.000000px;}
.x2_c00366{left:170.100000px;}
.x1_c00366{left:738.360000px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls4_c00366{letter-spacing:-0.064000pt;}
.ls1_c00366{letter-spacing:-0.051200pt;}
.ls3_c00366{letter-spacing:-0.044800pt;}
.ls9_c00366{letter-spacing:-0.038400pt;}
.ls2_c00366{letter-spacing:-0.032000pt;}
.ls6_c00366{letter-spacing:-0.019200pt;}
.ls8_c00366{letter-spacing:-0.012800pt;}
.ls7_c00366{letter-spacing:-0.006400pt;}
.ls0_c00366{letter-spacing:0.000000pt;}
.ls5_c00366{letter-spacing:0.025600pt;}
.lsa_c00366{letter-spacing:750.220800pt;}
.ws6_c00366{word-spacing:-1.888000pt;}
.ws5_c00366{word-spacing:-1.817600pt;}
.ws7_c00366{word-spacing:-1.747200pt;}
.ws0_c00366{word-spacing:0.000000pt;}
.wse_c00366{word-spacing:0.153600pt;}
.ws2_c00366{word-spacing:3.052800pt;}
.ws1_c00366{word-spacing:3.136000pt;}
.wsa_c00366{word-spacing:10.707200pt;}
.wsb_c00366{word-spacing:10.713600pt;}
.ws9_c00366{word-spacing:20.947200pt;}
.ws8_c00366{word-spacing:20.960000pt;}
.ws3_c00366{word-spacing:28.025600pt;}
.ws4_c00366{word-spacing:28.044800pt;}
.wsc_c00366{word-spacing:33.760000pt;}
.wsd_c00366{word-spacing:33.779200pt;}
._0_c00366{width:0.966400pt;}
.fs0_c00366{font-size:64.000000pt;}
.y0_c00366{bottom:0.000000pt;}
.y2_c00366{bottom:41.627067pt;}
.y1_c00366{bottom:60.027067pt;}
.yb_c00366{bottom:738.747067pt;}
.ya_c00366{bottom:774.347067pt;}
.y9_c00366{bottom:801.947067pt;}
.y8_c00366{bottom:829.547067pt;}
.y7_c00366{bottom:857.147067pt;}
.y6_c00366{bottom:892.747067pt;}
.y5_c00366{bottom:920.347067pt;}
.y4_c00366{bottom:947.947067pt;}
.y3_c00366{bottom:975.547067pt;}
.h1_c00366{height:56.156250pt;}
.h2_c00366{height:57.375000pt;}
.h0_c00366{height:1122.666667pt;}
.w1_c00366{width:793.333333pt;}
.w0_c00366{width:793.626667pt;}
.x0_c00366{left:0.000000pt;}
.x2_c00366{left:151.200000pt;}
.x1_c00366{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f8d2dd692f5b73f95bdb82b8.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.106934;font-style: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;}
.ls0_c00367{letter-spacing:0.000000px;}
.ls1_c00367{letter-spacing:843.998400px;}
.sc__c00367{text-shadow:none;}
.sc0_c00367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00367{-webkit-text-stroke:0px transparent;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00367{word-spacing:0.000000px;}
.fc0_c00367{color:rgb(0,0,0);}
.fs0_c00367{font-size:72.000000px;}
.y0_c00367{bottom:0.000000px;}
.y2_c00367{bottom:46.830450px;}
.y1_c00367{bottom:67.530450px;}
.y4_c00367{bottom:1057.440450px;}
.y3_c00367{bottom:1097.490450px;}
.h1_c00367{height:63.175781px;}
.h2_c00367{height:64.546875px;}
.h0_c00367{height:1263.000000px;}
.w1_c00367{width:892.500000px;}
.w0_c00367{width:892.830000px;}
.x0_c00367{left:0.000000px;}
.x2_c00367{left:127.620000px;}
.x1_c00367{left:695.880000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls0_c00367{letter-spacing:0.000000pt;}
.ls1_c00367{letter-spacing:750.220800pt;}
.ws0_c00367{word-spacing:0.000000pt;}
.fs0_c00367{font-size:64.000000pt;}
.y0_c00367{bottom:0.000000pt;}
.y2_c00367{bottom:41.627067pt;}
.y1_c00367{bottom:60.027067pt;}
.y4_c00367{bottom:939.947067pt;}
.y3_c00367{bottom:975.547067pt;}
.h1_c00367{height:56.156250pt;}
.h2_c00367{height:57.375000pt;}
.h0_c00367{height:1122.666667pt;}
.w1_c00367{width:793.333333pt;}
.w0_c00367{width:793.626667pt;}
.x0_c00367{left:0.000000pt;}
.x2_c00367{left:113.440000pt;}
.x1_c00367{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2615cf763bacb596820bee6c.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.093262;font-style:normal;font-weight:normal;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_60a2ffa9fcb7ebc746a94a20.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00368;src:url('chunks/assets/font_7dd8ee2eff4e73c41484eb50.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:1.106934;font-style:normal;font-weight:normal;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_9fac48a8491b22841436bcc8.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls3_c00368{letter-spacing:-0.345600px;}
.ls8_c00368{letter-spacing:-0.072000px;}
.ls4_c00368{letter-spacing:-0.057600px;}
.ls2_c00368{letter-spacing:-0.050400px;}
.ls6_c00368{letter-spacing:-0.043200px;}
.lsc_c00368{letter-spacing:-0.036000px;}
.lsb_c00368{letter-spacing:-0.028800px;}
.ls7_c00368{letter-spacing:-0.021600px;}
.lsa_c00368{letter-spacing:-0.014400px;}
.ls5_c00368{letter-spacing:-0.007200px;}
.ls1_c00368{letter-spacing:0.000000px;}
.ls9_c00368{letter-spacing:0.007200px;}
.lsd_c00368{letter-spacing:0.014400px;}
.ls0_c00368{letter-spacing:0.050328px;}
.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:-20.001600px;}
.ws0_c00368{word-spacing:-19.670400px;}
.ws12_c00368{word-spacing:-4.471200px;}
.ws20_c00368{word-spacing:-3.837600px;}
.ws1f_c00368{word-spacing:-3.758400px;}
.ws28_c00368{word-spacing:-2.340000px;}
.ws27_c00368{word-spacing:-2.268000px;}
.ws2_c00368{word-spacing:0.000000px;}
.ws3_c00368{word-spacing:0.041940px;}
.ws1c_c00368{word-spacing:0.043200px;}
.ws1b_c00368{word-spacing:0.072000px;}
.ws2c_c00368{word-spacing:0.172800px;}
.ws13_c00368{word-spacing:0.180000px;}
.ws21_c00368{word-spacing:0.187200px;}
.ws35_c00368{word-spacing:0.576000px;}
.wse_c00368{word-spacing:1.267200px;}
.wsf_c00368{word-spacing:1.353600px;}
.ws6_c00368{word-spacing:4.125600px;}
.ws7_c00368{word-spacing:4.161600px;}
.ws4_c00368{word-spacing:5.608800px;}
.ws5_c00368{word-spacing:5.616000px;}
.ws15_c00368{word-spacing:5.932800px;}
.ws11_c00368{word-spacing:5.940000px;}
.ws16_c00368{word-spacing:5.954400px;}
.ws14_c00368{word-spacing:6.026400px;}
.ws10_c00368{word-spacing:6.048000px;}
.ws26_c00368{word-spacing:9.540000px;}
.ws25_c00368{word-spacing:9.597600px;}
.ws19_c00368{word-spacing:14.572800px;}
.ws18_c00368{word-spacing:14.601600px;}
.ws23_c00368{word-spacing:16.005600px;}
.ws24_c00368{word-spacing:16.070400px;}
.ws2f_c00368{word-spacing:16.113600px;}
.ws2e_c00368{word-spacing:16.164000px;}
.ws33_c00368{word-spacing:17.287200px;}
.ws34_c00368{word-spacing:17.467200px;}
.ws1e_c00368{word-spacing:17.474400px;}
.ws32_c00368{word-spacing:17.496000px;}
.ws17_c00368{word-spacing:17.827200px;}
.ws2d_c00368{word-spacing:17.942400px;}
.ws30_c00368{word-spacing:20.700000px;}
.ws31_c00368{word-spacing:20.757600px;}
.ws29_c00368{word-spacing:22.528800px;}
.wsb_c00368{word-spacing:24.631200px;}
.wsa_c00368{word-spacing:24.660000px;}
.wsd_c00368{word-spacing:30.052800px;}
.wsc_c00368{word-spacing:30.146400px;}
.ws22_c00368{word-spacing:35.136000px;}
.ws2b_c00368{word-spacing:41.810400px;}
.ws2a_c00368{word-spacing:41.976000px;}
.ws1d_c00368{word-spacing:42.307200px;}
.ws8_c00368{word-spacing:47.340000px;}
.ws9_c00368{word-spacing:47.390400px;}
.ws1a_c00368{word-spacing:84.808800px;}
._2_c00368{margin-left:-42.120000px;}
._3_c00368{margin-left:-17.136000px;}
._1_c00368{width:1.303200px;}
._0_c00368{width:14.427360px;}
.fc0_c00368{color:rgb(0,0,0);}
.fs0_c00368{font-size:72.000000px;}
.fs1_c00368{font-size:83.880000px;}
.y0_c00368{bottom:0.000000px;}
.y2_c00368{bottom:46.830450px;}
.y1_c00368{bottom:67.530450px;}
.y23_c00368{bottom:149.970450px;}
.y22_c00368{bottom:181.020450px;}
.y21_c00368{bottom:212.070450px;}
.y20_c00368{bottom:243.120450px;}
.y1f_c00368{bottom:274.170450px;}
.y1e_c00368{bottom:314.220450px;}
.y1d_c00368{bottom:345.270450px;}
.y1c_c00368{bottom:376.320450px;}
.y1b_c00368{bottom:407.370450px;}
.y1a_c00368{bottom:438.420450px;}
.y19_c00368{bottom:469.470450px;}
.y18_c00368{bottom:500.520450px;}
.y17_c00368{bottom:540.570450px;}
.y16_c00368{bottom:570.270450px;}
.y15_c00368{bottom:590.970450px;}
.y14_c00368{bottom:611.670450px;}
.y13_c00368{bottom:632.370450px;}
.y12_c00368{bottom:653.070450px;}
.y11_c00368{bottom:673.770450px;}
.y10_c00368{bottom:694.470450px;}
.yf_c00368{bottom:715.170450px;}
.ye_c00368{bottom:735.870450px;}
.yd_c00368{bottom:775.920450px;}
.yc_c00368{bottom:806.970450px;}
.yb_c00368{bottom:838.020450px;}
.ya_c00368{bottom:869.070450px;}
.y9_c00368{bottom:900.120450px;}
.y8_c00368{bottom:931.170450px;}
.y7_c00368{bottom:962.220450px;}
.y6_c00368{bottom:993.270450px;}
.y5_c00368{bottom:1024.320450px;}
.y4_c00368{bottom:1064.370450px;}
.y3_c00368{bottom:1094.520450px;}
.h1_c00368{height:63.175781px;}
.h3_c00368{height:64.546875px;}
.h4_c00368{height:75.093750px;}
.h2_c00368{height:87.484219px;}
.h0_c00368{height:1263.000000px;}
.w1_c00368{width:892.500000px;}
.w0_c00368{width:892.830000px;}
.x0_c00368{left:0.000000px;}
.x2_c00368{left:170.100000px;}
.x3_c00368{left:245.430000px;}
.x1_c00368{left:738.360000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls3_c00368{letter-spacing:-0.307200pt;}
.ls8_c00368{letter-spacing:-0.064000pt;}
.ls4_c00368{letter-spacing:-0.051200pt;}
.ls2_c00368{letter-spacing:-0.044800pt;}
.ls6_c00368{letter-spacing:-0.038400pt;}
.lsc_c00368{letter-spacing:-0.032000pt;}
.lsb_c00368{letter-spacing:-0.025600pt;}
.ls7_c00368{letter-spacing:-0.019200pt;}
.lsa_c00368{letter-spacing:-0.012800pt;}
.ls5_c00368{letter-spacing:-0.006400pt;}
.ls1_c00368{letter-spacing:0.000000pt;}
.ls9_c00368{letter-spacing:0.006400pt;}
.lsd_c00368{letter-spacing:0.012800pt;}
.ls0_c00368{letter-spacing:0.044736pt;}
.ws1_c00368{word-spacing:-17.779200pt;}
.ws0_c00368{word-spacing:-17.484800pt;}
.ws12_c00368{word-spacing:-3.974400pt;}
.ws20_c00368{word-spacing:-3.411200pt;}
.ws1f_c00368{word-spacing:-3.340800pt;}
.ws28_c00368{word-spacing:-2.080000pt;}
.ws27_c00368{word-spacing:-2.016000pt;}
.ws2_c00368{word-spacing:0.000000pt;}
.ws3_c00368{word-spacing:0.037280pt;}
.ws1c_c00368{word-spacing:0.038400pt;}
.ws1b_c00368{word-spacing:0.064000pt;}
.ws2c_c00368{word-spacing:0.153600pt;}
.ws13_c00368{word-spacing:0.160000pt;}
.ws21_c00368{word-spacing:0.166400pt;}
.ws35_c00368{word-spacing:0.512000pt;}
.wse_c00368{word-spacing:1.126400pt;}
.wsf_c00368{word-spacing:1.203200pt;}
.ws6_c00368{word-spacing:3.667200pt;}
.ws7_c00368{word-spacing:3.699200pt;}
.ws4_c00368{word-spacing:4.985600pt;}
.ws5_c00368{word-spacing:4.992000pt;}
.ws15_c00368{word-spacing:5.273600pt;}
.ws11_c00368{word-spacing:5.280000pt;}
.ws16_c00368{word-spacing:5.292800pt;}
.ws14_c00368{word-spacing:5.356800pt;}
.ws10_c00368{word-spacing:5.376000pt;}
.ws26_c00368{word-spacing:8.480000pt;}
.ws25_c00368{word-spacing:8.531200pt;}
.ws19_c00368{word-spacing:12.953600pt;}
.ws18_c00368{word-spacing:12.979200pt;}
.ws23_c00368{word-spacing:14.227200pt;}
.ws24_c00368{word-spacing:14.284800pt;}
.ws2f_c00368{word-spacing:14.323200pt;}
.ws2e_c00368{word-spacing:14.368000pt;}
.ws33_c00368{word-spacing:15.366400pt;}
.ws34_c00368{word-spacing:15.526400pt;}
.ws1e_c00368{word-spacing:15.532800pt;}
.ws32_c00368{word-spacing:15.552000pt;}
.ws17_c00368{word-spacing:15.846400pt;}
.ws2d_c00368{word-spacing:15.948800pt;}
.ws30_c00368{word-spacing:18.400000pt;}
.ws31_c00368{word-spacing:18.451200pt;}
.ws29_c00368{word-spacing:20.025600pt;}
.wsb_c00368{word-spacing:21.894400pt;}
.wsa_c00368{word-spacing:21.920000pt;}
.wsd_c00368{word-spacing:26.713600pt;}
.wsc_c00368{word-spacing:26.796800pt;}
.ws22_c00368{word-spacing:31.232000pt;}
.ws2b_c00368{word-spacing:37.164800pt;}
.ws2a_c00368{word-spacing:37.312000pt;}
.ws1d_c00368{word-spacing:37.606400pt;}
.ws8_c00368{word-spacing:42.080000pt;}
.ws9_c00368{word-spacing:42.124800pt;}
.ws1a_c00368{word-spacing:75.385600pt;}
._2_c00368{margin-left:-37.440000pt;}
._3_c00368{margin-left:-15.232000pt;}
._1_c00368{width:1.158400pt;}
._0_c00368{width:12.824320pt;}
.fs0_c00368{font-size:64.000000pt;}
.fs1_c00368{font-size:74.560000pt;}
.y0_c00368{bottom:0.000000pt;}
.y2_c00368{bottom:41.627067pt;}
.y1_c00368{bottom:60.027067pt;}
.y23_c00368{bottom:133.307067pt;}
.y22_c00368{bottom:160.907067pt;}
.y21_c00368{bottom:188.507067pt;}
.y20_c00368{bottom:216.107067pt;}
.y1f_c00368{bottom:243.707067pt;}
.y1e_c00368{bottom:279.307067pt;}
.y1d_c00368{bottom:306.907067pt;}
.y1c_c00368{bottom:334.507067pt;}
.y1b_c00368{bottom:362.107067pt;}
.y1a_c00368{bottom:389.707067pt;}
.y19_c00368{bottom:417.307067pt;}
.y18_c00368{bottom:444.907067pt;}
.y17_c00368{bottom:480.507067pt;}
.y16_c00368{bottom:506.907067pt;}
.y15_c00368{bottom:525.307067pt;}
.y14_c00368{bottom:543.707067pt;}
.y13_c00368{bottom:562.107067pt;}
.y12_c00368{bottom:580.507067pt;}
.y11_c00368{bottom:598.907067pt;}
.y10_c00368{bottom:617.307067pt;}
.yf_c00368{bottom:635.707067pt;}
.ye_c00368{bottom:654.107067pt;}
.yd_c00368{bottom:689.707067pt;}
.yc_c00368{bottom:717.307067pt;}
.yb_c00368{bottom:744.907067pt;}
.ya_c00368{bottom:772.507067pt;}
.y9_c00368{bottom:800.107067pt;}
.y8_c00368{bottom:827.707067pt;}
.y7_c00368{bottom:855.307067pt;}
.y6_c00368{bottom:882.907067pt;}
.y5_c00368{bottom:910.507067pt;}
.y4_c00368{bottom:946.107067pt;}
.y3_c00368{bottom:972.907067pt;}
.h1_c00368{height:56.156250pt;}
.h3_c00368{height:57.375000pt;}
.h4_c00368{height:66.750000pt;}
.h2_c00368{height:77.763750pt;}
.h0_c00368{height:1122.666667pt;}
.w1_c00368{width:793.333333pt;}
.w0_c00368{width:793.626667pt;}
.x0_c00368{left:0.000000pt;}
.x2_c00368{left:151.200000pt;}
.x3_c00368{left:218.160000pt;}
.x1_c00368{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1b8d002bbb16bbee8d9d1a61.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.093262;font-style:normal;font-weight:normal;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_70f985671b9ef650452e531d.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.106934;font-style: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;}
.ls5_c00369{letter-spacing:-0.108000px;}
.lsb_c00369{letter-spacing:-0.079200px;}
.ls6_c00369{letter-spacing:-0.064800px;}
.ls3_c00369{letter-spacing:-0.057600px;}
.ls7_c00369{letter-spacing:-0.050400px;}
.ls8_c00369{letter-spacing:-0.043200px;}
.ls1_c00369{letter-spacing:-0.036000px;}
.ls2_c00369{letter-spacing:-0.028800px;}
.lsa_c00369{letter-spacing:-0.021600px;}
.ls4_c00369{letter-spacing:-0.014400px;}
.lsc_c00369{letter-spacing:-0.007200px;}
.ls0_c00369{letter-spacing:0.000000px;}
.ls9_c00369{letter-spacing:0.021600px;}
.lsd_c00369{letter-spacing:843.998400px;}
.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;}
}
.ws1a_c00369{word-spacing:-3.031200px;}
.ws2_c00369{word-spacing:-2.980800px;}
.ws1_c00369{word-spacing:-2.937600px;}
.ws5_c00369{word-spacing:-1.980000px;}
.ws1b_c00369{word-spacing:-1.260000px;}
.ws1c_c00369{word-spacing:-1.188000px;}
.ws26_c00369{word-spacing:-0.907200px;}
.ws27_c00369{word-spacing:-0.849600px;}
.ws13_c00369{word-spacing:-0.223200px;}
.ws12_c00369{word-spacing:-0.165600px;}
.ws0_c00369{word-spacing:0.000000px;}
.wsc_c00369{word-spacing:0.136800px;}
.ws25_c00369{word-spacing:0.158400px;}
.ws19_c00369{word-spacing:0.165600px;}
.ws2f_c00369{word-spacing:0.172800px;}
.wsf_c00369{word-spacing:0.187200px;}
.wse_c00369{word-spacing:0.194400px;}
.ws18_c00369{word-spacing:0.201600px;}
.ws6_c00369{word-spacing:0.266400px;}
.ws2e_c00369{word-spacing:0.324000px;}
.ws1f_c00369{word-spacing:3.081600px;}
.ws20_c00369{word-spacing:4.168800px;}
.wsa_c00369{word-spacing:4.773600px;}
.ws9_c00369{word-spacing:4.852800px;}
.ws22_c00369{word-spacing:5.925600px;}
.ws21_c00369{word-spacing:6.033600px;}
.ws23_c00369{word-spacing:7.034400px;}
.ws24_c00369{word-spacing:7.164000px;}
.ws2c_c00369{word-spacing:9.547200px;}
.ws2d_c00369{word-spacing:9.583200px;}
.wsd_c00369{word-spacing:10.260000px;}
.ws10_c00369{word-spacing:12.427200px;}
.ws11_c00369{word-spacing:12.441600px;}
.ws3_c00369{word-spacing:14.558400px;}
.ws4_c00369{word-spacing:14.587200px;}
.ws1d_c00369{word-spacing:14.601600px;}
.ws1e_c00369{word-spacing:14.673600px;}
.ws16_c00369{word-spacing:15.991200px;}
.ws17_c00369{word-spacing:16.041600px;}
.ws15_c00369{word-spacing:17.114400px;}
.ws14_c00369{word-spacing:17.236800px;}
.ws8_c00369{word-spacing:18.208800px;}
.ws7_c00369{word-spacing:18.223200px;}
.ws29_c00369{word-spacing:23.544000px;}
.ws28_c00369{word-spacing:23.594400px;}
.wsb_c00369{word-spacing:33.321600px;}
.ws2b_c00369{word-spacing:46.260000px;}
.ws2a_c00369{word-spacing:46.267200px;}
._0_c00369{width:1.000800px;}
.fc0_c00369{color:rgb(0,0,0);}
.fs0_c00369{font-size:72.000000px;}
.y0_c00369{bottom:0.000000px;}
.y2_c00369{bottom:46.830450px;}
.y1_c00369{bottom:67.530450px;}
.y23_c00369{bottom:166.530450px;}
.y22_c00369{bottom:206.580450px;}
.y21_c00369{bottom:237.630450px;}
.y20_c00369{bottom:268.680450px;}
.y1f_c00369{bottom:299.730450px;}
.y1e_c00369{bottom:330.690450px;}
.y1d_c00369{bottom:370.740450px;}
.y1c_c00369{bottom:400.440450px;}
.y1b_c00369{bottom:421.140450px;}
.y1a_c00369{bottom:441.840450px;}
.y19_c00369{bottom:462.540450px;}
.y18_c00369{bottom:483.240450px;}
.y17_c00369{bottom:503.940450px;}
.y16_c00369{bottom:524.640450px;}
.y15_c00369{bottom:545.340450px;}
.y14_c00369{bottom:566.040450px;}
.y13_c00369{bottom:606.090450px;}
.y12_c00369{bottom:646.140450px;}
.y11_c00369{bottom:677.190450px;}
.y10_c00369{bottom:708.240450px;}
.yf_c00369{bottom:739.290450px;}
.ye_c00369{bottom:770.340450px;}
.yd_c00369{bottom:801.390450px;}
.yc_c00369{bottom:832.440450px;}
.yb_c00369{bottom:872.490450px;}
.ya_c00369{bottom:902.190450px;}
.y9_c00369{bottom:922.890450px;}
.y8_c00369{bottom:943.590450px;}
.y7_c00369{bottom:964.290450px;}
.y6_c00369{bottom:1004.340450px;}
.y5_c00369{bottom:1035.390450px;}
.y4_c00369{bottom:1066.440450px;}
.y3_c00369{bottom:1097.490450px;}
.h1_c00369{height:63.175781px;}
.h2_c00369{height:64.546875px;}
.h0_c00369{height:1263.000000px;}
.w1_c00369{width:892.500000px;}
.w0_c00369{width:892.830000px;}
.x0_c00369{left:0.000000px;}
.x2_c00369{left:127.620000px;}
.x3_c00369{left:202.950000px;}
.x1_c00369{left:695.880000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls5_c00369{letter-spacing:-0.096000pt;}
.lsb_c00369{letter-spacing:-0.070400pt;}
.ls6_c00369{letter-spacing:-0.057600pt;}
.ls3_c00369{letter-spacing:-0.051200pt;}
.ls7_c00369{letter-spacing:-0.044800pt;}
.ls8_c00369{letter-spacing:-0.038400pt;}
.ls1_c00369{letter-spacing:-0.032000pt;}
.ls2_c00369{letter-spacing:-0.025600pt;}
.lsa_c00369{letter-spacing:-0.019200pt;}
.ls4_c00369{letter-spacing:-0.012800pt;}
.lsc_c00369{letter-spacing:-0.006400pt;}
.ls0_c00369{letter-spacing:0.000000pt;}
.ls9_c00369{letter-spacing:0.019200pt;}
.lsd_c00369{letter-spacing:750.220800pt;}
.ws1a_c00369{word-spacing:-2.694400pt;}
.ws2_c00369{word-spacing:-2.649600pt;}
.ws1_c00369{word-spacing:-2.611200pt;}
.ws5_c00369{word-spacing:-1.760000pt;}
.ws1b_c00369{word-spacing:-1.120000pt;}
.ws1c_c00369{word-spacing:-1.056000pt;}
.ws26_c00369{word-spacing:-0.806400pt;}
.ws27_c00369{word-spacing:-0.755200pt;}
.ws13_c00369{word-spacing:-0.198400pt;}
.ws12_c00369{word-spacing:-0.147200pt;}
.ws0_c00369{word-spacing:0.000000pt;}
.wsc_c00369{word-spacing:0.121600pt;}
.ws25_c00369{word-spacing:0.140800pt;}
.ws19_c00369{word-spacing:0.147200pt;}
.ws2f_c00369{word-spacing:0.153600pt;}
.wsf_c00369{word-spacing:0.166400pt;}
.wse_c00369{word-spacing:0.172800pt;}
.ws18_c00369{word-spacing:0.179200pt;}
.ws6_c00369{word-spacing:0.236800pt;}
.ws2e_c00369{word-spacing:0.288000pt;}
.ws1f_c00369{word-spacing:2.739200pt;}
.ws20_c00369{word-spacing:3.705600pt;}
.wsa_c00369{word-spacing:4.243200pt;}
.ws9_c00369{word-spacing:4.313600pt;}
.ws22_c00369{word-spacing:5.267200pt;}
.ws21_c00369{word-spacing:5.363200pt;}
.ws23_c00369{word-spacing:6.252800pt;}
.ws24_c00369{word-spacing:6.368000pt;}
.ws2c_c00369{word-spacing:8.486400pt;}
.ws2d_c00369{word-spacing:8.518400pt;}
.wsd_c00369{word-spacing:9.120000pt;}
.ws10_c00369{word-spacing:11.046400pt;}
.ws11_c00369{word-spacing:11.059200pt;}
.ws3_c00369{word-spacing:12.940800pt;}
.ws4_c00369{word-spacing:12.966400pt;}
.ws1d_c00369{word-spacing:12.979200pt;}
.ws1e_c00369{word-spacing:13.043200pt;}
.ws16_c00369{word-spacing:14.214400pt;}
.ws17_c00369{word-spacing:14.259200pt;}
.ws15_c00369{word-spacing:15.212800pt;}
.ws14_c00369{word-spacing:15.321600pt;}
.ws8_c00369{word-spacing:16.185600pt;}
.ws7_c00369{word-spacing:16.198400pt;}
.ws29_c00369{word-spacing:20.928000pt;}
.ws28_c00369{word-spacing:20.972800pt;}
.wsb_c00369{word-spacing:29.619200pt;}
.ws2b_c00369{word-spacing:41.120000pt;}
.ws2a_c00369{word-spacing:41.126400pt;}
._0_c00369{width:0.889600pt;}
.fs0_c00369{font-size:64.000000pt;}
.y0_c00369{bottom:0.000000pt;}
.y2_c00369{bottom:41.627067pt;}
.y1_c00369{bottom:60.027067pt;}
.y23_c00369{bottom:148.027067pt;}
.y22_c00369{bottom:183.627067pt;}
.y21_c00369{bottom:211.227067pt;}
.y20_c00369{bottom:238.827067pt;}
.y1f_c00369{bottom:266.427067pt;}
.y1e_c00369{bottom:293.947067pt;}
.y1d_c00369{bottom:329.547067pt;}
.y1c_c00369{bottom:355.947067pt;}
.y1b_c00369{bottom:374.347067pt;}
.y1a_c00369{bottom:392.747067pt;}
.y19_c00369{bottom:411.147067pt;}
.y18_c00369{bottom:429.547067pt;}
.y17_c00369{bottom:447.947067pt;}
.y16_c00369{bottom:466.347067pt;}
.y15_c00369{bottom:484.747067pt;}
.y14_c00369{bottom:503.147067pt;}
.y13_c00369{bottom:538.747067pt;}
.y12_c00369{bottom:574.347067pt;}
.y11_c00369{bottom:601.947067pt;}
.y10_c00369{bottom:629.547067pt;}
.yf_c00369{bottom:657.147067pt;}
.ye_c00369{bottom:684.747067pt;}
.yd_c00369{bottom:712.347067pt;}
.yc_c00369{bottom:739.947067pt;}
.yb_c00369{bottom:775.547067pt;}
.ya_c00369{bottom:801.947067pt;}
.y9_c00369{bottom:820.347067pt;}
.y8_c00369{bottom:838.747067pt;}
.y7_c00369{bottom:857.147067pt;}
.y6_c00369{bottom:892.747067pt;}
.y5_c00369{bottom:920.347067pt;}
.y4_c00369{bottom:947.947067pt;}
.y3_c00369{bottom:975.547067pt;}
.h1_c00369{height:56.156250pt;}
.h2_c00369{height:57.375000pt;}
.h0_c00369{height:1122.666667pt;}
.w1_c00369{width:793.333333pt;}
.w0_c00369{width:793.626667pt;}
.x0_c00369{left:0.000000pt;}
.x2_c00369{left:113.440000pt;}
.x3_c00369{left:180.400000pt;}
.x1_c00369{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_45d33aa7c73818ed897c26f0.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.093262;font-style:normal;font-weight:normal;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_ba040d3dca6861b55351464a.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00370;src:url('chunks/assets/font_fd3cf558b2ae30fdf2a94126.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:1.106934;font-style:normal;font-weight:normal;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_c9d6dd348c50234f9f245f39.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00370{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.ls8_c00370{letter-spacing:-0.079200px;}
.ls9_c00370{letter-spacing:-0.064800px;}
.lsc_c00370{letter-spacing:-0.057600px;}
.ls6_c00370{letter-spacing:-0.050400px;}
.lsa_c00370{letter-spacing:-0.043200px;}
.ls3_c00370{letter-spacing:-0.036000px;}
.ls5_c00370{letter-spacing:-0.028800px;}
.lsb_c00370{letter-spacing:-0.021600px;}
.ls7_c00370{letter-spacing:-0.014400px;}
.lsd_c00370{letter-spacing:-0.007200px;}
.ls2_c00370{letter-spacing:0.000000px;}
.ls4_c00370{letter-spacing:0.007200px;}
.ls1_c00370{letter-spacing:0.014400px;}
.ls0_c00370{letter-spacing:0.058716px;}
.lse_c00370{letter-spacing:0.151200px;}
.sc__c00370{text-shadow:none;}
.sc0_c00370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00370{-webkit-text-stroke:0px transparent;}
.sc0_c00370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00370{word-spacing:-19.980000px;}
.ws25_c00370{word-spacing:-3.412800px;}
.ws26_c00370{word-spacing:-3.391200px;}
.ws24_c00370{word-spacing:-3.376800px;}
.ws4_c00370{word-spacing:-2.368800px;}
.ws28_c00370{word-spacing:-2.332800px;}
.ws3_c00370{word-spacing:-2.325600px;}
.ws27_c00370{word-spacing:-2.311200px;}
.ws18_c00370{word-spacing:-2.059200px;}
.ws19_c00370{word-spacing:-1.980000px;}
.ws12_c00370{word-spacing:-1.310400px;}
.ws2e_c00370{word-spacing:-1.296000px;}
.ws13_c00370{word-spacing:-1.281600px;}
.ws2d_c00370{word-spacing:-1.252800px;}
.ws1_c00370{word-spacing:0.000000px;}
.ws2_c00370{word-spacing:0.033552px;}
.ws23_c00370{word-spacing:0.050400px;}
.ws11_c00370{word-spacing:0.180000px;}
.ws1a_c00370{word-spacing:0.194400px;}
.ws22_c00370{word-spacing:0.252000px;}
.ws31_c00370{word-spacing:0.316800px;}
.wsa_c00370{word-spacing:1.288800px;}
.wsb_c00370{word-spacing:1.605600px;}
.wsc_c00370{word-spacing:1.648800px;}
.wsf_c00370{word-spacing:1.987200px;}
.ws10_c00370{word-spacing:2.001600px;}
.ws5_c00370{word-spacing:2.131200px;}
.ws6_c00370{word-spacing:2.224800px;}
.ws1c_c00370{word-spacing:6.595200px;}
.ws1b_c00370{word-spacing:6.688800px;}
.ws1d_c00370{word-spacing:6.696000px;}
.ws2a_c00370{word-spacing:9.532800px;}
.ws29_c00370{word-spacing:9.568800px;}
.ws2c_c00370{word-spacing:16.012800px;}
.ws2b_c00370{word-spacing:16.099200px;}
.ws16_c00370{word-spacing:17.445600px;}
.ws15_c00370{word-spacing:17.553600px;}
.ws14_c00370{word-spacing:18.979200px;}
.ws9_c00370{word-spacing:19.267200px;}
.ws17_c00370{word-spacing:22.838400px;}
.wsd_c00370{word-spacing:26.035200px;}
.wse_c00370{word-spacing:26.071200px;}
.ws2f_c00370{word-spacing:27.856800px;}
.ws30_c00370{word-spacing:27.936000px;}
.ws21_c00370{word-spacing:29.426400px;}
.ws20_c00370{word-spacing:29.433600px;}
.ws1f_c00370{word-spacing:30.744000px;}
.ws1e_c00370{word-spacing:30.787200px;}
.ws7_c00370{word-spacing:35.812800px;}
.ws8_c00370{word-spacing:35.877600px;}
._1_c00370{width:1.029600px;}
._0_c00370{width:153.332640px;}
.fc0_c00370{color:rgb(0,0,0);}
.fs0_c00370{font-size:72.000000px;}
.fs1_c00370{font-size:83.880000px;}
.y0_c00370{bottom:0.000000px;}
.y2_c00370{bottom:46.830450px;}
.y1_c00370{bottom:67.530450px;}
.y21_c00370{bottom:172.020450px;}
.y20_c00370{bottom:203.070450px;}
.y1f_c00370{bottom:234.120450px;}
.y1e_c00370{bottom:265.170450px;}
.y1d_c00370{bottom:296.220450px;}
.y1c_c00370{bottom:327.270450px;}
.y1b_c00370{bottom:367.320450px;}
.y1a_c00370{bottom:398.370450px;}
.y19_c00370{bottom:429.420450px;}
.y18_c00370{bottom:469.470450px;}
.y17_c00370{bottom:500.430450px;}
.y16_c00370{bottom:531.480450px;}
.y15_c00370{bottom:562.620450px;}
.y14_c00370{bottom:602.670450px;}
.y13_c00370{bottom:632.370450px;}
.y12_c00370{bottom:653.070450px;}
.y11_c00370{bottom:673.770450px;}
.y10_c00370{bottom:694.470450px;}
.yf_c00370{bottom:715.170450px;}
.ye_c00370{bottom:735.870450px;}
.yd_c00370{bottom:775.920450px;}
.yc_c00370{bottom:806.970450px;}
.yb_c00370{bottom:838.020450px;}
.ya_c00370{bottom:869.070450px;}
.y9_c00370{bottom:900.120450px;}
.y8_c00370{bottom:931.170450px;}
.y7_c00370{bottom:962.220450px;}
.y6_c00370{bottom:993.270450px;}
.y5_c00370{bottom:1024.320450px;}
.y4_c00370{bottom:1064.370450px;}
.y3_c00370{bottom:1094.520450px;}
.h1_c00370{height:63.175781px;}
.h3_c00370{height:64.546875px;}
.h4_c00370{height:75.093750px;}
.h2_c00370{height:87.484219px;}
.h0_c00370{height:1263.000000px;}
.w1_c00370{width:892.500000px;}
.w0_c00370{width:892.830000px;}
.x0_c00370{left:0.000000px;}
.x2_c00370{left:170.100000px;}
.x3_c00370{left:197.100000px;}
.x4_c00370{left:245.430000px;}
.x1_c00370{left:738.360000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls8_c00370{letter-spacing:-0.070400pt;}
.ls9_c00370{letter-spacing:-0.057600pt;}
.lsc_c00370{letter-spacing:-0.051200pt;}
.ls6_c00370{letter-spacing:-0.044800pt;}
.lsa_c00370{letter-spacing:-0.038400pt;}
.ls3_c00370{letter-spacing:-0.032000pt;}
.ls5_c00370{letter-spacing:-0.025600pt;}
.lsb_c00370{letter-spacing:-0.019200pt;}
.ls7_c00370{letter-spacing:-0.012800pt;}
.lsd_c00370{letter-spacing:-0.006400pt;}
.ls2_c00370{letter-spacing:0.000000pt;}
.ls4_c00370{letter-spacing:0.006400pt;}
.ls1_c00370{letter-spacing:0.012800pt;}
.ls0_c00370{letter-spacing:0.052192pt;}
.lse_c00370{letter-spacing:0.134400pt;}
.ws0_c00370{word-spacing:-17.760000pt;}
.ws25_c00370{word-spacing:-3.033600pt;}
.ws26_c00370{word-spacing:-3.014400pt;}
.ws24_c00370{word-spacing:-3.001600pt;}
.ws4_c00370{word-spacing:-2.105600pt;}
.ws28_c00370{word-spacing:-2.073600pt;}
.ws3_c00370{word-spacing:-2.067200pt;}
.ws27_c00370{word-spacing:-2.054400pt;}
.ws18_c00370{word-spacing:-1.830400pt;}
.ws19_c00370{word-spacing:-1.760000pt;}
.ws12_c00370{word-spacing:-1.164800pt;}
.ws2e_c00370{word-spacing:-1.152000pt;}
.ws13_c00370{word-spacing:-1.139200pt;}
.ws2d_c00370{word-spacing:-1.113600pt;}
.ws1_c00370{word-spacing:0.000000pt;}
.ws2_c00370{word-spacing:0.029824pt;}
.ws23_c00370{word-spacing:0.044800pt;}
.ws11_c00370{word-spacing:0.160000pt;}
.ws1a_c00370{word-spacing:0.172800pt;}
.ws22_c00370{word-spacing:0.224000pt;}
.ws31_c00370{word-spacing:0.281600pt;}
.wsa_c00370{word-spacing:1.145600pt;}
.wsb_c00370{word-spacing:1.427200pt;}
.wsc_c00370{word-spacing:1.465600pt;}
.wsf_c00370{word-spacing:1.766400pt;}
.ws10_c00370{word-spacing:1.779200pt;}
.ws5_c00370{word-spacing:1.894400pt;}
.ws6_c00370{word-spacing:1.977600pt;}
.ws1c_c00370{word-spacing:5.862400pt;}
.ws1b_c00370{word-spacing:5.945600pt;}
.ws1d_c00370{word-spacing:5.952000pt;}
.ws2a_c00370{word-spacing:8.473600pt;}
.ws29_c00370{word-spacing:8.505600pt;}
.ws2c_c00370{word-spacing:14.233600pt;}
.ws2b_c00370{word-spacing:14.310400pt;}
.ws16_c00370{word-spacing:15.507200pt;}
.ws15_c00370{word-spacing:15.603200pt;}
.ws14_c00370{word-spacing:16.870400pt;}
.ws9_c00370{word-spacing:17.126400pt;}
.ws17_c00370{word-spacing:20.300800pt;}
.wsd_c00370{word-spacing:23.142400pt;}
.wse_c00370{word-spacing:23.174400pt;}
.ws2f_c00370{word-spacing:24.761600pt;}
.ws30_c00370{word-spacing:24.832000pt;}
.ws21_c00370{word-spacing:26.156800pt;}
.ws20_c00370{word-spacing:26.163200pt;}
.ws1f_c00370{word-spacing:27.328000pt;}
.ws1e_c00370{word-spacing:27.366400pt;}
.ws7_c00370{word-spacing:31.833600pt;}
.ws8_c00370{word-spacing:31.891200pt;}
._1_c00370{width:0.915200pt;}
._0_c00370{width:136.295680pt;}
.fs0_c00370{font-size:64.000000pt;}
.fs1_c00370{font-size:74.560000pt;}
.y0_c00370{bottom:0.000000pt;}
.y2_c00370{bottom:41.627067pt;}
.y1_c00370{bottom:60.027067pt;}
.y21_c00370{bottom:152.907067pt;}
.y20_c00370{bottom:180.507067pt;}
.y1f_c00370{bottom:208.107067pt;}
.y1e_c00370{bottom:235.707067pt;}
.y1d_c00370{bottom:263.307067pt;}
.y1c_c00370{bottom:290.907067pt;}
.y1b_c00370{bottom:326.507067pt;}
.y1a_c00370{bottom:354.107067pt;}
.y19_c00370{bottom:381.707067pt;}
.y18_c00370{bottom:417.307067pt;}
.y17_c00370{bottom:444.827067pt;}
.y16_c00370{bottom:472.427067pt;}
.y15_c00370{bottom:500.107067pt;}
.y14_c00370{bottom:535.707067pt;}
.y13_c00370{bottom:562.107067pt;}
.y12_c00370{bottom:580.507067pt;}
.y11_c00370{bottom:598.907067pt;}
.y10_c00370{bottom:617.307067pt;}
.yf_c00370{bottom:635.707067pt;}
.ye_c00370{bottom:654.107067pt;}
.yd_c00370{bottom:689.707067pt;}
.yc_c00370{bottom:717.307067pt;}
.yb_c00370{bottom:744.907067pt;}
.ya_c00370{bottom:772.507067pt;}
.y9_c00370{bottom:800.107067pt;}
.y8_c00370{bottom:827.707067pt;}
.y7_c00370{bottom:855.307067pt;}
.y6_c00370{bottom:882.907067pt;}
.y5_c00370{bottom:910.507067pt;}
.y4_c00370{bottom:946.107067pt;}
.y3_c00370{bottom:972.907067pt;}
.h1_c00370{height:56.156250pt;}
.h3_c00370{height:57.375000pt;}
.h4_c00370{height:66.750000pt;}
.h2_c00370{height:77.763750pt;}
.h0_c00370{height:1122.666667pt;}
.w1_c00370{width:793.333333pt;}
.w0_c00370{width:793.626667pt;}
.x0_c00370{left:0.000000pt;}
.x2_c00370{left:151.200000pt;}
.x3_c00370{left:175.200000pt;}
.x4_c00370{left:218.160000pt;}
.x1_c00370{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_478ed73e8ca21bebc325a9b5.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.093262;font-style:normal;font-weight:normal;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_0f5bec25a4e09f38fb052fcb.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.106934;font-style:normal;font-weight:normal;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_371d7a59ca7f53a318262c1f.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00371{letter-spacing:-0.086400px;}
.ls5_c00371{letter-spacing:-0.079200px;}
.ls8_c00371{letter-spacing:-0.072000px;}
.ls2_c00371{letter-spacing:-0.064800px;}
.ls1_c00371{letter-spacing:-0.057600px;}
.lsa_c00371{letter-spacing:-0.050400px;}
.ls3_c00371{letter-spacing:-0.043200px;}
.ls6_c00371{letter-spacing:-0.036000px;}
.ls7_c00371{letter-spacing:-0.028800px;}
.ls4_c00371{letter-spacing:-0.021600px;}
.ls9_c00371{letter-spacing:-0.014400px;}
.lsb_c00371{letter-spacing:-0.007200px;}
.ls0_c00371{letter-spacing:0.000000px;}
.lsd_c00371{letter-spacing:0.007200px;}
.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;}
}
.ws34_c00371{word-spacing:-2.721600px;}
.ws35_c00371{word-spacing:-2.664000px;}
.ws15_c00371{word-spacing:-2.340000px;}
.wsa_c00371{word-spacing:-2.325600px;}
.wsb_c00371{word-spacing:-2.239200px;}
.ws16_c00371{word-spacing:-1.972800px;}
.ws1c_c00371{word-spacing:-1.627200px;}
.ws1b_c00371{word-spacing:-1.490400px;}
.wsd_c00371{word-spacing:-1.281600px;}
.wsc_c00371{word-spacing:-1.209600px;}
.ws25_c00371{word-spacing:-0.892800px;}
.ws26_c00371{word-spacing:-0.820800px;}
.ws1_c00371{word-spacing:-0.144000px;}
.ws2_c00371{word-spacing:-0.136800px;}
.ws28_c00371{word-spacing:-0.028800px;}
.ws1d_c00371{word-spacing:-0.021600px;}
.ws0_c00371{word-spacing:0.000000px;}
.ws8_c00371{word-spacing:0.057600px;}
.ws30_c00371{word-spacing:0.158400px;}
.ws1e_c00371{word-spacing:0.165600px;}
.ws9_c00371{word-spacing:0.187200px;}
.ws32_c00371{word-spacing:0.201600px;}
.ws27_c00371{word-spacing:0.216000px;}
.ws31_c00371{word-spacing:0.266400px;}
.ws29_c00371{word-spacing:0.554400px;}
.ws2e_c00371{word-spacing:2.332800px;}
.ws2f_c00371{word-spacing:2.354400px;}
.ws18_c00371{word-spacing:2.649600px;}
.ws17_c00371{word-spacing:2.678400px;}
.wse_c00371{word-spacing:3.412800px;}
.wsf_c00371{word-spacing:3.535200px;}
.ws2c_c00371{word-spacing:3.715200px;}
.ws2d_c00371{word-spacing:3.794400px;}
.ws7_c00371{word-spacing:3.816000px;}
.ws6_c00371{word-spacing:3.952800px;}
.ws13_c00371{word-spacing:6.170400px;}
.ws14_c00371{word-spacing:6.249600px;}
.ws21_c00371{word-spacing:8.064000px;}
.ws2a_c00371{word-spacing:8.128800px;}
.ws20_c00371{word-spacing:8.193600px;}
.ws1f_c00371{word-spacing:9.554400px;}
.ws4_c00371{word-spacing:12.060000px;}
.ws5_c00371{word-spacing:12.132000px;}
.ws1a_c00371{word-spacing:12.340800px;}
.ws19_c00371{word-spacing:12.434400px;}
.ws23_c00371{word-spacing:15.235200px;}
.ws22_c00371{word-spacing:15.321600px;}
.ws24_c00371{word-spacing:15.364800px;}
.ws36_c00371{word-spacing:16.725600px;}
.ws37_c00371{word-spacing:16.740000px;}
.ws33_c00371{word-spacing:17.798400px;}
.ws3_c00371{word-spacing:22.521600px;}
.ws11_c00371{word-spacing:27.072000px;}
.ws12_c00371{word-spacing:27.201600px;}
.ws10_c00371{word-spacing:27.554400px;}
.ws2b_c00371{word-spacing:30.052800px;}
._0_c00371{width:1.166400px;}
.fc0_c00371{color:rgb(0,0,0);}
.fs0_c00371{font-size:72.000000px;}
.y0_c00371{bottom:0.000000px;}
.y2_c00371{bottom:46.830450px;}
.y1_c00371{bottom:67.530450px;}
.y24_c00371{bottom:152.130450px;}
.y23_c00371{bottom:183.180450px;}
.y22_c00371{bottom:214.230450px;}
.y21_c00371{bottom:245.280450px;}
.y20_c00371{bottom:276.330450px;}
.y1f_c00371{bottom:316.380450px;}
.y1e_c00371{bottom:347.430450px;}
.y1d_c00371{bottom:378.390450px;}
.y1c_c00371{bottom:409.440450px;}
.y1b_c00371{bottom:440.490450px;}
.y1a_c00371{bottom:471.540450px;}
.y19_c00371{bottom:511.590450px;}
.y18_c00371{bottom:542.550450px;}
.y17_c00371{bottom:573.690450px;}
.y16_c00371{bottom:604.740450px;}
.y15_c00371{bottom:635.790450px;}
.y14_c00371{bottom:675.840450px;}
.y13_c00371{bottom:705.540450px;}
.y12_c00371{bottom:726.240450px;}
.y11_c00371{bottom:746.940450px;}
.y10_c00371{bottom:767.640450px;}
.yf_c00371{bottom:788.340450px;}
.ye_c00371{bottom:809.040450px;}
.yd_c00371{bottom:829.740450px;}
.yc_c00371{bottom:850.440450px;}
.yb_c00371{bottom:871.140450px;}
.ya_c00371{bottom:891.840450px;}
.y9_c00371{bottom:912.540450px;}
.y8_c00371{bottom:933.240450px;}
.y7_c00371{bottom:973.290450px;}
.y6_c00371{bottom:1004.340450px;}
.y5_c00371{bottom:1035.390450px;}
.y4_c00371{bottom:1066.440450px;}
.y3_c00371{bottom:1097.490450px;}
.h1_c00371{height:63.175781px;}
.h2_c00371{height:64.546875px;}
.h3_c00371{height:75.093750px;}
.h0_c00371{height:1263.000000px;}
.w1_c00371{width:892.500000px;}
.w0_c00371{width:892.830000px;}
.x0_c00371{left:0.000000px;}
.x2_c00371{left:127.620000px;}
.x3_c00371{left:202.950000px;}
.x1_c00371{left:695.880000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.lsc_c00371{letter-spacing:-0.076800pt;}
.ls5_c00371{letter-spacing:-0.070400pt;}
.ls8_c00371{letter-spacing:-0.064000pt;}
.ls2_c00371{letter-spacing:-0.057600pt;}
.ls1_c00371{letter-spacing:-0.051200pt;}
.lsa_c00371{letter-spacing:-0.044800pt;}
.ls3_c00371{letter-spacing:-0.038400pt;}
.ls6_c00371{letter-spacing:-0.032000pt;}
.ls7_c00371{letter-spacing:-0.025600pt;}
.ls4_c00371{letter-spacing:-0.019200pt;}
.ls9_c00371{letter-spacing:-0.012800pt;}
.lsb_c00371{letter-spacing:-0.006400pt;}
.ls0_c00371{letter-spacing:0.000000pt;}
.lsd_c00371{letter-spacing:0.006400pt;}
.ws34_c00371{word-spacing:-2.419200pt;}
.ws35_c00371{word-spacing:-2.368000pt;}
.ws15_c00371{word-spacing:-2.080000pt;}
.wsa_c00371{word-spacing:-2.067200pt;}
.wsb_c00371{word-spacing:-1.990400pt;}
.ws16_c00371{word-spacing:-1.753600pt;}
.ws1c_c00371{word-spacing:-1.446400pt;}
.ws1b_c00371{word-spacing:-1.324800pt;}
.wsd_c00371{word-spacing:-1.139200pt;}
.wsc_c00371{word-spacing:-1.075200pt;}
.ws25_c00371{word-spacing:-0.793600pt;}
.ws26_c00371{word-spacing:-0.729600pt;}
.ws1_c00371{word-spacing:-0.128000pt;}
.ws2_c00371{word-spacing:-0.121600pt;}
.ws28_c00371{word-spacing:-0.025600pt;}
.ws1d_c00371{word-spacing:-0.019200pt;}
.ws0_c00371{word-spacing:0.000000pt;}
.ws8_c00371{word-spacing:0.051200pt;}
.ws30_c00371{word-spacing:0.140800pt;}
.ws1e_c00371{word-spacing:0.147200pt;}
.ws9_c00371{word-spacing:0.166400pt;}
.ws32_c00371{word-spacing:0.179200pt;}
.ws27_c00371{word-spacing:0.192000pt;}
.ws31_c00371{word-spacing:0.236800pt;}
.ws29_c00371{word-spacing:0.492800pt;}
.ws2e_c00371{word-spacing:2.073600pt;}
.ws2f_c00371{word-spacing:2.092800pt;}
.ws18_c00371{word-spacing:2.355200pt;}
.ws17_c00371{word-spacing:2.380800pt;}
.wse_c00371{word-spacing:3.033600pt;}
.wsf_c00371{word-spacing:3.142400pt;}
.ws2c_c00371{word-spacing:3.302400pt;}
.ws2d_c00371{word-spacing:3.372800pt;}
.ws7_c00371{word-spacing:3.392000pt;}
.ws6_c00371{word-spacing:3.513600pt;}
.ws13_c00371{word-spacing:5.484800pt;}
.ws14_c00371{word-spacing:5.555200pt;}
.ws21_c00371{word-spacing:7.168000pt;}
.ws2a_c00371{word-spacing:7.225600pt;}
.ws20_c00371{word-spacing:7.283200pt;}
.ws1f_c00371{word-spacing:8.492800pt;}
.ws4_c00371{word-spacing:10.720000pt;}
.ws5_c00371{word-spacing:10.784000pt;}
.ws1a_c00371{word-spacing:10.969600pt;}
.ws19_c00371{word-spacing:11.052800pt;}
.ws23_c00371{word-spacing:13.542400pt;}
.ws22_c00371{word-spacing:13.619200pt;}
.ws24_c00371{word-spacing:13.657600pt;}
.ws36_c00371{word-spacing:14.867200pt;}
.ws37_c00371{word-spacing:14.880000pt;}
.ws33_c00371{word-spacing:15.820800pt;}
.ws3_c00371{word-spacing:20.019200pt;}
.ws11_c00371{word-spacing:24.064000pt;}
.ws12_c00371{word-spacing:24.179200pt;}
.ws10_c00371{word-spacing:24.492800pt;}
.ws2b_c00371{word-spacing:26.713600pt;}
._0_c00371{width:1.036800pt;}
.fs0_c00371{font-size:64.000000pt;}
.y0_c00371{bottom:0.000000pt;}
.y2_c00371{bottom:41.627067pt;}
.y1_c00371{bottom:60.027067pt;}
.y24_c00371{bottom:135.227067pt;}
.y23_c00371{bottom:162.827067pt;}
.y22_c00371{bottom:190.427067pt;}
.y21_c00371{bottom:218.027067pt;}
.y20_c00371{bottom:245.627067pt;}
.y1f_c00371{bottom:281.227067pt;}
.y1e_c00371{bottom:308.827067pt;}
.y1d_c00371{bottom:336.347067pt;}
.y1c_c00371{bottom:363.947067pt;}
.y1b_c00371{bottom:391.547067pt;}
.y1a_c00371{bottom:419.147067pt;}
.y19_c00371{bottom:454.747067pt;}
.y18_c00371{bottom:482.267067pt;}
.y17_c00371{bottom:509.947067pt;}
.y16_c00371{bottom:537.547067pt;}
.y15_c00371{bottom:565.147067pt;}
.y14_c00371{bottom:600.747067pt;}
.y13_c00371{bottom:627.147067pt;}
.y12_c00371{bottom:645.547067pt;}
.y11_c00371{bottom:663.947067pt;}
.y10_c00371{bottom:682.347067pt;}
.yf_c00371{bottom:700.747067pt;}
.ye_c00371{bottom:719.147067pt;}
.yd_c00371{bottom:737.547067pt;}
.yc_c00371{bottom:755.947067pt;}
.yb_c00371{bottom:774.347067pt;}
.ya_c00371{bottom:792.747067pt;}
.y9_c00371{bottom:811.147067pt;}
.y8_c00371{bottom:829.547067pt;}
.y7_c00371{bottom:865.147067pt;}
.y6_c00371{bottom:892.747067pt;}
.y5_c00371{bottom:920.347067pt;}
.y4_c00371{bottom:947.947067pt;}
.y3_c00371{bottom:975.547067pt;}
.h1_c00371{height:56.156250pt;}
.h2_c00371{height:57.375000pt;}
.h3_c00371{height:66.750000pt;}
.h0_c00371{height:1122.666667pt;}
.w1_c00371{width:793.333333pt;}
.w0_c00371{width:793.626667pt;}
.x0_c00371{left:0.000000pt;}
.x2_c00371{left:113.440000pt;}
.x3_c00371{left:180.400000pt;}
.x1_c00371{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_00d2ebeb8c27022bab0c8e8f.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.093262;font-style:normal;font-weight:normal;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_7944b7ef99f172e1e5bccb19.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:1.106934;font-style:normal;font-weight:normal;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_192831d9559965ad94e5b4d6.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00372{letter-spacing:-0.079200px;}
.lsd_c00372{letter-spacing:-0.072000px;}
.ls4_c00372{letter-spacing:-0.064800px;}
.lsa_c00372{letter-spacing:-0.057600px;}
.ls8_c00372{letter-spacing:-0.050400px;}
.ls5_c00372{letter-spacing:-0.043200px;}
.ls6_c00372{letter-spacing:-0.036000px;}
.ls3_c00372{letter-spacing:-0.028800px;}
.ls7_c00372{letter-spacing:-0.021600px;}
.lsb_c00372{letter-spacing:-0.014400px;}
.lsc_c00372{letter-spacing:-0.007200px;}
.ls2_c00372{letter-spacing:0.000000px;}
.ls1_c00372{letter-spacing:0.007200px;}
.ls0_c00372{letter-spacing:0.043200px;}
.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;}
}
.ws6_c00372{word-spacing:-3.535200px;}
.ws5_c00372{word-spacing:-3.492000px;}
.ws2b_c00372{word-spacing:-3.412800px;}
.ws2c_c00372{word-spacing:-3.369600px;}
.ws18_c00372{word-spacing:-3.067200px;}
.ws19_c00372{word-spacing:-2.959200px;}
.ws4_c00372{word-spacing:-1.958400px;}
.ws3_c00372{word-spacing:-1.864800px;}
.wsc_c00372{word-spacing:-1.605600px;}
.ws0_c00372{word-spacing:0.000000px;}
.ws14_c00372{word-spacing:0.100800px;}
.ws10_c00372{word-spacing:0.158400px;}
.ws27_c00372{word-spacing:0.165600px;}
.ws38_c00372{word-spacing:0.180000px;}
.wsb_c00372{word-spacing:0.194400px;}
.wse_c00372{word-spacing:0.482400px;}
.wsf_c00372{word-spacing:0.489600px;}
.wsa_c00372{word-spacing:0.540000px;}
.ws11_c00372{word-spacing:0.554400px;}
.ws9_c00372{word-spacing:0.626400px;}
.ws29_c00372{word-spacing:0.885600px;}
.ws2a_c00372{word-spacing:0.921600px;}
.ws1a_c00372{word-spacing:0.943200px;}
.ws32_c00372{word-spacing:1.620000px;}
.ws2d_c00372{word-spacing:1.627200px;}
.ws2e_c00372{word-spacing:1.641600px;}
.ws31_c00372{word-spacing:1.735200px;}
.ws23_c00372{word-spacing:2.001600px;}
.ws24_c00372{word-spacing:2.023200px;}
.ws1d_c00372{word-spacing:3.895200px;}
.ws1e_c00372{word-spacing:3.931200px;}
.ws20_c00372{word-spacing:4.060800px;}
.ws1c_c00372{word-spacing:4.104000px;}
.ws21_c00372{word-spacing:4.168800px;}
.ws25_c00372{word-spacing:5.493600px;}
.ws26_c00372{word-spacing:5.608800px;}
.ws34_c00372{word-spacing:6.998400px;}
.ws35_c00372{word-spacing:7.020000px;}
.ws33_c00372{word-spacing:7.149600px;}
.ws37_c00372{word-spacing:8.488800px;}
.ws36_c00372{word-spacing:8.575200px;}
.ws22_c00372{word-spacing:9.554400px;}
.wsd_c00372{word-spacing:11.008800px;}
.ws2f_c00372{word-spacing:11.685600px;}
.ws30_c00372{word-spacing:11.714400px;}
.ws1b_c00372{word-spacing:16.372800px;}
.ws28_c00372{word-spacing:16.776000px;}
.ws2_c00372{word-spacing:20.340000px;}
.ws1_c00372{word-spacing:20.419200px;}
.ws13_c00372{word-spacing:27.136800px;}
.ws12_c00372{word-spacing:27.216000px;}
.ws1f_c00372{word-spacing:29.397600px;}
.ws7_c00372{word-spacing:39.715200px;}
.ws8_c00372{word-spacing:39.837600px;}
.ws15_c00372{word-spacing:45.921600px;}
.ws16_c00372{word-spacing:55.267200px;}
.ws17_c00372{word-spacing:55.353600px;}
._1_c00372{margin-left:-1.152000px;}
._0_c00372{width:1.260000px;}
.fc0_c00372{color:rgb(0,0,0);}
.fs0_c00372{font-size:72.000000px;}
.y0_c00372{bottom:0.000000px;}
.y2_c00372{bottom:46.830450px;}
.y1_c00372{bottom:67.530450px;}
.y26_c00372{bottom:193.530450px;}
.y25_c00372{bottom:224.580450px;}
.y24_c00372{bottom:255.630450px;}
.y23_c00372{bottom:286.680450px;}
.y22_c00372{bottom:317.730450px;}
.y21_c00372{bottom:348.690450px;}
.y20_c00372{bottom:379.740450px;}
.y1f_c00372{bottom:410.790450px;}
.y1e_c00372{bottom:441.840450px;}
.y1d_c00372{bottom:481.890450px;}
.y1c_c00372{bottom:511.590450px;}
.y1b_c00372{bottom:532.290450px;}
.y1a_c00372{bottom:552.990450px;}
.y19_c00372{bottom:573.690450px;}
.y18_c00372{bottom:594.390450px;}
.y17_c00372{bottom:615.090450px;}
.y16_c00372{bottom:635.790450px;}
.y15_c00372{bottom:656.490450px;}
.y14_c00372{bottom:677.190450px;}
.y13_c00372{bottom:697.890450px;}
.y12_c00372{bottom:718.590450px;}
.y11_c00372{bottom:739.290450px;}
.y10_c00372{bottom:779.340450px;}
.yf_c00372{bottom:810.390450px;}
.ye_c00372{bottom:841.440450px;}
.yd_c00372{bottom:881.490450px;}
.yc_c00372{bottom:911.190450px;}
.yb_c00372{bottom:931.890450px;}
.ya_c00372{bottom:952.590450px;}
.y9_c00372{bottom:973.290450px;}
.y8_c00372{bottom:993.990450px;}
.y7_c00372{bottom:1014.690450px;}
.y6_c00372{bottom:1035.390450px;}
.y5_c00372{bottom:1056.090450px;}
.y4_c00372{bottom:1076.790450px;}
.y3_c00372{bottom:1097.490450px;}
.h1_c00372{height:63.175781px;}
.h2_c00372{height:64.546875px;}
.h3_c00372{height:75.093750px;}
.h0_c00372{height:1263.000000px;}
.w1_c00372{width:892.500000px;}
.w0_c00372{width:892.830000px;}
.x0_c00372{left:0.000000px;}
.x2_c00372{left:170.100000px;}
.x3_c00372{left:245.430000px;}
.x1_c00372{left:738.360000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls9_c00372{letter-spacing:-0.070400pt;}
.lsd_c00372{letter-spacing:-0.064000pt;}
.ls4_c00372{letter-spacing:-0.057600pt;}
.lsa_c00372{letter-spacing:-0.051200pt;}
.ls8_c00372{letter-spacing:-0.044800pt;}
.ls5_c00372{letter-spacing:-0.038400pt;}
.ls6_c00372{letter-spacing:-0.032000pt;}
.ls3_c00372{letter-spacing:-0.025600pt;}
.ls7_c00372{letter-spacing:-0.019200pt;}
.lsb_c00372{letter-spacing:-0.012800pt;}
.lsc_c00372{letter-spacing:-0.006400pt;}
.ls2_c00372{letter-spacing:0.000000pt;}
.ls1_c00372{letter-spacing:0.006400pt;}
.ls0_c00372{letter-spacing:0.038400pt;}
.ws6_c00372{word-spacing:-3.142400pt;}
.ws5_c00372{word-spacing:-3.104000pt;}
.ws2b_c00372{word-spacing:-3.033600pt;}
.ws2c_c00372{word-spacing:-2.995200pt;}
.ws18_c00372{word-spacing:-2.726400pt;}
.ws19_c00372{word-spacing:-2.630400pt;}
.ws4_c00372{word-spacing:-1.740800pt;}
.ws3_c00372{word-spacing:-1.657600pt;}
.wsc_c00372{word-spacing:-1.427200pt;}
.ws0_c00372{word-spacing:0.000000pt;}
.ws14_c00372{word-spacing:0.089600pt;}
.ws10_c00372{word-spacing:0.140800pt;}
.ws27_c00372{word-spacing:0.147200pt;}
.ws38_c00372{word-spacing:0.160000pt;}
.wsb_c00372{word-spacing:0.172800pt;}
.wse_c00372{word-spacing:0.428800pt;}
.wsf_c00372{word-spacing:0.435200pt;}
.wsa_c00372{word-spacing:0.480000pt;}
.ws11_c00372{word-spacing:0.492800pt;}
.ws9_c00372{word-spacing:0.556800pt;}
.ws29_c00372{word-spacing:0.787200pt;}
.ws2a_c00372{word-spacing:0.819200pt;}
.ws1a_c00372{word-spacing:0.838400pt;}
.ws32_c00372{word-spacing:1.440000pt;}
.ws2d_c00372{word-spacing:1.446400pt;}
.ws2e_c00372{word-spacing:1.459200pt;}
.ws31_c00372{word-spacing:1.542400pt;}
.ws23_c00372{word-spacing:1.779200pt;}
.ws24_c00372{word-spacing:1.798400pt;}
.ws1d_c00372{word-spacing:3.462400pt;}
.ws1e_c00372{word-spacing:3.494400pt;}
.ws20_c00372{word-spacing:3.609600pt;}
.ws1c_c00372{word-spacing:3.648000pt;}
.ws21_c00372{word-spacing:3.705600pt;}
.ws25_c00372{word-spacing:4.883200pt;}
.ws26_c00372{word-spacing:4.985600pt;}
.ws34_c00372{word-spacing:6.220800pt;}
.ws35_c00372{word-spacing:6.240000pt;}
.ws33_c00372{word-spacing:6.355200pt;}
.ws37_c00372{word-spacing:7.545600pt;}
.ws36_c00372{word-spacing:7.622400pt;}
.ws22_c00372{word-spacing:8.492800pt;}
.wsd_c00372{word-spacing:9.785600pt;}
.ws2f_c00372{word-spacing:10.387200pt;}
.ws30_c00372{word-spacing:10.412800pt;}
.ws1b_c00372{word-spacing:14.553600pt;}
.ws28_c00372{word-spacing:14.912000pt;}
.ws2_c00372{word-spacing:18.080000pt;}
.ws1_c00372{word-spacing:18.150400pt;}
.ws13_c00372{word-spacing:24.121600pt;}
.ws12_c00372{word-spacing:24.192000pt;}
.ws1f_c00372{word-spacing:26.131200pt;}
.ws7_c00372{word-spacing:35.302400pt;}
.ws8_c00372{word-spacing:35.411200pt;}
.ws15_c00372{word-spacing:40.819200pt;}
.ws16_c00372{word-spacing:49.126400pt;}
.ws17_c00372{word-spacing:49.203200pt;}
._1_c00372{margin-left:-1.024000pt;}
._0_c00372{width:1.120000pt;}
.fs0_c00372{font-size:64.000000pt;}
.y0_c00372{bottom:0.000000pt;}
.y2_c00372{bottom:41.627067pt;}
.y1_c00372{bottom:60.027067pt;}
.y26_c00372{bottom:172.027067pt;}
.y25_c00372{bottom:199.627067pt;}
.y24_c00372{bottom:227.227067pt;}
.y23_c00372{bottom:254.827067pt;}
.y22_c00372{bottom:282.427067pt;}
.y21_c00372{bottom:309.947067pt;}
.y20_c00372{bottom:337.547067pt;}
.y1f_c00372{bottom:365.147067pt;}
.y1e_c00372{bottom:392.747067pt;}
.y1d_c00372{bottom:428.347067pt;}
.y1c_c00372{bottom:454.747067pt;}
.y1b_c00372{bottom:473.147067pt;}
.y1a_c00372{bottom:491.547067pt;}
.y19_c00372{bottom:509.947067pt;}
.y18_c00372{bottom:528.347067pt;}
.y17_c00372{bottom:546.747067pt;}
.y16_c00372{bottom:565.147067pt;}
.y15_c00372{bottom:583.547067pt;}
.y14_c00372{bottom:601.947067pt;}
.y13_c00372{bottom:620.347067pt;}
.y12_c00372{bottom:638.747067pt;}
.y11_c00372{bottom:657.147067pt;}
.y10_c00372{bottom:692.747067pt;}
.yf_c00372{bottom:720.347067pt;}
.ye_c00372{bottom:747.947067pt;}
.yd_c00372{bottom:783.547067pt;}
.yc_c00372{bottom:809.947067pt;}
.yb_c00372{bottom:828.347067pt;}
.ya_c00372{bottom:846.747067pt;}
.y9_c00372{bottom:865.147067pt;}
.y8_c00372{bottom:883.547067pt;}
.y7_c00372{bottom:901.947067pt;}
.y6_c00372{bottom:920.347067pt;}
.y5_c00372{bottom:938.747067pt;}
.y4_c00372{bottom:957.147067pt;}
.y3_c00372{bottom:975.547067pt;}
.h1_c00372{height:56.156250pt;}
.h2_c00372{height:57.375000pt;}
.h3_c00372{height:66.750000pt;}
.h0_c00372{height:1122.666667pt;}
.w1_c00372{width:793.333333pt;}
.w0_c00372{width:793.626667pt;}
.x0_c00372{left:0.000000pt;}
.x2_c00372{left:151.200000pt;}
.x3_c00372{left:218.160000pt;}
.x1_c00372{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d503944409faa6c7b71cd395.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.093262;font-style:normal;font-weight:normal;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_983d542f773239b58045af3a.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00373;src:url('chunks/assets/font_5425c86b6008c9f74b8dccdf.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:1.106934;font-style: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;}
.lsc_c00373{letter-spacing:-0.086400px;}
.lsd_c00373{letter-spacing:-0.072000px;}
.lsa_c00373{letter-spacing:-0.064800px;}
.ls2_c00373{letter-spacing:-0.057600px;}
.lsb_c00373{letter-spacing:-0.050400px;}
.ls4_c00373{letter-spacing:-0.043200px;}
.ls5_c00373{letter-spacing:-0.036000px;}
.ls9_c00373{letter-spacing:-0.028800px;}
.ls3_c00373{letter-spacing:-0.021600px;}
.ls6_c00373{letter-spacing:-0.014400px;}
.ls7_c00373{letter-spacing:-0.007200px;}
.ls1_c00373{letter-spacing:0.000000px;}
.ls0_c00373{letter-spacing:0.007200px;}
.ls8_c00373{letter-spacing:0.014400px;}
.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:-20.023200px;}
.ws0_c00373{word-spacing:-19.958400px;}
.ws13_c00373{word-spacing:-3.837600px;}
.ws14_c00373{word-spacing:-3.830400px;}
.ws5_c00373{word-spacing:-3.405600px;}
.ws6_c00373{word-spacing:-3.384000px;}
.ws1e_c00373{word-spacing:-2.419200px;}
.ws33_c00373{word-spacing:-2.361600px;}
.ws1f_c00373{word-spacing:-2.318400px;}
.ws32_c00373{word-spacing:-2.304000px;}
.ws34_c00373{word-spacing:-2.289600px;}
.ws2_c00373{word-spacing:0.000000px;}
.ws1c_c00373{word-spacing:0.100800px;}
.ws2f_c00373{word-spacing:0.122400px;}
.ws30_c00373{word-spacing:0.165600px;}
.ws22_c00373{word-spacing:0.172800px;}
.ws15_c00373{word-spacing:0.180000px;}
.ws1d_c00373{word-spacing:0.187200px;}
.ws16_c00373{word-spacing:0.194400px;}
.ws17_c00373{word-spacing:0.208800px;}
.ws11_c00373{word-spacing:0.561600px;}
.ws12_c00373{word-spacing:0.640800px;}
.wsd_c00373{word-spacing:1.245600px;}
.wse_c00373{word-spacing:1.267200px;}
.ws23_c00373{word-spacing:2.340000px;}
.ws25_c00373{word-spacing:2.390400px;}
.ws24_c00373{word-spacing:2.412000px;}
.ws2a_c00373{word-spacing:2.728800px;}
.ws2d_c00373{word-spacing:3.009600px;}
.ws2e_c00373{word-spacing:3.067200px;}
.wsc_c00373{word-spacing:3.405600px;}
.wsb_c00373{word-spacing:3.434400px;}
.ws7_c00373{word-spacing:4.298400px;}
.ws8_c00373{word-spacing:4.478400px;}
.ws10_c00373{word-spacing:5.940000px;}
.wsf_c00373{word-spacing:5.961600px;}
.ws19_c00373{word-spacing:7.027200px;}
.ws18_c00373{word-spacing:7.048800px;}
.ws26_c00373{word-spacing:7.272000px;}
.ws27_c00373{word-spacing:7.408800px;}
.wsa_c00373{word-spacing:10.972800px;}
.ws9_c00373{word-spacing:10.980000px;}
.ws29_c00373{word-spacing:11.656800px;}
.ws28_c00373{word-spacing:11.664000px;}
.ws2b_c00373{word-spacing:13.464000px;}
.ws2c_c00373{word-spacing:13.528800px;}
.ws20_c00373{word-spacing:13.874400px;}
.ws21_c00373{word-spacing:13.903200px;}
.ws3_c00373{word-spacing:15.300000px;}
.ws4_c00373{word-spacing:15.321600px;}
.ws1b_c00373{word-spacing:16.380000px;}
.ws1a_c00373{word-spacing:16.437600px;}
.ws31_c00373{word-spacing:16.509600px;}
._2_c00373{margin-left:-11.448000px;}
._1_c00373{margin-left:-2.332800px;}
._0_c00373{width:1.116000px;}
.fc0_c00373{color:rgb(0,0,0);}
.fs0_c00373{font-size:72.000000px;}
.y0_c00373{bottom:0.000000px;}
.y2_c00373{bottom:46.830450px;}
.y1_c00373{bottom:67.530450px;}
.y1f_c00373{bottom:174.180450px;}
.y1e_c00373{bottom:205.230450px;}
.y1d_c00373{bottom:245.280450px;}
.y1c_c00373{bottom:276.330450px;}
.y1b_c00373{bottom:307.380450px;}
.y1a_c00373{bottom:338.430450px;}
.y19_c00373{bottom:369.390450px;}
.y18_c00373{bottom:409.440450px;}
.y17_c00373{bottom:440.490450px;}
.y16_c00373{bottom:471.540450px;}
.y15_c00373{bottom:502.590450px;}
.y14_c00373{bottom:542.640450px;}
.y13_c00373{bottom:573.690450px;}
.y12_c00373{bottom:604.740450px;}
.y11_c00373{bottom:644.790450px;}
.y10_c00373{bottom:675.840450px;}
.yf_c00373{bottom:706.890450px;}
.ye_c00373{bottom:737.940450px;}
.yd_c00373{bottom:777.990450px;}
.yc_c00373{bottom:809.040450px;}
.yb_c00373{bottom:840.090450px;}
.ya_c00373{bottom:871.140450px;}
.y9_c00373{bottom:902.190450px;}
.y8_c00373{bottom:942.240450px;}
.y7_c00373{bottom:973.290450px;}
.y6_c00373{bottom:1004.340450px;}
.y5_c00373{bottom:1035.390450px;}
.y4_c00373{bottom:1066.440450px;}
.y3_c00373{bottom:1097.490450px;}
.h1_c00373{height:63.175781px;}
.h3_c00373{height:64.546875px;}
.h2_c00373{height:75.093750px;}
.h0_c00373{height:1263.000000px;}
.w1_c00373{width:892.500000px;}
.w0_c00373{width:892.830000px;}
.x0_c00373{left:0.000000px;}
.x2_c00373{left:127.620000px;}
.x1_c00373{left:695.880000px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.lsc_c00373{letter-spacing:-0.076800pt;}
.lsd_c00373{letter-spacing:-0.064000pt;}
.lsa_c00373{letter-spacing:-0.057600pt;}
.ls2_c00373{letter-spacing:-0.051200pt;}
.lsb_c00373{letter-spacing:-0.044800pt;}
.ls4_c00373{letter-spacing:-0.038400pt;}
.ls5_c00373{letter-spacing:-0.032000pt;}
.ls9_c00373{letter-spacing:-0.025600pt;}
.ls3_c00373{letter-spacing:-0.019200pt;}
.ls6_c00373{letter-spacing:-0.012800pt;}
.ls7_c00373{letter-spacing:-0.006400pt;}
.ls1_c00373{letter-spacing:0.000000pt;}
.ls0_c00373{letter-spacing:0.006400pt;}
.ls8_c00373{letter-spacing:0.012800pt;}
.ws1_c00373{word-spacing:-17.798400pt;}
.ws0_c00373{word-spacing:-17.740800pt;}
.ws13_c00373{word-spacing:-3.411200pt;}
.ws14_c00373{word-spacing:-3.404800pt;}
.ws5_c00373{word-spacing:-3.027200pt;}
.ws6_c00373{word-spacing:-3.008000pt;}
.ws1e_c00373{word-spacing:-2.150400pt;}
.ws33_c00373{word-spacing:-2.099200pt;}
.ws1f_c00373{word-spacing:-2.060800pt;}
.ws32_c00373{word-spacing:-2.048000pt;}
.ws34_c00373{word-spacing:-2.035200pt;}
.ws2_c00373{word-spacing:0.000000pt;}
.ws1c_c00373{word-spacing:0.089600pt;}
.ws2f_c00373{word-spacing:0.108800pt;}
.ws30_c00373{word-spacing:0.147200pt;}
.ws22_c00373{word-spacing:0.153600pt;}
.ws15_c00373{word-spacing:0.160000pt;}
.ws1d_c00373{word-spacing:0.166400pt;}
.ws16_c00373{word-spacing:0.172800pt;}
.ws17_c00373{word-spacing:0.185600pt;}
.ws11_c00373{word-spacing:0.499200pt;}
.ws12_c00373{word-spacing:0.569600pt;}
.wsd_c00373{word-spacing:1.107200pt;}
.wse_c00373{word-spacing:1.126400pt;}
.ws23_c00373{word-spacing:2.080000pt;}
.ws25_c00373{word-spacing:2.124800pt;}
.ws24_c00373{word-spacing:2.144000pt;}
.ws2a_c00373{word-spacing:2.425600pt;}
.ws2d_c00373{word-spacing:2.675200pt;}
.ws2e_c00373{word-spacing:2.726400pt;}
.wsc_c00373{word-spacing:3.027200pt;}
.wsb_c00373{word-spacing:3.052800pt;}
.ws7_c00373{word-spacing:3.820800pt;}
.ws8_c00373{word-spacing:3.980800pt;}
.ws10_c00373{word-spacing:5.280000pt;}
.wsf_c00373{word-spacing:5.299200pt;}
.ws19_c00373{word-spacing:6.246400pt;}
.ws18_c00373{word-spacing:6.265600pt;}
.ws26_c00373{word-spacing:6.464000pt;}
.ws27_c00373{word-spacing:6.585600pt;}
.wsa_c00373{word-spacing:9.753600pt;}
.ws9_c00373{word-spacing:9.760000pt;}
.ws29_c00373{word-spacing:10.361600pt;}
.ws28_c00373{word-spacing:10.368000pt;}
.ws2b_c00373{word-spacing:11.968000pt;}
.ws2c_c00373{word-spacing:12.025600pt;}
.ws20_c00373{word-spacing:12.332800pt;}
.ws21_c00373{word-spacing:12.358400pt;}
.ws3_c00373{word-spacing:13.600000pt;}
.ws4_c00373{word-spacing:13.619200pt;}
.ws1b_c00373{word-spacing:14.560000pt;}
.ws1a_c00373{word-spacing:14.611200pt;}
.ws31_c00373{word-spacing:14.675200pt;}
._2_c00373{margin-left:-10.176000pt;}
._1_c00373{margin-left:-2.073600pt;}
._0_c00373{width:0.992000pt;}
.fs0_c00373{font-size:64.000000pt;}
.y0_c00373{bottom:0.000000pt;}
.y2_c00373{bottom:41.627067pt;}
.y1_c00373{bottom:60.027067pt;}
.y1f_c00373{bottom:154.827067pt;}
.y1e_c00373{bottom:182.427067pt;}
.y1d_c00373{bottom:218.027067pt;}
.y1c_c00373{bottom:245.627067pt;}
.y1b_c00373{bottom:273.227067pt;}
.y1a_c00373{bottom:300.827067pt;}
.y19_c00373{bottom:328.347067pt;}
.y18_c00373{bottom:363.947067pt;}
.y17_c00373{bottom:391.547067pt;}
.y16_c00373{bottom:419.147067pt;}
.y15_c00373{bottom:446.747067pt;}
.y14_c00373{bottom:482.347067pt;}
.y13_c00373{bottom:509.947067pt;}
.y12_c00373{bottom:537.547067pt;}
.y11_c00373{bottom:573.147067pt;}
.y10_c00373{bottom:600.747067pt;}
.yf_c00373{bottom:628.347067pt;}
.ye_c00373{bottom:655.947067pt;}
.yd_c00373{bottom:691.547067pt;}
.yc_c00373{bottom:719.147067pt;}
.yb_c00373{bottom:746.747067pt;}
.ya_c00373{bottom:774.347067pt;}
.y9_c00373{bottom:801.947067pt;}
.y8_c00373{bottom:837.547067pt;}
.y7_c00373{bottom:865.147067pt;}
.y6_c00373{bottom:892.747067pt;}
.y5_c00373{bottom:920.347067pt;}
.y4_c00373{bottom:947.947067pt;}
.y3_c00373{bottom:975.547067pt;}
.h1_c00373{height:56.156250pt;}
.h3_c00373{height:57.375000pt;}
.h2_c00373{height:66.750000pt;}
.h0_c00373{height:1122.666667pt;}
.w1_c00373{width:793.333333pt;}
.w0_c00373{width:793.626667pt;}
.x0_c00373{left:0.000000pt;}
.x2_c00373{left:113.440000pt;}
.x1_c00373{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_45d96eae3d04d638f71a2c6f.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.093262;font-style:normal;font-weight:normal;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_f5e4e08a9f2c0a1a92c5235e.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.ls4_c00374{letter-spacing:-0.072000px;}
.ls7_c00374{letter-spacing:-0.064800px;}
.ls2_c00374{letter-spacing:-0.057600px;}
.ls8_c00374{letter-spacing:-0.043200px;}
.ls3_c00374{letter-spacing:-0.036000px;}
.ls5_c00374{letter-spacing:-0.028800px;}
.ls1_c00374{letter-spacing:-0.021600px;}
.ls0_c00374{letter-spacing:0.000000px;}
.ls6_c00374{letter-spacing:0.007200px;}
.ls9_c00374{letter-spacing:0.036000px;}
.lsa_c00374{letter-spacing:843.998400px;}
.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;}
}
.ws7_c00374{word-spacing:-2.433600px;}
.ws6_c00374{word-spacing:-2.347200px;}
.wse_c00374{word-spacing:-2.030400px;}
.wsd_c00374{word-spacing:-1.994400px;}
.wsc_c00374{word-spacing:-1.245600px;}
.ws5_c00374{word-spacing:-0.885600px;}
.wsb_c00374{word-spacing:-0.028800px;}
.ws0_c00374{word-spacing:0.000000px;}
.wsa_c00374{word-spacing:0.086400px;}
.ws2_c00374{word-spacing:0.396000px;}
.ws13_c00374{word-spacing:2.340000px;}
.ws12_c00374{word-spacing:2.347200px;}
.ws8_c00374{word-spacing:5.558400px;}
.ws9_c00374{word-spacing:5.587200px;}
.ws3_c00374{word-spacing:6.660000px;}
.ws4_c00374{word-spacing:6.746400px;}
.ws1_c00374{word-spacing:14.940000px;}
.wsf_c00374{word-spacing:20.030400px;}
.ws10_c00374{word-spacing:21.420000px;}
.ws11_c00374{word-spacing:21.463200px;}
._0_c00374{width:1.116000px;}
.fc0_c00374{color:rgb(0,0,0);}
.fs0_c00374{font-size:72.000000px;}
.y0_c00374{bottom:0.000000px;}
.y2_c00374{bottom:46.830450px;}
.y1_c00374{bottom:67.530450px;}
.y11_c00374{bottom:688.890450px;}
.y10_c00374{bottom:728.940450px;}
.yf_c00374{bottom:758.640450px;}
.ye_c00374{bottom:779.340450px;}
.yd_c00374{bottom:800.040450px;}
.yc_c00374{bottom:820.740450px;}
.yb_c00374{bottom:841.440450px;}
.ya_c00374{bottom:862.140450px;}
.y9_c00374{bottom:902.190450px;}
.y8_c00374{bottom:933.240450px;}
.y7_c00374{bottom:964.290450px;}
.y6_c00374{bottom:995.340450px;}
.y5_c00374{bottom:1026.390450px;}
.y4_c00374{bottom:1066.440450px;}
.y3_c00374{bottom:1097.490450px;}
.h1_c00374{height:63.175781px;}
.h2_c00374{height:64.546875px;}
.h0_c00374{height:1263.000000px;}
.w1_c00374{width:892.500000px;}
.w0_c00374{width:892.830000px;}
.x0_c00374{left:0.000000px;}
.x2_c00374{left:170.100000px;}
.x3_c00374{left:245.430000px;}
.x1_c00374{left:738.360000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls4_c00374{letter-spacing:-0.064000pt;}
.ls7_c00374{letter-spacing:-0.057600pt;}
.ls2_c00374{letter-spacing:-0.051200pt;}
.ls8_c00374{letter-spacing:-0.038400pt;}
.ls3_c00374{letter-spacing:-0.032000pt;}
.ls5_c00374{letter-spacing:-0.025600pt;}
.ls1_c00374{letter-spacing:-0.019200pt;}
.ls0_c00374{letter-spacing:0.000000pt;}
.ls6_c00374{letter-spacing:0.006400pt;}
.ls9_c00374{letter-spacing:0.032000pt;}
.lsa_c00374{letter-spacing:750.220800pt;}
.ws7_c00374{word-spacing:-2.163200pt;}
.ws6_c00374{word-spacing:-2.086400pt;}
.wse_c00374{word-spacing:-1.804800pt;}
.wsd_c00374{word-spacing:-1.772800pt;}
.wsc_c00374{word-spacing:-1.107200pt;}
.ws5_c00374{word-spacing:-0.787200pt;}
.wsb_c00374{word-spacing:-0.025600pt;}
.ws0_c00374{word-spacing:0.000000pt;}
.wsa_c00374{word-spacing:0.076800pt;}
.ws2_c00374{word-spacing:0.352000pt;}
.ws13_c00374{word-spacing:2.080000pt;}
.ws12_c00374{word-spacing:2.086400pt;}
.ws8_c00374{word-spacing:4.940800pt;}
.ws9_c00374{word-spacing:4.966400pt;}
.ws3_c00374{word-spacing:5.920000pt;}
.ws4_c00374{word-spacing:5.996800pt;}
.ws1_c00374{word-spacing:13.280000pt;}
.wsf_c00374{word-spacing:17.804800pt;}
.ws10_c00374{word-spacing:19.040000pt;}
.ws11_c00374{word-spacing:19.078400pt;}
._0_c00374{width:0.992000pt;}
.fs0_c00374{font-size:64.000000pt;}
.y0_c00374{bottom:0.000000pt;}
.y2_c00374{bottom:41.627067pt;}
.y1_c00374{bottom:60.027067pt;}
.y11_c00374{bottom:612.347067pt;}
.y10_c00374{bottom:647.947067pt;}
.yf_c00374{bottom:674.347067pt;}
.ye_c00374{bottom:692.747067pt;}
.yd_c00374{bottom:711.147067pt;}
.yc_c00374{bottom:729.547067pt;}
.yb_c00374{bottom:747.947067pt;}
.ya_c00374{bottom:766.347067pt;}
.y9_c00374{bottom:801.947067pt;}
.y8_c00374{bottom:829.547067pt;}
.y7_c00374{bottom:857.147067pt;}
.y6_c00374{bottom:884.747067pt;}
.y5_c00374{bottom:912.347067pt;}
.y4_c00374{bottom:947.947067pt;}
.y3_c00374{bottom:975.547067pt;}
.h1_c00374{height:56.156250pt;}
.h2_c00374{height:57.375000pt;}
.h0_c00374{height:1122.666667pt;}
.w1_c00374{width:793.333333pt;}
.w0_c00374{width:793.626667pt;}
.x0_c00374{left:0.000000pt;}
.x2_c00374{left:151.200000pt;}
.x3_c00374{left:218.160000pt;}
.x1_c00374{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_248a958e6129ef9b783d7693.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:1.106934;font-style: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;}
.ls0_c00375{letter-spacing:0.000000px;}
.ls1_c00375{letter-spacing:843.998400px;}
.sc__c00375{text-shadow:none;}
.sc0_c00375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00375{-webkit-text-stroke:0px transparent;}
.sc0_c00375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00375{word-spacing:0.000000px;}
.fc0_c00375{color:rgb(0,0,0);}
.fs0_c00375{font-size:72.000000px;}
.y0_c00375{bottom:0.000000px;}
.y2_c00375{bottom:46.830450px;}
.y1_c00375{bottom:67.530450px;}
.y4_c00375{bottom:1057.440450px;}
.y3_c00375{bottom:1097.490450px;}
.h1_c00375{height:63.175781px;}
.h2_c00375{height:64.546875px;}
.h0_c00375{height:1263.000000px;}
.w1_c00375{width:892.500000px;}
.w0_c00375{width:892.830000px;}
.x0_c00375{left:0.000000px;}
.x2_c00375{left:127.620000px;}
.x1_c00375{left:695.880000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls0_c00375{letter-spacing:0.000000pt;}
.ls1_c00375{letter-spacing:750.220800pt;}
.ws0_c00375{word-spacing:0.000000pt;}
.fs0_c00375{font-size:64.000000pt;}
.y0_c00375{bottom:0.000000pt;}
.y2_c00375{bottom:41.627067pt;}
.y1_c00375{bottom:60.027067pt;}
.y4_c00375{bottom:939.947067pt;}
.y3_c00375{bottom:975.547067pt;}
.h1_c00375{height:56.156250pt;}
.h2_c00375{height:57.375000pt;}
.h0_c00375{height:1122.666667pt;}
.w1_c00375{width:793.333333pt;}
.w0_c00375{width:793.626667pt;}
.x0_c00375{left:0.000000pt;}
.x2_c00375{left:113.440000pt;}
.x1_c00375{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_00d2ebeb8c27022bab0c8e8f.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.093262;font-style:normal;font-weight:normal;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_f82d99b54bee1f4dfb9a8647.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00376;src:url('chunks/assets/font_a69ef6e653ee10e820b2001a.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.106934;font-style:normal;font-weight:normal;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_d9a2b3514724760d7d0519fc.woff2')format("woff");}.ff4_c00376{font-family:ff4_c00376;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00376{letter-spacing:-0.079200px;}
.lsb_c00376{letter-spacing:-0.057600px;}
.lsa_c00376{letter-spacing:-0.050400px;}
.ls7_c00376{letter-spacing:-0.043200px;}
.ls6_c00376{letter-spacing:-0.036000px;}
.lse_c00376{letter-spacing:-0.028800px;}
.ls8_c00376{letter-spacing:-0.021600px;}
.lsd_c00376{letter-spacing:-0.014400px;}
.ls9_c00376{letter-spacing:-0.007200px;}
.ls5_c00376{letter-spacing:0.000000px;}
.ls4_c00376{letter-spacing:0.007200px;}
.ls3_c00376{letter-spacing:0.028800px;}
.ls0_c00376{letter-spacing:0.058716px;}
.ls1_c00376{letter-spacing:0.086400px;}
.ls2_c00376{letter-spacing:0.144000px;}
.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;}
}
.ws0_c00376{word-spacing:-20.102400px;}
.ws2_c00376{word-spacing:-20.044800px;}
.ws1_c00376{word-spacing:-19.994400px;}
.ws8_c00376{word-spacing:-3.780000px;}
.ws7_c00376{word-spacing:-3.758400px;}
.ws2d_c00376{word-spacing:-3.405600px;}
.ws18_c00376{word-spacing:-2.376000px;}
.ws16_c00376{word-spacing:-2.340000px;}
.ws17_c00376{word-spacing:-2.282400px;}
.ws35_c00376{word-spacing:-1.584000px;}
.ws3_c00376{word-spacing:0.000000px;}
.ws4_c00376{word-spacing:0.033552px;}
.ws21_c00376{word-spacing:0.165600px;}
.ws11_c00376{word-spacing:0.194400px;}
.ws23_c00376{word-spacing:0.842400px;}
.ws24_c00376{word-spacing:0.892800px;}
.ws28_c00376{word-spacing:0.907200px;}
.ws27_c00376{word-spacing:0.936000px;}
.wse_c00376{word-spacing:1.274400px;}
.ws2e_c00376{word-spacing:1.288800px;}
.ws26_c00376{word-spacing:1.634400px;}
.ws6_c00376{word-spacing:2.354400px;}
.ws5_c00376{word-spacing:2.426400px;}
.ws22_c00376{word-spacing:2.736000px;}
.ws1f_c00376{word-spacing:3.441600px;}
.ws10_c00376{word-spacing:3.780000px;}
.wsf_c00376{word-spacing:3.801600px;}
.ws12_c00376{word-spacing:5.551200px;}
.ws1c_c00376{word-spacing:5.572800px;}
.ws13_c00376{word-spacing:5.616000px;}
.ws1b_c00376{word-spacing:5.666400px;}
.ws29_c00376{word-spacing:6.170400px;}
.ws2a_c00376{word-spacing:6.328800px;}
.ws33_c00376{word-spacing:6.487200px;}
.ws34_c00376{word-spacing:6.667200px;}
.wsb_c00376{word-spacing:7.754400px;}
.wsa_c00376{word-spacing:9.165600px;}
.ws9_c00376{word-spacing:9.288000px;}
.ws19_c00376{word-spacing:11.700000px;}
.ws1a_c00376{word-spacing:11.779200px;}
.ws31_c00376{word-spacing:12.297600px;}
.ws32_c00376{word-spacing:12.441600px;}
.ws2c_c00376{word-spacing:12.765600px;}
.ws2b_c00376{word-spacing:12.873600px;}
.ws20_c00376{word-spacing:15.307200px;}
.ws15_c00376{word-spacing:18.482400px;}
.ws14_c00376{word-spacing:18.554400px;}
.ws1d_c00376{word-spacing:18.892800px;}
.ws1e_c00376{word-spacing:18.914400px;}
.ws25_c00376{word-spacing:23.198400px;}
.ws30_c00376{word-spacing:25.365600px;}
.ws2f_c00376{word-spacing:25.372800px;}
.wsd_c00376{word-spacing:47.700000px;}
.wsc_c00376{word-spacing:47.721600px;}
._2_c00376{margin-left:-3.240000px;}
._1_c00376{width:1.267200px;}
._0_c00376{width:187.555680px;}
.fc0_c00376{color:rgb(0,0,0);}
.fs0_c00376{font-size:72.000000px;}
.fs1_c00376{font-size:83.880000px;}
.y0_c00376{bottom:0.000000px;}
.y2_c00376{bottom:46.830450px;}
.y1_c00376{bottom:67.530450px;}
.y24_c00376{bottom:179.670450px;}
.y23_c00376{bottom:209.370450px;}
.y22_c00376{bottom:230.070450px;}
.y21_c00376{bottom:250.770450px;}
.y20_c00376{bottom:271.470450px;}
.y1f_c00376{bottom:292.170450px;}
.y1e_c00376{bottom:312.870450px;}
.y1d_c00376{bottom:333.570450px;}
.y1c_c00376{bottom:354.270450px;}
.y1b_c00376{bottom:374.970450px;}
.y1a_c00376{bottom:395.670450px;}
.y19_c00376{bottom:416.370450px;}
.y18_c00376{bottom:437.070450px;}
.y17_c00376{bottom:457.770450px;}
.y16_c00376{bottom:478.470450px;}
.y15_c00376{bottom:518.520450px;}
.y14_c00376{bottom:549.570450px;}
.y13_c00376{bottom:580.620450px;}
.y12_c00376{bottom:611.670450px;}
.y11_c00376{bottom:642.720450px;}
.y10_c00376{bottom:673.770450px;}
.yf_c00376{bottom:704.820450px;}
.ye_c00376{bottom:735.870450px;}
.yd_c00376{bottom:766.920450px;}
.yc_c00376{bottom:806.970450px;}
.yb_c00376{bottom:838.020450px;}
.ya_c00376{bottom:869.070450px;}
.y9_c00376{bottom:900.120450px;}
.y8_c00376{bottom:931.170450px;}
.y7_c00376{bottom:962.220450px;}
.y6_c00376{bottom:993.270450px;}
.y5_c00376{bottom:1024.320450px;}
.y4_c00376{bottom:1064.370450px;}
.y3_c00376{bottom:1094.520450px;}
.h1_c00376{height:63.175781px;}
.h3_c00376{height:64.546875px;}
.h4_c00376{height:75.093750px;}
.h2_c00376{height:87.484219px;}
.h0_c00376{height:1263.000000px;}
.w1_c00376{width:892.500000px;}
.w0_c00376{width:892.830000px;}
.x0_c00376{left:0.000000px;}
.x2_c00376{left:170.100000px;}
.x3_c00376{left:224.100000px;}
.x4_c00376{left:245.430000px;}
.x1_c00376{left:738.360000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.lsc_c00376{letter-spacing:-0.070400pt;}
.lsb_c00376{letter-spacing:-0.051200pt;}
.lsa_c00376{letter-spacing:-0.044800pt;}
.ls7_c00376{letter-spacing:-0.038400pt;}
.ls6_c00376{letter-spacing:-0.032000pt;}
.lse_c00376{letter-spacing:-0.025600pt;}
.ls8_c00376{letter-spacing:-0.019200pt;}
.lsd_c00376{letter-spacing:-0.012800pt;}
.ls9_c00376{letter-spacing:-0.006400pt;}
.ls5_c00376{letter-spacing:0.000000pt;}
.ls4_c00376{letter-spacing:0.006400pt;}
.ls3_c00376{letter-spacing:0.025600pt;}
.ls0_c00376{letter-spacing:0.052192pt;}
.ls1_c00376{letter-spacing:0.076800pt;}
.ls2_c00376{letter-spacing:0.128000pt;}
.ws0_c00376{word-spacing:-17.868800pt;}
.ws2_c00376{word-spacing:-17.817600pt;}
.ws1_c00376{word-spacing:-17.772800pt;}
.ws8_c00376{word-spacing:-3.360000pt;}
.ws7_c00376{word-spacing:-3.340800pt;}
.ws2d_c00376{word-spacing:-3.027200pt;}
.ws18_c00376{word-spacing:-2.112000pt;}
.ws16_c00376{word-spacing:-2.080000pt;}
.ws17_c00376{word-spacing:-2.028800pt;}
.ws35_c00376{word-spacing:-1.408000pt;}
.ws3_c00376{word-spacing:0.000000pt;}
.ws4_c00376{word-spacing:0.029824pt;}
.ws21_c00376{word-spacing:0.147200pt;}
.ws11_c00376{word-spacing:0.172800pt;}
.ws23_c00376{word-spacing:0.748800pt;}
.ws24_c00376{word-spacing:0.793600pt;}
.ws28_c00376{word-spacing:0.806400pt;}
.ws27_c00376{word-spacing:0.832000pt;}
.wse_c00376{word-spacing:1.132800pt;}
.ws2e_c00376{word-spacing:1.145600pt;}
.ws26_c00376{word-spacing:1.452800pt;}
.ws6_c00376{word-spacing:2.092800pt;}
.ws5_c00376{word-spacing:2.156800pt;}
.ws22_c00376{word-spacing:2.432000pt;}
.ws1f_c00376{word-spacing:3.059200pt;}
.ws10_c00376{word-spacing:3.360000pt;}
.wsf_c00376{word-spacing:3.379200pt;}
.ws12_c00376{word-spacing:4.934400pt;}
.ws1c_c00376{word-spacing:4.953600pt;}
.ws13_c00376{word-spacing:4.992000pt;}
.ws1b_c00376{word-spacing:5.036800pt;}
.ws29_c00376{word-spacing:5.484800pt;}
.ws2a_c00376{word-spacing:5.625600pt;}
.ws33_c00376{word-spacing:5.766400pt;}
.ws34_c00376{word-spacing:5.926400pt;}
.wsb_c00376{word-spacing:6.892800pt;}
.wsa_c00376{word-spacing:8.147200pt;}
.ws9_c00376{word-spacing:8.256000pt;}
.ws19_c00376{word-spacing:10.400000pt;}
.ws1a_c00376{word-spacing:10.470400pt;}
.ws31_c00376{word-spacing:10.931200pt;}
.ws32_c00376{word-spacing:11.059200pt;}
.ws2c_c00376{word-spacing:11.347200pt;}
.ws2b_c00376{word-spacing:11.443200pt;}
.ws20_c00376{word-spacing:13.606400pt;}
.ws15_c00376{word-spacing:16.428800pt;}
.ws14_c00376{word-spacing:16.492800pt;}
.ws1d_c00376{word-spacing:16.793600pt;}
.ws1e_c00376{word-spacing:16.812800pt;}
.ws25_c00376{word-spacing:20.620800pt;}
.ws30_c00376{word-spacing:22.547200pt;}
.ws2f_c00376{word-spacing:22.553600pt;}
.wsd_c00376{word-spacing:42.400000pt;}
.wsc_c00376{word-spacing:42.419200pt;}
._2_c00376{margin-left:-2.880000pt;}
._1_c00376{width:1.126400pt;}
._0_c00376{width:166.716160pt;}
.fs0_c00376{font-size:64.000000pt;}
.fs1_c00376{font-size:74.560000pt;}
.y0_c00376{bottom:0.000000pt;}
.y2_c00376{bottom:41.627067pt;}
.y1_c00376{bottom:60.027067pt;}
.y24_c00376{bottom:159.707067pt;}
.y23_c00376{bottom:186.107067pt;}
.y22_c00376{bottom:204.507067pt;}
.y21_c00376{bottom:222.907067pt;}
.y20_c00376{bottom:241.307067pt;}
.y1f_c00376{bottom:259.707067pt;}
.y1e_c00376{bottom:278.107067pt;}
.y1d_c00376{bottom:296.507067pt;}
.y1c_c00376{bottom:314.907067pt;}
.y1b_c00376{bottom:333.307067pt;}
.y1a_c00376{bottom:351.707067pt;}
.y19_c00376{bottom:370.107067pt;}
.y18_c00376{bottom:388.507067pt;}
.y17_c00376{bottom:406.907067pt;}
.y16_c00376{bottom:425.307067pt;}
.y15_c00376{bottom:460.907067pt;}
.y14_c00376{bottom:488.507067pt;}
.y13_c00376{bottom:516.107067pt;}
.y12_c00376{bottom:543.707067pt;}
.y11_c00376{bottom:571.307067pt;}
.y10_c00376{bottom:598.907067pt;}
.yf_c00376{bottom:626.507067pt;}
.ye_c00376{bottom:654.107067pt;}
.yd_c00376{bottom:681.707067pt;}
.yc_c00376{bottom:717.307067pt;}
.yb_c00376{bottom:744.907067pt;}
.ya_c00376{bottom:772.507067pt;}
.y9_c00376{bottom:800.107067pt;}
.y8_c00376{bottom:827.707067pt;}
.y7_c00376{bottom:855.307067pt;}
.y6_c00376{bottom:882.907067pt;}
.y5_c00376{bottom:910.507067pt;}
.y4_c00376{bottom:946.107067pt;}
.y3_c00376{bottom:972.907067pt;}
.h1_c00376{height:56.156250pt;}
.h3_c00376{height:57.375000pt;}
.h4_c00376{height:66.750000pt;}
.h2_c00376{height:77.763750pt;}
.h0_c00376{height:1122.666667pt;}
.w1_c00376{width:793.333333pt;}
.w0_c00376{width:793.626667pt;}
.x0_c00376{left:0.000000pt;}
.x2_c00376{left:151.200000pt;}
.x3_c00376{left:199.200000pt;}
.x4_c00376{left:218.160000pt;}
.x1_c00376{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d0cbab133ee4211a8673a662.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.093262;font-style:normal;font-weight:normal;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_e1c97df2d6972a715425fe37.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.106934;font-style:normal;font-weight:normal;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_cae56ca700b0cd7a5dae29e2.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00377{letter-spacing:-0.072000px;}
.lsa_c00377{letter-spacing:-0.064800px;}
.ls3_c00377{letter-spacing:-0.057600px;}
.ls9_c00377{letter-spacing:-0.050400px;}
.ls4_c00377{letter-spacing:-0.043200px;}
.ls5_c00377{letter-spacing:-0.036000px;}
.ls2_c00377{letter-spacing:-0.028800px;}
.ls6_c00377{letter-spacing:-0.021600px;}
.ls7_c00377{letter-spacing:-0.014400px;}
.ls8_c00377{letter-spacing:-0.007200px;}
.ls1_c00377{letter-spacing:0.000000px;}
.ls0_c00377{letter-spacing:0.014400px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00377{word-spacing:-19.980000px;}
.ws34_c00377{word-spacing:-3.369600px;}
.ws2d_c00377{word-spacing:-2.347200px;}
.ws2e_c00377{word-spacing:-2.318400px;}
.ws12_c00377{word-spacing:-1.634400px;}
.ws13_c00377{word-spacing:-1.519200px;}
.ws22_c00377{word-spacing:-0.158400px;}
.ws23_c00377{word-spacing:-0.151200px;}
.ws1_c00377{word-spacing:0.000000px;}
.ws16_c00377{word-spacing:0.144000px;}
.wsd_c00377{word-spacing:0.158400px;}
.ws1d_c00377{word-spacing:0.165600px;}
.ws17_c00377{word-spacing:0.172800px;}
.ws1c_c00377{word-spacing:0.180000px;}
.ws10_c00377{word-spacing:0.194400px;}
.ws1b_c00377{word-spacing:0.259200px;}
.ws9_c00377{word-spacing:1.648800px;}
.ws8_c00377{word-spacing:1.821600px;}
.wse_c00377{word-spacing:1.987200px;}
.wsf_c00377{word-spacing:2.116800px;}
.wsa_c00377{word-spacing:3.780000px;}
.wsb_c00377{word-spacing:3.866400px;}
.ws1a_c00377{word-spacing:5.234400px;}
.ws19_c00377{word-spacing:5.241600px;}
.ws25_c00377{word-spacing:5.508000px;}
.ws24_c00377{word-spacing:5.587200px;}
.ws20_c00377{word-spacing:5.594400px;}
.ws21_c00377{word-spacing:5.608800px;}
.ws31_c00377{word-spacing:5.990400px;}
.ws2b_c00377{word-spacing:9.504000px;}
.ws2c_c00377{word-spacing:9.561600px;}
.ws11_c00377{word-spacing:9.957600px;}
.ws29_c00377{word-spacing:13.111200px;}
.ws2a_c00377{word-spacing:13.176000px;}
.ws32_c00377{word-spacing:13.860000px;}
.ws33_c00377{word-spacing:13.932000px;}
.ws18_c00377{word-spacing:20.001600px;}
.ws26_c00377{word-spacing:20.340000px;}
.ws30_c00377{word-spacing:20.973600px;}
.ws2f_c00377{word-spacing:21.081600px;}
.ws15_c00377{word-spacing:26.085600px;}
.ws14_c00377{word-spacing:26.172000px;}
.wsc_c00377{word-spacing:26.474400px;}
.ws6_c00377{word-spacing:27.007200px;}
.ws5_c00377{word-spacing:27.187200px;}
.ws7_c00377{word-spacing:27.194400px;}
.ws2_c00377{word-spacing:28.022400px;}
.ws3_c00377{word-spacing:28.296000px;}
.ws4_c00377{word-spacing:28.461600px;}
.ws1e_c00377{word-spacing:36.921600px;}
.ws1f_c00377{word-spacing:36.928800px;}
.ws28_c00377{word-spacing:40.132800px;}
.ws27_c00377{word-spacing:40.154400px;}
._1_c00377{margin-left:-36.331200px;}
._0_c00377{width:1.195200px;}
.fc0_c00377{color:rgb(0,0,0);}
.fs0_c00377{font-size:72.000000px;}
.y0_c00377{bottom:0.000000px;}
.y2_c00377{bottom:46.830450px;}
.y1_c00377{bottom:67.530450px;}
.y24_c00377{bottom:143.130450px;}
.y23_c00377{bottom:163.830450px;}
.y22_c00377{bottom:184.530450px;}
.y21_c00377{bottom:224.580450px;}
.y20_c00377{bottom:255.630450px;}
.y1f_c00377{bottom:286.680450px;}
.y1e_c00377{bottom:317.730450px;}
.y1d_c00377{bottom:357.690450px;}
.y1c_c00377{bottom:388.740450px;}
.y1b_c00377{bottom:419.790450px;}
.y1a_c00377{bottom:450.840450px;}
.y19_c00377{bottom:481.890450px;}
.y18_c00377{bottom:512.940450px;}
.y17_c00377{bottom:543.990450px;}
.y16_c00377{bottom:575.040450px;}
.y15_c00377{bottom:615.090450px;}
.y14_c00377{bottom:644.790450px;}
.y13_c00377{bottom:665.490450px;}
.y12_c00377{bottom:686.190450px;}
.y11_c00377{bottom:706.890450px;}
.y10_c00377{bottom:727.590450px;}
.yf_c00377{bottom:748.290450px;}
.ye_c00377{bottom:768.990450px;}
.yd_c00377{bottom:789.690450px;}
.yc_c00377{bottom:810.390450px;}
.yb_c00377{bottom:831.090450px;}
.ya_c00377{bottom:871.140450px;}
.y9_c00377{bottom:902.190450px;}
.y8_c00377{bottom:942.240450px;}
.y7_c00377{bottom:973.290450px;}
.y6_c00377{bottom:1004.340450px;}
.y5_c00377{bottom:1035.390450px;}
.y4_c00377{bottom:1066.440450px;}
.y3_c00377{bottom:1097.490450px;}
.h1_c00377{height:63.175781px;}
.h2_c00377{height:64.546875px;}
.h3_c00377{height:75.093750px;}
.h0_c00377{height:1263.000000px;}
.w1_c00377{width:892.500000px;}
.w0_c00377{width:892.830000px;}
.x0_c00377{left:0.000000px;}
.x2_c00377{left:127.620000px;}
.x3_c00377{left:202.950000px;}
.x1_c00377{left:695.880000px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.lsb_c00377{letter-spacing:-0.064000pt;}
.lsa_c00377{letter-spacing:-0.057600pt;}
.ls3_c00377{letter-spacing:-0.051200pt;}
.ls9_c00377{letter-spacing:-0.044800pt;}
.ls4_c00377{letter-spacing:-0.038400pt;}
.ls5_c00377{letter-spacing:-0.032000pt;}
.ls2_c00377{letter-spacing:-0.025600pt;}
.ls6_c00377{letter-spacing:-0.019200pt;}
.ls7_c00377{letter-spacing:-0.012800pt;}
.ls8_c00377{letter-spacing:-0.006400pt;}
.ls1_c00377{letter-spacing:0.000000pt;}
.ls0_c00377{letter-spacing:0.012800pt;}
.ws0_c00377{word-spacing:-17.760000pt;}
.ws34_c00377{word-spacing:-2.995200pt;}
.ws2d_c00377{word-spacing:-2.086400pt;}
.ws2e_c00377{word-spacing:-2.060800pt;}
.ws12_c00377{word-spacing:-1.452800pt;}
.ws13_c00377{word-spacing:-1.350400pt;}
.ws22_c00377{word-spacing:-0.140800pt;}
.ws23_c00377{word-spacing:-0.134400pt;}
.ws1_c00377{word-spacing:0.000000pt;}
.ws16_c00377{word-spacing:0.128000pt;}
.wsd_c00377{word-spacing:0.140800pt;}
.ws1d_c00377{word-spacing:0.147200pt;}
.ws17_c00377{word-spacing:0.153600pt;}
.ws1c_c00377{word-spacing:0.160000pt;}
.ws10_c00377{word-spacing:0.172800pt;}
.ws1b_c00377{word-spacing:0.230400pt;}
.ws9_c00377{word-spacing:1.465600pt;}
.ws8_c00377{word-spacing:1.619200pt;}
.wse_c00377{word-spacing:1.766400pt;}
.wsf_c00377{word-spacing:1.881600pt;}
.wsa_c00377{word-spacing:3.360000pt;}
.wsb_c00377{word-spacing:3.436800pt;}
.ws1a_c00377{word-spacing:4.652800pt;}
.ws19_c00377{word-spacing:4.659200pt;}
.ws25_c00377{word-spacing:4.896000pt;}
.ws24_c00377{word-spacing:4.966400pt;}
.ws20_c00377{word-spacing:4.972800pt;}
.ws21_c00377{word-spacing:4.985600pt;}
.ws31_c00377{word-spacing:5.324800pt;}
.ws2b_c00377{word-spacing:8.448000pt;}
.ws2c_c00377{word-spacing:8.499200pt;}
.ws11_c00377{word-spacing:8.851200pt;}
.ws29_c00377{word-spacing:11.654400pt;}
.ws2a_c00377{word-spacing:11.712000pt;}
.ws32_c00377{word-spacing:12.320000pt;}
.ws33_c00377{word-spacing:12.384000pt;}
.ws18_c00377{word-spacing:17.779200pt;}
.ws26_c00377{word-spacing:18.080000pt;}
.ws30_c00377{word-spacing:18.643200pt;}
.ws2f_c00377{word-spacing:18.739200pt;}
.ws15_c00377{word-spacing:23.187200pt;}
.ws14_c00377{word-spacing:23.264000pt;}
.wsc_c00377{word-spacing:23.532800pt;}
.ws6_c00377{word-spacing:24.006400pt;}
.ws5_c00377{word-spacing:24.166400pt;}
.ws7_c00377{word-spacing:24.172800pt;}
.ws2_c00377{word-spacing:24.908800pt;}
.ws3_c00377{word-spacing:25.152000pt;}
.ws4_c00377{word-spacing:25.299200pt;}
.ws1e_c00377{word-spacing:32.819200pt;}
.ws1f_c00377{word-spacing:32.825600pt;}
.ws28_c00377{word-spacing:35.673600pt;}
.ws27_c00377{word-spacing:35.692800pt;}
._1_c00377{margin-left:-32.294400pt;}
._0_c00377{width:1.062400pt;}
.fs0_c00377{font-size:64.000000pt;}
.y0_c00377{bottom:0.000000pt;}
.y2_c00377{bottom:41.627067pt;}
.y1_c00377{bottom:60.027067pt;}
.y24_c00377{bottom:127.227067pt;}
.y23_c00377{bottom:145.627067pt;}
.y22_c00377{bottom:164.027067pt;}
.y21_c00377{bottom:199.627067pt;}
.y20_c00377{bottom:227.227067pt;}
.y1f_c00377{bottom:254.827067pt;}
.y1e_c00377{bottom:282.427067pt;}
.y1d_c00377{bottom:317.947067pt;}
.y1c_c00377{bottom:345.547067pt;}
.y1b_c00377{bottom:373.147067pt;}
.y1a_c00377{bottom:400.747067pt;}
.y19_c00377{bottom:428.347067pt;}
.y18_c00377{bottom:455.947067pt;}
.y17_c00377{bottom:483.547067pt;}
.y16_c00377{bottom:511.147067pt;}
.y15_c00377{bottom:546.747067pt;}
.y14_c00377{bottom:573.147067pt;}
.y13_c00377{bottom:591.547067pt;}
.y12_c00377{bottom:609.947067pt;}
.y11_c00377{bottom:628.347067pt;}
.y10_c00377{bottom:646.747067pt;}
.yf_c00377{bottom:665.147067pt;}
.ye_c00377{bottom:683.547067pt;}
.yd_c00377{bottom:701.947067pt;}
.yc_c00377{bottom:720.347067pt;}
.yb_c00377{bottom:738.747067pt;}
.ya_c00377{bottom:774.347067pt;}
.y9_c00377{bottom:801.947067pt;}
.y8_c00377{bottom:837.547067pt;}
.y7_c00377{bottom:865.147067pt;}
.y6_c00377{bottom:892.747067pt;}
.y5_c00377{bottom:920.347067pt;}
.y4_c00377{bottom:947.947067pt;}
.y3_c00377{bottom:975.547067pt;}
.h1_c00377{height:56.156250pt;}
.h2_c00377{height:57.375000pt;}
.h3_c00377{height:66.750000pt;}
.h0_c00377{height:1122.666667pt;}
.w1_c00377{width:793.333333pt;}
.w0_c00377{width:793.626667pt;}
.x0_c00377{left:0.000000pt;}
.x2_c00377{left:113.440000pt;}
.x3_c00377{left:180.400000pt;}
.x1_c00377{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a1492178645d1db17c7e1283.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.093262;font-style:normal;font-weight:normal;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_3418b5bc8007456bb21aa293.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00378{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.ls6_c00378{letter-spacing:-0.064800px;}
.ls2_c00378{letter-spacing:-0.057600px;}
.ls7_c00378{letter-spacing:-0.050400px;}
.ls3_c00378{letter-spacing:-0.043200px;}
.ls1_c00378{letter-spacing:-0.036000px;}
.ls9_c00378{letter-spacing:-0.028800px;}
.ls5_c00378{letter-spacing:-0.021600px;}
.lsa_c00378{letter-spacing:-0.014400px;}
.ls8_c00378{letter-spacing:-0.007200px;}
.ls0_c00378{letter-spacing:0.000000px;}
.ls4_c00378{letter-spacing:0.036000px;}
.lsb_c00378{letter-spacing:843.998400px;}
.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;}
}
.ws8_c00378{word-spacing:-4.190400px;}
.ws9_c00378{word-spacing:-4.104000px;}
.ws5_c00378{word-spacing:-1.620000px;}
.ws6_c00378{word-spacing:-0.158400px;}
.ws7_c00378{word-spacing:-0.136800px;}
.ws0_c00378{word-spacing:0.000000px;}
.ws4_c00378{word-spacing:0.057600px;}
.ws13_c00378{word-spacing:0.100800px;}
.ws12_c00378{word-spacing:0.172800px;}
.ws3_c00378{word-spacing:0.201600px;}
.ws2_c00378{word-spacing:2.736000px;}
.ws1_c00378{word-spacing:2.894400px;}
.wsa_c00378{word-spacing:5.608800px;}
.wsb_c00378{word-spacing:5.623200px;}
.wse_c00378{word-spacing:7.020000px;}
.wsf_c00378{word-spacing:7.056000px;}
.ws11_c00378{word-spacing:8.107200px;}
.ws10_c00378{word-spacing:8.121600px;}
.wsd_c00378{word-spacing:36.885600px;}
.wsc_c00378{word-spacing:36.900000px;}
._0_c00378{width:1.152000px;}
.fc0_c00378{color:rgb(0,0,0);}
.fs0_c00378{font-size:72.000000px;}
.y0_c00378{bottom:0.000000px;}
.y2_c00378{bottom:46.830450px;}
.y1_c00378{bottom:67.530450px;}
.ye_c00378{bottom:749.640450px;}
.yd_c00378{bottom:789.690450px;}
.yc_c00378{bottom:820.740450px;}
.yb_c00378{bottom:851.790450px;}
.ya_c00378{bottom:882.840450px;}
.y9_c00378{bottom:913.890450px;}
.y8_c00378{bottom:944.940450px;}
.y7_c00378{bottom:975.990450px;}
.y6_c00378{bottom:1007.040450px;}
.y5_c00378{bottom:1047.090450px;}
.y4_c00378{bottom:1076.790450px;}
.y3_c00378{bottom:1097.490450px;}
.h1_c00378{height:63.175781px;}
.h2_c00378{height:64.546875px;}
.h0_c00378{height:1263.000000px;}
.w1_c00378{width:892.500000px;}
.w0_c00378{width:892.830000px;}
.x0_c00378{left:0.000000px;}
.x2_c00378{left:170.100000px;}
.x3_c00378{left:245.430000px;}
.x1_c00378{left:738.360000px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls6_c00378{letter-spacing:-0.057600pt;}
.ls2_c00378{letter-spacing:-0.051200pt;}
.ls7_c00378{letter-spacing:-0.044800pt;}
.ls3_c00378{letter-spacing:-0.038400pt;}
.ls1_c00378{letter-spacing:-0.032000pt;}
.ls9_c00378{letter-spacing:-0.025600pt;}
.ls5_c00378{letter-spacing:-0.019200pt;}
.lsa_c00378{letter-spacing:-0.012800pt;}
.ls8_c00378{letter-spacing:-0.006400pt;}
.ls0_c00378{letter-spacing:0.000000pt;}
.ls4_c00378{letter-spacing:0.032000pt;}
.lsb_c00378{letter-spacing:750.220800pt;}
.ws8_c00378{word-spacing:-3.724800pt;}
.ws9_c00378{word-spacing:-3.648000pt;}
.ws5_c00378{word-spacing:-1.440000pt;}
.ws6_c00378{word-spacing:-0.140800pt;}
.ws7_c00378{word-spacing:-0.121600pt;}
.ws0_c00378{word-spacing:0.000000pt;}
.ws4_c00378{word-spacing:0.051200pt;}
.ws13_c00378{word-spacing:0.089600pt;}
.ws12_c00378{word-spacing:0.153600pt;}
.ws3_c00378{word-spacing:0.179200pt;}
.ws2_c00378{word-spacing:2.432000pt;}
.ws1_c00378{word-spacing:2.572800pt;}
.wsa_c00378{word-spacing:4.985600pt;}
.wsb_c00378{word-spacing:4.998400pt;}
.wse_c00378{word-spacing:6.240000pt;}
.wsf_c00378{word-spacing:6.272000pt;}
.ws11_c00378{word-spacing:7.206400pt;}
.ws10_c00378{word-spacing:7.219200pt;}
.wsd_c00378{word-spacing:32.787200pt;}
.wsc_c00378{word-spacing:32.800000pt;}
._0_c00378{width:1.024000pt;}
.fs0_c00378{font-size:64.000000pt;}
.y0_c00378{bottom:0.000000pt;}
.y2_c00378{bottom:41.627067pt;}
.y1_c00378{bottom:60.027067pt;}
.ye_c00378{bottom:666.347067pt;}
.yd_c00378{bottom:701.947067pt;}
.yc_c00378{bottom:729.547067pt;}
.yb_c00378{bottom:757.147067pt;}
.ya_c00378{bottom:784.747067pt;}
.y9_c00378{bottom:812.347067pt;}
.y8_c00378{bottom:839.947067pt;}
.y7_c00378{bottom:867.547067pt;}
.y6_c00378{bottom:895.147067pt;}
.y5_c00378{bottom:930.747067pt;}
.y4_c00378{bottom:957.147067pt;}
.y3_c00378{bottom:975.547067pt;}
.h1_c00378{height:56.156250pt;}
.h2_c00378{height:57.375000pt;}
.h0_c00378{height:1122.666667pt;}
.w1_c00378{width:793.333333pt;}
.w0_c00378{width:793.626667pt;}
.x0_c00378{left:0.000000pt;}
.x2_c00378{left:151.200000pt;}
.x3_c00378{left:218.160000pt;}
.x1_c00378{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8c1487a4b7278cb0a2339bdf.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00379{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.ls0_c00379{letter-spacing:0.000000px;}
.ls1_c00379{letter-spacing:843.998400px;}
.sc__c00379{text-shadow:none;}
.sc0_c00379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00379{-webkit-text-stroke:0px transparent;}
.sc0_c00379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00379{word-spacing:0.000000px;}
.fc0_c00379{color:rgb(0,0,0);}
.fs0_c00379{font-size:72.000000px;}
.y0_c00379{bottom:0.000000px;}
.y2_c00379{bottom:46.830450px;}
.y1_c00379{bottom:67.530450px;}
.y4_c00379{bottom:1057.440450px;}
.y3_c00379{bottom:1097.490450px;}
.h1_c00379{height:63.175781px;}
.h2_c00379{height:64.546875px;}
.h0_c00379{height:1263.000000px;}
.w1_c00379{width:892.500000px;}
.w0_c00379{width:892.830000px;}
.x0_c00379{left:0.000000px;}
.x2_c00379{left:127.620000px;}
.x1_c00379{left:695.880000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls0_c00379{letter-spacing:0.000000pt;}
.ls1_c00379{letter-spacing:750.220800pt;}
.ws0_c00379{word-spacing:0.000000pt;}
.fs0_c00379{font-size:64.000000pt;}
.y0_c00379{bottom:0.000000pt;}
.y2_c00379{bottom:41.627067pt;}
.y1_c00379{bottom:60.027067pt;}
.y4_c00379{bottom:939.947067pt;}
.y3_c00379{bottom:975.547067pt;}
.h1_c00379{height:56.156250pt;}
.h2_c00379{height:57.375000pt;}
.h0_c00379{height:1122.666667pt;}
.w1_c00379{width:793.333333pt;}
.w0_c00379{width:793.626667pt;}
.x0_c00379{left:0.000000pt;}
.x2_c00379{left:113.440000pt;}
.x1_c00379{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_06db7a9fd824543c4722556d.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.093262;font-style:normal;font-weight:normal;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_f9403a6b4db986ea01f3d43c.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00380;src:url('chunks/assets/font_621b20df88c5d489b4637a11.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:1.106934;font-style:normal;font-weight:normal;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_700a6ed64400ec193f041211.woff2')format("woff");}.ff4_c00380{font-family:ff4_c00380;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lse_c00380{letter-spacing:-4.147200px;}
.ls4_c00380{letter-spacing:-0.115200px;}
.ls5_c00380{letter-spacing:-0.108000px;}
.lsd_c00380{letter-spacing:-0.086400px;}
.ls8_c00380{letter-spacing:-0.072000px;}
.ls11_c00380{letter-spacing:-0.064800px;}
.ls7_c00380{letter-spacing:-0.057600px;}
.ls6_c00380{letter-spacing:-0.050400px;}
.ls3_c00380{letter-spacing:-0.043200px;}
.lsa_c00380{letter-spacing:-0.036000px;}
.ls9_c00380{letter-spacing:-0.028800px;}
.lsb_c00380{letter-spacing:-0.021600px;}
.lsc_c00380{letter-spacing:-0.014400px;}
.lsf_c00380{letter-spacing:-0.007200px;}
.ls2_c00380{letter-spacing:0.000000px;}
.ls12_c00380{letter-spacing:0.007200px;}
.ls10_c00380{letter-spacing:0.014400px;}
.ls0_c00380{letter-spacing:0.025164px;}
.ls1_c00380{letter-spacing:0.043200px;}
.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:-20.059200px;}
.ws0_c00380{word-spacing:-19.972800px;}
.ws1_c00380{word-spacing:-19.929600px;}
.ws36_c00380{word-spacing:-4.579200px;}
.ws35_c00380{word-spacing:-4.492800px;}
.ws2f_c00380{word-spacing:-4.320000px;}
.ws30_c00380{word-spacing:-4.104000px;}
.ws1a_c00380{word-spacing:-3.492000px;}
.ws21_c00380{word-spacing:-3.477600px;}
.ws2b_c00380{word-spacing:-3.441600px;}
.ws1b_c00380{word-spacing:-3.434400px;}
.ws20_c00380{word-spacing:-3.412800px;}
.ws2c_c00380{word-spacing:-3.398400px;}
.ws5_c00380{word-spacing:-2.678400px;}
.ws6_c00380{word-spacing:-2.606400px;}
.ws3_c00380{word-spacing:0.000000px;}
.ws1d_c00380{word-spacing:0.072000px;}
.ws32_c00380{word-spacing:0.151200px;}
.ws29_c00380{word-spacing:0.158400px;}
.ws1c_c00380{word-spacing:0.165600px;}
.ws14_c00380{word-spacing:0.180000px;}
.ws31_c00380{word-spacing:0.208800px;}
.ws13_c00380{word-spacing:0.288000px;}
.ws34_c00380{word-spacing:0.496800px;}
.wsc_c00380{word-spacing:0.547200px;}
.ws33_c00380{word-spacing:0.568800px;}
.wsb_c00380{word-spacing:0.590400px;}
.ws25_c00380{word-spacing:3.348000px;}
.ws26_c00380{word-spacing:3.384000px;}
.ws27_c00380{word-spacing:3.405600px;}
.ws18_c00380{word-spacing:3.412800px;}
.ws19_c00380{word-spacing:3.427200px;}
.ws28_c00380{word-spacing:3.499200px;}
.ws17_c00380{word-spacing:3.513600px;}
.ws2a_c00380{word-spacing:3.520800px;}
.ws11_c00380{word-spacing:5.500800px;}
.ws12_c00380{word-spacing:5.580000px;}
.ws23_c00380{word-spacing:5.932800px;}
.ws24_c00380{word-spacing:5.961600px;}
.wsa_c00380{word-spacing:6.264000px;}
.ws9_c00380{word-spacing:6.328800px;}
.ws7_c00380{word-spacing:7.768800px;}
.ws8_c00380{word-spacing:7.826400px;}
.ws4_c00380{word-spacing:9.788796px;}
.ws38_c00380{word-spacing:10.267200px;}
.ws37_c00380{word-spacing:10.288800px;}
.wsf_c00380{word-spacing:10.296000px;}
.ws39_c00380{word-spacing:11.282400px;}
.ws22_c00380{word-spacing:11.340000px;}
.ws3a_c00380{word-spacing:11.390400px;}
.ws15_c00380{word-spacing:11.707200px;}
.ws16_c00380{word-spacing:11.736000px;}
.ws2d_c00380{word-spacing:20.656800px;}
.ws2e_c00380{word-spacing:20.750400px;}
.ws1f_c00380{word-spacing:21.052800px;}
.ws1e_c00380{word-spacing:21.067200px;}
.ws10_c00380{word-spacing:28.598400px;}
.wsd_c00380{word-spacing:47.721600px;}
.wse_c00380{word-spacing:47.736000px;}
._0_c00380{margin-left:-9.730080px;}
._3_c00380{margin-left:-1.180800px;}
._1_c00380{width:1.339200px;}
._2_c00380{width:4.422600px;}
.fc0_c00380{color:rgb(0,0,0);}
.fs0_c00380{font-size:72.000000px;}
.fs2_c00380{font-size:81.000000px;}
.fs1_c00380{font-size:83.880000px;}
.y0_c00380{bottom:0.000000px;}
.y2_c00380{bottom:46.830450px;}
.y1_c00380{bottom:67.530450px;}
.y21_c00380{bottom:146.100450px;}
.y20_c00380{bottom:166.800450px;}
.y1f_c00380{bottom:187.500450px;}
.y1e_c00380{bottom:208.200450px;}
.y1d_c00380{bottom:248.250450px;}
.y1c_c00380{bottom:279.300450px;}
.y1b_c00380{bottom:310.350450px;}
.y1a_c00380{bottom:341.400450px;}
.y19_c00380{bottom:372.450450px;}
.y18_c00380{bottom:412.500450px;}
.y17_c00380{bottom:443.460450px;}
.y16_c00380{bottom:474.600450px;}
.y15_c00380{bottom:505.650450px;}
.y14_c00380{bottom:536.700450px;}
.y13_c00380{bottom:567.750450px;}
.y12_c00380{bottom:598.800450px;}
.y11_c00380{bottom:638.850450px;}
.y10_c00380{bottom:671.520450px;}
.yf_c00380{bottom:704.820450px;}
.ye_c00380{bottom:735.870450px;}
.yd_c00380{bottom:775.920450px;}
.yc_c00380{bottom:806.970450px;}
.yb_c00380{bottom:838.020450px;}
.ya_c00380{bottom:868.980450px;}
.y9_c00380{bottom:900.120450px;}
.y8_c00380{bottom:931.170450px;}
.y7_c00380{bottom:962.220450px;}
.y6_c00380{bottom:993.270450px;}
.y5_c00380{bottom:1024.320450px;}
.y4_c00380{bottom:1064.370450px;}
.y3_c00380{bottom:1094.520450px;}
.h1_c00380{height:63.175781px;}
.h3_c00380{height:64.546875px;}
.h4_c00380{height:75.093750px;}
.h2_c00380{height:87.484219px;}
.h0_c00380{height:1263.000000px;}
.w1_c00380{width:892.500000px;}
.w0_c00380{width:892.830000px;}
.x0_c00380{left:0.000000px;}
.x2_c00380{left:170.100000px;}
.x4_c00380{left:245.430000px;}
.x3_c00380{left:251.100000px;}
.x1_c00380{left:738.360000px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.lse_c00380{letter-spacing:-3.686400pt;}
.ls4_c00380{letter-spacing:-0.102400pt;}
.ls5_c00380{letter-spacing:-0.096000pt;}
.lsd_c00380{letter-spacing:-0.076800pt;}
.ls8_c00380{letter-spacing:-0.064000pt;}
.ls11_c00380{letter-spacing:-0.057600pt;}
.ls7_c00380{letter-spacing:-0.051200pt;}
.ls6_c00380{letter-spacing:-0.044800pt;}
.ls3_c00380{letter-spacing:-0.038400pt;}
.lsa_c00380{letter-spacing:-0.032000pt;}
.ls9_c00380{letter-spacing:-0.025600pt;}
.lsb_c00380{letter-spacing:-0.019200pt;}
.lsc_c00380{letter-spacing:-0.012800pt;}
.lsf_c00380{letter-spacing:-0.006400pt;}
.ls2_c00380{letter-spacing:0.000000pt;}
.ls12_c00380{letter-spacing:0.006400pt;}
.ls10_c00380{letter-spacing:0.012800pt;}
.ls0_c00380{letter-spacing:0.022368pt;}
.ls1_c00380{letter-spacing:0.038400pt;}
.ws2_c00380{word-spacing:-17.830400pt;}
.ws0_c00380{word-spacing:-17.753600pt;}
.ws1_c00380{word-spacing:-17.715200pt;}
.ws36_c00380{word-spacing:-4.070400pt;}
.ws35_c00380{word-spacing:-3.993600pt;}
.ws2f_c00380{word-spacing:-3.840000pt;}
.ws30_c00380{word-spacing:-3.648000pt;}
.ws1a_c00380{word-spacing:-3.104000pt;}
.ws21_c00380{word-spacing:-3.091200pt;}
.ws2b_c00380{word-spacing:-3.059200pt;}
.ws1b_c00380{word-spacing:-3.052800pt;}
.ws20_c00380{word-spacing:-3.033600pt;}
.ws2c_c00380{word-spacing:-3.020800pt;}
.ws5_c00380{word-spacing:-2.380800pt;}
.ws6_c00380{word-spacing:-2.316800pt;}
.ws3_c00380{word-spacing:0.000000pt;}
.ws1d_c00380{word-spacing:0.064000pt;}
.ws32_c00380{word-spacing:0.134400pt;}
.ws29_c00380{word-spacing:0.140800pt;}
.ws1c_c00380{word-spacing:0.147200pt;}
.ws14_c00380{word-spacing:0.160000pt;}
.ws31_c00380{word-spacing:0.185600pt;}
.ws13_c00380{word-spacing:0.256000pt;}
.ws34_c00380{word-spacing:0.441600pt;}
.wsc_c00380{word-spacing:0.486400pt;}
.ws33_c00380{word-spacing:0.505600pt;}
.wsb_c00380{word-spacing:0.524800pt;}
.ws25_c00380{word-spacing:2.976000pt;}
.ws26_c00380{word-spacing:3.008000pt;}
.ws27_c00380{word-spacing:3.027200pt;}
.ws18_c00380{word-spacing:3.033600pt;}
.ws19_c00380{word-spacing:3.046400pt;}
.ws28_c00380{word-spacing:3.110400pt;}
.ws17_c00380{word-spacing:3.123200pt;}
.ws2a_c00380{word-spacing:3.129600pt;}
.ws11_c00380{word-spacing:4.889600pt;}
.ws12_c00380{word-spacing:4.960000pt;}
.ws23_c00380{word-spacing:5.273600pt;}
.ws24_c00380{word-spacing:5.299200pt;}
.wsa_c00380{word-spacing:5.568000pt;}
.ws9_c00380{word-spacing:5.625600pt;}
.ws7_c00380{word-spacing:6.905600pt;}
.ws8_c00380{word-spacing:6.956800pt;}
.ws4_c00380{word-spacing:8.701152pt;}
.ws38_c00380{word-spacing:9.126400pt;}
.ws37_c00380{word-spacing:9.145600pt;}
.wsf_c00380{word-spacing:9.152000pt;}
.ws39_c00380{word-spacing:10.028800pt;}
.ws22_c00380{word-spacing:10.080000pt;}
.ws3a_c00380{word-spacing:10.124800pt;}
.ws15_c00380{word-spacing:10.406400pt;}
.ws16_c00380{word-spacing:10.432000pt;}
.ws2d_c00380{word-spacing:18.361600pt;}
.ws2e_c00380{word-spacing:18.444800pt;}
.ws1f_c00380{word-spacing:18.713600pt;}
.ws1e_c00380{word-spacing:18.726400pt;}
.ws10_c00380{word-spacing:25.420800pt;}
.wsd_c00380{word-spacing:42.419200pt;}
.wse_c00380{word-spacing:42.432000pt;}
._0_c00380{margin-left:-8.648960pt;}
._3_c00380{margin-left:-1.049600pt;}
._1_c00380{width:1.190400pt;}
._2_c00380{width:3.931200pt;}
.fs0_c00380{font-size:64.000000pt;}
.fs2_c00380{font-size:72.000000pt;}
.fs1_c00380{font-size:74.560000pt;}
.y0_c00380{bottom:0.000000pt;}
.y2_c00380{bottom:41.627067pt;}
.y1_c00380{bottom:60.027067pt;}
.y21_c00380{bottom:129.867067pt;}
.y20_c00380{bottom:148.267067pt;}
.y1f_c00380{bottom:166.667067pt;}
.y1e_c00380{bottom:185.067067pt;}
.y1d_c00380{bottom:220.667067pt;}
.y1c_c00380{bottom:248.267067pt;}
.y1b_c00380{bottom:275.867067pt;}
.y1a_c00380{bottom:303.467067pt;}
.y19_c00380{bottom:331.067067pt;}
.y18_c00380{bottom:366.667067pt;}
.y17_c00380{bottom:394.187067pt;}
.y16_c00380{bottom:421.867067pt;}
.y15_c00380{bottom:449.467067pt;}
.y14_c00380{bottom:477.067067pt;}
.y13_c00380{bottom:504.667067pt;}
.y12_c00380{bottom:532.267067pt;}
.y11_c00380{bottom:567.867067pt;}
.y10_c00380{bottom:596.907067pt;}
.yf_c00380{bottom:626.507067pt;}
.ye_c00380{bottom:654.107067pt;}
.yd_c00380{bottom:689.707067pt;}
.yc_c00380{bottom:717.307067pt;}
.yb_c00380{bottom:744.907067pt;}
.ya_c00380{bottom:772.427067pt;}
.y9_c00380{bottom:800.107067pt;}
.y8_c00380{bottom:827.707067pt;}
.y7_c00380{bottom:855.307067pt;}
.y6_c00380{bottom:882.907067pt;}
.y5_c00380{bottom:910.507067pt;}
.y4_c00380{bottom:946.107067pt;}
.y3_c00380{bottom:972.907067pt;}
.h1_c00380{height:56.156250pt;}
.h3_c00380{height:57.375000pt;}
.h4_c00380{height:66.750000pt;}
.h2_c00380{height:77.763750pt;}
.h0_c00380{height:1122.666667pt;}
.w1_c00380{width:793.333333pt;}
.w0_c00380{width:793.626667pt;}
.x0_c00380{left:0.000000pt;}
.x2_c00380{left:151.200000pt;}
.x4_c00380{left:218.160000pt;}
.x3_c00380{left:223.200000pt;}
.x1_c00380{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f719001d8ff1383deb18e107.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.093262;font-style:normal;font-weight:normal;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_97fd0a5ac5b5b0181fef623f.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.106934;font-style: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;}
.ls4_c00381{letter-spacing:-0.079200px;}
.lsa_c00381{letter-spacing:-0.064800px;}
.ls8_c00381{letter-spacing:-0.057600px;}
.ls5_c00381{letter-spacing:-0.050400px;}
.ls2_c00381{letter-spacing:-0.043200px;}
.ls6_c00381{letter-spacing:-0.036000px;}
.ls7_c00381{letter-spacing:-0.028800px;}
.ls1_c00381{letter-spacing:-0.021600px;}
.ls3_c00381{letter-spacing:-0.014400px;}
.ls0_c00381{letter-spacing:0.000000px;}
.ls9_c00381{letter-spacing:0.007200px;}
.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;}
}
.wse_c00381{word-spacing:-4.831200px;}
.wsd_c00381{word-spacing:-4.773600px;}
.ws1e_c00381{word-spacing:-4.183200px;}
.ws1d_c00381{word-spacing:-4.118400px;}
.ws3_c00381{word-spacing:-3.542400px;}
.ws2_c00381{word-spacing:-3.398400px;}
.ws10_c00381{word-spacing:-2.721600px;}
.ws11_c00381{word-spacing:-2.685600px;}
.ws0_c00381{word-spacing:0.000000px;}
.ws12_c00381{word-spacing:0.136800px;}
.ws24_c00381{word-spacing:0.151200px;}
.ws7_c00381{word-spacing:0.158400px;}
.ws20_c00381{word-spacing:0.172800px;}
.ws13_c00381{word-spacing:0.180000px;}
.wsa_c00381{word-spacing:0.194400px;}
.ws23_c00381{word-spacing:0.907200px;}
.ws28_c00381{word-spacing:0.921600px;}
.ws27_c00381{word-spacing:0.943200px;}
.ws29_c00381{word-spacing:2.340000px;}
.ws2a_c00381{word-spacing:2.419200px;}
.wsc_c00381{word-spacing:2.714400px;}
.ws1_c00381{word-spacing:4.500000px;}
.ws26_c00381{word-spacing:4.766400px;}
.ws25_c00381{word-spacing:4.860000px;}
.wsb_c00381{word-spacing:8.460000px;}
.ws22_c00381{word-spacing:9.892800px;}
.ws21_c00381{word-spacing:9.914400px;}
.ws17_c00381{word-spacing:11.707200px;}
.ws14_c00381{word-spacing:18.914400px;}
.ws15_c00381{word-spacing:19.238400px;}
.ws16_c00381{word-spacing:19.252800px;}
.ws2b_c00381{word-spacing:22.521600px;}
.ws2c_c00381{word-spacing:22.543200px;}
.ws1f_c00381{word-spacing:26.107200px;}
.ws18_c00381{word-spacing:27.540000px;}
.ws19_c00381{word-spacing:27.547200px;}
.ws1a_c00381{word-spacing:29.376000px;}
.ws9_c00381{word-spacing:34.041600px;}
.ws8_c00381{word-spacing:34.048800px;}
.ws6_c00381{word-spacing:34.732800px;}
.ws1c_c00381{word-spacing:38.347200px;}
.ws1b_c00381{word-spacing:38.448000px;}
.ws4_c00381{word-spacing:43.977600px;}
.ws5_c00381{word-spacing:44.157600px;}
.wsf_c00381{word-spacing:45.907200px;}
._0_c00381{width:1.080000px;}
.fc0_c00381{color:rgb(0,0,0);}
.fs0_c00381{font-size:72.000000px;}
.y0_c00381{bottom:0.000000px;}
.y2_c00381{bottom:46.830450px;}
.y1_c00381{bottom:67.530450px;}
.y22_c00381{bottom:141.780450px;}
.y21_c00381{bottom:172.830450px;}
.y20_c00381{bottom:203.880450px;}
.y1f_c00381{bottom:234.930450px;}
.y1e_c00381{bottom:274.980450px;}
.y1d_c00381{bottom:306.030450px;}
.y1c_c00381{bottom:337.080450px;}
.y1b_c00381{bottom:377.040450px;}
.y1a_c00381{bottom:408.090450px;}
.y19_c00381{bottom:439.140450px;}
.y18_c00381{bottom:479.190450px;}
.y17_c00381{bottom:510.240450px;}
.y16_c00381{bottom:541.290450px;}
.y15_c00381{bottom:572.340450px;}
.y14_c00381{bottom:603.390450px;}
.y13_c00381{bottom:634.440450px;}
.y12_c00381{bottom:665.490450px;}
.y11_c00381{bottom:696.540450px;}
.y10_c00381{bottom:727.590450px;}
.yf_c00381{bottom:758.640450px;}
.ye_c00381{bottom:789.690450px;}
.yd_c00381{bottom:820.740450px;}
.yc_c00381{bottom:851.790450px;}
.yb_c00381{bottom:882.840450px;}
.ya_c00381{bottom:913.890450px;}
.y9_c00381{bottom:944.940450px;}
.y8_c00381{bottom:984.990450px;}
.y7_c00381{bottom:1014.690450px;}
.y6_c00381{bottom:1035.390450px;}
.y5_c00381{bottom:1056.090450px;}
.y4_c00381{bottom:1076.790450px;}
.y3_c00381{bottom:1097.490450px;}
.h1_c00381{height:63.175781px;}
.h2_c00381{height:64.546875px;}
.h0_c00381{height:1263.000000px;}
.w1_c00381{width:892.500000px;}
.w0_c00381{width:892.830000px;}
.x0_c00381{left:0.000000px;}
.x2_c00381{left:127.620000px;}
.x3_c00381{left:202.950000px;}
.x1_c00381{left:695.880000px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls4_c00381{letter-spacing:-0.070400pt;}
.lsa_c00381{letter-spacing:-0.057600pt;}
.ls8_c00381{letter-spacing:-0.051200pt;}
.ls5_c00381{letter-spacing:-0.044800pt;}
.ls2_c00381{letter-spacing:-0.038400pt;}
.ls6_c00381{letter-spacing:-0.032000pt;}
.ls7_c00381{letter-spacing:-0.025600pt;}
.ls1_c00381{letter-spacing:-0.019200pt;}
.ls3_c00381{letter-spacing:-0.012800pt;}
.ls0_c00381{letter-spacing:0.000000pt;}
.ls9_c00381{letter-spacing:0.006400pt;}
.wse_c00381{word-spacing:-4.294400pt;}
.wsd_c00381{word-spacing:-4.243200pt;}
.ws1e_c00381{word-spacing:-3.718400pt;}
.ws1d_c00381{word-spacing:-3.660800pt;}
.ws3_c00381{word-spacing:-3.148800pt;}
.ws2_c00381{word-spacing:-3.020800pt;}
.ws10_c00381{word-spacing:-2.419200pt;}
.ws11_c00381{word-spacing:-2.387200pt;}
.ws0_c00381{word-spacing:0.000000pt;}
.ws12_c00381{word-spacing:0.121600pt;}
.ws24_c00381{word-spacing:0.134400pt;}
.ws7_c00381{word-spacing:0.140800pt;}
.ws20_c00381{word-spacing:0.153600pt;}
.ws13_c00381{word-spacing:0.160000pt;}
.wsa_c00381{word-spacing:0.172800pt;}
.ws23_c00381{word-spacing:0.806400pt;}
.ws28_c00381{word-spacing:0.819200pt;}
.ws27_c00381{word-spacing:0.838400pt;}
.ws29_c00381{word-spacing:2.080000pt;}
.ws2a_c00381{word-spacing:2.150400pt;}
.wsc_c00381{word-spacing:2.412800pt;}
.ws1_c00381{word-spacing:4.000000pt;}
.ws26_c00381{word-spacing:4.236800pt;}
.ws25_c00381{word-spacing:4.320000pt;}
.wsb_c00381{word-spacing:7.520000pt;}
.ws22_c00381{word-spacing:8.793600pt;}
.ws21_c00381{word-spacing:8.812800pt;}
.ws17_c00381{word-spacing:10.406400pt;}
.ws14_c00381{word-spacing:16.812800pt;}
.ws15_c00381{word-spacing:17.100800pt;}
.ws16_c00381{word-spacing:17.113600pt;}
.ws2b_c00381{word-spacing:20.019200pt;}
.ws2c_c00381{word-spacing:20.038400pt;}
.ws1f_c00381{word-spacing:23.206400pt;}
.ws18_c00381{word-spacing:24.480000pt;}
.ws19_c00381{word-spacing:24.486400pt;}
.ws1a_c00381{word-spacing:26.112000pt;}
.ws9_c00381{word-spacing:30.259200pt;}
.ws8_c00381{word-spacing:30.265600pt;}
.ws6_c00381{word-spacing:30.873600pt;}
.ws1c_c00381{word-spacing:34.086400pt;}
.ws1b_c00381{word-spacing:34.176000pt;}
.ws4_c00381{word-spacing:39.091200pt;}
.ws5_c00381{word-spacing:39.251200pt;}
.wsf_c00381{word-spacing:40.806400pt;}
._0_c00381{width:0.960000pt;}
.fs0_c00381{font-size:64.000000pt;}
.y0_c00381{bottom:0.000000pt;}
.y2_c00381{bottom:41.627067pt;}
.y1_c00381{bottom:60.027067pt;}
.y22_c00381{bottom:126.027067pt;}
.y21_c00381{bottom:153.627067pt;}
.y20_c00381{bottom:181.227067pt;}
.y1f_c00381{bottom:208.827067pt;}
.y1e_c00381{bottom:244.427067pt;}
.y1d_c00381{bottom:272.027067pt;}
.y1c_c00381{bottom:299.627067pt;}
.y1b_c00381{bottom:335.147067pt;}
.y1a_c00381{bottom:362.747067pt;}
.y19_c00381{bottom:390.347067pt;}
.y18_c00381{bottom:425.947067pt;}
.y17_c00381{bottom:453.547067pt;}
.y16_c00381{bottom:481.147067pt;}
.y15_c00381{bottom:508.747067pt;}
.y14_c00381{bottom:536.347067pt;}
.y13_c00381{bottom:563.947067pt;}
.y12_c00381{bottom:591.547067pt;}
.y11_c00381{bottom:619.147067pt;}
.y10_c00381{bottom:646.747067pt;}
.yf_c00381{bottom:674.347067pt;}
.ye_c00381{bottom:701.947067pt;}
.yd_c00381{bottom:729.547067pt;}
.yc_c00381{bottom:757.147067pt;}
.yb_c00381{bottom:784.747067pt;}
.ya_c00381{bottom:812.347067pt;}
.y9_c00381{bottom:839.947067pt;}
.y8_c00381{bottom:875.547067pt;}
.y7_c00381{bottom:901.947067pt;}
.y6_c00381{bottom:920.347067pt;}
.y5_c00381{bottom:938.747067pt;}
.y4_c00381{bottom:957.147067pt;}
.y3_c00381{bottom:975.547067pt;}
.h1_c00381{height:56.156250pt;}
.h2_c00381{height:57.375000pt;}
.h0_c00381{height:1122.666667pt;}
.w1_c00381{width:793.333333pt;}
.w0_c00381{width:793.626667pt;}
.x0_c00381{left:0.000000pt;}
.x2_c00381{left:113.440000pt;}
.x3_c00381{left:180.400000pt;}
.x1_c00381{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0d160adb929cb9b6bcf1c5b0.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.093262;font-style:normal;font-weight:normal;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_cf7c231e94916ceee5b5d188.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:1.106934;font-style:normal;font-weight:normal;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_7c04fb7c30a5871a49f51ef1.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsf_c00382{letter-spacing:-0.086400px;}
.lse_c00382{letter-spacing:-0.079200px;}
.lsa_c00382{letter-spacing:-0.072000px;}
.ls6_c00382{letter-spacing:-0.064800px;}
.ls9_c00382{letter-spacing:-0.057600px;}
.ls8_c00382{letter-spacing:-0.050400px;}
.ls7_c00382{letter-spacing:-0.043200px;}
.ls4_c00382{letter-spacing:-0.036000px;}
.ls3_c00382{letter-spacing:-0.028800px;}
.lsb_c00382{letter-spacing:-0.021600px;}
.lsd_c00382{letter-spacing:-0.014400px;}
.ls5_c00382{letter-spacing:-0.007200px;}
.ls2_c00382{letter-spacing:0.000000px;}
.ls0_c00382{letter-spacing:0.007200px;}
.lsc_c00382{letter-spacing:0.028800px;}
.ls1_c00382{letter-spacing:0.036000px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00382{word-spacing:-20.052000px;}
.ws2d_c00382{word-spacing:-3.801600px;}
.ws2e_c00382{word-spacing:-3.758400px;}
.ws11_c00382{word-spacing:-3.067200px;}
.ws10_c00382{word-spacing:-2.973600px;}
.ws12_c00382{word-spacing:-2.836800px;}
.ws28_c00382{word-spacing:-2.671200px;}
.ws29_c00382{word-spacing:-2.570400px;}
.wsd_c00382{word-spacing:-1.936800px;}
.wsc_c00382{word-spacing:-1.929600px;}
.ws8_c00382{word-spacing:-1.663200px;}
.ws7_c00382{word-spacing:-1.605600px;}
.ws2c_c00382{word-spacing:-0.547200px;}
.ws1_c00382{word-spacing:0.000000px;}
.ws23_c00382{word-spacing:0.158400px;}
.ws4_c00382{word-spacing:0.165600px;}
.ws1d_c00382{word-spacing:0.187200px;}
.ws1e_c00382{word-spacing:0.194400px;}
.wsa_c00382{word-spacing:0.568800px;}
.wsb_c00382{word-spacing:0.662400px;}
.ws33_c00382{word-spacing:0.907200px;}
.ws34_c00382{word-spacing:0.921600px;}
.ws31_c00382{word-spacing:1.159200px;}
.ws32_c00382{word-spacing:1.303200px;}
.ws1b_c00382{word-spacing:1.504800px;}
.ws1c_c00382{word-spacing:1.648800px;}
.ws16_c00382{word-spacing:5.551200px;}
.ws15_c00382{word-spacing:5.587200px;}
.ws22_c00382{word-spacing:5.601600px;}
.ws21_c00382{word-spacing:5.616000px;}
.ws1a_c00382{word-spacing:5.932800px;}
.ws19_c00382{word-spacing:5.968800px;}
.ws2_c00382{word-spacing:6.933600px;}
.ws3_c00382{word-spacing:7.034400px;}
.ws20_c00382{word-spacing:7.387200px;}
.ws2f_c00382{word-spacing:7.394400px;}
.ws1f_c00382{word-spacing:7.401600px;}
.ws30_c00382{word-spacing:7.444800px;}
.ws17_c00382{word-spacing:10.288800px;}
.ws18_c00382{word-spacing:10.375200px;}
.ws6_c00382{word-spacing:14.961600px;}
.ws5_c00382{word-spacing:15.040800px;}
.ws14_c00382{word-spacing:16.372800px;}
.ws25_c00382{word-spacing:16.401600px;}
.ws13_c00382{word-spacing:16.459200px;}
.ws24_c00382{word-spacing:16.524000px;}
.ws9_c00382{word-spacing:19.288800px;}
.ws2b_c00382{word-spacing:20.268000px;}
.ws2a_c00382{word-spacing:20.383200px;}
.ws27_c00382{word-spacing:21.024000px;}
.ws26_c00382{word-spacing:21.088800px;}
.wsf_c00382{word-spacing:22.485600px;}
.wse_c00382{word-spacing:22.586400px;}
._0_c00382{width:1.000800px;}
.fc0_c00382{color:rgb(0,0,0);}
.fs0_c00382{font-size:72.000000px;}
.y0_c00382{bottom:0.000000px;}
.y2_c00382{bottom:46.830450px;}
.y1_c00382{bottom:67.530450px;}
.y20_c00382{bottom:152.130450px;}
.y1f_c00382{bottom:183.180450px;}
.y1e_c00382{bottom:214.230450px;}
.y1d_c00382{bottom:254.280450px;}
.y1c_c00382{bottom:285.330450px;}
.y1b_c00382{bottom:316.380450px;}
.y1a_c00382{bottom:347.430450px;}
.y19_c00382{bottom:378.390450px;}
.y18_c00382{bottom:409.440450px;}
.y17_c00382{bottom:440.490450px;}
.y16_c00382{bottom:480.540450px;}
.y15_c00382{bottom:511.590450px;}
.y14_c00382{bottom:542.640450px;}
.y13_c00382{bottom:582.690450px;}
.y12_c00382{bottom:613.740450px;}
.y11_c00382{bottom:644.790450px;}
.y10_c00382{bottom:675.840450px;}
.yf_c00382{bottom:706.890450px;}
.ye_c00382{bottom:737.940450px;}
.yd_c00382{bottom:768.990450px;}
.yc_c00382{bottom:809.040450px;}
.yb_c00382{bottom:840.090450px;}
.ya_c00382{bottom:871.140450px;}
.y9_c00382{bottom:902.190450px;}
.y8_c00382{bottom:933.240450px;}
.y7_c00382{bottom:964.290450px;}
.y6_c00382{bottom:995.340450px;}
.y5_c00382{bottom:1026.390450px;}
.y4_c00382{bottom:1066.440450px;}
.y3_c00382{bottom:1097.490450px;}
.h1_c00382{height:63.175781px;}
.h2_c00382{height:64.546875px;}
.h3_c00382{height:75.093750px;}
.h0_c00382{height:1263.000000px;}
.w1_c00382{width:892.500000px;}
.w0_c00382{width:892.830000px;}
.x0_c00382{left:0.000000px;}
.x2_c00382{left:170.100000px;}
.x1_c00382{left:738.360000px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.lsf_c00382{letter-spacing:-0.076800pt;}
.lse_c00382{letter-spacing:-0.070400pt;}
.lsa_c00382{letter-spacing:-0.064000pt;}
.ls6_c00382{letter-spacing:-0.057600pt;}
.ls9_c00382{letter-spacing:-0.051200pt;}
.ls8_c00382{letter-spacing:-0.044800pt;}
.ls7_c00382{letter-spacing:-0.038400pt;}
.ls4_c00382{letter-spacing:-0.032000pt;}
.ls3_c00382{letter-spacing:-0.025600pt;}
.lsb_c00382{letter-spacing:-0.019200pt;}
.lsd_c00382{letter-spacing:-0.012800pt;}
.ls5_c00382{letter-spacing:-0.006400pt;}
.ls2_c00382{letter-spacing:0.000000pt;}
.ls0_c00382{letter-spacing:0.006400pt;}
.lsc_c00382{letter-spacing:0.025600pt;}
.ls1_c00382{letter-spacing:0.032000pt;}
.ws0_c00382{word-spacing:-17.824000pt;}
.ws2d_c00382{word-spacing:-3.379200pt;}
.ws2e_c00382{word-spacing:-3.340800pt;}
.ws11_c00382{word-spacing:-2.726400pt;}
.ws10_c00382{word-spacing:-2.643200pt;}
.ws12_c00382{word-spacing:-2.521600pt;}
.ws28_c00382{word-spacing:-2.374400pt;}
.ws29_c00382{word-spacing:-2.284800pt;}
.wsd_c00382{word-spacing:-1.721600pt;}
.wsc_c00382{word-spacing:-1.715200pt;}
.ws8_c00382{word-spacing:-1.478400pt;}
.ws7_c00382{word-spacing:-1.427200pt;}
.ws2c_c00382{word-spacing:-0.486400pt;}
.ws1_c00382{word-spacing:0.000000pt;}
.ws23_c00382{word-spacing:0.140800pt;}
.ws4_c00382{word-spacing:0.147200pt;}
.ws1d_c00382{word-spacing:0.166400pt;}
.ws1e_c00382{word-spacing:0.172800pt;}
.wsa_c00382{word-spacing:0.505600pt;}
.wsb_c00382{word-spacing:0.588800pt;}
.ws33_c00382{word-spacing:0.806400pt;}
.ws34_c00382{word-spacing:0.819200pt;}
.ws31_c00382{word-spacing:1.030400pt;}
.ws32_c00382{word-spacing:1.158400pt;}
.ws1b_c00382{word-spacing:1.337600pt;}
.ws1c_c00382{word-spacing:1.465600pt;}
.ws16_c00382{word-spacing:4.934400pt;}
.ws15_c00382{word-spacing:4.966400pt;}
.ws22_c00382{word-spacing:4.979200pt;}
.ws21_c00382{word-spacing:4.992000pt;}
.ws1a_c00382{word-spacing:5.273600pt;}
.ws19_c00382{word-spacing:5.305600pt;}
.ws2_c00382{word-spacing:6.163200pt;}
.ws3_c00382{word-spacing:6.252800pt;}
.ws20_c00382{word-spacing:6.566400pt;}
.ws2f_c00382{word-spacing:6.572800pt;}
.ws1f_c00382{word-spacing:6.579200pt;}
.ws30_c00382{word-spacing:6.617600pt;}
.ws17_c00382{word-spacing:9.145600pt;}
.ws18_c00382{word-spacing:9.222400pt;}
.ws6_c00382{word-spacing:13.299200pt;}
.ws5_c00382{word-spacing:13.369600pt;}
.ws14_c00382{word-spacing:14.553600pt;}
.ws25_c00382{word-spacing:14.579200pt;}
.ws13_c00382{word-spacing:14.630400pt;}
.ws24_c00382{word-spacing:14.688000pt;}
.ws9_c00382{word-spacing:17.145600pt;}
.ws2b_c00382{word-spacing:18.016000pt;}
.ws2a_c00382{word-spacing:18.118400pt;}
.ws27_c00382{word-spacing:18.688000pt;}
.ws26_c00382{word-spacing:18.745600pt;}
.wsf_c00382{word-spacing:19.987200pt;}
.wse_c00382{word-spacing:20.076800pt;}
._0_c00382{width:0.889600pt;}
.fs0_c00382{font-size:64.000000pt;}
.y0_c00382{bottom:0.000000pt;}
.y2_c00382{bottom:41.627067pt;}
.y1_c00382{bottom:60.027067pt;}
.y20_c00382{bottom:135.227067pt;}
.y1f_c00382{bottom:162.827067pt;}
.y1e_c00382{bottom:190.427067pt;}
.y1d_c00382{bottom:226.027067pt;}
.y1c_c00382{bottom:253.627067pt;}
.y1b_c00382{bottom:281.227067pt;}
.y1a_c00382{bottom:308.827067pt;}
.y19_c00382{bottom:336.347067pt;}
.y18_c00382{bottom:363.947067pt;}
.y17_c00382{bottom:391.547067pt;}
.y16_c00382{bottom:427.147067pt;}
.y15_c00382{bottom:454.747067pt;}
.y14_c00382{bottom:482.347067pt;}
.y13_c00382{bottom:517.947067pt;}
.y12_c00382{bottom:545.547067pt;}
.y11_c00382{bottom:573.147067pt;}
.y10_c00382{bottom:600.747067pt;}
.yf_c00382{bottom:628.347067pt;}
.ye_c00382{bottom:655.947067pt;}
.yd_c00382{bottom:683.547067pt;}
.yc_c00382{bottom:719.147067pt;}
.yb_c00382{bottom:746.747067pt;}
.ya_c00382{bottom:774.347067pt;}
.y9_c00382{bottom:801.947067pt;}
.y8_c00382{bottom:829.547067pt;}
.y7_c00382{bottom:857.147067pt;}
.y6_c00382{bottom:884.747067pt;}
.y5_c00382{bottom:912.347067pt;}
.y4_c00382{bottom:947.947067pt;}
.y3_c00382{bottom:975.547067pt;}
.h1_c00382{height:56.156250pt;}
.h2_c00382{height:57.375000pt;}
.h3_c00382{height:66.750000pt;}
.h0_c00382{height:1122.666667pt;}
.w1_c00382{width:793.333333pt;}
.w0_c00382{width:793.626667pt;}
.x0_c00382{left:0.000000pt;}
.x2_c00382{left:151.200000pt;}
.x1_c00382{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5b9e32d7f0555c9a71804e58.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.093262;font-style:normal;font-weight:normal;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_b018f36ce746a41110723b8a.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.106934;font-style:normal;font-weight:normal;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_61d4cfbfa044bdddee7b47bc.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00383{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00383{vertical-align:0.000000px;}
.ls9_c00383{letter-spacing:-0.079200px;}
.ls2_c00383{letter-spacing:-0.072000px;}
.ls5_c00383{letter-spacing:-0.057600px;}
.ls1_c00383{letter-spacing:-0.050400px;}
.ls7_c00383{letter-spacing:-0.043200px;}
.ls3_c00383{letter-spacing:-0.036000px;}
.ls4_c00383{letter-spacing:-0.028800px;}
.ls6_c00383{letter-spacing:-0.021600px;}
.ls8_c00383{letter-spacing:-0.014400px;}
.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;}
}
.ws28_c00383{word-spacing:-4.132800px;}
.ws2a_c00383{word-spacing:-3.427200px;}
.ws29_c00383{word-spacing:-3.405600px;}
.ws16_c00383{word-spacing:-2.750400px;}
.ws15_c00383{word-spacing:-2.664000px;}
.ws8_c00383{word-spacing:-1.972800px;}
.ws9_c00383{word-spacing:-1.886400px;}
.wsa_c00383{word-spacing:-1.166400px;}
.ws7_c00383{word-spacing:-0.957600px;}
.ws6_c00383{word-spacing:-0.885600px;}
.ws0_c00383{word-spacing:0.000000px;}
.ws1d_c00383{word-spacing:0.172800px;}
.ws23_c00383{word-spacing:0.180000px;}
.ws1a_c00383{word-spacing:0.187200px;}
.ws10_c00383{word-spacing:0.201600px;}
.ws22_c00383{word-spacing:0.316800px;}
.ws14_c00383{word-spacing:2.707200px;}
.ws13_c00383{word-spacing:2.786400px;}
.ws5_c00383{word-spacing:3.384000px;}
.ws4_c00383{word-spacing:3.427200px;}
.wsf_c00383{word-spacing:4.132800px;}
.wsd_c00383{word-spacing:4.140000px;}
.wse_c00383{word-spacing:4.161600px;}
.ws1_c00383{word-spacing:6.328800px;}
.ws2_c00383{word-spacing:6.350400px;}
.wsb_c00383{word-spacing:6.912000px;}
.wsc_c00383{word-spacing:7.056000px;}
.ws1f_c00383{word-spacing:7.387200px;}
.ws1e_c00383{word-spacing:7.394400px;}
.ws1b_c00383{word-spacing:9.900000px;}
.ws1c_c00383{word-spacing:9.907200px;}
.ws18_c00383{word-spacing:11.707200px;}
.ws19_c00383{word-spacing:11.721600px;}
.ws25_c00383{word-spacing:13.874400px;}
.ws24_c00383{word-spacing:13.888800px;}
.ws3_c00383{word-spacing:17.834400px;}
.ws20_c00383{word-spacing:21.693600px;}
.ws21_c00383{word-spacing:21.801600px;}
.ws12_c00383{word-spacing:25.372800px;}
.ws11_c00383{word-spacing:25.416000px;}
.ws26_c00383{word-spacing:30.420000px;}
.ws27_c00383{word-spacing:30.556800px;}
.ws17_c00383{word-spacing:61.387200px;}
._0_c00383{width:1.332000px;}
._1_c00383{width:47.520000px;}
._2_c00383{width:54.576000px;}
.fc0_c00383{color:rgb(0,0,0);}
.fs0_c00383{font-size:72.000000px;}
.y0_c00383{bottom:0.000000px;}
.y2_c00383{bottom:46.830450px;}
.y1_c00383{bottom:67.530450px;}
.y1f_c00383{bottom:162.750450px;}
.y1e_c00383{bottom:193.800450px;}
.y1d_c00383{bottom:233.850450px;}
.y1c_c00383{bottom:264.900450px;}
.y1b_c00383{bottom:295.950450px;}
.y1a_c00383{bottom:327.000450px;}
.y19_c00383{bottom:367.050450px;}
.y18_c00383{bottom:398.010450px;}
.y17_c00383{bottom:438.060450px;}
.y16_c00383{bottom:479.370450px;}
.y15_c00383{bottom:510.420450px;}
.y14_c00383{bottom:541.380450px;}
.y13_c00383{bottom:582.690450px;}
.y12_c00383{bottom:613.740450px;}
.y11_c00383{bottom:653.790450px;}
.y10_c00383{bottom:684.840450px;}
.yf_c00383{bottom:715.890450px;}
.ye_c00383{bottom:746.940450px;}
.yd_c00383{bottom:777.990450px;}
.yc_c00383{bottom:809.040450px;}
.yb_c00383{bottom:849.090450px;}
.ya_c00383{bottom:880.140450px;}
.y9_c00383{bottom:911.190450px;}
.y8_c00383{bottom:942.240450px;}
.y7_c00383{bottom:973.290450px;}
.y6_c00383{bottom:1004.340450px;}
.y5_c00383{bottom:1035.390450px;}
.y4_c00383{bottom:1066.440450px;}
.y3_c00383{bottom:1097.490450px;}
.h1_c00383{height:63.175781px;}
.h2_c00383{height:64.546875px;}
.h0_c00383{height:1263.000000px;}
.w1_c00383{width:892.500000px;}
.w0_c00383{width:892.830000px;}
.x0_c00383{left:0.000000px;}
.x2_c00383{left:127.620000px;}
.x3_c00383{left:154.620000px;}
.x4_c00383{left:181.620000px;}
.x1_c00383{left:695.880000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls9_c00383{letter-spacing:-0.070400pt;}
.ls2_c00383{letter-spacing:-0.064000pt;}
.ls5_c00383{letter-spacing:-0.051200pt;}
.ls1_c00383{letter-spacing:-0.044800pt;}
.ls7_c00383{letter-spacing:-0.038400pt;}
.ls3_c00383{letter-spacing:-0.032000pt;}
.ls4_c00383{letter-spacing:-0.025600pt;}
.ls6_c00383{letter-spacing:-0.019200pt;}
.ls8_c00383{letter-spacing:-0.012800pt;}
.ls0_c00383{letter-spacing:0.000000pt;}
.ws28_c00383{word-spacing:-3.673600pt;}
.ws2a_c00383{word-spacing:-3.046400pt;}
.ws29_c00383{word-spacing:-3.027200pt;}
.ws16_c00383{word-spacing:-2.444800pt;}
.ws15_c00383{word-spacing:-2.368000pt;}
.ws8_c00383{word-spacing:-1.753600pt;}
.ws9_c00383{word-spacing:-1.676800pt;}
.wsa_c00383{word-spacing:-1.036800pt;}
.ws7_c00383{word-spacing:-0.851200pt;}
.ws6_c00383{word-spacing:-0.787200pt;}
.ws0_c00383{word-spacing:0.000000pt;}
.ws1d_c00383{word-spacing:0.153600pt;}
.ws23_c00383{word-spacing:0.160000pt;}
.ws1a_c00383{word-spacing:0.166400pt;}
.ws10_c00383{word-spacing:0.179200pt;}
.ws22_c00383{word-spacing:0.281600pt;}
.ws14_c00383{word-spacing:2.406400pt;}
.ws13_c00383{word-spacing:2.476800pt;}
.ws5_c00383{word-spacing:3.008000pt;}
.ws4_c00383{word-spacing:3.046400pt;}
.wsf_c00383{word-spacing:3.673600pt;}
.wsd_c00383{word-spacing:3.680000pt;}
.wse_c00383{word-spacing:3.699200pt;}
.ws1_c00383{word-spacing:5.625600pt;}
.ws2_c00383{word-spacing:5.644800pt;}
.wsb_c00383{word-spacing:6.144000pt;}
.wsc_c00383{word-spacing:6.272000pt;}
.ws1f_c00383{word-spacing:6.566400pt;}
.ws1e_c00383{word-spacing:6.572800pt;}
.ws1b_c00383{word-spacing:8.800000pt;}
.ws1c_c00383{word-spacing:8.806400pt;}
.ws18_c00383{word-spacing:10.406400pt;}
.ws19_c00383{word-spacing:10.419200pt;}
.ws25_c00383{word-spacing:12.332800pt;}
.ws24_c00383{word-spacing:12.345600pt;}
.ws3_c00383{word-spacing:15.852800pt;}
.ws20_c00383{word-spacing:19.283200pt;}
.ws21_c00383{word-spacing:19.379200pt;}
.ws12_c00383{word-spacing:22.553600pt;}
.ws11_c00383{word-spacing:22.592000pt;}
.ws26_c00383{word-spacing:27.040000pt;}
.ws27_c00383{word-spacing:27.161600pt;}
.ws17_c00383{word-spacing:54.566400pt;}
._0_c00383{width:1.184000pt;}
._1_c00383{width:42.240000pt;}
._2_c00383{width:48.512000pt;}
.fs0_c00383{font-size:64.000000pt;}
.y0_c00383{bottom:0.000000pt;}
.y2_c00383{bottom:41.627067pt;}
.y1_c00383{bottom:60.027067pt;}
.y1f_c00383{bottom:144.667067pt;}
.y1e_c00383{bottom:172.267067pt;}
.y1d_c00383{bottom:207.867067pt;}
.y1c_c00383{bottom:235.467067pt;}
.y1b_c00383{bottom:263.067067pt;}
.y1a_c00383{bottom:290.667067pt;}
.y19_c00383{bottom:326.267067pt;}
.y18_c00383{bottom:353.787067pt;}
.y17_c00383{bottom:389.387067pt;}
.y16_c00383{bottom:426.107067pt;}
.y15_c00383{bottom:453.707067pt;}
.y14_c00383{bottom:481.227067pt;}
.y13_c00383{bottom:517.947067pt;}
.y12_c00383{bottom:545.547067pt;}
.y11_c00383{bottom:581.147067pt;}
.y10_c00383{bottom:608.747067pt;}
.yf_c00383{bottom:636.347067pt;}
.ye_c00383{bottom:663.947067pt;}
.yd_c00383{bottom:691.547067pt;}
.yc_c00383{bottom:719.147067pt;}
.yb_c00383{bottom:754.747067pt;}
.ya_c00383{bottom:782.347067pt;}
.y9_c00383{bottom:809.947067pt;}
.y8_c00383{bottom:837.547067pt;}
.y7_c00383{bottom:865.147067pt;}
.y6_c00383{bottom:892.747067pt;}
.y5_c00383{bottom:920.347067pt;}
.y4_c00383{bottom:947.947067pt;}
.y3_c00383{bottom:975.547067pt;}
.h1_c00383{height:56.156250pt;}
.h2_c00383{height:57.375000pt;}
.h0_c00383{height:1122.666667pt;}
.w1_c00383{width:793.333333pt;}
.w0_c00383{width:793.626667pt;}
.x0_c00383{left:0.000000pt;}
.x2_c00383{left:113.440000pt;}
.x3_c00383{left:137.440000pt;}
.x4_c00383{left:161.440000pt;}
.x1_c00383{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f069737648f797f935e12057.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.093262;font-style:normal;font-weight:normal;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_447f50b47c992b7c01b8a441.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00384{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.ls4_c00384{letter-spacing:-0.100800px;}
.ls5_c00384{letter-spacing:-0.043200px;}
.ls1_c00384{letter-spacing:-0.036000px;}
.ls2_c00384{letter-spacing:-0.021600px;}
.ls3_c00384{letter-spacing:-0.014400px;}
.ls0_c00384{letter-spacing:0.000000px;}
.ls6_c00384{letter-spacing:843.998400px;}
.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;}
}
.ws0_c00384{word-spacing:0.000000px;}
.wsa_c00384{word-spacing:0.158400px;}
.wsd_c00384{word-spacing:0.180000px;}
.ws2_c00384{word-spacing:0.698400px;}
.ws1_c00384{word-spacing:0.914400px;}
.ws9_c00384{word-spacing:3.074400px;}
.ws8_c00384{word-spacing:3.153600px;}
.wsb_c00384{word-spacing:9.900000px;}
.wsc_c00384{word-spacing:9.907200px;}
.ws7_c00384{word-spacing:14.961600px;}
.ws6_c00384{word-spacing:15.019200px;}
.ws5_c00384{word-spacing:17.510400px;}
.ws4_c00384{word-spacing:17.553600px;}
.ws3_c00384{word-spacing:66.420000px;}
.fc0_c00384{color:rgb(0,0,0);}
.fs0_c00384{font-size:72.000000px;}
.y0_c00384{bottom:0.000000px;}
.y2_c00384{bottom:46.830450px;}
.y1_c00384{bottom:67.530450px;}
.yb_c00384{bottom:831.090450px;}
.ya_c00384{bottom:871.140450px;}
.y9_c00384{bottom:902.190450px;}
.y8_c00384{bottom:942.240450px;}
.y7_c00384{bottom:973.290450px;}
.y6_c00384{bottom:1004.340450px;}
.y5_c00384{bottom:1035.390450px;}
.y4_c00384{bottom:1066.440450px;}
.y3_c00384{bottom:1097.490450px;}
.h1_c00384{height:63.175781px;}
.h2_c00384{height:64.546875px;}
.h0_c00384{height:1263.000000px;}
.w1_c00384{width:892.500000px;}
.w0_c00384{width:892.830000px;}
.x0_c00384{left:0.000000px;}
.x2_c00384{left:170.100000px;}
.x1_c00384{left:738.360000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls4_c00384{letter-spacing:-0.089600pt;}
.ls5_c00384{letter-spacing:-0.038400pt;}
.ls1_c00384{letter-spacing:-0.032000pt;}
.ls2_c00384{letter-spacing:-0.019200pt;}
.ls3_c00384{letter-spacing:-0.012800pt;}
.ls0_c00384{letter-spacing:0.000000pt;}
.ls6_c00384{letter-spacing:750.220800pt;}
.ws0_c00384{word-spacing:0.000000pt;}
.wsa_c00384{word-spacing:0.140800pt;}
.wsd_c00384{word-spacing:0.160000pt;}
.ws2_c00384{word-spacing:0.620800pt;}
.ws1_c00384{word-spacing:0.812800pt;}
.ws9_c00384{word-spacing:2.732800pt;}
.ws8_c00384{word-spacing:2.803200pt;}
.wsb_c00384{word-spacing:8.800000pt;}
.wsc_c00384{word-spacing:8.806400pt;}
.ws7_c00384{word-spacing:13.299200pt;}
.ws6_c00384{word-spacing:13.350400pt;}
.ws5_c00384{word-spacing:15.564800pt;}
.ws4_c00384{word-spacing:15.603200pt;}
.ws3_c00384{word-spacing:59.040000pt;}
.fs0_c00384{font-size:64.000000pt;}
.y0_c00384{bottom:0.000000pt;}
.y2_c00384{bottom:41.627067pt;}
.y1_c00384{bottom:60.027067pt;}
.yb_c00384{bottom:738.747067pt;}
.ya_c00384{bottom:774.347067pt;}
.y9_c00384{bottom:801.947067pt;}
.y8_c00384{bottom:837.547067pt;}
.y7_c00384{bottom:865.147067pt;}
.y6_c00384{bottom:892.747067pt;}
.y5_c00384{bottom:920.347067pt;}
.y4_c00384{bottom:947.947067pt;}
.y3_c00384{bottom:975.547067pt;}
.h1_c00384{height:56.156250pt;}
.h2_c00384{height:57.375000pt;}
.h0_c00384{height:1122.666667pt;}
.w1_c00384{width:793.333333pt;}
.w0_c00384{width:793.626667pt;}
.x0_c00384{left:0.000000pt;}
.x2_c00384{left:151.200000pt;}
.x1_c00384{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f8d2dd692f5b73f95bdb82b8.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00385{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.ls0_c00385{letter-spacing:0.000000px;}
.ls1_c00385{letter-spacing:843.998400px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00385{word-spacing:0.000000px;}
.fc0_c00385{color:rgb(0,0,0);}
.fs0_c00385{font-size:72.000000px;}
.y0_c00385{bottom:0.000000px;}
.y2_c00385{bottom:46.830450px;}
.y1_c00385{bottom:67.530450px;}
.y4_c00385{bottom:1057.440450px;}
.y3_c00385{bottom:1097.490450px;}
.h1_c00385{height:63.175781px;}
.h2_c00385{height:64.546875px;}
.h0_c00385{height:1263.000000px;}
.w1_c00385{width:892.500000px;}
.w0_c00385{width:892.830000px;}
.x0_c00385{left:0.000000px;}
.x2_c00385{left:127.620000px;}
.x1_c00385{left:695.880000px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls0_c00385{letter-spacing:0.000000pt;}
.ls1_c00385{letter-spacing:750.220800pt;}
.ws0_c00385{word-spacing:0.000000pt;}
.fs0_c00385{font-size:64.000000pt;}
.y0_c00385{bottom:0.000000pt;}
.y2_c00385{bottom:41.627067pt;}
.y1_c00385{bottom:60.027067pt;}
.y4_c00385{bottom:939.947067pt;}
.y3_c00385{bottom:975.547067pt;}
.h1_c00385{height:56.156250pt;}
.h2_c00385{height:57.375000pt;}
.h0_c00385{height:1122.666667pt;}
.w1_c00385{width:793.333333pt;}
.w0_c00385{width:793.626667pt;}
.x0_c00385{left:0.000000pt;}
.x2_c00385{left:113.440000pt;}
.x1_c00385{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d0cbab133ee4211a8673a662.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.093262;font-style:normal;font-weight:normal;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_8831a9a1af0d3e94af616a27.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00386;src:url('chunks/assets/font_76909fa224fc80e38fc650a3.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00386{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00386{vertical-align:0.000000px;}
.lsb_c00386{letter-spacing:-0.079200px;}
.ls9_c00386{letter-spacing:-0.064800px;}
.ls5_c00386{letter-spacing:-0.057600px;}
.ls8_c00386{letter-spacing:-0.050400px;}
.lsa_c00386{letter-spacing:-0.043200px;}
.ls4_c00386{letter-spacing:-0.036000px;}
.ls6_c00386{letter-spacing:-0.028800px;}
.lsc_c00386{letter-spacing:-0.021600px;}
.lsd_c00386{letter-spacing:-0.014400px;}
.ls7_c00386{letter-spacing:-0.007200px;}
.ls2_c00386{letter-spacing:0.000000px;}
.ls1_c00386{letter-spacing:0.050328px;}
.ls0_c00386{letter-spacing:0.058716px;}
.ls3_c00386{letter-spacing:0.067104px;}
.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;}
}
.ws1a_c00386{word-spacing:-4.428000px;}
.ws1c_c00386{word-spacing:-4.384800px;}
.ws1b_c00386{word-spacing:-4.233600px;}
.ws11_c00386{word-spacing:-3.412800px;}
.ws12_c00386{word-spacing:-3.391200px;}
.ws13_c00386{word-spacing:-3.376800px;}
.ws17_c00386{word-spacing:-1.296000px;}
.ws10_c00386{word-spacing:-1.274400px;}
.ws16_c00386{word-spacing:-1.260000px;}
.wsf_c00386{word-spacing:-1.252800px;}
.ws3_c00386{word-spacing:-0.142596px;}
.wse_c00386{word-spacing:-0.014400px;}
.ws0_c00386{word-spacing:0.000000px;}
.ws4_c00386{word-spacing:0.025164px;}
.ws2_c00386{word-spacing:0.041940px;}
.ws1_c00386{word-spacing:0.092268px;}
.ws5_c00386{word-spacing:0.109044px;}
.wsd_c00386{word-spacing:0.158400px;}
.ws2b_c00386{word-spacing:0.187200px;}
.ws2f_c00386{word-spacing:0.194400px;}
.ws1d_c00386{word-spacing:0.223200px;}
.ws7_c00386{word-spacing:0.554400px;}
.ws8_c00386{word-spacing:0.576000px;}
.ws18_c00386{word-spacing:1.886400px;}
.ws19_c00386{word-spacing:1.980000px;}
.wsa_c00386{word-spacing:2.980800px;}
.ws25_c00386{word-spacing:3.009600px;}
.ws24_c00386{word-spacing:3.052800px;}
.ws21_c00386{word-spacing:3.067200px;}
.ws9_c00386{word-spacing:3.074400px;}
.ws22_c00386{word-spacing:3.088800px;}
.ws2e_c00386{word-spacing:4.161600px;}
.ws27_c00386{word-spacing:8.812800px;}
.ws26_c00386{word-spacing:8.913600px;}
.ws6_c00386{word-spacing:13.154400px;}
.ws14_c00386{word-spacing:15.228000px;}
.ws15_c00386{word-spacing:15.357600px;}
.ws29_c00386{word-spacing:18.532800px;}
.ws2a_c00386{word-spacing:18.576000px;}
.ws20_c00386{word-spacing:20.930400px;}
.ws1f_c00386{word-spacing:21.081600px;}
.ws23_c00386{word-spacing:22.514400px;}
.ws28_c00386{word-spacing:24.688800px;}
.ws1e_c00386{word-spacing:32.630400px;}
.ws2c_c00386{word-spacing:33.566400px;}
.ws2d_c00386{word-spacing:33.804000px;}
.wsc_c00386{word-spacing:45.907200px;}
.wsb_c00386{word-spacing:46.000800px;}
._1_c00386{width:1.332000px;}
._0_c00386{width:9.646200px;}
.fc0_c00386{color:rgb(0,0,0);}
.fs0_c00386{font-size:72.000000px;}
.fs1_c00386{font-size:83.880000px;}
.y0_c00386{bottom:0.000000px;}
.y2_c00386{bottom:46.830450px;}
.y1_c00386{bottom:67.530450px;}
.y25_c00386{bottom:166.530450px;}
.y24_c00386{bottom:197.580450px;}
.y23_c00386{bottom:228.630450px;}
.y22_c00386{bottom:268.680450px;}
.y21_c00386{bottom:298.380450px;}
.y20_c00386{bottom:319.080450px;}
.y1f_c00386{bottom:339.690450px;}
.y1e_c00386{bottom:360.390450px;}
.y1d_c00386{bottom:381.090450px;}
.y1c_c00386{bottom:401.790450px;}
.y1b_c00386{bottom:422.490450px;}
.y1a_c00386{bottom:462.540450px;}
.y19_c00386{bottom:493.590450px;}
.y18_c00386{bottom:524.640450px;}
.y17_c00386{bottom:564.690450px;}
.y16_c00386{bottom:594.390450px;}
.y15_c00386{bottom:615.090450px;}
.y14_c00386{bottom:635.790450px;}
.y13_c00386{bottom:656.490450px;}
.y12_c00386{bottom:677.190450px;}
.y11_c00386{bottom:697.890450px;}
.y10_c00386{bottom:718.590450px;}
.yf_c00386{bottom:739.290450px;}
.ye_c00386{bottom:779.340450px;}
.yd_c00386{bottom:810.390450px;}
.yc_c00386{bottom:841.440450px;}
.yb_c00386{bottom:872.490450px;}
.ya_c00386{bottom:903.540450px;}
.y9_c00386{bottom:943.590450px;}
.y8_c00386{bottom:973.733250px;}
.y7_c00386{bottom:997.953600px;}
.y6_c00386{bottom:1022.069100px;}
.y5_c00386{bottom:1046.184600px;}
.y4_c00386{bottom:1070.404950px;}
.y3_c00386{bottom:1094.520450px;}
.h1_c00386{height:63.175781px;}
.h3_c00386{height:64.546875px;}
.h2_c00386{height:87.484219px;}
.h0_c00386{height:1263.000000px;}
.w1_c00386{width:892.500000px;}
.w0_c00386{width:892.830000px;}
.x0_c00386{left:0.000000px;}
.x2_c00386{left:170.100000px;}
.x5_c00386{left:245.430000px;}
.x3_c00386{left:251.100000px;}
.x4_c00386{left:299.708460px;}
.x1_c00386{left:738.360000px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.lsb_c00386{letter-spacing:-0.070400pt;}
.ls9_c00386{letter-spacing:-0.057600pt;}
.ls5_c00386{letter-spacing:-0.051200pt;}
.ls8_c00386{letter-spacing:-0.044800pt;}
.lsa_c00386{letter-spacing:-0.038400pt;}
.ls4_c00386{letter-spacing:-0.032000pt;}
.ls6_c00386{letter-spacing:-0.025600pt;}
.lsc_c00386{letter-spacing:-0.019200pt;}
.lsd_c00386{letter-spacing:-0.012800pt;}
.ls7_c00386{letter-spacing:-0.006400pt;}
.ls2_c00386{letter-spacing:0.000000pt;}
.ls1_c00386{letter-spacing:0.044736pt;}
.ls0_c00386{letter-spacing:0.052192pt;}
.ls3_c00386{letter-spacing:0.059648pt;}
.ws1a_c00386{word-spacing:-3.936000pt;}
.ws1c_c00386{word-spacing:-3.897600pt;}
.ws1b_c00386{word-spacing:-3.763200pt;}
.ws11_c00386{word-spacing:-3.033600pt;}
.ws12_c00386{word-spacing:-3.014400pt;}
.ws13_c00386{word-spacing:-3.001600pt;}
.ws17_c00386{word-spacing:-1.152000pt;}
.ws10_c00386{word-spacing:-1.132800pt;}
.ws16_c00386{word-spacing:-1.120000pt;}
.wsf_c00386{word-spacing:-1.113600pt;}
.ws3_c00386{word-spacing:-0.126752pt;}
.wse_c00386{word-spacing:-0.012800pt;}
.ws0_c00386{word-spacing:0.000000pt;}
.ws4_c00386{word-spacing:0.022368pt;}
.ws2_c00386{word-spacing:0.037280pt;}
.ws1_c00386{word-spacing:0.082016pt;}
.ws5_c00386{word-spacing:0.096928pt;}
.wsd_c00386{word-spacing:0.140800pt;}
.ws2b_c00386{word-spacing:0.166400pt;}
.ws2f_c00386{word-spacing:0.172800pt;}
.ws1d_c00386{word-spacing:0.198400pt;}
.ws7_c00386{word-spacing:0.492800pt;}
.ws8_c00386{word-spacing:0.512000pt;}
.ws18_c00386{word-spacing:1.676800pt;}
.ws19_c00386{word-spacing:1.760000pt;}
.wsa_c00386{word-spacing:2.649600pt;}
.ws25_c00386{word-spacing:2.675200pt;}
.ws24_c00386{word-spacing:2.713600pt;}
.ws21_c00386{word-spacing:2.726400pt;}
.ws9_c00386{word-spacing:2.732800pt;}
.ws22_c00386{word-spacing:2.745600pt;}
.ws2e_c00386{word-spacing:3.699200pt;}
.ws27_c00386{word-spacing:7.833600pt;}
.ws26_c00386{word-spacing:7.923200pt;}
.ws6_c00386{word-spacing:11.692800pt;}
.ws14_c00386{word-spacing:13.536000pt;}
.ws15_c00386{word-spacing:13.651200pt;}
.ws29_c00386{word-spacing:16.473600pt;}
.ws2a_c00386{word-spacing:16.512000pt;}
.ws20_c00386{word-spacing:18.604800pt;}
.ws1f_c00386{word-spacing:18.739200pt;}
.ws23_c00386{word-spacing:20.012800pt;}
.ws28_c00386{word-spacing:21.945600pt;}
.ws1e_c00386{word-spacing:29.004800pt;}
.ws2c_c00386{word-spacing:29.836800pt;}
.ws2d_c00386{word-spacing:30.048000pt;}
.wsc_c00386{word-spacing:40.806400pt;}
.wsb_c00386{word-spacing:40.889600pt;}
._1_c00386{width:1.184000pt;}
._0_c00386{width:8.574400pt;}
.fs0_c00386{font-size:64.000000pt;}
.fs1_c00386{font-size:74.560000pt;}
.y0_c00386{bottom:0.000000pt;}
.y2_c00386{bottom:41.627067pt;}
.y1_c00386{bottom:60.027067pt;}
.y25_c00386{bottom:148.027067pt;}
.y24_c00386{bottom:175.627067pt;}
.y23_c00386{bottom:203.227067pt;}
.y22_c00386{bottom:238.827067pt;}
.y21_c00386{bottom:265.227067pt;}
.y20_c00386{bottom:283.627067pt;}
.y1f_c00386{bottom:301.947067pt;}
.y1e_c00386{bottom:320.347067pt;}
.y1d_c00386{bottom:338.747067pt;}
.y1c_c00386{bottom:357.147067pt;}
.y1b_c00386{bottom:375.547067pt;}
.y1a_c00386{bottom:411.147067pt;}
.y19_c00386{bottom:438.747067pt;}
.y18_c00386{bottom:466.347067pt;}
.y17_c00386{bottom:501.947067pt;}
.y16_c00386{bottom:528.347067pt;}
.y15_c00386{bottom:546.747067pt;}
.y14_c00386{bottom:565.147067pt;}
.y13_c00386{bottom:583.547067pt;}
.y12_c00386{bottom:601.947067pt;}
.y11_c00386{bottom:620.347067pt;}
.y10_c00386{bottom:638.747067pt;}
.yf_c00386{bottom:657.147067pt;}
.ye_c00386{bottom:692.747067pt;}
.yd_c00386{bottom:720.347067pt;}
.yc_c00386{bottom:747.947067pt;}
.yb_c00386{bottom:775.547067pt;}
.ya_c00386{bottom:803.147067pt;}
.y9_c00386{bottom:838.747067pt;}
.y8_c00386{bottom:865.540667pt;}
.y7_c00386{bottom:887.069867pt;}
.y6_c00386{bottom:908.505867pt;}
.y5_c00386{bottom:929.941867pt;}
.y4_c00386{bottom:951.471067pt;}
.y3_c00386{bottom:972.907067pt;}
.h1_c00386{height:56.156250pt;}
.h3_c00386{height:57.375000pt;}
.h2_c00386{height:77.763750pt;}
.h0_c00386{height:1122.666667pt;}
.w1_c00386{width:793.333333pt;}
.w0_c00386{width:793.626667pt;}
.x0_c00386{left:0.000000pt;}
.x2_c00386{left:151.200000pt;}
.x5_c00386{left:218.160000pt;}
.x3_c00386{left:223.200000pt;}
.x4_c00386{left:266.407520pt;}
.x1_c00386{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d0a2518ee4b19bbe0520cfef.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.093262;font-style:normal;font-weight:normal;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_94c50ef68519601eab297f75.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.106934;font-style:normal;font-weight:normal;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_cfb29128e09272c8229224fc.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00387{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.lsa_c00387{letter-spacing:-0.043200px;}
.ls6_c00387{letter-spacing:-0.036000px;}
.lsb_c00387{letter-spacing:-0.028800px;}
.ls9_c00387{letter-spacing:-0.021600px;}
.ls7_c00387{letter-spacing:-0.014400px;}
.ls8_c00387{letter-spacing:-0.007200px;}
.ls5_c00387{letter-spacing:0.000000px;}
.ls3_c00387{letter-spacing:0.007200px;}
.ls4_c00387{letter-spacing:0.014400px;}
.ls1_c00387{letter-spacing:0.043200px;}
.ls0_c00387{letter-spacing:0.057600px;}
.ls2_c00387{letter-spacing:0.093600px;}
.lsc_c00387{letter-spacing:844.351200px;}
.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;}
}
.ws3_c00387{word-spacing:-3.607200px;}
.ws2_c00387{word-spacing:-3.492000px;}
.ws1_c00387{word-spacing:-3.398400px;}
.wsc_c00387{word-spacing:-3.146400px;}
.wsd_c00387{word-spacing:-3.052800px;}
.ws13_c00387{word-spacing:-0.086400px;}
.ws11_c00387{word-spacing:-0.050400px;}
.ws12_c00387{word-spacing:-0.036000px;}
.ws0_c00387{word-spacing:0.000000px;}
.ws1d_c00387{word-spacing:0.064800px;}
.ws1e_c00387{word-spacing:0.151200px;}
.wse_c00387{word-spacing:0.158400px;}
.ws1a_c00387{word-spacing:0.165600px;}
.wsf_c00387{word-spacing:0.172800px;}
.ws5_c00387{word-spacing:0.187200px;}
.ws6_c00387{word-spacing:2.707200px;}
.ws7_c00387{word-spacing:2.829600px;}
.ws18_c00387{word-spacing:4.132800px;}
.ws19_c00387{word-spacing:4.147200px;}
.ws1c_c00387{word-spacing:4.838400px;}
.ws1b_c00387{word-spacing:4.939200px;}
.ws17_c00387{word-spacing:12.132000px;}
.ws16_c00387{word-spacing:12.196800px;}
.ws9_c00387{word-spacing:17.452800px;}
.ws8_c00387{word-spacing:17.467200px;}
.wsa_c00387{word-spacing:19.598400px;}
.wsb_c00387{word-spacing:19.620000px;}
.ws10_c00387{word-spacing:21.434400px;}
.ws4_c00387{word-spacing:36.194400px;}
.ws15_c00387{word-spacing:39.427200px;}
.ws14_c00387{word-spacing:39.448800px;}
._1_c00387{margin-left:-1.216800px;}
._0_c00387{width:1.152000px;}
.fc0_c00387{color:rgb(0,0,0);}
.fs0_c00387{font-size:72.000000px;}
.y0_c00387{bottom:0.000000px;}
.y2_c00387{bottom:46.830450px;}
.y1_c00387{bottom:67.530450px;}
.y1b_c00387{bottom:252.660600px;}
.y1a_c00387{bottom:292.710600px;}
.y19_c00387{bottom:323.760600px;}
.y18_c00387{bottom:363.810600px;}
.y17_c00387{bottom:394.860600px;}
.y16_c00387{bottom:425.910600px;}
.y15_c00387{bottom:456.960600px;}
.y14_c00387{bottom:482.700600px;}
.y13_c00387{bottom:507.450600px;}
.y12_c00387{bottom:646.230450px;}
.y11_c00387{bottom:666.930450px;}
.y10_c00387{bottom:687.630450px;}
.yf_c00387{bottom:708.330450px;}
.ye_c00387{bottom:729.030450px;}
.yd_c00387{bottom:768.990450px;}
.yc_c00387{bottom:800.040450px;}
.yb_c00387{bottom:840.090450px;}
.ya_c00387{bottom:880.140450px;}
.y9_c00387{bottom:911.190450px;}
.y8_c00387{bottom:942.240450px;}
.y7_c00387{bottom:973.290450px;}
.y6_c00387{bottom:1004.340450px;}
.y5_c00387{bottom:1035.390450px;}
.y4_c00387{bottom:1066.440450px;}
.y3_c00387{bottom:1097.490450px;}
.h1_c00387{height:63.175781px;}
.h3_c00387{height:64.546875px;}
.h2_c00387{height:75.093750px;}
.h0_c00387{height:1263.000000px;}
.w1_c00387{width:892.500000px;}
.w0_c00387{width:892.830000px;}
.x0_c00387{left:0.000000px;}
.x2_c00387{left:127.618135px;}
.x3_c00387{left:136.616325px;}
.x1_c00387{left:695.880000px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.lsa_c00387{letter-spacing:-0.038400pt;}
.ls6_c00387{letter-spacing:-0.032000pt;}
.lsb_c00387{letter-spacing:-0.025600pt;}
.ls9_c00387{letter-spacing:-0.019200pt;}
.ls7_c00387{letter-spacing:-0.012800pt;}
.ls8_c00387{letter-spacing:-0.006400pt;}
.ls5_c00387{letter-spacing:0.000000pt;}
.ls3_c00387{letter-spacing:0.006400pt;}
.ls4_c00387{letter-spacing:0.012800pt;}
.ls1_c00387{letter-spacing:0.038400pt;}
.ls0_c00387{letter-spacing:0.051200pt;}
.ls2_c00387{letter-spacing:0.083200pt;}
.lsc_c00387{letter-spacing:750.534400pt;}
.ws3_c00387{word-spacing:-3.206400pt;}
.ws2_c00387{word-spacing:-3.104000pt;}
.ws1_c00387{word-spacing:-3.020800pt;}
.wsc_c00387{word-spacing:-2.796800pt;}
.wsd_c00387{word-spacing:-2.713600pt;}
.ws13_c00387{word-spacing:-0.076800pt;}
.ws11_c00387{word-spacing:-0.044800pt;}
.ws12_c00387{word-spacing:-0.032000pt;}
.ws0_c00387{word-spacing:0.000000pt;}
.ws1d_c00387{word-spacing:0.057600pt;}
.ws1e_c00387{word-spacing:0.134400pt;}
.wse_c00387{word-spacing:0.140800pt;}
.ws1a_c00387{word-spacing:0.147200pt;}
.wsf_c00387{word-spacing:0.153600pt;}
.ws5_c00387{word-spacing:0.166400pt;}
.ws6_c00387{word-spacing:2.406400pt;}
.ws7_c00387{word-spacing:2.515200pt;}
.ws18_c00387{word-spacing:3.673600pt;}
.ws19_c00387{word-spacing:3.686400pt;}
.ws1c_c00387{word-spacing:4.300800pt;}
.ws1b_c00387{word-spacing:4.390400pt;}
.ws17_c00387{word-spacing:10.784000pt;}
.ws16_c00387{word-spacing:10.841600pt;}
.ws9_c00387{word-spacing:15.513600pt;}
.ws8_c00387{word-spacing:15.526400pt;}
.wsa_c00387{word-spacing:17.420800pt;}
.wsb_c00387{word-spacing:17.440000pt;}
.ws10_c00387{word-spacing:19.052800pt;}
.ws4_c00387{word-spacing:32.172800pt;}
.ws15_c00387{word-spacing:35.046400pt;}
.ws14_c00387{word-spacing:35.065600pt;}
._1_c00387{margin-left:-1.081600pt;}
._0_c00387{width:1.024000pt;}
.fs0_c00387{font-size:64.000000pt;}
.y0_c00387{bottom:0.000000pt;}
.y2_c00387{bottom:41.627067pt;}
.y1_c00387{bottom:60.027067pt;}
.y1b_c00387{bottom:224.587200pt;}
.y1a_c00387{bottom:260.187200pt;}
.y19_c00387{bottom:287.787200pt;}
.y18_c00387{bottom:323.387200pt;}
.y17_c00387{bottom:350.987200pt;}
.y16_c00387{bottom:378.587200pt;}
.y15_c00387{bottom:406.187200pt;}
.y14_c00387{bottom:429.067200pt;}
.y13_c00387{bottom:451.067200pt;}
.y12_c00387{bottom:574.427067pt;}
.y11_c00387{bottom:592.827067pt;}
.y10_c00387{bottom:611.227067pt;}
.yf_c00387{bottom:629.627067pt;}
.ye_c00387{bottom:648.027067pt;}
.yd_c00387{bottom:683.547067pt;}
.yc_c00387{bottom:711.147067pt;}
.yb_c00387{bottom:746.747067pt;}
.ya_c00387{bottom:782.347067pt;}
.y9_c00387{bottom:809.947067pt;}
.y8_c00387{bottom:837.547067pt;}
.y7_c00387{bottom:865.147067pt;}
.y6_c00387{bottom:892.747067pt;}
.y5_c00387{bottom:920.347067pt;}
.y4_c00387{bottom:947.947067pt;}
.y3_c00387{bottom:975.547067pt;}
.h1_c00387{height:56.156250pt;}
.h3_c00387{height:57.375000pt;}
.h2_c00387{height:66.750000pt;}
.h0_c00387{height:1122.666667pt;}
.w1_c00387{width:793.333333pt;}
.w0_c00387{width:793.626667pt;}
.x0_c00387{left:0.000000pt;}
.x2_c00387{left:113.438342pt;}
.x3_c00387{left:121.436733pt;}
.x1_c00387{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fc76f7909a87da37f76c9331.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.093262;font-style:normal;font-weight:normal;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_d7d059d72c80b7dfa3ec1a4d.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00388;src:url('chunks/assets/font_2cd41503617087a66a2478b2.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:1.106934;font-style:normal;font-weight:normal;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_c19f65cfcb0d256a6672a995.woff2')format("woff");}.ff4_c00388{font-family:ff4_c00388;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00388{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls8_c00388{letter-spacing:-0.072000px;}
.lsc_c00388{letter-spacing:-0.064800px;}
.lsd_c00388{letter-spacing:-0.057600px;}
.ls6_c00388{letter-spacing:-0.050400px;}
.ls4_c00388{letter-spacing:-0.043200px;}
.ls3_c00388{letter-spacing:-0.036000px;}
.ls5_c00388{letter-spacing:-0.028800px;}
.ls7_c00388{letter-spacing:-0.021600px;}
.ls9_c00388{letter-spacing:-0.014400px;}
.lsa_c00388{letter-spacing:-0.007200px;}
.ls2_c00388{letter-spacing:0.000000px;}
.lsb_c00388{letter-spacing:0.007200px;}
.ls1_c00388{letter-spacing:0.021600px;}
.ls0_c00388{letter-spacing:0.083880px;}
.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;}
}
.ws29_c00388{word-spacing:-4.168800px;}
.ws28_c00388{word-spacing:-4.140000px;}
.ws8_c00388{word-spacing:-1.598400px;}
.ws4_c00388{word-spacing:-1.252800px;}
.ws3_c00388{word-spacing:-1.238400px;}
.ws24_c00388{word-spacing:-0.878400px;}
.ws0_c00388{word-spacing:0.000000px;}
.ws2b_c00388{word-spacing:0.172800px;}
.ws17_c00388{word-spacing:0.180000px;}
.wse_c00388{word-spacing:1.137600px;}
.wsd_c00388{word-spacing:1.281600px;}
.ws25_c00388{word-spacing:1.627200px;}
.wsf_c00388{word-spacing:1.936800px;}
.ws10_c00388{word-spacing:1.972800px;}
.ws11_c00388{word-spacing:2.008800px;}
.ws14_c00388{word-spacing:2.311200px;}
.wsc_c00388{word-spacing:2.318400px;}
.wsb_c00388{word-spacing:2.412000px;}
.ws13_c00388{word-spacing:2.440800px;}
.ws12_c00388{word-spacing:2.448000px;}
.ws15_c00388{word-spacing:3.693600px;}
.ws16_c00388{word-spacing:3.808800px;}
.ws1d_c00388{word-spacing:4.125600px;}
.ws2a_c00388{word-spacing:4.147200px;}
.ws1e_c00388{word-spacing:4.154400px;}
.ws9_c00388{word-spacing:5.580000px;}
.wsa_c00388{word-spacing:5.630400px;}
.ws23_c00388{word-spacing:6.688800px;}
.ws22_c00388{word-spacing:6.868800px;}
.ws21_c00388{word-spacing:9.194400px;}
.ws1b_c00388{word-spacing:9.892800px;}
.ws1c_c00388{word-spacing:9.921600px;}
.ws2_c00388{word-spacing:10.274400px;}
.ws18_c00388{word-spacing:11.700000px;}
.ws19_c00388{word-spacing:11.714400px;}
.ws1a_c00388{word-spacing:11.923200px;}
.ws6_c00388{word-spacing:12.038400px;}
.ws5_c00388{word-spacing:12.074400px;}
.ws7_c00388{word-spacing:13.514400px;}
.ws1_c00388{word-spacing:14.410584px;}
.ws27_c00388{word-spacing:14.853600px;}
.ws26_c00388{word-spacing:14.940000px;}
.ws1f_c00388{word-spacing:21.045600px;}
.ws20_c00388{word-spacing:21.052800px;}
._0_c00388{margin-left:-14.007960px;}
._2_c00388{margin-left:-1.814400px;}
._1_c00388{width:1.072800px;}
.fc0_c00388{color:rgb(0,0,0);}
.fs0_c00388{font-size:72.000000px;}
.fs1_c00388{font-size:83.880000px;}
.y0_c00388{bottom:0.000000px;}
.y2_c00388{bottom:46.830450px;}
.y1_c00388{bottom:67.530450px;}
.y1f_c00388{bottom:232.770450px;}
.y1e_c00388{bottom:262.470450px;}
.y1d_c00388{bottom:283.170450px;}
.y1c_c00388{bottom:303.870450px;}
.y1b_c00388{bottom:324.570450px;}
.y1a_c00388{bottom:345.270450px;}
.y19_c00388{bottom:385.320450px;}
.y18_c00388{bottom:416.370450px;}
.y17_c00388{bottom:447.420450px;}
.y16_c00388{bottom:478.470450px;}
.y15_c00388{bottom:509.520450px;}
.y14_c00388{bottom:540.570450px;}
.y13_c00388{bottom:571.620450px;}
.y12_c00388{bottom:602.670450px;}
.y11_c00388{bottom:642.630450px;}
.y10_c00388{bottom:673.680450px;}
.yf_c00388{bottom:704.730450px;}
.ye_c00388{bottom:735.870450px;}
.yd_c00388{bottom:766.920450px;}
.yc_c00388{bottom:797.880450px;}
.yb_c00388{bottom:828.930450px;}
.ya_c00388{bottom:860.070450px;}
.y9_c00388{bottom:900.120450px;}
.y8_c00388{bottom:931.170450px;}
.y7_c00388{bottom:962.220450px;}
.y6_c00388{bottom:993.270450px;}
.y5_c00388{bottom:1024.320450px;}
.y4_c00388{bottom:1064.370450px;}
.y3_c00388{bottom:1094.520450px;}
.h1_c00388{height:63.175781px;}
.h3_c00388{height:64.546875px;}
.h4_c00388{height:75.093750px;}
.h2_c00388{height:87.484219px;}
.h0_c00388{height:1263.000000px;}
.w1_c00388{width:892.500000px;}
.w0_c00388{width:892.830000px;}
.x0_c00388{left:0.000000px;}
.x2_c00388{left:170.100000px;}
.x3_c00388{left:245.430000px;}
.x1_c00388{left:738.360000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls8_c00388{letter-spacing:-0.064000pt;}
.lsc_c00388{letter-spacing:-0.057600pt;}
.lsd_c00388{letter-spacing:-0.051200pt;}
.ls6_c00388{letter-spacing:-0.044800pt;}
.ls4_c00388{letter-spacing:-0.038400pt;}
.ls3_c00388{letter-spacing:-0.032000pt;}
.ls5_c00388{letter-spacing:-0.025600pt;}
.ls7_c00388{letter-spacing:-0.019200pt;}
.ls9_c00388{letter-spacing:-0.012800pt;}
.lsa_c00388{letter-spacing:-0.006400pt;}
.ls2_c00388{letter-spacing:0.000000pt;}
.lsb_c00388{letter-spacing:0.006400pt;}
.ls1_c00388{letter-spacing:0.019200pt;}
.ls0_c00388{letter-spacing:0.074560pt;}
.ws29_c00388{word-spacing:-3.705600pt;}
.ws28_c00388{word-spacing:-3.680000pt;}
.ws8_c00388{word-spacing:-1.420800pt;}
.ws4_c00388{word-spacing:-1.113600pt;}
.ws3_c00388{word-spacing:-1.100800pt;}
.ws24_c00388{word-spacing:-0.780800pt;}
.ws0_c00388{word-spacing:0.000000pt;}
.ws2b_c00388{word-spacing:0.153600pt;}
.ws17_c00388{word-spacing:0.160000pt;}
.wse_c00388{word-spacing:1.011200pt;}
.wsd_c00388{word-spacing:1.139200pt;}
.ws25_c00388{word-spacing:1.446400pt;}
.wsf_c00388{word-spacing:1.721600pt;}
.ws10_c00388{word-spacing:1.753600pt;}
.ws11_c00388{word-spacing:1.785600pt;}
.ws14_c00388{word-spacing:2.054400pt;}
.wsc_c00388{word-spacing:2.060800pt;}
.wsb_c00388{word-spacing:2.144000pt;}
.ws13_c00388{word-spacing:2.169600pt;}
.ws12_c00388{word-spacing:2.176000pt;}
.ws15_c00388{word-spacing:3.283200pt;}
.ws16_c00388{word-spacing:3.385600pt;}
.ws1d_c00388{word-spacing:3.667200pt;}
.ws2a_c00388{word-spacing:3.686400pt;}
.ws1e_c00388{word-spacing:3.692800pt;}
.ws9_c00388{word-spacing:4.960000pt;}
.wsa_c00388{word-spacing:5.004800pt;}
.ws23_c00388{word-spacing:5.945600pt;}
.ws22_c00388{word-spacing:6.105600pt;}
.ws21_c00388{word-spacing:8.172800pt;}
.ws1b_c00388{word-spacing:8.793600pt;}
.ws1c_c00388{word-spacing:8.819200pt;}
.ws2_c00388{word-spacing:9.132800pt;}
.ws18_c00388{word-spacing:10.400000pt;}
.ws19_c00388{word-spacing:10.412800pt;}
.ws1a_c00388{word-spacing:10.598400pt;}
.ws6_c00388{word-spacing:10.700800pt;}
.ws5_c00388{word-spacing:10.732800pt;}
.ws7_c00388{word-spacing:12.012800pt;}
.ws1_c00388{word-spacing:12.809408pt;}
.ws27_c00388{word-spacing:13.203200pt;}
.ws26_c00388{word-spacing:13.280000pt;}
.ws1f_c00388{word-spacing:18.707200pt;}
.ws20_c00388{word-spacing:18.713600pt;}
._0_c00388{margin-left:-12.451520pt;}
._2_c00388{margin-left:-1.612800pt;}
._1_c00388{width:0.953600pt;}
.fs0_c00388{font-size:64.000000pt;}
.fs1_c00388{font-size:74.560000pt;}
.y0_c00388{bottom:0.000000pt;}
.y2_c00388{bottom:41.627067pt;}
.y1_c00388{bottom:60.027067pt;}
.y1f_c00388{bottom:206.907067pt;}
.y1e_c00388{bottom:233.307067pt;}
.y1d_c00388{bottom:251.707067pt;}
.y1c_c00388{bottom:270.107067pt;}
.y1b_c00388{bottom:288.507067pt;}
.y1a_c00388{bottom:306.907067pt;}
.y19_c00388{bottom:342.507067pt;}
.y18_c00388{bottom:370.107067pt;}
.y17_c00388{bottom:397.707067pt;}
.y16_c00388{bottom:425.307067pt;}
.y15_c00388{bottom:452.907067pt;}
.y14_c00388{bottom:480.507067pt;}
.y13_c00388{bottom:508.107067pt;}
.y12_c00388{bottom:535.707067pt;}
.y11_c00388{bottom:571.227067pt;}
.y10_c00388{bottom:598.827067pt;}
.yf_c00388{bottom:626.427067pt;}
.ye_c00388{bottom:654.107067pt;}
.yd_c00388{bottom:681.707067pt;}
.yc_c00388{bottom:709.227067pt;}
.yb_c00388{bottom:736.827067pt;}
.ya_c00388{bottom:764.507067pt;}
.y9_c00388{bottom:800.107067pt;}
.y8_c00388{bottom:827.707067pt;}
.y7_c00388{bottom:855.307067pt;}
.y6_c00388{bottom:882.907067pt;}
.y5_c00388{bottom:910.507067pt;}
.y4_c00388{bottom:946.107067pt;}
.y3_c00388{bottom:972.907067pt;}
.h1_c00388{height:56.156250pt;}
.h3_c00388{height:57.375000pt;}
.h4_c00388{height:66.750000pt;}
.h2_c00388{height:77.763750pt;}
.h0_c00388{height:1122.666667pt;}
.w1_c00388{width:793.333333pt;}
.w0_c00388{width:793.626667pt;}
.x0_c00388{left:0.000000pt;}
.x2_c00388{left:151.200000pt;}
.x3_c00388{left:218.160000pt;}
.x1_c00388{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_44ab70c51143807eda34a381.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.093262;font-style:normal;font-weight:normal;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_154eb4e427830091baa2c3a2.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.106934;font-style:normal;font-weight:normal;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_61d4cfbfa044bdddee7b47bc.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:0.666504;font-style: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;}
.lsb_c00389{letter-spacing:-0.072000px;}
.ls7_c00389{letter-spacing:-0.057600px;}
.ls6_c00389{letter-spacing:-0.050400px;}
.ls3_c00389{letter-spacing:-0.043200px;}
.ls9_c00389{letter-spacing:-0.036000px;}
.ls4_c00389{letter-spacing:-0.028800px;}
.ls5_c00389{letter-spacing:-0.021600px;}
.lsa_c00389{letter-spacing:-0.014400px;}
.ls8_c00389{letter-spacing:-0.007200px;}
.ls2_c00389{letter-spacing:0.000000px;}
.lsc_c00389{letter-spacing:0.007200px;}
.ls0_c00389{letter-spacing:0.060120px;}
.ls1_c00389{letter-spacing:63.571320px;}
.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;}
}
.ws1d_c00389{word-spacing:-3.765600px;}
.ws1e_c00389{word-spacing:-3.729600px;}
.ws1f_c00389{word-spacing:-2.707200px;}
.ws20_c00389{word-spacing:-2.577600px;}
.ws1b_c00389{word-spacing:-1.512000px;}
.ws3_c00389{word-spacing:-0.590400px;}
.ws4_c00389{word-spacing:-0.518400px;}
.ws0_c00389{word-spacing:0.000000px;}
.ws12_c00389{word-spacing:0.064800px;}
.ws14_c00389{word-spacing:0.086400px;}
.ws18_c00389{word-spacing:0.129600px;}
.ws8_c00389{word-spacing:0.136800px;}
.ws11_c00389{word-spacing:0.158400px;}
.ws21_c00389{word-spacing:0.165600px;}
.ws1c_c00389{word-spacing:0.180000px;}
.ws2a_c00389{word-spacing:0.187200px;}
.ws15_c00389{word-spacing:0.194400px;}
.ws5_c00389{word-spacing:0.237600px;}
.ws13_c00389{word-spacing:0.273600px;}
.ws29_c00389{word-spacing:0.324000px;}
.ws24_c00389{word-spacing:2.671200px;}
.ws23_c00389{word-spacing:2.685600px;}
.ws10_c00389{word-spacing:2.786400px;}
.ws2_c00389{word-spacing:4.867200px;}
.ws1_c00389{word-spacing:4.881600px;}
.ws17_c00389{word-spacing:8.107200px;}
.ws22_c00389{word-spacing:8.114400px;}
.ws16_c00389{word-spacing:8.200800px;}
.wsf_c00389{word-spacing:9.424800px;}
.wse_c00389{word-spacing:9.554400px;}
.ws9_c00389{word-spacing:14.580000px;}
.wsd_c00389{word-spacing:16.005600px;}
.ws1a_c00389{word-spacing:16.012800px;}
.ws19_c00389{word-spacing:16.027200px;}
.wsc_c00389{word-spacing:16.092000px;}
.ws27_c00389{word-spacing:20.037600px;}
.ws28_c00389{word-spacing:20.080800px;}
.ws6_c00389{word-spacing:21.024000px;}
.ws7_c00389{word-spacing:21.096000px;}
.ws25_c00389{word-spacing:28.281600px;}
.ws26_c00389{word-spacing:28.296000px;}
.wsb_c00389{word-spacing:43.387200px;}
.wsa_c00389{word-spacing:43.408800px;}
._0_c00389{width:1.008000px;}
.fc0_c00389{color:rgb(0,0,0);}
.fs1_c00389{font-size:60.120000px;}
.fs0_c00389{font-size:72.000000px;}
.y0_c00389{bottom:0.000000px;}
.y2_c00389{bottom:46.830450px;}
.y1_c00389{bottom:67.530450px;}
.y1f_c00389{bottom:138.180600px;}
.y1e_c00389{bottom:169.230600px;}
.y1d_c00389{bottom:209.280600px;}
.y1c_c00389{bottom:240.330600px;}
.y1b_c00389{bottom:271.380600px;}
.y1a_c00389{bottom:302.430600px;}
.y19_c00389{bottom:342.390600px;}
.y18_c00389{bottom:382.440600px;}
.y17_c00389{bottom:413.490600px;}
.y16_c00389{bottom:444.540600px;}
.y15_c00389{bottom:484.590450px;}
.y14_c00389{bottom:515.640450px;}
.y13_c00389{bottom:546.690450px;}
.y12_c00389{bottom:586.740450px;}
.y11_c00389{bottom:617.790450px;}
.y10_c00389{bottom:657.840450px;}
.yf_c00389{bottom:688.890450px;}
.ye_c00389{bottom:728.940450px;}
.yd_c00389{bottom:759.990450px;}
.yc_c00389{bottom:791.040450px;}
.yb_c00389{bottom:822.090450px;}
.ya_c00389{bottom:853.140450px;}
.y9_c00389{bottom:893.190450px;}
.y8_c00389{bottom:924.240450px;}
.y7_c00389{bottom:964.290450px;}
.y6_c00389{bottom:995.340450px;}
.y5_c00389{bottom:1035.390450px;}
.y4_c00389{bottom:1066.440450px;}
.y3_c00389{bottom:1097.490450px;}
.h1_c00389{height:63.175781px;}
.h2_c00389{height:64.546875px;}
.h0_c00389{height:1263.000000px;}
.w1_c00389{width:892.500000px;}
.w0_c00389{width:892.830000px;}
.x0_c00389{left:0.000000px;}
.x2_c00389{left:127.620000px;}
.x3_c00389{left:154.620000px;}
.x4_c00389{left:181.620000px;}
.x1_c00389{left:695.880000px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.lsb_c00389{letter-spacing:-0.064000pt;}
.ls7_c00389{letter-spacing:-0.051200pt;}
.ls6_c00389{letter-spacing:-0.044800pt;}
.ls3_c00389{letter-spacing:-0.038400pt;}
.ls9_c00389{letter-spacing:-0.032000pt;}
.ls4_c00389{letter-spacing:-0.025600pt;}
.ls5_c00389{letter-spacing:-0.019200pt;}
.lsa_c00389{letter-spacing:-0.012800pt;}
.ls8_c00389{letter-spacing:-0.006400pt;}
.ls2_c00389{letter-spacing:0.000000pt;}
.lsc_c00389{letter-spacing:0.006400pt;}
.ls0_c00389{letter-spacing:0.053440pt;}
.ls1_c00389{letter-spacing:56.507840pt;}
.ws1d_c00389{word-spacing:-3.347200pt;}
.ws1e_c00389{word-spacing:-3.315200pt;}
.ws1f_c00389{word-spacing:-2.406400pt;}
.ws20_c00389{word-spacing:-2.291200pt;}
.ws1b_c00389{word-spacing:-1.344000pt;}
.ws3_c00389{word-spacing:-0.524800pt;}
.ws4_c00389{word-spacing:-0.460800pt;}
.ws0_c00389{word-spacing:0.000000pt;}
.ws12_c00389{word-spacing:0.057600pt;}
.ws14_c00389{word-spacing:0.076800pt;}
.ws18_c00389{word-spacing:0.115200pt;}
.ws8_c00389{word-spacing:0.121600pt;}
.ws11_c00389{word-spacing:0.140800pt;}
.ws21_c00389{word-spacing:0.147200pt;}
.ws1c_c00389{word-spacing:0.160000pt;}
.ws2a_c00389{word-spacing:0.166400pt;}
.ws15_c00389{word-spacing:0.172800pt;}
.ws5_c00389{word-spacing:0.211200pt;}
.ws13_c00389{word-spacing:0.243200pt;}
.ws29_c00389{word-spacing:0.288000pt;}
.ws24_c00389{word-spacing:2.374400pt;}
.ws23_c00389{word-spacing:2.387200pt;}
.ws10_c00389{word-spacing:2.476800pt;}
.ws2_c00389{word-spacing:4.326400pt;}
.ws1_c00389{word-spacing:4.339200pt;}
.ws17_c00389{word-spacing:7.206400pt;}
.ws22_c00389{word-spacing:7.212800pt;}
.ws16_c00389{word-spacing:7.289600pt;}
.wsf_c00389{word-spacing:8.377600pt;}
.wse_c00389{word-spacing:8.492800pt;}
.ws9_c00389{word-spacing:12.960000pt;}
.wsd_c00389{word-spacing:14.227200pt;}
.ws1a_c00389{word-spacing:14.233600pt;}
.ws19_c00389{word-spacing:14.246400pt;}
.wsc_c00389{word-spacing:14.304000pt;}
.ws27_c00389{word-spacing:17.811200pt;}
.ws28_c00389{word-spacing:17.849600pt;}
.ws6_c00389{word-spacing:18.688000pt;}
.ws7_c00389{word-spacing:18.752000pt;}
.ws25_c00389{word-spacing:25.139200pt;}
.ws26_c00389{word-spacing:25.152000pt;}
.wsb_c00389{word-spacing:38.566400pt;}
.wsa_c00389{word-spacing:38.585600pt;}
._0_c00389{width:0.896000pt;}
.fs1_c00389{font-size:53.440000pt;}
.fs0_c00389{font-size:64.000000pt;}
.y0_c00389{bottom:0.000000pt;}
.y2_c00389{bottom:41.627067pt;}
.y1_c00389{bottom:60.027067pt;}
.y1f_c00389{bottom:122.827200pt;}
.y1e_c00389{bottom:150.427200pt;}
.y1d_c00389{bottom:186.027200pt;}
.y1c_c00389{bottom:213.627200pt;}
.y1b_c00389{bottom:241.227200pt;}
.y1a_c00389{bottom:268.827200pt;}
.y19_c00389{bottom:304.347200pt;}
.y18_c00389{bottom:339.947200pt;}
.y17_c00389{bottom:367.547200pt;}
.y16_c00389{bottom:395.147200pt;}
.y15_c00389{bottom:430.747067pt;}
.y14_c00389{bottom:458.347067pt;}
.y13_c00389{bottom:485.947067pt;}
.y12_c00389{bottom:521.547067pt;}
.y11_c00389{bottom:549.147067pt;}
.y10_c00389{bottom:584.747067pt;}
.yf_c00389{bottom:612.347067pt;}
.ye_c00389{bottom:647.947067pt;}
.yd_c00389{bottom:675.547067pt;}
.yc_c00389{bottom:703.147067pt;}
.yb_c00389{bottom:730.747067pt;}
.ya_c00389{bottom:758.347067pt;}
.y9_c00389{bottom:793.947067pt;}
.y8_c00389{bottom:821.547067pt;}
.y7_c00389{bottom:857.147067pt;}
.y6_c00389{bottom:884.747067pt;}
.y5_c00389{bottom:920.347067pt;}
.y4_c00389{bottom:947.947067pt;}
.y3_c00389{bottom:975.547067pt;}
.h1_c00389{height:56.156250pt;}
.h2_c00389{height:57.375000pt;}
.h0_c00389{height:1122.666667pt;}
.w1_c00389{width:793.333333pt;}
.w0_c00389{width:793.626667pt;}
.x0_c00389{left:0.000000pt;}
.x2_c00389{left:113.440000pt;}
.x3_c00389{left:137.440000pt;}
.x4_c00389{left:161.440000pt;}
.x1_c00389{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_07f84d30d68a5daa588a7fd8.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.093262;font-style:normal;font-weight:normal;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_c18328ad8fb0e7969deec708.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:1.106934;font-style:normal;font-weight:normal;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_ff43ea323db35bd4b07d7bd5.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00390;src:url('chunks/assets/font_61d4cfbfa044bdddee7b47bc.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00390{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m1_c00390{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.v0_c00390{vertical-align:0.000000px;}
.ls4_c00390{letter-spacing:-0.036000px;}
.ls7_c00390{letter-spacing:-0.028800px;}
.ls6_c00390{letter-spacing:-0.021600px;}
.ls5_c00390{letter-spacing:-0.014400px;}
.ls8_c00390{letter-spacing:-0.007200px;}
.ls3_c00390{letter-spacing:0.000000px;}
.lsa_c00390{letter-spacing:0.007200px;}
.ls2_c00390{letter-spacing:0.014400px;}
.ls0_c00390{letter-spacing:0.021600px;}
.ls1_c00390{letter-spacing:0.060120px;}
.ls9_c00390{letter-spacing:0.511200px;}
.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;}
}
.ws6_c00390{word-spacing:-2.714400px;}
.ws0_c00390{word-spacing:0.000000px;}
.ws11_c00390{word-spacing:0.151200px;}
.wsa_c00390{word-spacing:0.172800px;}
.ws7_c00390{word-spacing:0.180000px;}
.ws10_c00390{word-spacing:0.187200px;}
.ws9_c00390{word-spacing:3.333600px;}
.ws8_c00390{word-spacing:3.434400px;}
.ws5_c00390{word-spacing:7.221600px;}
.ws3_c00390{word-spacing:7.387200px;}
.ws4_c00390{word-spacing:7.502400px;}
.wsf_c00390{word-spacing:10.958400px;}
.wse_c00390{word-spacing:10.987200px;}
.wsd_c00390{word-spacing:11.001600px;}
.ws2_c00390{word-spacing:11.340000px;}
.ws1_c00390{word-spacing:11.419200px;}
.wsb_c00390{word-spacing:18.871200px;}
.wsc_c00390{word-spacing:19.029600px;}
._0_c00390{width:1.209600px;}
.fc0_c00390{color:rgb(0,0,0);}
.fs1_c00390{font-size:60.120000px;}
.fs0_c00390{font-size:72.000000px;}
.y0_c00390{bottom:0.000000px;}
.y2_c00390{bottom:46.830450px;}
.y1_c00390{bottom:67.530450px;}
.yf_c00390{bottom:132.510450px;}
.ye_c00390{bottom:172.560450px;}
.yd_c00390{bottom:212.610450px;}
.yc_c00390{bottom:252.660450px;}
.yb_c00390{bottom:283.710450px;}
.ya_c00390{bottom:314.760450px;}
.y9_c00390{bottom:354.720450px;}
.y8_c00390{bottom:385.770450px;}
.y7_c00390{bottom:421.860450px;}
.y6_c00390{bottom:1004.340450px;}
.y5_c00390{bottom:1035.390450px;}
.y4_c00390{bottom:1066.440450px;}
.y3_c00390{bottom:1097.490450px;}
.h4_c00390{height:53.896641px;}
.h1_c00390{height:63.175781px;}
.h2_c00390{height:64.546875px;}
.h3_c00390{height:75.093750px;}
.h0_c00390{height:1263.000000px;}
.w1_c00390{width:892.500000px;}
.w0_c00390{width:892.830000px;}
.x0_c00390{left:0.000000px;}
.x2_c00390{left:170.098135px;}
.x4_c00390{left:197.100000px;}
.x5_c00390{left:224.100000px;}
.x1_c00390{left:738.360000px;}
.x3_c00390{left:766.356563px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls4_c00390{letter-spacing:-0.032000pt;}
.ls7_c00390{letter-spacing:-0.025600pt;}
.ls6_c00390{letter-spacing:-0.019200pt;}
.ls5_c00390{letter-spacing:-0.012800pt;}
.ls8_c00390{letter-spacing:-0.006400pt;}
.ls3_c00390{letter-spacing:0.000000pt;}
.lsa_c00390{letter-spacing:0.006400pt;}
.ls2_c00390{letter-spacing:0.012800pt;}
.ls0_c00390{letter-spacing:0.019200pt;}
.ls1_c00390{letter-spacing:0.053440pt;}
.ls9_c00390{letter-spacing:0.454400pt;}
.ws6_c00390{word-spacing:-2.412800pt;}
.ws0_c00390{word-spacing:0.000000pt;}
.ws11_c00390{word-spacing:0.134400pt;}
.wsa_c00390{word-spacing:0.153600pt;}
.ws7_c00390{word-spacing:0.160000pt;}
.ws10_c00390{word-spacing:0.166400pt;}
.ws9_c00390{word-spacing:2.963200pt;}
.ws8_c00390{word-spacing:3.052800pt;}
.ws5_c00390{word-spacing:6.419200pt;}
.ws3_c00390{word-spacing:6.566400pt;}
.ws4_c00390{word-spacing:6.668800pt;}
.wsf_c00390{word-spacing:9.740800pt;}
.wse_c00390{word-spacing:9.766400pt;}
.wsd_c00390{word-spacing:9.779200pt;}
.ws2_c00390{word-spacing:10.080000pt;}
.ws1_c00390{word-spacing:10.150400pt;}
.wsb_c00390{word-spacing:16.774400pt;}
.wsc_c00390{word-spacing:16.915200pt;}
._0_c00390{width:1.075200pt;}
.fs1_c00390{font-size:53.440000pt;}
.fs0_c00390{font-size:64.000000pt;}
.y0_c00390{bottom:0.000000pt;}
.y2_c00390{bottom:41.627067pt;}
.y1_c00390{bottom:60.027067pt;}
.yf_c00390{bottom:117.787067pt;}
.ye_c00390{bottom:153.387067pt;}
.yd_c00390{bottom:188.987067pt;}
.yc_c00390{bottom:224.587067pt;}
.yb_c00390{bottom:252.187067pt;}
.ya_c00390{bottom:279.787067pt;}
.y9_c00390{bottom:315.307067pt;}
.y8_c00390{bottom:342.907067pt;}
.y7_c00390{bottom:374.987067pt;}
.y6_c00390{bottom:892.747067pt;}
.y5_c00390{bottom:920.347067pt;}
.y4_c00390{bottom:947.947067pt;}
.y3_c00390{bottom:975.547067pt;}
.h4_c00390{height:47.908125pt;}
.h1_c00390{height:56.156250pt;}
.h2_c00390{height:57.375000pt;}
.h3_c00390{height:66.750000pt;}
.h0_c00390{height:1122.666667pt;}
.w1_c00390{width:793.333333pt;}
.w0_c00390{width:793.626667pt;}
.x0_c00390{left:0.000000pt;}
.x2_c00390{left:151.198342pt;}
.x4_c00390{left:175.200000pt;}
.x5_c00390{left:199.200000pt;}
.x1_c00390{left:656.320000pt;}
.x3_c00390{left:681.205834pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_92672ff8266b6d167acb0eed.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.093262;font-style:normal;font-weight:normal;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_61d4cfbfa044bdddee7b47bc.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:0.666504;font-style:normal;font-weight:normal;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_2efa48e622c76790f4d29c8b.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:1.106934;font-style: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.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m1_c00391{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.ls8_c00391{letter-spacing:-0.043200px;}
.ls5_c00391{letter-spacing:-0.036000px;}
.ls3_c00391{letter-spacing:-0.028800px;}
.ls6_c00391{letter-spacing:-0.014400px;}
.ls4_c00391{letter-spacing:-0.007200px;}
.ls2_c00391{letter-spacing:0.000000px;}
.ls7_c00391{letter-spacing:0.007200px;}
.ls1_c00391{letter-spacing:0.014400px;}
.ls0_c00391{letter-spacing:0.060120px;}
.ls9_c00391{letter-spacing:844.351200px;}
.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;}
}
.ws0_c00391{word-spacing:0.000000px;}
.ws1_c00391{word-spacing:0.151200px;}
.ws9_c00391{word-spacing:0.172800px;}
.ws10_c00391{word-spacing:0.187200px;}
.ws2_c00391{word-spacing:0.194400px;}
.ws11_c00391{word-spacing:0.208800px;}
.wsa_c00391{word-spacing:0.295200px;}
.ws6_c00391{word-spacing:0.777600px;}
.ws7_c00391{word-spacing:0.914400px;}
.ws8_c00391{word-spacing:7.027200px;}
.wsd_c00391{word-spacing:12.405600px;}
.wsb_c00391{word-spacing:13.147200px;}
.wsc_c00391{word-spacing:13.212000px;}
.ws5_c00391{word-spacing:17.438400px;}
.ws3_c00391{word-spacing:17.532000px;}
.ws4_c00391{word-spacing:17.604000px;}
.wse_c00391{word-spacing:34.394400px;}
.wsf_c00391{word-spacing:34.408800px;}
._0_c00391{width:1.166400px;}
.fc0_c00391{color:rgb(0,0,0);}
.fs1_c00391{font-size:60.120000px;}
.fs0_c00391{font-size:72.000000px;}
.y0_c00391{bottom:0.000000px;}
.y2_c00391{bottom:46.830450px;}
.y1_c00391{bottom:67.530450px;}
.y10_c00391{bottom:243.210450px;}
.yf_c00391{bottom:283.260450px;}
.ye_c00391{bottom:314.310450px;}
.yd_c00391{bottom:345.360450px;}
.yc_c00391{bottom:376.410450px;}
.yb_c00391{bottom:416.460450px;}
.ya_c00391{bottom:452.460450px;}
.y9_c00391{bottom:884.190450px;}
.y8_c00391{bottom:924.240450px;}
.y7_c00391{bottom:955.290450px;}
.y6_c00391{bottom:986.340450px;}
.y5_c00391{bottom:1017.390450px;}
.y4_c00391{bottom:1057.440450px;}
.y3_c00391{bottom:1097.490450px;}
.h2_c00391{height:53.896641px;}
.h1_c00391{height:63.175781px;}
.h3_c00391{height:64.546875px;}
.h0_c00391{height:1263.000000px;}
.w1_c00391{width:892.500000px;}
.w0_c00391{width:892.830000px;}
.x0_c00391{left:0.000000px;}
.x2_c00391{left:127.618135px;}
.x3_c00391{left:154.620000px;}
.x4_c00391{left:181.620000px;}
.x1_c00391{left:695.880000px;}
.x5_c00391{left:723.882486px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls8_c00391{letter-spacing:-0.038400pt;}
.ls5_c00391{letter-spacing:-0.032000pt;}
.ls3_c00391{letter-spacing:-0.025600pt;}
.ls6_c00391{letter-spacing:-0.012800pt;}
.ls4_c00391{letter-spacing:-0.006400pt;}
.ls2_c00391{letter-spacing:0.000000pt;}
.ls7_c00391{letter-spacing:0.006400pt;}
.ls1_c00391{letter-spacing:0.012800pt;}
.ls0_c00391{letter-spacing:0.053440pt;}
.ls9_c00391{letter-spacing:750.534400pt;}
.ws0_c00391{word-spacing:0.000000pt;}
.ws1_c00391{word-spacing:0.134400pt;}
.ws9_c00391{word-spacing:0.153600pt;}
.ws10_c00391{word-spacing:0.166400pt;}
.ws2_c00391{word-spacing:0.172800pt;}
.ws11_c00391{word-spacing:0.185600pt;}
.wsa_c00391{word-spacing:0.262400pt;}
.ws6_c00391{word-spacing:0.691200pt;}
.ws7_c00391{word-spacing:0.812800pt;}
.ws8_c00391{word-spacing:6.246400pt;}
.wsd_c00391{word-spacing:11.027200pt;}
.wsb_c00391{word-spacing:11.686400pt;}
.wsc_c00391{word-spacing:11.744000pt;}
.ws5_c00391{word-spacing:15.500800pt;}
.ws3_c00391{word-spacing:15.584000pt;}
.ws4_c00391{word-spacing:15.648000pt;}
.wse_c00391{word-spacing:30.572800pt;}
.wsf_c00391{word-spacing:30.585600pt;}
._0_c00391{width:1.036800pt;}
.fs1_c00391{font-size:53.440000pt;}
.fs0_c00391{font-size:64.000000pt;}
.y0_c00391{bottom:0.000000pt;}
.y2_c00391{bottom:41.627067pt;}
.y1_c00391{bottom:60.027067pt;}
.y10_c00391{bottom:216.187067pt;}
.yf_c00391{bottom:251.787067pt;}
.ye_c00391{bottom:279.387067pt;}
.yd_c00391{bottom:306.987067pt;}
.yc_c00391{bottom:334.587067pt;}
.yb_c00391{bottom:370.187067pt;}
.ya_c00391{bottom:402.187067pt;}
.y9_c00391{bottom:785.947067pt;}
.y8_c00391{bottom:821.547067pt;}
.y7_c00391{bottom:849.147067pt;}
.y6_c00391{bottom:876.747067pt;}
.y5_c00391{bottom:904.347067pt;}
.y4_c00391{bottom:939.947067pt;}
.y3_c00391{bottom:975.547067pt;}
.h2_c00391{height:47.908125pt;}
.h1_c00391{height:56.156250pt;}
.h3_c00391{height:57.375000pt;}
.h0_c00391{height:1122.666667pt;}
.w1_c00391{width:793.333333pt;}
.w0_c00391{width:793.626667pt;}
.x0_c00391{left:0.000000pt;}
.x2_c00391{left:113.438342pt;}
.x3_c00391{left:137.440000pt;}
.x4_c00391{left:161.440000pt;}
.x1_c00391{left:618.560000pt;}
.x5_c00391{left:643.451098pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_87bec4f13dbd43a9f36e7e01.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.093262;font-style:normal;font-weight:normal;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_914d00612849cf31a465e909.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00392;src:url('chunks/assets/font_10e8acca6437a967f9f8d1ef.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:1.106934;font-style:normal;font-weight:normal;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_c6f38c0201fec8132abdcc58.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00392{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.lsb_c00392{letter-spacing:-0.086400px;}
.ls9_c00392{letter-spacing:-0.079200px;}
.lsa_c00392{letter-spacing:-0.064800px;}
.ls6_c00392{letter-spacing:-0.057600px;}
.lsc_c00392{letter-spacing:-0.050400px;}
.ls7_c00392{letter-spacing:-0.043200px;}
.ls3_c00392{letter-spacing:-0.036000px;}
.ls4_c00392{letter-spacing:-0.028800px;}
.ls8_c00392{letter-spacing:-0.021600px;}
.lse_c00392{letter-spacing:-0.014400px;}
.ls5_c00392{letter-spacing:-0.007200px;}
.ls2_c00392{letter-spacing:0.000000px;}
.lsd_c00392{letter-spacing:0.007200px;}
.ls1_c00392{letter-spacing:0.014400px;}
.ls0_c00392{letter-spacing:0.050328px;}
.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;}
}
.ws19_c00392{word-spacing:-2.512800px;}
.ws18_c00392{word-spacing:-2.311200px;}
.ws1c_c00392{word-spacing:-1.368000px;}
.ws1b_c00392{word-spacing:-1.274400px;}
.ws11_c00392{word-spacing:-0.194400px;}
.ws33_c00392{word-spacing:-0.187200px;}
.ws10_c00392{word-spacing:-0.165600px;}
.ws0_c00392{word-spacing:0.000000px;}
.ws2_c00392{word-spacing:0.033552px;}
.ws1a_c00392{word-spacing:0.151200px;}
.ws7_c00392{word-spacing:0.165600px;}
.ws22_c00392{word-spacing:0.316800px;}
.ws9_c00392{word-spacing:0.561600px;}
.ws8_c00392{word-spacing:0.633600px;}
.ws1d_c00392{word-spacing:2.001600px;}
.ws31_c00392{word-spacing:2.613600px;}
.ws30_c00392{word-spacing:2.678400px;}
.ws2f_c00392{word-spacing:2.700000px;}
.wsc_c00392{word-spacing:4.521600px;}
.ws1f_c00392{word-spacing:5.227200px;}
.ws1e_c00392{word-spacing:5.234400px;}
.ws2a_c00392{word-spacing:5.896800px;}
.ws2b_c00392{word-spacing:5.911200px;}
.ws29_c00392{word-spacing:5.947200px;}
.ws26_c00392{word-spacing:6.300000px;}
.ws13_c00392{word-spacing:7.020000px;}
.ws12_c00392{word-spacing:7.063200px;}
.ws2d_c00392{word-spacing:7.387200px;}
.ws2e_c00392{word-spacing:7.401600px;}
.wse_c00392{word-spacing:9.036000px;}
.wsd_c00392{word-spacing:9.165600px;}
.ws23_c00392{word-spacing:10.987200px;}
.wsb_c00392{word-spacing:11.620800px;}
.wsa_c00392{word-spacing:11.700000px;}
.ws5_c00392{word-spacing:13.104000px;}
.ws6_c00392{word-spacing:13.147200px;}
.ws4_c00392{word-spacing:13.269600px;}
.ws21_c00392{word-spacing:13.413600px;}
.ws20_c00392{word-spacing:13.600800px;}
.ws24_c00392{word-spacing:18.871200px;}
.ws25_c00392{word-spacing:18.928800px;}
.ws27_c00392{word-spacing:20.548800px;}
.ws28_c00392{word-spacing:20.656800px;}
.ws2c_c00392{word-spacing:21.412800px;}
.ws3_c00392{word-spacing:29.714400px;}
.ws14_c00392{word-spacing:31.521600px;}
.ws15_c00392{word-spacing:31.536000px;}
.ws1_c00392{word-spacing:37.485972px;}
.ws32_c00392{word-spacing:40.161600px;}
.wsf_c00392{word-spacing:45.144000px;}
.ws17_c00392{word-spacing:48.074400px;}
.ws16_c00392{word-spacing:48.088800px;}
._1_c00392{width:1.080000px;}
._0_c00392{width:115.922160px;}
.fc0_c00392{color:rgb(0,0,0);}
.fs0_c00392{font-size:72.000000px;}
.fs1_c00392{font-size:83.880000px;}
.y0_c00392{bottom:0.000000px;}
.y2_c00392{bottom:46.830450px;}
.y1_c00392{bottom:67.530450px;}
.y23_c00392{bottom:153.480450px;}
.y22_c00392{bottom:193.530450px;}
.y21_c00392{bottom:224.580450px;}
.y20_c00392{bottom:255.630450px;}
.y1f_c00392{bottom:286.590450px;}
.y1e_c00392{bottom:317.640450px;}
.y1d_c00392{bottom:348.690450px;}
.y1c_c00392{bottom:379.740450px;}
.y1b_c00392{bottom:410.700450px;}
.y1a_c00392{bottom:441.750450px;}
.y19_c00392{bottom:472.890450px;}
.y18_c00392{bottom:512.940450px;}
.y17_c00392{bottom:543.990450px;}
.y16_c00392{bottom:575.040450px;}
.y15_c00392{bottom:606.090450px;}
.y14_c00392{bottom:637.140450px;}
.y13_c00392{bottom:677.190450px;}
.y12_c00392{bottom:706.890450px;}
.y11_c00392{bottom:727.590450px;}
.y10_c00392{bottom:748.290450px;}
.yf_c00392{bottom:768.990450px;}
.ye_c00392{bottom:789.690450px;}
.yd_c00392{bottom:810.390450px;}
.yc_c00392{bottom:831.090450px;}
.yb_c00392{bottom:851.790450px;}
.ya_c00392{bottom:872.490450px;}
.y9_c00392{bottom:893.190450px;}
.y8_c00392{bottom:913.890450px;}
.y7_c00392{bottom:953.940450px;}
.y6_c00392{bottom:984.990450px;}
.y5_c00392{bottom:1016.040450px;}
.y4_c00392{bottom:1058.242350px;}
.y3_c00392{bottom:1094.520450px;}
.h1_c00392{height:63.175781px;}
.h3_c00392{height:64.546875px;}
.h4_c00392{height:75.093750px;}
.h2_c00392{height:87.484219px;}
.h0_c00392{height:1263.000000px;}
.w1_c00392{width:892.500000px;}
.w0_c00392{width:892.830000px;}
.x0_c00392{left:0.000000px;}
.x2_c00392{left:170.100000px;}
.x3_c00392{left:197.100000px;}
.x4_c00392{left:229.498650px;}
.x5_c00392{left:245.430000px;}
.x1_c00392{left:738.360000px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.lsb_c00392{letter-spacing:-0.076800pt;}
.ls9_c00392{letter-spacing:-0.070400pt;}
.lsa_c00392{letter-spacing:-0.057600pt;}
.ls6_c00392{letter-spacing:-0.051200pt;}
.lsc_c00392{letter-spacing:-0.044800pt;}
.ls7_c00392{letter-spacing:-0.038400pt;}
.ls3_c00392{letter-spacing:-0.032000pt;}
.ls4_c00392{letter-spacing:-0.025600pt;}
.ls8_c00392{letter-spacing:-0.019200pt;}
.lse_c00392{letter-spacing:-0.012800pt;}
.ls5_c00392{letter-spacing:-0.006400pt;}
.ls2_c00392{letter-spacing:0.000000pt;}
.lsd_c00392{letter-spacing:0.006400pt;}
.ls1_c00392{letter-spacing:0.012800pt;}
.ls0_c00392{letter-spacing:0.044736pt;}
.ws19_c00392{word-spacing:-2.233600pt;}
.ws18_c00392{word-spacing:-2.054400pt;}
.ws1c_c00392{word-spacing:-1.216000pt;}
.ws1b_c00392{word-spacing:-1.132800pt;}
.ws11_c00392{word-spacing:-0.172800pt;}
.ws33_c00392{word-spacing:-0.166400pt;}
.ws10_c00392{word-spacing:-0.147200pt;}
.ws0_c00392{word-spacing:0.000000pt;}
.ws2_c00392{word-spacing:0.029824pt;}
.ws1a_c00392{word-spacing:0.134400pt;}
.ws7_c00392{word-spacing:0.147200pt;}
.ws22_c00392{word-spacing:0.281600pt;}
.ws9_c00392{word-spacing:0.499200pt;}
.ws8_c00392{word-spacing:0.563200pt;}
.ws1d_c00392{word-spacing:1.779200pt;}
.ws31_c00392{word-spacing:2.323200pt;}
.ws30_c00392{word-spacing:2.380800pt;}
.ws2f_c00392{word-spacing:2.400000pt;}
.wsc_c00392{word-spacing:4.019200pt;}
.ws1f_c00392{word-spacing:4.646400pt;}
.ws1e_c00392{word-spacing:4.652800pt;}
.ws2a_c00392{word-spacing:5.241600pt;}
.ws2b_c00392{word-spacing:5.254400pt;}
.ws29_c00392{word-spacing:5.286400pt;}
.ws26_c00392{word-spacing:5.600000pt;}
.ws13_c00392{word-spacing:6.240000pt;}
.ws12_c00392{word-spacing:6.278400pt;}
.ws2d_c00392{word-spacing:6.566400pt;}
.ws2e_c00392{word-spacing:6.579200pt;}
.wse_c00392{word-spacing:8.032000pt;}
.wsd_c00392{word-spacing:8.147200pt;}
.ws23_c00392{word-spacing:9.766400pt;}
.wsb_c00392{word-spacing:10.329600pt;}
.wsa_c00392{word-spacing:10.400000pt;}
.ws5_c00392{word-spacing:11.648000pt;}
.ws6_c00392{word-spacing:11.686400pt;}
.ws4_c00392{word-spacing:11.795200pt;}
.ws21_c00392{word-spacing:11.923200pt;}
.ws20_c00392{word-spacing:12.089600pt;}
.ws24_c00392{word-spacing:16.774400pt;}
.ws25_c00392{word-spacing:16.825600pt;}
.ws27_c00392{word-spacing:18.265600pt;}
.ws28_c00392{word-spacing:18.361600pt;}
.ws2c_c00392{word-spacing:19.033600pt;}
.ws3_c00392{word-spacing:26.412800pt;}
.ws14_c00392{word-spacing:28.019200pt;}
.ws15_c00392{word-spacing:28.032000pt;}
.ws1_c00392{word-spacing:33.320864pt;}
.ws32_c00392{word-spacing:35.699200pt;}
.wsf_c00392{word-spacing:40.128000pt;}
.ws17_c00392{word-spacing:42.732800pt;}
.ws16_c00392{word-spacing:42.745600pt;}
._1_c00392{width:0.960000pt;}
._0_c00392{width:103.041920pt;}
.fs0_c00392{font-size:64.000000pt;}
.fs1_c00392{font-size:74.560000pt;}
.y0_c00392{bottom:0.000000pt;}
.y2_c00392{bottom:41.627067pt;}
.y1_c00392{bottom:60.027067pt;}
.y23_c00392{bottom:136.427067pt;}
.y22_c00392{bottom:172.027067pt;}
.y21_c00392{bottom:199.627067pt;}
.y20_c00392{bottom:227.227067pt;}
.y1f_c00392{bottom:254.747067pt;}
.y1e_c00392{bottom:282.347067pt;}
.y1d_c00392{bottom:309.947067pt;}
.y1c_c00392{bottom:337.547067pt;}
.y1b_c00392{bottom:365.067067pt;}
.y1a_c00392{bottom:392.667067pt;}
.y19_c00392{bottom:420.347067pt;}
.y18_c00392{bottom:455.947067pt;}
.y17_c00392{bottom:483.547067pt;}
.y16_c00392{bottom:511.147067pt;}
.y15_c00392{bottom:538.747067pt;}
.y14_c00392{bottom:566.347067pt;}
.y13_c00392{bottom:601.947067pt;}
.y12_c00392{bottom:628.347067pt;}
.y11_c00392{bottom:646.747067pt;}
.y10_c00392{bottom:665.147067pt;}
.yf_c00392{bottom:683.547067pt;}
.ye_c00392{bottom:701.947067pt;}
.yd_c00392{bottom:720.347067pt;}
.yc_c00392{bottom:738.747067pt;}
.yb_c00392{bottom:757.147067pt;}
.ya_c00392{bottom:775.547067pt;}
.y9_c00392{bottom:793.947067pt;}
.y8_c00392{bottom:812.347067pt;}
.y7_c00392{bottom:847.947067pt;}
.y6_c00392{bottom:875.547067pt;}
.y5_c00392{bottom:903.147067pt;}
.y4_c00392{bottom:940.659867pt;}
.y3_c00392{bottom:972.907067pt;}
.h1_c00392{height:56.156250pt;}
.h3_c00392{height:57.375000pt;}
.h4_c00392{height:66.750000pt;}
.h2_c00392{height:77.763750pt;}
.h0_c00392{height:1122.666667pt;}
.w1_c00392{width:793.333333pt;}
.w0_c00392{width:793.626667pt;}
.x0_c00392{left:0.000000pt;}
.x2_c00392{left:151.200000pt;}
.x3_c00392{left:175.200000pt;}
.x4_c00392{left:203.998800pt;}
.x5_c00392{left:218.160000pt;}
.x1_c00392{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_67f1d63ab26f867c33f1835a.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.093262;font-style:normal;font-weight:normal;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_febd7a1a6c9aeb3f131b2256.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00393{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.lsa_c00393{letter-spacing:-0.079200px;}
.lsb_c00393{letter-spacing:-0.072000px;}
.lsc_c00393{letter-spacing:-0.064800px;}
.ls4_c00393{letter-spacing:-0.057600px;}
.ls9_c00393{letter-spacing:-0.050400px;}
.ls7_c00393{letter-spacing:-0.043200px;}
.ls3_c00393{letter-spacing:-0.036000px;}
.ls2_c00393{letter-spacing:-0.028800px;}
.ls5_c00393{letter-spacing:-0.021600px;}
.ls6_c00393{letter-spacing:-0.014400px;}
.ls8_c00393{letter-spacing:-0.007200px;}
.ls1_c00393{letter-spacing:0.000000px;}
.ls0_c00393{letter-spacing:11.880000px;}
.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;}
}
.ws9_c00393{word-spacing:-4.125600px;}
.ws31_c00393{word-spacing:-3.002400px;}
.ws32_c00393{word-spacing:-2.980800px;}
.ws1b_c00393{word-spacing:-2.613600px;}
.ws1a_c00393{word-spacing:-2.556000px;}
.ws22_c00393{word-spacing:-2.412000px;}
.ws21_c00393{word-spacing:-2.318400px;}
.ws1d_c00393{word-spacing:-1.965600px;}
.ws1c_c00393{word-spacing:-1.944000px;}
.ws2_c00393{word-spacing:-1.245600px;}
.ws3_c00393{word-spacing:-1.224000px;}
.ws0_c00393{word-spacing:0.000000px;}
.ws2b_c00393{word-spacing:0.129600px;}
.ws23_c00393{word-spacing:0.158400px;}
.ws34_c00393{word-spacing:0.165600px;}
.ws19_c00393{word-spacing:0.180000px;}
.ws33_c00393{word-spacing:0.194400px;}
.ws4_c00393{word-spacing:0.540000px;}
.ws3e_c00393{word-spacing:0.885600px;}
.ws3d_c00393{word-spacing:0.907200px;}
.wsa_c00393{word-spacing:2.325600px;}
.wsb_c00393{word-spacing:2.347200px;}
.ws7_c00393{word-spacing:4.068000px;}
.ws3a_c00393{word-spacing:4.118400px;}
.ws8_c00393{word-spacing:4.147200px;}
.ws39_c00393{word-spacing:4.154400px;}
.ws38_c00393{word-spacing:4.780800px;}
.ws3b_c00393{word-spacing:4.824000px;}
.ws37_c00393{word-spacing:4.896000px;}
.ws3c_c00393{word-spacing:4.968000px;}
.ws2c_c00393{word-spacing:6.271200px;}
.ws2d_c00393{word-spacing:6.350400px;}
.wsc_c00393{word-spacing:6.688800px;}
.ws30_c00393{word-spacing:6.696000px;}
.ws1_c00393{word-spacing:7.387200px;}
.ws2a_c00393{word-spacing:12.808800px;}
.ws28_c00393{word-spacing:13.132800px;}
.ws29_c00393{word-spacing:13.161600px;}
.ws18_c00393{word-spacing:13.881600px;}
.ws5_c00393{word-spacing:14.227200px;}
.ws16_c00393{word-spacing:15.314400px;}
.ws17_c00393{word-spacing:15.357600px;}
.ws35_c00393{word-spacing:16.387200px;}
.ws36_c00393{word-spacing:16.401600px;}
.ws15_c00393{word-spacing:17.344800px;}
.ws14_c00393{word-spacing:17.467200px;}
.ws26_c00393{word-spacing:28.224000px;}
.ws27_c00393{word-spacing:28.267200px;}
.ws24_c00393{word-spacing:28.288800px;}
.ws25_c00393{word-spacing:28.303200px;}
.ws1e_c00393{word-spacing:29.685600px;}
.ws12_c00393{word-spacing:32.443200px;}
.ws13_c00393{word-spacing:32.608800px;}
.ws1f_c00393{word-spacing:43.048800px;}
.ws20_c00393{word-spacing:43.070400px;}
.ws6_c00393{word-spacing:43.372800px;}
.wse_c00393{word-spacing:44.812800px;}
.wsd_c00393{word-spacing:44.856000px;}
.ws10_c00393{word-spacing:48.650400px;}
.ws11_c00393{word-spacing:48.657600px;}
.ws2f_c00393{word-spacing:63.547200px;}
.ws2e_c00393{word-spacing:63.561600px;}
.wsf_c00393{word-spacing:126.525600px;}
._0_c00393{width:1.375200px;}
.fc0_c00393{color:rgb(0,0,0);}
.fs0_c00393{font-size:72.000000px;}
.y0_c00393{bottom:0.000000px;}
.y2_c00393{bottom:46.830450px;}
.y1_c00393{bottom:67.530450px;}
.y29_c00393{bottom:152.130450px;}
.y28_c00393{bottom:172.830450px;}
.y27_c00393{bottom:193.530450px;}
.y26_c00393{bottom:214.230450px;}
.y25_c00393{bottom:234.930450px;}
.y24_c00393{bottom:274.980450px;}
.y23_c00393{bottom:315.030450px;}
.y22_c00393{bottom:346.080450px;}
.y21_c00393{bottom:377.040450px;}
.y20_c00393{bottom:408.090450px;}
.y1f_c00393{bottom:448.140450px;}
.y1e_c00393{bottom:479.190450px;}
.y1d_c00393{bottom:510.240450px;}
.y1c_c00393{bottom:541.290450px;}
.y1b_c00393{bottom:572.340450px;}
.y1a_c00393{bottom:612.390450px;}
.y19_c00393{bottom:642.090450px;}
.y18_c00393{bottom:662.790450px;}
.y17_c00393{bottom:683.490450px;}
.y16_c00393{bottom:704.190450px;}
.y15_c00393{bottom:724.890450px;}
.y14_c00393{bottom:745.590450px;}
.y13_c00393{bottom:766.290450px;}
.y12_c00393{bottom:786.990450px;}
.y11_c00393{bottom:807.690450px;}
.y10_c00393{bottom:828.390450px;}
.yf_c00393{bottom:849.090450px;}
.ye_c00393{bottom:869.790450px;}
.yd_c00393{bottom:890.490450px;}
.yc_c00393{bottom:911.190450px;}
.yb_c00393{bottom:931.890450px;}
.ya_c00393{bottom:952.590450px;}
.y9_c00393{bottom:973.290450px;}
.y8_c00393{bottom:993.990450px;}
.y7_c00393{bottom:1014.690450px;}
.y6_c00393{bottom:1035.390450px;}
.y5_c00393{bottom:1056.090450px;}
.y4_c00393{bottom:1076.790450px;}
.y3_c00393{bottom:1097.490450px;}
.h1_c00393{height:63.175781px;}
.h2_c00393{height:64.546875px;}
.h0_c00393{height:1263.000000px;}
.w1_c00393{width:892.500000px;}
.w0_c00393{width:892.830000px;}
.x0_c00393{left:0.000000px;}
.x2_c00393{left:127.620000px;}
.x3_c00393{left:202.950000px;}
.x1_c00393{left:695.880000px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.lsa_c00393{letter-spacing:-0.070400pt;}
.lsb_c00393{letter-spacing:-0.064000pt;}
.lsc_c00393{letter-spacing:-0.057600pt;}
.ls4_c00393{letter-spacing:-0.051200pt;}
.ls9_c00393{letter-spacing:-0.044800pt;}
.ls7_c00393{letter-spacing:-0.038400pt;}
.ls3_c00393{letter-spacing:-0.032000pt;}
.ls2_c00393{letter-spacing:-0.025600pt;}
.ls5_c00393{letter-spacing:-0.019200pt;}
.ls6_c00393{letter-spacing:-0.012800pt;}
.ls8_c00393{letter-spacing:-0.006400pt;}
.ls1_c00393{letter-spacing:0.000000pt;}
.ls0_c00393{letter-spacing:10.560000pt;}
.ws9_c00393{word-spacing:-3.667200pt;}
.ws31_c00393{word-spacing:-2.668800pt;}
.ws32_c00393{word-spacing:-2.649600pt;}
.ws1b_c00393{word-spacing:-2.323200pt;}
.ws1a_c00393{word-spacing:-2.272000pt;}
.ws22_c00393{word-spacing:-2.144000pt;}
.ws21_c00393{word-spacing:-2.060800pt;}
.ws1d_c00393{word-spacing:-1.747200pt;}
.ws1c_c00393{word-spacing:-1.728000pt;}
.ws2_c00393{word-spacing:-1.107200pt;}
.ws3_c00393{word-spacing:-1.088000pt;}
.ws0_c00393{word-spacing:0.000000pt;}
.ws2b_c00393{word-spacing:0.115200pt;}
.ws23_c00393{word-spacing:0.140800pt;}
.ws34_c00393{word-spacing:0.147200pt;}
.ws19_c00393{word-spacing:0.160000pt;}
.ws33_c00393{word-spacing:0.172800pt;}
.ws4_c00393{word-spacing:0.480000pt;}
.ws3e_c00393{word-spacing:0.787200pt;}
.ws3d_c00393{word-spacing:0.806400pt;}
.wsa_c00393{word-spacing:2.067200pt;}
.wsb_c00393{word-spacing:2.086400pt;}
.ws7_c00393{word-spacing:3.616000pt;}
.ws3a_c00393{word-spacing:3.660800pt;}
.ws8_c00393{word-spacing:3.686400pt;}
.ws39_c00393{word-spacing:3.692800pt;}
.ws38_c00393{word-spacing:4.249600pt;}
.ws3b_c00393{word-spacing:4.288000pt;}
.ws37_c00393{word-spacing:4.352000pt;}
.ws3c_c00393{word-spacing:4.416000pt;}
.ws2c_c00393{word-spacing:5.574400pt;}
.ws2d_c00393{word-spacing:5.644800pt;}
.wsc_c00393{word-spacing:5.945600pt;}
.ws30_c00393{word-spacing:5.952000pt;}
.ws1_c00393{word-spacing:6.566400pt;}
.ws2a_c00393{word-spacing:11.385600pt;}
.ws28_c00393{word-spacing:11.673600pt;}
.ws29_c00393{word-spacing:11.699200pt;}
.ws18_c00393{word-spacing:12.339200pt;}
.ws5_c00393{word-spacing:12.646400pt;}
.ws16_c00393{word-spacing:13.612800pt;}
.ws17_c00393{word-spacing:13.651200pt;}
.ws35_c00393{word-spacing:14.566400pt;}
.ws36_c00393{word-spacing:14.579200pt;}
.ws15_c00393{word-spacing:15.417600pt;}
.ws14_c00393{word-spacing:15.526400pt;}
.ws26_c00393{word-spacing:25.088000pt;}
.ws27_c00393{word-spacing:25.126400pt;}
.ws24_c00393{word-spacing:25.145600pt;}
.ws25_c00393{word-spacing:25.158400pt;}
.ws1e_c00393{word-spacing:26.387200pt;}
.ws12_c00393{word-spacing:28.838400pt;}
.ws13_c00393{word-spacing:28.985600pt;}
.ws1f_c00393{word-spacing:38.265600pt;}
.ws20_c00393{word-spacing:38.284800pt;}
.ws6_c00393{word-spacing:38.553600pt;}
.wse_c00393{word-spacing:39.833600pt;}
.wsd_c00393{word-spacing:39.872000pt;}
.ws10_c00393{word-spacing:43.244800pt;}
.ws11_c00393{word-spacing:43.251200pt;}
.ws2f_c00393{word-spacing:56.486400pt;}
.ws2e_c00393{word-spacing:56.499200pt;}
.wsf_c00393{word-spacing:112.467200pt;}
._0_c00393{width:1.222400pt;}
.fs0_c00393{font-size:64.000000pt;}
.y0_c00393{bottom:0.000000pt;}
.y2_c00393{bottom:41.627067pt;}
.y1_c00393{bottom:60.027067pt;}
.y29_c00393{bottom:135.227067pt;}
.y28_c00393{bottom:153.627067pt;}
.y27_c00393{bottom:172.027067pt;}
.y26_c00393{bottom:190.427067pt;}
.y25_c00393{bottom:208.827067pt;}
.y24_c00393{bottom:244.427067pt;}
.y23_c00393{bottom:280.027067pt;}
.y22_c00393{bottom:307.627067pt;}
.y21_c00393{bottom:335.147067pt;}
.y20_c00393{bottom:362.747067pt;}
.y1f_c00393{bottom:398.347067pt;}
.y1e_c00393{bottom:425.947067pt;}
.y1d_c00393{bottom:453.547067pt;}
.y1c_c00393{bottom:481.147067pt;}
.y1b_c00393{bottom:508.747067pt;}
.y1a_c00393{bottom:544.347067pt;}
.y19_c00393{bottom:570.747067pt;}
.y18_c00393{bottom:589.147067pt;}
.y17_c00393{bottom:607.547067pt;}
.y16_c00393{bottom:625.947067pt;}
.y15_c00393{bottom:644.347067pt;}
.y14_c00393{bottom:662.747067pt;}
.y13_c00393{bottom:681.147067pt;}
.y12_c00393{bottom:699.547067pt;}
.y11_c00393{bottom:717.947067pt;}
.y10_c00393{bottom:736.347067pt;}
.yf_c00393{bottom:754.747067pt;}
.ye_c00393{bottom:773.147067pt;}
.yd_c00393{bottom:791.547067pt;}
.yc_c00393{bottom:809.947067pt;}
.yb_c00393{bottom:828.347067pt;}
.ya_c00393{bottom:846.747067pt;}
.y9_c00393{bottom:865.147067pt;}
.y8_c00393{bottom:883.547067pt;}
.y7_c00393{bottom:901.947067pt;}
.y6_c00393{bottom:920.347067pt;}
.y5_c00393{bottom:938.747067pt;}
.y4_c00393{bottom:957.147067pt;}
.y3_c00393{bottom:975.547067pt;}
.h1_c00393{height:56.156250pt;}
.h2_c00393{height:57.375000pt;}
.h0_c00393{height:1122.666667pt;}
.w1_c00393{width:793.333333pt;}
.w0_c00393{width:793.626667pt;}
.x0_c00393{left:0.000000pt;}
.x2_c00393{left:113.440000pt;}
.x3_c00393{left:180.400000pt;}
.x1_c00393{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3194b5b9e07e399e816ce42f.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.093262;font-style:normal;font-weight:normal;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_600beb460de7f67e1a8c54c2.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.106934;font-style:normal;font-weight:normal;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_67a38a913780ae38a6c7e0d7.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc_c00394{letter-spacing:-0.086400px;}
.ls7_c00394{letter-spacing:-0.079200px;}
.ls9_c00394{letter-spacing:-0.072000px;}
.ls8_c00394{letter-spacing:-0.064800px;}
.lsd_c00394{letter-spacing:-0.057600px;}
.ls2_c00394{letter-spacing:-0.050400px;}
.lsb_c00394{letter-spacing:-0.043200px;}
.ls3_c00394{letter-spacing:-0.036000px;}
.ls6_c00394{letter-spacing:-0.028800px;}
.ls5_c00394{letter-spacing:-0.021600px;}
.lsa_c00394{letter-spacing:-0.014400px;}
.ls4_c00394{letter-spacing:-0.007200px;}
.ls1_c00394{letter-spacing:0.000000px;}
.ls0_c00394{letter-spacing:0.144000px;}
.lse_c00394{letter-spacing:843.998400px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00394{word-spacing:-19.929600px;}
.ws1e_c00394{word-spacing:-2.088000px;}
.wse_c00394{word-spacing:-1.987200px;}
.ws1f_c00394{word-spacing:-1.980000px;}
.ws20_c00394{word-spacing:-1.929600px;}
.ws1d_c00394{word-spacing:-1.260000px;}
.ws18_c00394{word-spacing:-0.907200px;}
.ws1_c00394{word-spacing:0.000000px;}
.ws1a_c00394{word-spacing:0.158400px;}
.ws4_c00394{word-spacing:0.165600px;}
.ws15_c00394{word-spacing:0.180000px;}
.ws19_c00394{word-spacing:0.194400px;}
.ws23_c00394{word-spacing:0.244800px;}
.wsa_c00394{word-spacing:2.318400px;}
.wsb_c00394{word-spacing:2.390400px;}
.ws6_c00394{word-spacing:2.700000px;}
.ws7_c00394{word-spacing:2.728800px;}
.ws5_c00394{word-spacing:2.786400px;}
.ws1b_c00394{word-spacing:3.326400px;}
.ws14_c00394{word-spacing:3.405600px;}
.ws1c_c00394{word-spacing:3.434400px;}
.ws13_c00394{word-spacing:3.578400px;}
.ws2_c00394{word-spacing:13.528800px;}
.ws21_c00394{word-spacing:13.860000px;}
.ws22_c00394{word-spacing:13.874400px;}
.wsf_c00394{word-spacing:14.608800px;}
.wsd_c00394{word-spacing:19.519200px;}
.wsc_c00394{word-spacing:19.620000px;}
.ws8_c00394{word-spacing:30.067200px;}
.ws9_c00394{word-spacing:30.204000px;}
.ws17_c00394{word-spacing:34.387200px;}
.ws16_c00394{word-spacing:34.416000px;}
.ws3_c00394{word-spacing:57.794400px;}
.ws12_c00394{word-spacing:59.414400px;}
.ws10_c00394{word-spacing:59.587200px;}
.ws11_c00394{word-spacing:59.601600px;}
._0_c00394{margin-left:-2.592000px;}
._1_c00394{width:1.411200px;}
.fc0_c00394{color:rgb(0,0,0);}
.fs0_c00394{font-size:72.000000px;}
.y0_c00394{bottom:0.000000px;}
.y2_c00394{bottom:46.830450px;}
.y1_c00394{bottom:67.530450px;}
.y19_c00394{bottom:391.440450px;}
.y18_c00394{bottom:431.490450px;}
.y17_c00394{bottom:462.540450px;}
.y16_c00394{bottom:493.590450px;}
.y15_c00394{bottom:533.640450px;}
.y14_c00394{bottom:564.690450px;}
.y13_c00394{bottom:595.740450px;}
.y12_c00394{bottom:635.790450px;}
.y11_c00394{bottom:666.840450px;}
.y10_c00394{bottom:697.890450px;}
.yf_c00394{bottom:737.940450px;}
.ye_c00394{bottom:768.990450px;}
.yd_c00394{bottom:800.040450px;}
.yc_c00394{bottom:831.090450px;}
.yb_c00394{bottom:862.140450px;}
.ya_c00394{bottom:893.190450px;}
.y9_c00394{bottom:924.240450px;}
.y8_c00394{bottom:955.290450px;}
.y7_c00394{bottom:986.340450px;}
.y6_c00394{bottom:1026.390450px;}
.y5_c00394{bottom:1056.090450px;}
.y4_c00394{bottom:1076.790450px;}
.y3_c00394{bottom:1097.490450px;}
.h1_c00394{height:63.175781px;}
.h2_c00394{height:64.546875px;}
.h3_c00394{height:75.093750px;}
.h0_c00394{height:1263.000000px;}
.w1_c00394{width:892.500000px;}
.w0_c00394{width:892.830000px;}
.x0_c00394{left:0.000000px;}
.x2_c00394{left:170.100000px;}
.x3_c00394{left:245.430000px;}
.x1_c00394{left:738.360000px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.lsc_c00394{letter-spacing:-0.076800pt;}
.ls7_c00394{letter-spacing:-0.070400pt;}
.ls9_c00394{letter-spacing:-0.064000pt;}
.ls8_c00394{letter-spacing:-0.057600pt;}
.lsd_c00394{letter-spacing:-0.051200pt;}
.ls2_c00394{letter-spacing:-0.044800pt;}
.lsb_c00394{letter-spacing:-0.038400pt;}
.ls3_c00394{letter-spacing:-0.032000pt;}
.ls6_c00394{letter-spacing:-0.025600pt;}
.ls5_c00394{letter-spacing:-0.019200pt;}
.lsa_c00394{letter-spacing:-0.012800pt;}
.ls4_c00394{letter-spacing:-0.006400pt;}
.ls1_c00394{letter-spacing:0.000000pt;}
.ls0_c00394{letter-spacing:0.128000pt;}
.lse_c00394{letter-spacing:750.220800pt;}
.ws0_c00394{word-spacing:-17.715200pt;}
.ws1e_c00394{word-spacing:-1.856000pt;}
.wse_c00394{word-spacing:-1.766400pt;}
.ws1f_c00394{word-spacing:-1.760000pt;}
.ws20_c00394{word-spacing:-1.715200pt;}
.ws1d_c00394{word-spacing:-1.120000pt;}
.ws18_c00394{word-spacing:-0.806400pt;}
.ws1_c00394{word-spacing:0.000000pt;}
.ws1a_c00394{word-spacing:0.140800pt;}
.ws4_c00394{word-spacing:0.147200pt;}
.ws15_c00394{word-spacing:0.160000pt;}
.ws19_c00394{word-spacing:0.172800pt;}
.ws23_c00394{word-spacing:0.217600pt;}
.wsa_c00394{word-spacing:2.060800pt;}
.wsb_c00394{word-spacing:2.124800pt;}
.ws6_c00394{word-spacing:2.400000pt;}
.ws7_c00394{word-spacing:2.425600pt;}
.ws5_c00394{word-spacing:2.476800pt;}
.ws1b_c00394{word-spacing:2.956800pt;}
.ws14_c00394{word-spacing:3.027200pt;}
.ws1c_c00394{word-spacing:3.052800pt;}
.ws13_c00394{word-spacing:3.180800pt;}
.ws2_c00394{word-spacing:12.025600pt;}
.ws21_c00394{word-spacing:12.320000pt;}
.ws22_c00394{word-spacing:12.332800pt;}
.wsf_c00394{word-spacing:12.985600pt;}
.wsd_c00394{word-spacing:17.350400pt;}
.wsc_c00394{word-spacing:17.440000pt;}
.ws8_c00394{word-spacing:26.726400pt;}
.ws9_c00394{word-spacing:26.848000pt;}
.ws17_c00394{word-spacing:30.566400pt;}
.ws16_c00394{word-spacing:30.592000pt;}
.ws3_c00394{word-spacing:51.372800pt;}
.ws12_c00394{word-spacing:52.812800pt;}
.ws10_c00394{word-spacing:52.966400pt;}
.ws11_c00394{word-spacing:52.979200pt;}
._0_c00394{margin-left:-2.304000pt;}
._1_c00394{width:1.254400pt;}
.fs0_c00394{font-size:64.000000pt;}
.y0_c00394{bottom:0.000000pt;}
.y2_c00394{bottom:41.627067pt;}
.y1_c00394{bottom:60.027067pt;}
.y19_c00394{bottom:347.947067pt;}
.y18_c00394{bottom:383.547067pt;}
.y17_c00394{bottom:411.147067pt;}
.y16_c00394{bottom:438.747067pt;}
.y15_c00394{bottom:474.347067pt;}
.y14_c00394{bottom:501.947067pt;}
.y13_c00394{bottom:529.547067pt;}
.y12_c00394{bottom:565.147067pt;}
.y11_c00394{bottom:592.747067pt;}
.y10_c00394{bottom:620.347067pt;}
.yf_c00394{bottom:655.947067pt;}
.ye_c00394{bottom:683.547067pt;}
.yd_c00394{bottom:711.147067pt;}
.yc_c00394{bottom:738.747067pt;}
.yb_c00394{bottom:766.347067pt;}
.ya_c00394{bottom:793.947067pt;}
.y9_c00394{bottom:821.547067pt;}
.y8_c00394{bottom:849.147067pt;}
.y7_c00394{bottom:876.747067pt;}
.y6_c00394{bottom:912.347067pt;}
.y5_c00394{bottom:938.747067pt;}
.y4_c00394{bottom:957.147067pt;}
.y3_c00394{bottom:975.547067pt;}
.h1_c00394{height:56.156250pt;}
.h2_c00394{height:57.375000pt;}
.h3_c00394{height:66.750000pt;}
.h0_c00394{height:1122.666667pt;}
.w1_c00394{width:793.333333pt;}
.w0_c00394{width:793.626667pt;}
.x0_c00394{left:0.000000pt;}
.x2_c00394{left:151.200000pt;}
.x3_c00394{left:218.160000pt;}
.x1_c00394{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2615cf763bacb596820bee6c.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.106934;font-style: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;}
.ls0_c00395{letter-spacing:0.000000px;}
.ls1_c00395{letter-spacing:843.998400px;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00395{word-spacing:0.000000px;}
.fc0_c00395{color:rgb(0,0,0);}
.fs0_c00395{font-size:72.000000px;}
.y0_c00395{bottom:0.000000px;}
.y2_c00395{bottom:46.830450px;}
.y1_c00395{bottom:67.530450px;}
.y5_c00395{bottom:1017.390450px;}
.y4_c00395{bottom:1057.440450px;}
.y3_c00395{bottom:1097.490450px;}
.h1_c00395{height:63.175781px;}
.h2_c00395{height:64.546875px;}
.h0_c00395{height:1263.000000px;}
.w1_c00395{width:892.500000px;}
.w0_c00395{width:892.830000px;}
.x0_c00395{left:0.000000px;}
.x2_c00395{left:127.620000px;}
.x1_c00395{left:695.880000px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls0_c00395{letter-spacing:0.000000pt;}
.ls1_c00395{letter-spacing:750.220800pt;}
.ws0_c00395{word-spacing:0.000000pt;}
.fs0_c00395{font-size:64.000000pt;}
.y0_c00395{bottom:0.000000pt;}
.y2_c00395{bottom:41.627067pt;}
.y1_c00395{bottom:60.027067pt;}
.y5_c00395{bottom:904.347067pt;}
.y4_c00395{bottom:939.947067pt;}
.y3_c00395{bottom:975.547067pt;}
.h1_c00395{height:56.156250pt;}
.h2_c00395{height:57.375000pt;}
.h0_c00395{height:1122.666667pt;}
.w1_c00395{width:793.333333pt;}
.w0_c00395{width:793.626667pt;}
.x0_c00395{left:0.000000pt;}
.x2_c00395{left:113.440000pt;}
.x1_c00395{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a1492178645d1db17c7e1283.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.093262;font-style:normal;font-weight:normal;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_ddd80692fa7d166d33775354.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00396;src:url('chunks/assets/font_0a706bb8c2b6697908ccb175.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.lsd_c00396{letter-spacing:-0.079200px;}
.ls8_c00396{letter-spacing:-0.072000px;}
.ls3_c00396{letter-spacing:-0.064800px;}
.ls6_c00396{letter-spacing:-0.057600px;}
.ls5_c00396{letter-spacing:-0.050400px;}
.ls7_c00396{letter-spacing:-0.043200px;}
.ls2_c00396{letter-spacing:-0.036000px;}
.ls4_c00396{letter-spacing:-0.028800px;}
.lsa_c00396{letter-spacing:-0.021600px;}
.lsc_c00396{letter-spacing:-0.014400px;}
.lsb_c00396{letter-spacing:-0.007200px;}
.ls1_c00396{letter-spacing:0.000000px;}
.ls9_c00396{letter-spacing:0.028800px;}
.ls0_c00396{letter-spacing:0.058716px;}
.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;}
}
.ws1d_c00396{word-spacing:-4.226400px;}
.ws1e_c00396{word-spacing:-4.125600px;}
.ws13_c00396{word-spacing:-3.060000px;}
.ws14_c00396{word-spacing:-3.031200px;}
.wse_c00396{word-spacing:-0.230400px;}
.ws0_c00396{word-spacing:0.000000px;}
.ws1_c00396{word-spacing:0.033552px;}
.ws22_c00396{word-spacing:0.043200px;}
.ws2c_c00396{word-spacing:0.050400px;}
.ws2b_c00396{word-spacing:0.122400px;}
.ws1f_c00396{word-spacing:0.172800px;}
.ws21_c00396{word-spacing:0.180000px;}
.ws4_c00396{word-spacing:0.187200px;}
.ws1a_c00396{word-spacing:0.194400px;}
.ws5_c00396{word-spacing:0.208800px;}
.ws20_c00396{word-spacing:0.252000px;}
.ws6_c00396{word-spacing:1.634400px;}
.ws7_c00396{word-spacing:1.656000px;}
.ws29_c00396{word-spacing:1.972800px;}
.ws2a_c00396{word-spacing:2.073600px;}
.ws26_c00396{word-spacing:5.220000px;}
.ws10_c00396{word-spacing:7.401600px;}
.wsf_c00396{word-spacing:7.452000px;}
.wsc_c00396{word-spacing:9.554400px;}
.wsd_c00396{word-spacing:9.590400px;}
.ws12_c00396{word-spacing:11.232000px;}
.ws11_c00396{word-spacing:11.368800px;}
.wsa_c00396{word-spacing:11.707200px;}
.wsb_c00396{word-spacing:11.808000px;}
.ws1c_c00396{word-spacing:15.652800px;}
.ws1b_c00396{word-spacing:15.660000px;}
.ws16_c00396{word-spacing:19.260000px;}
.ws17_c00396{word-spacing:19.353600px;}
.ws23_c00396{word-spacing:20.340000px;}
.ws2_c00396{word-spacing:20.714400px;}
.ws3_c00396{word-spacing:20.743200px;}
.ws24_c00396{word-spacing:24.336000px;}
.ws25_c00396{word-spacing:24.357600px;}
.ws28_c00396{word-spacing:24.933600px;}
.ws27_c00396{word-spacing:25.020000px;}
.ws19_c00396{word-spacing:26.906400px;}
.ws18_c00396{word-spacing:26.956800px;}
.ws15_c00396{word-spacing:40.125600px;}
.ws8_c00396{word-spacing:43.761600px;}
.ws9_c00396{word-spacing:43.768800px;}
._1_c00396{width:1.080000px;}
._0_c00396{width:153.332640px;}
.fc0_c00396{color:rgb(0,0,0);}
.fs0_c00396{font-size:72.000000px;}
.fs1_c00396{font-size:83.880000px;}
.y0_c00396{bottom:0.000000px;}
.y2_c00396{bottom:46.830450px;}
.y1_c00396{bottom:67.530450px;}
.y1f_c00396{bottom:154.020450px;}
.y1e_c00396{bottom:194.070450px;}
.y1d_c00396{bottom:225.120450px;}
.y1c_c00396{bottom:256.170450px;}
.y1b_c00396{bottom:287.220450px;}
.y1a_c00396{bottom:318.270450px;}
.y19_c00396{bottom:349.320450px;}
.y18_c00396{bottom:389.370450px;}
.y17_c00396{bottom:429.420450px;}
.y16_c00396{bottom:469.470450px;}
.y15_c00396{bottom:500.520450px;}
.y14_c00396{bottom:531.570450px;}
.y13_c00396{bottom:571.620450px;}
.y12_c00396{bottom:602.670450px;}
.y11_c00396{bottom:633.720450px;}
.y10_c00396{bottom:664.770450px;}
.yf_c00396{bottom:695.820450px;}
.ye_c00396{bottom:726.870450px;}
.yd_c00396{bottom:757.920450px;}
.yc_c00396{bottom:797.970450px;}
.yb_c00396{bottom:829.020450px;}
.ya_c00396{bottom:860.070450px;}
.y9_c00396{bottom:891.120450px;}
.y8_c00396{bottom:922.170450px;}
.y7_c00396{bottom:962.220450px;}
.y6_c00396{bottom:993.270450px;}
.y5_c00396{bottom:1024.320450px;}
.y4_c00396{bottom:1064.370450px;}
.y3_c00396{bottom:1094.520450px;}
.h1_c00396{height:63.175781px;}
.h3_c00396{height:64.546875px;}
.h2_c00396{height:87.484219px;}
.h0_c00396{height:1263.000000px;}
.w1_c00396{width:892.500000px;}
.w0_c00396{width:892.830000px;}
.x0_c00396{left:0.000000px;}
.x2_c00396{left:170.100000px;}
.x3_c00396{left:197.100000px;}
.x1_c00396{left:738.360000px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.lsd_c00396{letter-spacing:-0.070400pt;}
.ls8_c00396{letter-spacing:-0.064000pt;}
.ls3_c00396{letter-spacing:-0.057600pt;}
.ls6_c00396{letter-spacing:-0.051200pt;}
.ls5_c00396{letter-spacing:-0.044800pt;}
.ls7_c00396{letter-spacing:-0.038400pt;}
.ls2_c00396{letter-spacing:-0.032000pt;}
.ls4_c00396{letter-spacing:-0.025600pt;}
.lsa_c00396{letter-spacing:-0.019200pt;}
.lsc_c00396{letter-spacing:-0.012800pt;}
.lsb_c00396{letter-spacing:-0.006400pt;}
.ls1_c00396{letter-spacing:0.000000pt;}
.ls9_c00396{letter-spacing:0.025600pt;}
.ls0_c00396{letter-spacing:0.052192pt;}
.ws1d_c00396{word-spacing:-3.756800pt;}
.ws1e_c00396{word-spacing:-3.667200pt;}
.ws13_c00396{word-spacing:-2.720000pt;}
.ws14_c00396{word-spacing:-2.694400pt;}
.wse_c00396{word-spacing:-0.204800pt;}
.ws0_c00396{word-spacing:0.000000pt;}
.ws1_c00396{word-spacing:0.029824pt;}
.ws22_c00396{word-spacing:0.038400pt;}
.ws2c_c00396{word-spacing:0.044800pt;}
.ws2b_c00396{word-spacing:0.108800pt;}
.ws1f_c00396{word-spacing:0.153600pt;}
.ws21_c00396{word-spacing:0.160000pt;}
.ws4_c00396{word-spacing:0.166400pt;}
.ws1a_c00396{word-spacing:0.172800pt;}
.ws5_c00396{word-spacing:0.185600pt;}
.ws20_c00396{word-spacing:0.224000pt;}
.ws6_c00396{word-spacing:1.452800pt;}
.ws7_c00396{word-spacing:1.472000pt;}
.ws29_c00396{word-spacing:1.753600pt;}
.ws2a_c00396{word-spacing:1.843200pt;}
.ws26_c00396{word-spacing:4.640000pt;}
.ws10_c00396{word-spacing:6.579200pt;}
.wsf_c00396{word-spacing:6.624000pt;}
.wsc_c00396{word-spacing:8.492800pt;}
.wsd_c00396{word-spacing:8.524800pt;}
.ws12_c00396{word-spacing:9.984000pt;}
.ws11_c00396{word-spacing:10.105600pt;}
.wsa_c00396{word-spacing:10.406400pt;}
.wsb_c00396{word-spacing:10.496000pt;}
.ws1c_c00396{word-spacing:13.913600pt;}
.ws1b_c00396{word-spacing:13.920000pt;}
.ws16_c00396{word-spacing:17.120000pt;}
.ws17_c00396{word-spacing:17.203200pt;}
.ws23_c00396{word-spacing:18.080000pt;}
.ws2_c00396{word-spacing:18.412800pt;}
.ws3_c00396{word-spacing:18.438400pt;}
.ws24_c00396{word-spacing:21.632000pt;}
.ws25_c00396{word-spacing:21.651200pt;}
.ws28_c00396{word-spacing:22.163200pt;}
.ws27_c00396{word-spacing:22.240000pt;}
.ws19_c00396{word-spacing:23.916800pt;}
.ws18_c00396{word-spacing:23.961600pt;}
.ws15_c00396{word-spacing:35.667200pt;}
.ws8_c00396{word-spacing:38.899200pt;}
.ws9_c00396{word-spacing:38.905600pt;}
._1_c00396{width:0.960000pt;}
._0_c00396{width:136.295680pt;}
.fs0_c00396{font-size:64.000000pt;}
.fs1_c00396{font-size:74.560000pt;}
.y0_c00396{bottom:0.000000pt;}
.y2_c00396{bottom:41.627067pt;}
.y1_c00396{bottom:60.027067pt;}
.y1f_c00396{bottom:136.907067pt;}
.y1e_c00396{bottom:172.507067pt;}
.y1d_c00396{bottom:200.107067pt;}
.y1c_c00396{bottom:227.707067pt;}
.y1b_c00396{bottom:255.307067pt;}
.y1a_c00396{bottom:282.907067pt;}
.y19_c00396{bottom:310.507067pt;}
.y18_c00396{bottom:346.107067pt;}
.y17_c00396{bottom:381.707067pt;}
.y16_c00396{bottom:417.307067pt;}
.y15_c00396{bottom:444.907067pt;}
.y14_c00396{bottom:472.507067pt;}
.y13_c00396{bottom:508.107067pt;}
.y12_c00396{bottom:535.707067pt;}
.y11_c00396{bottom:563.307067pt;}
.y10_c00396{bottom:590.907067pt;}
.yf_c00396{bottom:618.507067pt;}
.ye_c00396{bottom:646.107067pt;}
.yd_c00396{bottom:673.707067pt;}
.yc_c00396{bottom:709.307067pt;}
.yb_c00396{bottom:736.907067pt;}
.ya_c00396{bottom:764.507067pt;}
.y9_c00396{bottom:792.107067pt;}
.y8_c00396{bottom:819.707067pt;}
.y7_c00396{bottom:855.307067pt;}
.y6_c00396{bottom:882.907067pt;}
.y5_c00396{bottom:910.507067pt;}
.y4_c00396{bottom:946.107067pt;}
.y3_c00396{bottom:972.907067pt;}
.h1_c00396{height:56.156250pt;}
.h3_c00396{height:57.375000pt;}
.h2_c00396{height:77.763750pt;}
.h0_c00396{height:1122.666667pt;}
.w1_c00396{width:793.333333pt;}
.w0_c00396{width:793.626667pt;}
.x0_c00396{left:0.000000pt;}
.x2_c00396{left:151.200000pt;}
.x3_c00396{left:175.200000pt;}
.x1_c00396{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fc76f7909a87da37f76c9331.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.093262;font-style:normal;font-weight:normal;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_bb76c219eaeb8ee3fdf6100c.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00397{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.ls8_c00397{letter-spacing:-0.057600px;}
.ls3_c00397{letter-spacing:-0.050400px;}
.ls5_c00397{letter-spacing:-0.043200px;}
.ls6_c00397{letter-spacing:-0.036000px;}
.ls4_c00397{letter-spacing:-0.028800px;}
.ls2_c00397{letter-spacing:-0.021600px;}
.ls7_c00397{letter-spacing:-0.014400px;}
.ls1_c00397{letter-spacing:-0.007200px;}
.ls0_c00397{letter-spacing:0.000000px;}
.ls9_c00397{letter-spacing:843.998400px;}
.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;}
}
.wsd_c00397{word-spacing:-3.744000px;}
.ws0_c00397{word-spacing:0.000000px;}
.ws2_c00397{word-spacing:0.108000px;}
.ws1_c00397{word-spacing:0.165600px;}
.ws3_c00397{word-spacing:0.180000px;}
.ws4_c00397{word-spacing:0.208800px;}
.ws7_c00397{word-spacing:0.280800px;}
.wsa_c00397{word-spacing:0.532800px;}
.wse_c00397{word-spacing:3.816000px;}
.ws8_c00397{word-spacing:7.740000px;}
.ws9_c00397{word-spacing:7.754400px;}
.ws5_c00397{word-spacing:9.835200px;}
.ws6_c00397{word-spacing:9.921600px;}
.wsc_c00397{word-spacing:26.056800px;}
.wsb_c00397{word-spacing:26.121600px;}
._0_c00397{width:1.440000px;}
.fc0_c00397{color:rgb(0,0,0);}
.fs0_c00397{font-size:72.000000px;}
.y0_c00397{bottom:0.000000px;}
.y2_c00397{bottom:46.830450px;}
.y1_c00397{bottom:67.530450px;}
.y13_c00397{bottom:510.690450px;}
.y12_c00397{bottom:550.740450px;}
.y11_c00397{bottom:590.790450px;}
.y10_c00397{bottom:621.840450px;}
.yf_c00397{bottom:652.890450px;}
.ye_c00397{bottom:683.940450px;}
.yd_c00397{bottom:714.990450px;}
.yc_c00397{bottom:746.040450px;}
.yb_c00397{bottom:786.090450px;}
.ya_c00397{bottom:826.140450px;}
.y9_c00397{bottom:866.190450px;}
.y8_c00397{bottom:906.240450px;}
.y7_c00397{bottom:946.290450px;}
.y6_c00397{bottom:977.340450px;}
.y5_c00397{bottom:1017.390450px;}
.y4_c00397{bottom:1057.440450px;}
.y3_c00397{bottom:1097.490450px;}
.h1_c00397{height:63.175781px;}
.h2_c00397{height:64.546875px;}
.h0_c00397{height:1263.000000px;}
.w1_c00397{width:892.500000px;}
.w0_c00397{width:892.830000px;}
.x0_c00397{left:0.000000px;}
.x2_c00397{left:127.620000px;}
.x1_c00397{left:695.880000px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls8_c00397{letter-spacing:-0.051200pt;}
.ls3_c00397{letter-spacing:-0.044800pt;}
.ls5_c00397{letter-spacing:-0.038400pt;}
.ls6_c00397{letter-spacing:-0.032000pt;}
.ls4_c00397{letter-spacing:-0.025600pt;}
.ls2_c00397{letter-spacing:-0.019200pt;}
.ls7_c00397{letter-spacing:-0.012800pt;}
.ls1_c00397{letter-spacing:-0.006400pt;}
.ls0_c00397{letter-spacing:0.000000pt;}
.ls9_c00397{letter-spacing:750.220800pt;}
.wsd_c00397{word-spacing:-3.328000pt;}
.ws0_c00397{word-spacing:0.000000pt;}
.ws2_c00397{word-spacing:0.096000pt;}
.ws1_c00397{word-spacing:0.147200pt;}
.ws3_c00397{word-spacing:0.160000pt;}
.ws4_c00397{word-spacing:0.185600pt;}
.ws7_c00397{word-spacing:0.249600pt;}
.wsa_c00397{word-spacing:0.473600pt;}
.wse_c00397{word-spacing:3.392000pt;}
.ws8_c00397{word-spacing:6.880000pt;}
.ws9_c00397{word-spacing:6.892800pt;}
.ws5_c00397{word-spacing:8.742400pt;}
.ws6_c00397{word-spacing:8.819200pt;}
.wsc_c00397{word-spacing:23.161600pt;}
.wsb_c00397{word-spacing:23.219200pt;}
._0_c00397{width:1.280000pt;}
.fs0_c00397{font-size:64.000000pt;}
.y0_c00397{bottom:0.000000pt;}
.y2_c00397{bottom:41.627067pt;}
.y1_c00397{bottom:60.027067pt;}
.y13_c00397{bottom:453.947067pt;}
.y12_c00397{bottom:489.547067pt;}
.y11_c00397{bottom:525.147067pt;}
.y10_c00397{bottom:552.747067pt;}
.yf_c00397{bottom:580.347067pt;}
.ye_c00397{bottom:607.947067pt;}
.yd_c00397{bottom:635.547067pt;}
.yc_c00397{bottom:663.147067pt;}
.yb_c00397{bottom:698.747067pt;}
.ya_c00397{bottom:734.347067pt;}
.y9_c00397{bottom:769.947067pt;}
.y8_c00397{bottom:805.547067pt;}
.y7_c00397{bottom:841.147067pt;}
.y6_c00397{bottom:868.747067pt;}
.y5_c00397{bottom:904.347067pt;}
.y4_c00397{bottom:939.947067pt;}
.y3_c00397{bottom:975.547067pt;}
.h1_c00397{height:56.156250pt;}
.h2_c00397{height:57.375000pt;}
.h0_c00397{height:1122.666667pt;}
.w1_c00397{width:793.333333pt;}
.w0_c00397{width:793.626667pt;}
.x0_c00397{left:0.000000pt;}
.x2_c00397{left:113.440000pt;}
.x1_c00397{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_87bec4f13dbd43a9f36e7e01.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.093262;font-style:normal;font-weight:normal;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_7fbfea6ee4f65724fd018a47.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00398;src:url('chunks/assets/font_7c02abe9f658d670b0223bc8.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.106934;font-style:normal;font-weight:normal;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_cddb33cc9439918c6ca089e3.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00398{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls4_c00398{letter-spacing:-0.122400px;}
.lsd_c00398{letter-spacing:-0.072000px;}
.lsc_c00398{letter-spacing:-0.064800px;}
.ls9_c00398{letter-spacing:-0.057600px;}
.ls6_c00398{letter-spacing:-0.043200px;}
.ls8_c00398{letter-spacing:-0.036000px;}
.ls3_c00398{letter-spacing:-0.028800px;}
.lsb_c00398{letter-spacing:-0.021600px;}
.lsa_c00398{letter-spacing:-0.014400px;}
.ls5_c00398{letter-spacing:-0.007200px;}
.ls1_c00398{letter-spacing:0.000000px;}
.ls0_c00398{letter-spacing:0.007200px;}
.ls2_c00398{letter-spacing:0.134208px;}
.ls7_c00398{letter-spacing:0.151200px;}
.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;}
}
.wsf_c00398{word-spacing:-0.028800px;}
.ws0_c00398{word-spacing:0.000000px;}
.ws7_c00398{word-spacing:0.007200px;}
.ws5_c00398{word-spacing:0.100800px;}
.ws11_c00398{word-spacing:0.151200px;}
.wsd_c00398{word-spacing:0.165600px;}
.wsc_c00398{word-spacing:0.172800px;}
.wse_c00398{word-spacing:0.180000px;}
.ws6_c00398{word-spacing:0.201600px;}
.ws13_c00398{word-spacing:0.244800px;}
.ws12_c00398{word-spacing:0.273600px;}
.ws10_c00398{word-spacing:0.295200px;}
.ws14_c00398{word-spacing:0.367200px;}
.ws17_c00398{word-spacing:4.140000px;}
.ws18_c00398{word-spacing:4.161600px;}
.ws2_c00398{word-spacing:6.573600px;}
.ws3_c00398{word-spacing:6.595200px;}
.ws4_c00398{word-spacing:6.760800px;}
.ws15_c00398{word-spacing:7.358400px;}
.ws16_c00398{word-spacing:7.416000px;}
.wsa_c00398{word-spacing:10.972800px;}
.wsb_c00398{word-spacing:10.980000px;}
.ws1c_c00398{word-spacing:13.881600px;}
.ws1b_c00398{word-spacing:13.989600px;}
.ws8_c00398{word-spacing:14.162400px;}
.ws9_c00398{word-spacing:14.256000px;}
.ws1_c00398{word-spacing:14.360256px;}
.ws1a_c00398{word-spacing:22.536000px;}
.ws19_c00398{word-spacing:50.947200px;}
._0_c00398{width:1.267200px;}
._2_c00398{width:564.487200px;}
._1_c00398{width:584.640000px;}
._4_c00398{width:588.607200px;}
._3_c00398{width:680.947200px;}
._6_c00398{width:704.505600px;}
._5_c00398{width:772.358400px;}
.fc0_c00398{color:rgb(0,0,0);}
.fs0_c00398{font-size:72.000000px;}
.fs1_c00398{font-size:83.880000px;}
.y0_c00398{bottom:0.000000px;}
.y2_c00398{bottom:46.830450px;}
.y1_c00398{bottom:67.530450px;}
.y1a_c00398{bottom:148.800450px;}
.y19_c00398{bottom:179.850450px;}
.y18_c00398{bottom:219.900450px;}
.y17_c00398{bottom:250.950450px;}
.y16_c00398{bottom:282.000450px;}
.y15_c00398{bottom:313.050450px;}
.y14_c00398{bottom:353.100450px;}
.y13_c00398{bottom:402.870600px;}
.y12_c00398{bottom:452.640450px;}
.y11_c00398{bottom:502.500600px;}
.y10_c00398{bottom:552.270450px;}
.yf_c00398{bottom:602.040450px;}
.ye_c00398{bottom:651.810450px;}
.yd_c00398{bottom:701.670450px;}
.yc_c00398{bottom:751.440450px;}
.yb_c00398{bottom:801.210450px;}
.ya_c00398{bottom:851.070450px;}
.y9_c00398{bottom:891.120450px;}
.y8_c00398{bottom:922.170450px;}
.y7_c00398{bottom:953.220450px;}
.y6_c00398{bottom:993.270450px;}
.y5_c00398{bottom:1024.320450px;}
.y4_c00398{bottom:1064.370450px;}
.y3_c00398{bottom:1094.520450px;}
.h1_c00398{height:63.175781px;}
.h3_c00398{height:64.546875px;}
.h4_c00398{height:75.093750px;}
.h2_c00398{height:87.484219px;}
.h0_c00398{height:1263.000000px;}
.w1_c00398{width:892.500000px;}
.w0_c00398{width:892.830000px;}
.x0_c00398{left:0.000000px;}
.x2_c00398{left:170.100000px;}
.x3_c00398{left:178.560000px;}
.x1_c00398{left:738.360000px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls4_c00398{letter-spacing:-0.108800pt;}
.lsd_c00398{letter-spacing:-0.064000pt;}
.lsc_c00398{letter-spacing:-0.057600pt;}
.ls9_c00398{letter-spacing:-0.051200pt;}
.ls6_c00398{letter-spacing:-0.038400pt;}
.ls8_c00398{letter-spacing:-0.032000pt;}
.ls3_c00398{letter-spacing:-0.025600pt;}
.lsb_c00398{letter-spacing:-0.019200pt;}
.lsa_c00398{letter-spacing:-0.012800pt;}
.ls5_c00398{letter-spacing:-0.006400pt;}
.ls1_c00398{letter-spacing:0.000000pt;}
.ls0_c00398{letter-spacing:0.006400pt;}
.ls2_c00398{letter-spacing:0.119296pt;}
.ls7_c00398{letter-spacing:0.134400pt;}
.wsf_c00398{word-spacing:-0.025600pt;}
.ws0_c00398{word-spacing:0.000000pt;}
.ws7_c00398{word-spacing:0.006400pt;}
.ws5_c00398{word-spacing:0.089600pt;}
.ws11_c00398{word-spacing:0.134400pt;}
.wsd_c00398{word-spacing:0.147200pt;}
.wsc_c00398{word-spacing:0.153600pt;}
.wse_c00398{word-spacing:0.160000pt;}
.ws6_c00398{word-spacing:0.179200pt;}
.ws13_c00398{word-spacing:0.217600pt;}
.ws12_c00398{word-spacing:0.243200pt;}
.ws10_c00398{word-spacing:0.262400pt;}
.ws14_c00398{word-spacing:0.326400pt;}
.ws17_c00398{word-spacing:3.680000pt;}
.ws18_c00398{word-spacing:3.699200pt;}
.ws2_c00398{word-spacing:5.843200pt;}
.ws3_c00398{word-spacing:5.862400pt;}
.ws4_c00398{word-spacing:6.009600pt;}
.ws15_c00398{word-spacing:6.540800pt;}
.ws16_c00398{word-spacing:6.592000pt;}
.wsa_c00398{word-spacing:9.753600pt;}
.wsb_c00398{word-spacing:9.760000pt;}
.ws1c_c00398{word-spacing:12.339200pt;}
.ws1b_c00398{word-spacing:12.435200pt;}
.ws8_c00398{word-spacing:12.588800pt;}
.ws9_c00398{word-spacing:12.672000pt;}
.ws1_c00398{word-spacing:12.764672pt;}
.ws1a_c00398{word-spacing:20.032000pt;}
.ws19_c00398{word-spacing:45.286400pt;}
._0_c00398{width:1.126400pt;}
._2_c00398{width:501.766400pt;}
._1_c00398{width:519.680000pt;}
._4_c00398{width:523.206400pt;}
._3_c00398{width:605.286400pt;}
._6_c00398{width:626.227200pt;}
._5_c00398{width:686.540800pt;}
.fs0_c00398{font-size:64.000000pt;}
.fs1_c00398{font-size:74.560000pt;}
.y0_c00398{bottom:0.000000pt;}
.y2_c00398{bottom:41.627067pt;}
.y1_c00398{bottom:60.027067pt;}
.y1a_c00398{bottom:132.267067pt;}
.y19_c00398{bottom:159.867067pt;}
.y18_c00398{bottom:195.467067pt;}
.y17_c00398{bottom:223.067067pt;}
.y16_c00398{bottom:250.667067pt;}
.y15_c00398{bottom:278.267067pt;}
.y14_c00398{bottom:313.867067pt;}
.y13_c00398{bottom:358.107200pt;}
.y12_c00398{bottom:402.347067pt;}
.y11_c00398{bottom:446.667200pt;}
.y10_c00398{bottom:490.907067pt;}
.yf_c00398{bottom:535.147067pt;}
.ye_c00398{bottom:579.387067pt;}
.yd_c00398{bottom:623.707067pt;}
.yc_c00398{bottom:667.947067pt;}
.yb_c00398{bottom:712.187067pt;}
.ya_c00398{bottom:756.507067pt;}
.y9_c00398{bottom:792.107067pt;}
.y8_c00398{bottom:819.707067pt;}
.y7_c00398{bottom:847.307067pt;}
.y6_c00398{bottom:882.907067pt;}
.y5_c00398{bottom:910.507067pt;}
.y4_c00398{bottom:946.107067pt;}
.y3_c00398{bottom:972.907067pt;}
.h1_c00398{height:56.156250pt;}
.h3_c00398{height:57.375000pt;}
.h4_c00398{height:66.750000pt;}
.h2_c00398{height:77.763750pt;}
.h0_c00398{height:1122.666667pt;}
.w1_c00398{width:793.333333pt;}
.w0_c00398{width:793.626667pt;}
.x0_c00398{left:0.000000pt;}
.x2_c00398{left:151.200000pt;}
.x3_c00398{left:158.720000pt;}
.x1_c00398{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_432b5673e411595ae2859e39.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.093262;font-style:normal;font-weight:normal;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_3775dbe0b81b06478681333a.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.106934;font-style:normal;font-weight:normal;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_fc5d5418750067b2c3011360.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00399;src:url('chunks/assets/font_c9ca548636e543e9403f92dc.woff2')format("woff");}.ff4_c00399{font-family:ff4_c00399;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00399;src:url('chunks/assets/font_61d4cfbfa044bdddee7b47bc.woff2')format("woff");}.ff5_c00399{font-family:ff5_c00399;line-height:0.666504;font-style:normal;font-weight:normal;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_230ed8be33bce8b9b828062f.woff2')format("woff");}.ff6_c00399{font-family:ff6_c00399;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00399;src:url('chunks/assets/font_66464611b58521178a99bc3d.woff2')format("woff");}.ff7_c00399{font-family:ff7_c00399;line-height:0.765625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00399{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00399{vertical-align:0.000000px;}
.ls10_c00399{letter-spacing:-0.122400px;}
.ls13_c00399{letter-spacing:-0.064800px;}
.lsd_c00399{letter-spacing:-0.057600px;}
.lsb_c00399{letter-spacing:-0.050400px;}
.lse_c00399{letter-spacing:-0.043200px;}
.lsa_c00399{letter-spacing:-0.036000px;}
.lsf_c00399{letter-spacing:-0.028800px;}
.ls8_c00399{letter-spacing:-0.021600px;}
.ls9_c00399{letter-spacing:-0.014400px;}
.lsc_c00399{letter-spacing:-0.007200px;}
.ls7_c00399{letter-spacing:0.000000px;}
.ls2_c00399{letter-spacing:0.007200px;}
.ls4_c00399{letter-spacing:0.021600px;}
.ls6_c00399{letter-spacing:0.028800px;}
.ls5_c00399{letter-spacing:0.043200px;}
.ls3_c00399{letter-spacing:0.050400px;}
.ls11_c00399{letter-spacing:0.057600px;}
.ls0_c00399{letter-spacing:0.067104px;}
.ls12_c00399{letter-spacing:0.158400px;}
.ls1_c00399{letter-spacing:54.864000px;}
.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;}
}
.ws4_c00399{word-spacing:-72.000000px;}
.ws2_c00399{word-spacing:-20.066400px;}
.ws3_c00399{word-spacing:-20.044800px;}
.ws0_c00399{word-spacing:-20.001600px;}
.ws1_c00399{word-spacing:-19.987200px;}
.wse_c00399{word-spacing:-3.412800px;}
.ws1f_c00399{word-spacing:-2.340000px;}
.ws1a_c00399{word-spacing:-1.699200px;}
.ws1b_c00399{word-spacing:-1.605600px;}
.ws5_c00399{word-spacing:0.000000px;}
.ws9_c00399{word-spacing:0.025164px;}
.ws1e_c00399{word-spacing:0.115200px;}
.ws1d_c00399{word-spacing:0.136800px;}
.ws1c_c00399{word-spacing:0.165600px;}
.ws18_c00399{word-spacing:0.172800px;}
.ws27_c00399{word-spacing:0.180000px;}
.ws11_c00399{word-spacing:0.187200px;}
.wsc_c00399{word-spacing:0.201600px;}
.ws8_c00399{word-spacing:0.208800px;}
.wsd_c00399{word-spacing:0.273600px;}
.ws28_c00399{word-spacing:0.288000px;}
.ws7_c00399{word-spacing:4.154400px;}
.ws12_c00399{word-spacing:4.514400px;}
.ws22_c00399{word-spacing:5.011200px;}
.ws20_c00399{word-spacing:5.198400px;}
.ws21_c00399{word-spacing:5.234400px;}
.ws16_c00399{word-spacing:7.034400px;}
.ws17_c00399{word-spacing:7.048800px;}
.ws19_c00399{word-spacing:7.711200px;}
.wsa_c00399{word-spacing:8.445600px;}
.ws13_c00399{word-spacing:8.820000px;}
.ws14_c00399{word-spacing:8.834400px;}
.wsf_c00399{word-spacing:14.652000px;}
.ws10_c00399{word-spacing:14.680800px;}
.ws15_c00399{word-spacing:26.827200px;}
.ws23_c00399{word-spacing:31.449600px;}
.ws24_c00399{word-spacing:31.478400px;}
.ws26_c00399{word-spacing:31.521600px;}
.ws25_c00399{word-spacing:31.543200px;}
.ws6_c00399{word-spacing:34.380000px;}
.wsb_c00399{word-spacing:38.376000px;}
._5_c00399{margin-left:-31.032000px;}
._4_c00399{margin-left:-1.382400px;}
._1_c00399{width:1.440000px;}
._3_c00399{width:6.854400px;}
._2_c00399{width:26.719200px;}
._6_c00399{width:31.248000px;}
._0_c00399{width:153.332640px;}
.fc0_c00399{color:rgb(0,0,0);}
.fs0_c00399{font-size:72.000000px;}
.fs1_c00399{font-size:83.880000px;}
.y0_c00399{bottom:0.000000px;}
.y2_c00399{bottom:46.830450px;}
.y1_c00399{bottom:67.530450px;}
.y20_c00399{bottom:146.370450px;}
.y1f_c00399{bottom:177.420450px;}
.y1e_c00399{bottom:208.470450px;}
.y1d_c00399{bottom:239.520450px;}
.y1c_c00399{bottom:270.570450px;}
.y1b_c00399{bottom:301.620450px;}
.y1a_c00399{bottom:332.670450px;}
.y19_c00399{bottom:363.720450px;}
.y18_c00399{bottom:394.770450px;}
.y17_c00399{bottom:425.820450px;}
.y16_c00399{bottom:456.780450px;}
.y15_c00399{bottom:489.090450px;}
.y14_c00399{bottom:520.140450px;}
.y13_c00399{bottom:551.100450px;}
.y12_c00399{bottom:583.410450px;}
.y11_c00399{bottom:614.460450px;}
.y10_c00399{bottom:645.510450px;}
.yf_c00399{bottom:676.560450px;}
.ye_c00399{bottom:707.610450px;}
.yd_c00399{bottom:748.920450px;}
.yc_c00399{bottom:779.970450px;}
.yb_c00399{bottom:811.020450px;}
.ya_c00399{bottom:851.070450px;}
.y9_c00399{bottom:882.120450px;}
.y8_c00399{bottom:913.170450px;}
.y7_c00399{bottom:953.220450px;}
.y6_c00399{bottom:983.370450px;}
.y5_c00399{bottom:1035.390450px;}
.y4_c00399{bottom:1066.440450px;}
.y3_c00399{bottom:1097.490450px;}
.h1_c00399{height:63.175781px;}
.h2_c00399{height:64.546875px;}
.h4_c00399{height:75.093750px;}
.h3_c00399{height:87.484219px;}
.h0_c00399{height:1263.000000px;}
.w1_c00399{width:892.500000px;}
.w0_c00399{width:892.830000px;}
.x0_c00399{left:0.000000px;}
.x2_c00399{left:127.620000px;}
.x3_c00399{left:154.620000px;}
.x4_c00399{left:181.620000px;}
.x5_c00399{left:208.620000px;}
.x1_c00399{left:695.880000px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls10_c00399{letter-spacing:-0.108800pt;}
.ls13_c00399{letter-spacing:-0.057600pt;}
.lsd_c00399{letter-spacing:-0.051200pt;}
.lsb_c00399{letter-spacing:-0.044800pt;}
.lse_c00399{letter-spacing:-0.038400pt;}
.lsa_c00399{letter-spacing:-0.032000pt;}
.lsf_c00399{letter-spacing:-0.025600pt;}
.ls8_c00399{letter-spacing:-0.019200pt;}
.ls9_c00399{letter-spacing:-0.012800pt;}
.lsc_c00399{letter-spacing:-0.006400pt;}
.ls7_c00399{letter-spacing:0.000000pt;}
.ls2_c00399{letter-spacing:0.006400pt;}
.ls4_c00399{letter-spacing:0.019200pt;}
.ls6_c00399{letter-spacing:0.025600pt;}
.ls5_c00399{letter-spacing:0.038400pt;}
.ls3_c00399{letter-spacing:0.044800pt;}
.ls11_c00399{letter-spacing:0.051200pt;}
.ls0_c00399{letter-spacing:0.059648pt;}
.ls12_c00399{letter-spacing:0.140800pt;}
.ls1_c00399{letter-spacing:48.768000pt;}
.ws4_c00399{word-spacing:-64.000000pt;}
.ws2_c00399{word-spacing:-17.836800pt;}
.ws3_c00399{word-spacing:-17.817600pt;}
.ws0_c00399{word-spacing:-17.779200pt;}
.ws1_c00399{word-spacing:-17.766400pt;}
.wse_c00399{word-spacing:-3.033600pt;}
.ws1f_c00399{word-spacing:-2.080000pt;}
.ws1a_c00399{word-spacing:-1.510400pt;}
.ws1b_c00399{word-spacing:-1.427200pt;}
.ws5_c00399{word-spacing:0.000000pt;}
.ws9_c00399{word-spacing:0.022368pt;}
.ws1e_c00399{word-spacing:0.102400pt;}
.ws1d_c00399{word-spacing:0.121600pt;}
.ws1c_c00399{word-spacing:0.147200pt;}
.ws18_c00399{word-spacing:0.153600pt;}
.ws27_c00399{word-spacing:0.160000pt;}
.ws11_c00399{word-spacing:0.166400pt;}
.wsc_c00399{word-spacing:0.179200pt;}
.ws8_c00399{word-spacing:0.185600pt;}
.wsd_c00399{word-spacing:0.243200pt;}
.ws28_c00399{word-spacing:0.256000pt;}
.ws7_c00399{word-spacing:3.692800pt;}
.ws12_c00399{word-spacing:4.012800pt;}
.ws22_c00399{word-spacing:4.454400pt;}
.ws20_c00399{word-spacing:4.620800pt;}
.ws21_c00399{word-spacing:4.652800pt;}
.ws16_c00399{word-spacing:6.252800pt;}
.ws17_c00399{word-spacing:6.265600pt;}
.ws19_c00399{word-spacing:6.854400pt;}
.wsa_c00399{word-spacing:7.507200pt;}
.ws13_c00399{word-spacing:7.840000pt;}
.ws14_c00399{word-spacing:7.852800pt;}
.wsf_c00399{word-spacing:13.024000pt;}
.ws10_c00399{word-spacing:13.049600pt;}
.ws15_c00399{word-spacing:23.846400pt;}
.ws23_c00399{word-spacing:27.955200pt;}
.ws24_c00399{word-spacing:27.980800pt;}
.ws26_c00399{word-spacing:28.019200pt;}
.ws25_c00399{word-spacing:28.038400pt;}
.ws6_c00399{word-spacing:30.560000pt;}
.wsb_c00399{word-spacing:34.112000pt;}
._5_c00399{margin-left:-27.584000pt;}
._4_c00399{margin-left:-1.228800pt;}
._1_c00399{width:1.280000pt;}
._3_c00399{width:6.092800pt;}
._2_c00399{width:23.750400pt;}
._6_c00399{width:27.776000pt;}
._0_c00399{width:136.295680pt;}
.fs0_c00399{font-size:64.000000pt;}
.fs1_c00399{font-size:74.560000pt;}
.y0_c00399{bottom:0.000000pt;}
.y2_c00399{bottom:41.627067pt;}
.y1_c00399{bottom:60.027067pt;}
.y20_c00399{bottom:130.107067pt;}
.y1f_c00399{bottom:157.707067pt;}
.y1e_c00399{bottom:185.307067pt;}
.y1d_c00399{bottom:212.907067pt;}
.y1c_c00399{bottom:240.507067pt;}
.y1b_c00399{bottom:268.107067pt;}
.y1a_c00399{bottom:295.707067pt;}
.y19_c00399{bottom:323.307067pt;}
.y18_c00399{bottom:350.907067pt;}
.y17_c00399{bottom:378.507067pt;}
.y16_c00399{bottom:406.027067pt;}
.y15_c00399{bottom:434.747067pt;}
.y14_c00399{bottom:462.347067pt;}
.y13_c00399{bottom:489.867067pt;}
.y12_c00399{bottom:518.587067pt;}
.y11_c00399{bottom:546.187067pt;}
.y10_c00399{bottom:573.787067pt;}
.yf_c00399{bottom:601.387067pt;}
.ye_c00399{bottom:628.987067pt;}
.yd_c00399{bottom:665.707067pt;}
.yc_c00399{bottom:693.307067pt;}
.yb_c00399{bottom:720.907067pt;}
.ya_c00399{bottom:756.507067pt;}
.y9_c00399{bottom:784.107067pt;}
.y8_c00399{bottom:811.707067pt;}
.y7_c00399{bottom:847.307067pt;}
.y6_c00399{bottom:874.107067pt;}
.y5_c00399{bottom:920.347067pt;}
.y4_c00399{bottom:947.947067pt;}
.y3_c00399{bottom:975.547067pt;}
.h1_c00399{height:56.156250pt;}
.h2_c00399{height:57.375000pt;}
.h4_c00399{height:66.750000pt;}
.h3_c00399{height:77.763750pt;}
.h0_c00399{height:1122.666667pt;}
.w1_c00399{width:793.333333pt;}
.w0_c00399{width:793.626667pt;}
.x0_c00399{left:0.000000pt;}
.x2_c00399{left:113.440000pt;}
.x3_c00399{left:137.440000pt;}
.x4_c00399{left:161.440000pt;}
.x5_c00399{left:185.440000pt;}
.x1_c00399{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f886e743a25eea541e653cc0.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.093262;font-style:normal;font-weight:normal;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_66464611b58521178a99bc3d.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:0.765625;font-style:normal;font-weight:normal;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_5d577b5fa8e33aeb4a6db72f.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.106934;font-style:normal;font-weight:normal;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_61d4cfbfa044bdddee7b47bc.woff2')format("woff");}.ff4_c00400{font-family:ff4_c00400;line-height:0.666504;font-style:normal;font-weight:normal;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_346e98985119904ad9da4fbe.woff2')format("woff");}.ff5_c00400{font-family:ff5_c00400;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00400;src:url('chunks/assets/font_d9f64d84e18da0b8261b9497.woff2')format("woff");}.ff6_c00400{font-family:ff6_c00400;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsf_c00400{letter-spacing:-0.108000px;}
.lsa_c00400{letter-spacing:-0.079200px;}
.lsc_c00400{letter-spacing:-0.064800px;}
.ls9_c00400{letter-spacing:-0.057600px;}
.ls6_c00400{letter-spacing:-0.050400px;}
.lse_c00400{letter-spacing:-0.043200px;}
.ls4_c00400{letter-spacing:-0.036000px;}
.ls7_c00400{letter-spacing:-0.028800px;}
.ls5_c00400{letter-spacing:-0.021600px;}
.lsd_c00400{letter-spacing:-0.014400px;}
.lsb_c00400{letter-spacing:-0.007200px;}
.ls3_c00400{letter-spacing:0.000000px;}
.ls0_c00400{letter-spacing:0.007200px;}
.ls8_c00400{letter-spacing:0.028800px;}
.ls10_c00400{letter-spacing:0.158400px;}
.ls2_c00400{letter-spacing:4.824000px;}
.ls1_c00400{letter-spacing:54.864000px;}
.sc__c00400{text-shadow:none;}
.sc0_c00400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00400{-webkit-text-stroke:0px transparent;}
.sc0_c00400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00400{word-spacing:-72.000000px;}
.ws1_c00400{word-spacing:-19.965600px;}
.ws2_c00400{word-spacing:-19.936800px;}
.ws3_c00400{word-spacing:0.000000px;}
.ws13_c00400{word-spacing:0.151200px;}
.ws10_c00400{word-spacing:0.208800px;}
.ws12_c00400{word-spacing:0.216000px;}
.ws14_c00400{word-spacing:0.540000px;}
.ws15_c00400{word-spacing:4.888800px;}
.ws8_c00400{word-spacing:31.449600px;}
.wsf_c00400{word-spacing:31.478400px;}
.wsb_c00400{word-spacing:31.485600px;}
.wsd_c00400{word-spacing:31.492800px;}
.ws5_c00400{word-spacing:31.500000px;}
.ws7_c00400{word-spacing:31.507200px;}
.ws4_c00400{word-spacing:31.514400px;}
.wse_c00400{word-spacing:31.521600px;}
.ws6_c00400{word-spacing:31.528800px;}
.ws9_c00400{word-spacing:31.536000px;}
.wsc_c00400{word-spacing:31.543200px;}
.wsa_c00400{word-spacing:31.557600px;}
.ws11_c00400{word-spacing:31.586400px;}
._0_c00400{margin-left:-31.104000px;}
._2_c00400{width:1.008000px;}
._1_c00400{width:31.248000px;}
.fc0_c00400{color:rgb(0,0,0);}
.fs0_c00400{font-size:72.000000px;}
.y0_c00400{bottom:0.000000px;}
.y2_c00400{bottom:46.830450px;}
.y1_c00400{bottom:67.530450px;}
.y20_c00400{bottom:195.870450px;}
.y1f_c00400{bottom:226.920450px;}
.y1e_c00400{bottom:257.970450px;}
.y1d_c00400{bottom:290.280450px;}
.y1c_c00400{bottom:321.330450px;}
.y1b_c00400{bottom:352.380450px;}
.y1a_c00400{bottom:383.430450px;}
.y19_c00400{bottom:414.390450px;}
.y18_c00400{bottom:445.440450px;}
.y17_c00400{bottom:476.490450px;}
.y16_c00400{bottom:507.540450px;}
.y15_c00400{bottom:538.590450px;}
.y14_c00400{bottom:569.640450px;}
.y13_c00400{bottom:600.690450px;}
.y12_c00400{bottom:631.740450px;}
.y11_c00400{bottom:662.790450px;}
.y10_c00400{bottom:693.840450px;}
.yf_c00400{bottom:724.890450px;}
.ye_c00400{bottom:755.940450px;}
.yd_c00400{bottom:786.990450px;}
.yc_c00400{bottom:818.040450px;}
.yb_c00400{bottom:849.090450px;}
.ya_c00400{bottom:880.140450px;}
.y9_c00400{bottom:911.190450px;}
.y8_c00400{bottom:942.240450px;}
.y7_c00400{bottom:973.290450px;}
.y6_c00400{bottom:1004.340450px;}
.y5_c00400{bottom:1035.390450px;}
.y4_c00400{bottom:1066.440450px;}
.y3_c00400{bottom:1097.490450px;}
.h1_c00400{height:63.175781px;}
.h2_c00400{height:64.546875px;}
.h3_c00400{height:75.093750px;}
.h0_c00400{height:1263.000000px;}
.w1_c00400{width:892.500000px;}
.w0_c00400{width:892.830000px;}
.x0_c00400{left:0.000000px;}
.x2_c00400{left:170.100000px;}
.x5_c00400{left:197.100000px;}
.x4_c00400{left:224.100000px;}
.x3_c00400{left:251.100000px;}
.x1_c00400{left:738.360000px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.lsf_c00400{letter-spacing:-0.096000pt;}
.lsa_c00400{letter-spacing:-0.070400pt;}
.lsc_c00400{letter-spacing:-0.057600pt;}
.ls9_c00400{letter-spacing:-0.051200pt;}
.ls6_c00400{letter-spacing:-0.044800pt;}
.lse_c00400{letter-spacing:-0.038400pt;}
.ls4_c00400{letter-spacing:-0.032000pt;}
.ls7_c00400{letter-spacing:-0.025600pt;}
.ls5_c00400{letter-spacing:-0.019200pt;}
.lsd_c00400{letter-spacing:-0.012800pt;}
.lsb_c00400{letter-spacing:-0.006400pt;}
.ls3_c00400{letter-spacing:0.000000pt;}
.ls0_c00400{letter-spacing:0.006400pt;}
.ls8_c00400{letter-spacing:0.025600pt;}
.ls10_c00400{letter-spacing:0.140800pt;}
.ls2_c00400{letter-spacing:4.288000pt;}
.ls1_c00400{letter-spacing:48.768000pt;}
.ws0_c00400{word-spacing:-64.000000pt;}
.ws1_c00400{word-spacing:-17.747200pt;}
.ws2_c00400{word-spacing:-17.721600pt;}
.ws3_c00400{word-spacing:0.000000pt;}
.ws13_c00400{word-spacing:0.134400pt;}
.ws10_c00400{word-spacing:0.185600pt;}
.ws12_c00400{word-spacing:0.192000pt;}
.ws14_c00400{word-spacing:0.480000pt;}
.ws15_c00400{word-spacing:4.345600pt;}
.ws8_c00400{word-spacing:27.955200pt;}
.wsf_c00400{word-spacing:27.980800pt;}
.wsb_c00400{word-spacing:27.987200pt;}
.wsd_c00400{word-spacing:27.993600pt;}
.ws5_c00400{word-spacing:28.000000pt;}
.ws7_c00400{word-spacing:28.006400pt;}
.ws4_c00400{word-spacing:28.012800pt;}
.wse_c00400{word-spacing:28.019200pt;}
.ws6_c00400{word-spacing:28.025600pt;}
.ws9_c00400{word-spacing:28.032000pt;}
.wsc_c00400{word-spacing:28.038400pt;}
.wsa_c00400{word-spacing:28.051200pt;}
.ws11_c00400{word-spacing:28.076800pt;}
._0_c00400{margin-left:-27.648000pt;}
._2_c00400{width:0.896000pt;}
._1_c00400{width:27.776000pt;}
.fs0_c00400{font-size:64.000000pt;}
.y0_c00400{bottom:0.000000pt;}
.y2_c00400{bottom:41.627067pt;}
.y1_c00400{bottom:60.027067pt;}
.y20_c00400{bottom:174.107067pt;}
.y1f_c00400{bottom:201.707067pt;}
.y1e_c00400{bottom:229.307067pt;}
.y1d_c00400{bottom:258.027067pt;}
.y1c_c00400{bottom:285.627067pt;}
.y1b_c00400{bottom:313.227067pt;}
.y1a_c00400{bottom:340.827067pt;}
.y19_c00400{bottom:368.347067pt;}
.y18_c00400{bottom:395.947067pt;}
.y17_c00400{bottom:423.547067pt;}
.y16_c00400{bottom:451.147067pt;}
.y15_c00400{bottom:478.747067pt;}
.y14_c00400{bottom:506.347067pt;}
.y13_c00400{bottom:533.947067pt;}
.y12_c00400{bottom:561.547067pt;}
.y11_c00400{bottom:589.147067pt;}
.y10_c00400{bottom:616.747067pt;}
.yf_c00400{bottom:644.347067pt;}
.ye_c00400{bottom:671.947067pt;}
.yd_c00400{bottom:699.547067pt;}
.yc_c00400{bottom:727.147067pt;}
.yb_c00400{bottom:754.747067pt;}
.ya_c00400{bottom:782.347067pt;}
.y9_c00400{bottom:809.947067pt;}
.y8_c00400{bottom:837.547067pt;}
.y7_c00400{bottom:865.147067pt;}
.y6_c00400{bottom:892.747067pt;}
.y5_c00400{bottom:920.347067pt;}
.y4_c00400{bottom:947.947067pt;}
.y3_c00400{bottom:975.547067pt;}
.h1_c00400{height:56.156250pt;}
.h2_c00400{height:57.375000pt;}
.h3_c00400{height:66.750000pt;}
.h0_c00400{height:1122.666667pt;}
.w1_c00400{width:793.333333pt;}
.w0_c00400{width:793.626667pt;}
.x0_c00400{left:0.000000pt;}
.x2_c00400{left:151.200000pt;}
.x5_c00400{left:175.200000pt;}
.x4_c00400{left:199.200000pt;}
.x3_c00400{left:223.200000pt;}
.x1_c00400{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3b48e1e2db813eb6b711d5d1.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.093262;font-style:normal;font-weight:normal;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_5b4fdb9822ec19a7e6b9249a.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00401;src:url('chunks/assets/font_0e01b3750fd9568d629168ef.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:1.106934;font-style:normal;font-weight:normal;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_74ceb11d661523503c422e2a.woff2')format("woff");}.ff4_c00401{font-family:ff4_c00401;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsa_c00401{letter-spacing:-0.050400px;}
.ls8_c00401{letter-spacing:-0.043200px;}
.ls7_c00401{letter-spacing:-0.036000px;}
.ls6_c00401{letter-spacing:-0.021600px;}
.ls5_c00401{letter-spacing:-0.014400px;}
.ls9_c00401{letter-spacing:-0.007200px;}
.ls4_c00401{letter-spacing:0.000000px;}
.ls1_c00401{letter-spacing:0.007200px;}
.ls2_c00401{letter-spacing:0.021600px;}
.ls3_c00401{letter-spacing:0.041940px;}
.ls0_c00401{letter-spacing:0.058716px;}
.sc__c00401{text-shadow:none;}
.sc0_c00401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00401{-webkit-text-stroke:0px transparent;}
.sc0_c00401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00401{word-spacing:-20.037600px;}
.ws1_c00401{word-spacing:0.000000px;}
.ws2_c00401{word-spacing:0.033552px;}
.ws10_c00401{word-spacing:0.050400px;}
.wsf_c00401{word-spacing:0.165600px;}
.wsd_c00401{word-spacing:0.180000px;}
.ws11_c00401{word-spacing:0.208800px;}
.wsa_c00401{word-spacing:0.900000px;}
.wsb_c00401{word-spacing:0.914400px;}
.ws6_c00401{word-spacing:3.427200px;}
.ws7_c00401{word-spacing:3.520800px;}
.ws8_c00401{word-spacing:6.660000px;}
.ws9_c00401{word-spacing:6.732000px;}
.wsc_c00401{word-spacing:16.005600px;}
.ws4_c00401{word-spacing:37.072800px;}
.ws3_c00401{word-spacing:37.231200px;}
.ws5_c00401{word-spacing:37.260000px;}
.wse_c00401{word-spacing:187.614396px;}
._2_c00401{margin-left:-187.555680px;}
._1_c00401{width:1.152000px;}
._0_c00401{width:153.332640px;}
.fc0_c00401{color:rgb(0,0,0);}
.fs0_c00401{font-size:72.000000px;}
.fs1_c00401{font-size:83.880000px;}
.y0_c00401{bottom:0.000000px;}
.y2_c00401{bottom:46.830450px;}
.y1_c00401{bottom:67.530450px;}
.y10_c00401{bottom:160.500450px;}
.yf_c00401{bottom:196.500450px;}
.ye_c00401{bottom:721.560450px;}
.yd_c00401{bottom:761.610450px;}
.yc_c00401{bottom:791.850450px;}
.yb_c00401{bottom:843.870450px;}
.ya_c00401{bottom:874.920450px;}
.y9_c00401{bottom:905.970450px;}
.y8_c00401{bottom:946.020450px;}
.y7_c00401{bottom:977.070450px;}
.y6_c00401{bottom:1008.120450px;}
.y5_c00401{bottom:1039.170450px;}
.y4_c00401{bottom:1068.960450px;}
.y3_c00401{bottom:1094.520450px;}
.h1_c00401{height:63.175781px;}
.h3_c00401{height:64.546875px;}
.h4_c00401{height:75.093750px;}
.h2_c00401{height:87.484219px;}
.h0_c00401{height:1263.000000px;}
.w1_c00401{width:892.500000px;}
.w0_c00401{width:892.830000px;}
.x0_c00401{left:0.000000px;}
.x2_c00401{left:127.620000px;}
.x3_c00401{left:154.620000px;}
.x4_c00401{left:181.620000px;}
.x1_c00401{left:695.880000px;}
.x5_c00401{left:717.120000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.lsa_c00401{letter-spacing:-0.044800pt;}
.ls8_c00401{letter-spacing:-0.038400pt;}
.ls7_c00401{letter-spacing:-0.032000pt;}
.ls6_c00401{letter-spacing:-0.019200pt;}
.ls5_c00401{letter-spacing:-0.012800pt;}
.ls9_c00401{letter-spacing:-0.006400pt;}
.ls4_c00401{letter-spacing:0.000000pt;}
.ls1_c00401{letter-spacing:0.006400pt;}
.ls2_c00401{letter-spacing:0.019200pt;}
.ls3_c00401{letter-spacing:0.037280pt;}
.ls0_c00401{letter-spacing:0.052192pt;}
.ws0_c00401{word-spacing:-17.811200pt;}
.ws1_c00401{word-spacing:0.000000pt;}
.ws2_c00401{word-spacing:0.029824pt;}
.ws10_c00401{word-spacing:0.044800pt;}
.wsf_c00401{word-spacing:0.147200pt;}
.wsd_c00401{word-spacing:0.160000pt;}
.ws11_c00401{word-spacing:0.185600pt;}
.wsa_c00401{word-spacing:0.800000pt;}
.wsb_c00401{word-spacing:0.812800pt;}
.ws6_c00401{word-spacing:3.046400pt;}
.ws7_c00401{word-spacing:3.129600pt;}
.ws8_c00401{word-spacing:5.920000pt;}
.ws9_c00401{word-spacing:5.984000pt;}
.wsc_c00401{word-spacing:14.227200pt;}
.ws4_c00401{word-spacing:32.953600pt;}
.ws3_c00401{word-spacing:33.094400pt;}
.ws5_c00401{word-spacing:33.120000pt;}
.wse_c00401{word-spacing:166.768352pt;}
._2_c00401{margin-left:-166.716160pt;}
._1_c00401{width:1.024000pt;}
._0_c00401{width:136.295680pt;}
.fs0_c00401{font-size:64.000000pt;}
.fs1_c00401{font-size:74.560000pt;}
.y0_c00401{bottom:0.000000pt;}
.y2_c00401{bottom:41.627067pt;}
.y1_c00401{bottom:60.027067pt;}
.y10_c00401{bottom:142.667067pt;}
.yf_c00401{bottom:174.667067pt;}
.ye_c00401{bottom:641.387067pt;}
.yd_c00401{bottom:676.987067pt;}
.yc_c00401{bottom:703.867067pt;}
.yb_c00401{bottom:750.107067pt;}
.ya_c00401{bottom:777.707067pt;}
.y9_c00401{bottom:805.307067pt;}
.y8_c00401{bottom:840.907067pt;}
.y7_c00401{bottom:868.507067pt;}
.y6_c00401{bottom:896.107067pt;}
.y5_c00401{bottom:923.707067pt;}
.y4_c00401{bottom:950.187067pt;}
.y3_c00401{bottom:972.907067pt;}
.h1_c00401{height:56.156250pt;}
.h3_c00401{height:57.375000pt;}
.h4_c00401{height:66.750000pt;}
.h2_c00401{height:77.763750pt;}
.h0_c00401{height:1122.666667pt;}
.w1_c00401{width:793.333333pt;}
.w0_c00401{width:793.626667pt;}
.x0_c00401{left:0.000000pt;}
.x2_c00401{left:113.440000pt;}
.x3_c00401{left:137.440000pt;}
.x4_c00401{left:161.440000pt;}
.x1_c00401{left:618.560000pt;}
.x5_c00401{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_80e5097c2c65181ddfc62ff3.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.093262;font-style:normal;font-weight:normal;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_dba47cdd9a9162d5695d88cf.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:1.106934;font-style:normal;font-weight:normal;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_f5652b963de812889bf01480.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsa_c00402{letter-spacing:-0.100800px;}
.lse_c00402{letter-spacing:-0.093600px;}
.lsd_c00402{letter-spacing:-0.086400px;}
.ls9_c00402{letter-spacing:-0.072000px;}
.lsc_c00402{letter-spacing:-0.064800px;}
.lsb_c00402{letter-spacing:-0.057600px;}
.ls5_c00402{letter-spacing:-0.050400px;}
.ls3_c00402{letter-spacing:-0.043200px;}
.ls2_c00402{letter-spacing:-0.036000px;}
.ls8_c00402{letter-spacing:-0.028800px;}
.ls6_c00402{letter-spacing:-0.021600px;}
.ls7_c00402{letter-spacing:-0.014400px;}
.ls4_c00402{letter-spacing:-0.007200px;}
.ls1_c00402{letter-spacing:0.000000px;}
.ls0_c00402{letter-spacing:0.014400px;}
.lsf_c00402{letter-spacing:0.050400px;}
.sc__c00402{text-shadow:none;}
.sc0_c00402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00402{-webkit-text-stroke:0px transparent;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00402{word-spacing:-19.944000px;}
.ws9_c00402{word-spacing:-3.477600px;}
.ws7_c00402{word-spacing:-3.427200px;}
.ws8_c00402{word-spacing:-3.420000px;}
.ws2b_c00402{word-spacing:-2.426400px;}
.ws2c_c00402{word-spacing:-2.376000px;}
.wsa_c00402{word-spacing:-1.612800px;}
.wsb_c00402{word-spacing:-1.454400px;}
.ws27_c00402{word-spacing:-0.144000px;}
.ws28_c00402{word-spacing:-0.108000px;}
.ws1_c00402{word-spacing:0.000000px;}
.ws10_c00402{word-spacing:0.172800px;}
.ws17_c00402{word-spacing:0.180000px;}
.ws2d_c00402{word-spacing:0.194400px;}
.ws1f_c00402{word-spacing:1.922400px;}
.wse_c00402{word-spacing:1.958400px;}
.ws20_c00402{word-spacing:1.994400px;}
.wsf_c00402{word-spacing:2.001600px;}
.ws30_c00402{word-spacing:2.347200px;}
.ws31_c00402{word-spacing:2.361600px;}
.ws1d_c00402{word-spacing:2.714400px;}
.ws1c_c00402{word-spacing:2.793600px;}
.ws2_c00402{word-spacing:3.369600px;}
.ws3_c00402{word-spacing:3.441600px;}
.ws2a_c00402{word-spacing:4.132800px;}
.ws29_c00402{word-spacing:4.154400px;}
.ws22_c00402{word-spacing:4.161600px;}
.ws1b_c00402{word-spacing:5.947200px;}
.ws6_c00402{word-spacing:6.660000px;}
.ws23_c00402{word-spacing:7.041600px;}
.ws24_c00402{word-spacing:7.048800px;}
.ws26_c00402{word-spacing:8.496000px;}
.ws25_c00402{word-spacing:8.539200px;}
.ws2e_c00402{word-spacing:10.540800px;}
.ws2f_c00402{word-spacing:10.656000px;}
.ws1a_c00402{word-spacing:13.521600px;}
.ws18_c00402{word-spacing:13.536000px;}
.ws19_c00402{word-spacing:13.543200px;}
.ws14_c00402{word-spacing:14.954400px;}
.ws21_c00402{word-spacing:15.300000px;}
.ws1e_c00402{word-spacing:17.474400px;}
.ws4_c00402{word-spacing:26.805600px;}
.ws16_c00402{word-spacing:26.827200px;}
.ws15_c00402{word-spacing:26.841600px;}
.ws5_c00402{word-spacing:26.920800px;}
.ws12_c00402{word-spacing:31.147200px;}
.ws11_c00402{word-spacing:31.154400px;}
.ws13_c00402{word-spacing:31.219200px;}
.wsd_c00402{word-spacing:45.194400px;}
.wsc_c00402{word-spacing:45.208800px;}
._0_c00402{width:1.008000px;}
.fc0_c00402{color:rgb(0,0,0);}
.fs0_c00402{font-size:72.000000px;}
.y0_c00402{bottom:0.000000px;}
.y2_c00402{bottom:46.830450px;}
.y1_c00402{bottom:67.530450px;}
.y1f_c00402{bottom:183.180450px;}
.y1e_c00402{bottom:214.230450px;}
.y1d_c00402{bottom:254.280450px;}
.y1c_c00402{bottom:285.330450px;}
.y1b_c00402{bottom:316.380450px;}
.y1a_c00402{bottom:347.430450px;}
.y19_c00402{bottom:378.390450px;}
.y18_c00402{bottom:409.440450px;}
.y17_c00402{bottom:440.490450px;}
.y16_c00402{bottom:471.540450px;}
.y15_c00402{bottom:511.590450px;}
.y14_c00402{bottom:542.640450px;}
.y13_c00402{bottom:573.690450px;}
.y12_c00402{bottom:604.740450px;}
.y11_c00402{bottom:635.790450px;}
.y10_c00402{bottom:666.840450px;}
.yf_c00402{bottom:706.890450px;}
.ye_c00402{bottom:737.940450px;}
.yd_c00402{bottom:777.990450px;}
.yc_c00402{bottom:809.040450px;}
.yb_c00402{bottom:840.090450px;}
.ya_c00402{bottom:880.140450px;}
.y9_c00402{bottom:911.190450px;}
.y8_c00402{bottom:942.240450px;}
.y7_c00402{bottom:973.290450px;}
.y6_c00402{bottom:1004.340450px;}
.y5_c00402{bottom:1035.390450px;}
.y4_c00402{bottom:1066.440450px;}
.y3_c00402{bottom:1097.490450px;}
.h1_c00402{height:63.175781px;}
.h2_c00402{height:64.546875px;}
.h3_c00402{height:75.093750px;}
.h0_c00402{height:1263.000000px;}
.w1_c00402{width:892.500000px;}
.w0_c00402{width:892.830000px;}
.x0_c00402{left:0.000000px;}
.x2_c00402{left:170.100000px;}
.x1_c00402{left:738.360000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.lsa_c00402{letter-spacing:-0.089600pt;}
.lse_c00402{letter-spacing:-0.083200pt;}
.lsd_c00402{letter-spacing:-0.076800pt;}
.ls9_c00402{letter-spacing:-0.064000pt;}
.lsc_c00402{letter-spacing:-0.057600pt;}
.lsb_c00402{letter-spacing:-0.051200pt;}
.ls5_c00402{letter-spacing:-0.044800pt;}
.ls3_c00402{letter-spacing:-0.038400pt;}
.ls2_c00402{letter-spacing:-0.032000pt;}
.ls8_c00402{letter-spacing:-0.025600pt;}
.ls6_c00402{letter-spacing:-0.019200pt;}
.ls7_c00402{letter-spacing:-0.012800pt;}
.ls4_c00402{letter-spacing:-0.006400pt;}
.ls1_c00402{letter-spacing:0.000000pt;}
.ls0_c00402{letter-spacing:0.012800pt;}
.lsf_c00402{letter-spacing:0.044800pt;}
.ws0_c00402{word-spacing:-17.728000pt;}
.ws9_c00402{word-spacing:-3.091200pt;}
.ws7_c00402{word-spacing:-3.046400pt;}
.ws8_c00402{word-spacing:-3.040000pt;}
.ws2b_c00402{word-spacing:-2.156800pt;}
.ws2c_c00402{word-spacing:-2.112000pt;}
.wsa_c00402{word-spacing:-1.433600pt;}
.wsb_c00402{word-spacing:-1.292800pt;}
.ws27_c00402{word-spacing:-0.128000pt;}
.ws28_c00402{word-spacing:-0.096000pt;}
.ws1_c00402{word-spacing:0.000000pt;}
.ws10_c00402{word-spacing:0.153600pt;}
.ws17_c00402{word-spacing:0.160000pt;}
.ws2d_c00402{word-spacing:0.172800pt;}
.ws1f_c00402{word-spacing:1.708800pt;}
.wse_c00402{word-spacing:1.740800pt;}
.ws20_c00402{word-spacing:1.772800pt;}
.wsf_c00402{word-spacing:1.779200pt;}
.ws30_c00402{word-spacing:2.086400pt;}
.ws31_c00402{word-spacing:2.099200pt;}
.ws1d_c00402{word-spacing:2.412800pt;}
.ws1c_c00402{word-spacing:2.483200pt;}
.ws2_c00402{word-spacing:2.995200pt;}
.ws3_c00402{word-spacing:3.059200pt;}
.ws2a_c00402{word-spacing:3.673600pt;}
.ws29_c00402{word-spacing:3.692800pt;}
.ws22_c00402{word-spacing:3.699200pt;}
.ws1b_c00402{word-spacing:5.286400pt;}
.ws6_c00402{word-spacing:5.920000pt;}
.ws23_c00402{word-spacing:6.259200pt;}
.ws24_c00402{word-spacing:6.265600pt;}
.ws26_c00402{word-spacing:7.552000pt;}
.ws25_c00402{word-spacing:7.590400pt;}
.ws2e_c00402{word-spacing:9.369600pt;}
.ws2f_c00402{word-spacing:9.472000pt;}
.ws1a_c00402{word-spacing:12.019200pt;}
.ws18_c00402{word-spacing:12.032000pt;}
.ws19_c00402{word-spacing:12.038400pt;}
.ws14_c00402{word-spacing:13.292800pt;}
.ws21_c00402{word-spacing:13.600000pt;}
.ws1e_c00402{word-spacing:15.532800pt;}
.ws4_c00402{word-spacing:23.827200pt;}
.ws16_c00402{word-spacing:23.846400pt;}
.ws15_c00402{word-spacing:23.859200pt;}
.ws5_c00402{word-spacing:23.929600pt;}
.ws12_c00402{word-spacing:27.686400pt;}
.ws11_c00402{word-spacing:27.692800pt;}
.ws13_c00402{word-spacing:27.750400pt;}
.wsd_c00402{word-spacing:40.172800pt;}
.wsc_c00402{word-spacing:40.185600pt;}
._0_c00402{width:0.896000pt;}
.fs0_c00402{font-size:64.000000pt;}
.y0_c00402{bottom:0.000000pt;}
.y2_c00402{bottom:41.627067pt;}
.y1_c00402{bottom:60.027067pt;}
.y1f_c00402{bottom:162.827067pt;}
.y1e_c00402{bottom:190.427067pt;}
.y1d_c00402{bottom:226.027067pt;}
.y1c_c00402{bottom:253.627067pt;}
.y1b_c00402{bottom:281.227067pt;}
.y1a_c00402{bottom:308.827067pt;}
.y19_c00402{bottom:336.347067pt;}
.y18_c00402{bottom:363.947067pt;}
.y17_c00402{bottom:391.547067pt;}
.y16_c00402{bottom:419.147067pt;}
.y15_c00402{bottom:454.747067pt;}
.y14_c00402{bottom:482.347067pt;}
.y13_c00402{bottom:509.947067pt;}
.y12_c00402{bottom:537.547067pt;}
.y11_c00402{bottom:565.147067pt;}
.y10_c00402{bottom:592.747067pt;}
.yf_c00402{bottom:628.347067pt;}
.ye_c00402{bottom:655.947067pt;}
.yd_c00402{bottom:691.547067pt;}
.yc_c00402{bottom:719.147067pt;}
.yb_c00402{bottom:746.747067pt;}
.ya_c00402{bottom:782.347067pt;}
.y9_c00402{bottom:809.947067pt;}
.y8_c00402{bottom:837.547067pt;}
.y7_c00402{bottom:865.147067pt;}
.y6_c00402{bottom:892.747067pt;}
.y5_c00402{bottom:920.347067pt;}
.y4_c00402{bottom:947.947067pt;}
.y3_c00402{bottom:975.547067pt;}
.h1_c00402{height:56.156250pt;}
.h2_c00402{height:57.375000pt;}
.h3_c00402{height:66.750000pt;}
.h0_c00402{height:1122.666667pt;}
.w1_c00402{width:793.333333pt;}
.w0_c00402{width:793.626667pt;}
.x0_c00402{left:0.000000pt;}
.x2_c00402{left:151.200000pt;}
.x1_c00402{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_432b5673e411595ae2859e39.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.093262;font-style:normal;font-weight:normal;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_0e3451ac04880e8a7dc0fd9a.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00403{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.ls1_c00403{letter-spacing:-0.021600px;}
.ls2_c00403{letter-spacing:-0.014400px;}
.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;}
}
.ws0_c00403{word-spacing:0.000000px;}
.ws3_c00403{word-spacing:0.100800px;}
.ws2_c00403{word-spacing:0.180000px;}
.ws1_c00403{word-spacing:9.590400px;}
.fc0_c00403{color:rgb(0,0,0);}
.fs0_c00403{font-size:72.000000px;}
.y0_c00403{bottom:0.000000px;}
.y2_c00403{bottom:46.830450px;}
.y1_c00403{bottom:67.530450px;}
.y8_c00403{bottom:188.220450px;}
.y7_c00403{bottom:228.270450px;}
.y6_c00403{bottom:986.340450px;}
.y5_c00403{bottom:1026.390450px;}
.y4_c00403{bottom:1066.440450px;}
.y3_c00403{bottom:1097.490450px;}
.h1_c00403{height:63.175781px;}
.h2_c00403{height:64.546875px;}
.h0_c00403{height:1263.000000px;}
.w1_c00403{width:892.500000px;}
.w0_c00403{width:892.830000px;}
.x0_c00403{left:0.000000px;}
.x2_c00403{left:127.620000px;}
.x1_c00403{left:695.880000px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls1_c00403{letter-spacing:-0.019200pt;}
.ls2_c00403{letter-spacing:-0.012800pt;}
.ls0_c00403{letter-spacing:0.000000pt;}
.ws0_c00403{word-spacing:0.000000pt;}
.ws3_c00403{word-spacing:0.089600pt;}
.ws2_c00403{word-spacing:0.160000pt;}
.ws1_c00403{word-spacing:8.524800pt;}
.fs0_c00403{font-size:64.000000pt;}
.y0_c00403{bottom:0.000000pt;}
.y2_c00403{bottom:41.627067pt;}
.y1_c00403{bottom:60.027067pt;}
.y8_c00403{bottom:167.307067pt;}
.y7_c00403{bottom:202.907067pt;}
.y6_c00403{bottom:876.747067pt;}
.y5_c00403{bottom:912.347067pt;}
.y4_c00403{bottom:947.947067pt;}
.y3_c00403{bottom:975.547067pt;}
.h1_c00403{height:56.156250pt;}
.h2_c00403{height:57.375000pt;}
.h0_c00403{height:1122.666667pt;}
.w1_c00403{width:793.333333pt;}
.w0_c00403{width:793.626667pt;}
.x0_c00403{left:0.000000pt;}
.x2_c00403{left:113.440000pt;}
.x1_c00403{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8ee07646be55889903b88bb1.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.093262;font-style:normal;font-weight:normal;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_925a4b84ff3eae547304abc5.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:1.106934;font-style:normal;font-weight:normal;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_203de2767dd0e4eed2e64386.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00404{letter-spacing:-0.072000px;}
.ls8_c00404{letter-spacing:-0.057600px;}
.ls1_c00404{letter-spacing:-0.043200px;}
.ls4_c00404{letter-spacing:-0.036000px;}
.ls3_c00404{letter-spacing:-0.028800px;}
.ls6_c00404{letter-spacing:-0.021600px;}
.ls2_c00404{letter-spacing:-0.014400px;}
.ls7_c00404{letter-spacing:-0.007200px;}
.ls0_c00404{letter-spacing:0.000000px;}
.ls9_c00404{letter-spacing:843.998400px;}
.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;}
}
.ws14_c00404{word-spacing:-3.398400px;}
.ws10_c00404{word-spacing:-1.260000px;}
.ws11_c00404{word-spacing:-0.900000px;}
.ws0_c00404{word-spacing:0.000000px;}
.wsa_c00404{word-spacing:0.072000px;}
.ws9_c00404{word-spacing:0.180000px;}
.ws13_c00404{word-spacing:0.187200px;}
.ws15_c00404{word-spacing:0.201600px;}
.ws6_c00404{word-spacing:0.532800px;}
.ws5_c00404{word-spacing:0.554400px;}
.ws4_c00404{word-spacing:0.835200px;}
.ws3_c00404{word-spacing:0.921600px;}
.wse_c00404{word-spacing:1.476000px;}
.wsd_c00404{word-spacing:1.540800px;}
.wsf_c00404{word-spacing:1.612800px;}
.ws12_c00404{word-spacing:4.154400px;}
.ws7_c00404{word-spacing:5.918400px;}
.ws8_c00404{word-spacing:5.954400px;}
.ws1_c00404{word-spacing:6.681600px;}
.ws2_c00404{word-spacing:6.796800px;}
.wsb_c00404{word-spacing:7.387200px;}
.wsc_c00404{word-spacing:7.394400px;}
._0_c00404{width:1.051200px;}
.fc0_c00404{color:rgb(0,0,0);}
.fs0_c00404{font-size:72.000000px;}
.y0_c00404{bottom:0.000000px;}
.y2_c00404{bottom:46.830450px;}
.y1_c00404{bottom:67.530450px;}
.yf_c00404{bottom:706.890450px;}
.ye_c00404{bottom:746.940450px;}
.yd_c00404{bottom:777.990450px;}
.yc_c00404{bottom:809.040450px;}
.yb_c00404{bottom:840.090450px;}
.ya_c00404{bottom:871.140450px;}
.y9_c00404{bottom:902.190450px;}
.y8_c00404{bottom:933.240450px;}
.y7_c00404{bottom:973.290450px;}
.y6_c00404{bottom:1004.340450px;}
.y5_c00404{bottom:1035.390450px;}
.y4_c00404{bottom:1066.440450px;}
.y3_c00404{bottom:1097.490450px;}
.h1_c00404{height:63.175781px;}
.h2_c00404{height:64.546875px;}
.h3_c00404{height:75.093750px;}
.h0_c00404{height:1263.000000px;}
.w1_c00404{width:892.500000px;}
.w0_c00404{width:892.830000px;}
.x0_c00404{left:0.000000px;}
.x2_c00404{left:170.100000px;}
.x1_c00404{left:738.360000px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls5_c00404{letter-spacing:-0.064000pt;}
.ls8_c00404{letter-spacing:-0.051200pt;}
.ls1_c00404{letter-spacing:-0.038400pt;}
.ls4_c00404{letter-spacing:-0.032000pt;}
.ls3_c00404{letter-spacing:-0.025600pt;}
.ls6_c00404{letter-spacing:-0.019200pt;}
.ls2_c00404{letter-spacing:-0.012800pt;}
.ls7_c00404{letter-spacing:-0.006400pt;}
.ls0_c00404{letter-spacing:0.000000pt;}
.ls9_c00404{letter-spacing:750.220800pt;}
.ws14_c00404{word-spacing:-3.020800pt;}
.ws10_c00404{word-spacing:-1.120000pt;}
.ws11_c00404{word-spacing:-0.800000pt;}
.ws0_c00404{word-spacing:0.000000pt;}
.wsa_c00404{word-spacing:0.064000pt;}
.ws9_c00404{word-spacing:0.160000pt;}
.ws13_c00404{word-spacing:0.166400pt;}
.ws15_c00404{word-spacing:0.179200pt;}
.ws6_c00404{word-spacing:0.473600pt;}
.ws5_c00404{word-spacing:0.492800pt;}
.ws4_c00404{word-spacing:0.742400pt;}
.ws3_c00404{word-spacing:0.819200pt;}
.wse_c00404{word-spacing:1.312000pt;}
.wsd_c00404{word-spacing:1.369600pt;}
.wsf_c00404{word-spacing:1.433600pt;}
.ws12_c00404{word-spacing:3.692800pt;}
.ws7_c00404{word-spacing:5.260800pt;}
.ws8_c00404{word-spacing:5.292800pt;}
.ws1_c00404{word-spacing:5.939200pt;}
.ws2_c00404{word-spacing:6.041600pt;}
.wsb_c00404{word-spacing:6.566400pt;}
.wsc_c00404{word-spacing:6.572800pt;}
._0_c00404{width:0.934400pt;}
.fs0_c00404{font-size:64.000000pt;}
.y0_c00404{bottom:0.000000pt;}
.y2_c00404{bottom:41.627067pt;}
.y1_c00404{bottom:60.027067pt;}
.yf_c00404{bottom:628.347067pt;}
.ye_c00404{bottom:663.947067pt;}
.yd_c00404{bottom:691.547067pt;}
.yc_c00404{bottom:719.147067pt;}
.yb_c00404{bottom:746.747067pt;}
.ya_c00404{bottom:774.347067pt;}
.y9_c00404{bottom:801.947067pt;}
.y8_c00404{bottom:829.547067pt;}
.y7_c00404{bottom:865.147067pt;}
.y6_c00404{bottom:892.747067pt;}
.y5_c00404{bottom:920.347067pt;}
.y4_c00404{bottom:947.947067pt;}
.y3_c00404{bottom:975.547067pt;}
.h1_c00404{height:56.156250pt;}
.h2_c00404{height:57.375000pt;}
.h3_c00404{height:66.750000pt;}
.h0_c00404{height:1122.666667pt;}
.w1_c00404{width:793.333333pt;}
.w0_c00404{width:793.626667pt;}
.x0_c00404{left:0.000000pt;}
.x2_c00404{left:151.200000pt;}
.x1_c00404{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_97d6d7c0384c386bb3b96ebd.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.093262;font-style:normal;font-weight:normal;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_e02215d33cab860a72f41b9b.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.106934;font-style:normal;font-weight:normal;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_0ee69bc0c9571a399f7f6a13.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00405;src:url('chunks/assets/font_b2925a0aee46b929732b750e.woff2')format("woff");}.ff4_c00405{font-family:ff4_c00405;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc_c00405{letter-spacing:-0.064800px;}
.ls4_c00405{letter-spacing:-0.057600px;}
.ls7_c00405{letter-spacing:-0.050400px;}
.ls5_c00405{letter-spacing:-0.043200px;}
.ls8_c00405{letter-spacing:-0.036000px;}
.lsd_c00405{letter-spacing:-0.028800px;}
.ls6_c00405{letter-spacing:-0.021600px;}
.lsa_c00405{letter-spacing:-0.014400px;}
.ls9_c00405{letter-spacing:-0.007200px;}
.ls3_c00405{letter-spacing:0.000000px;}
.lse_c00405{letter-spacing:0.007200px;}
.ls2_c00405{letter-spacing:0.021600px;}
.lsb_c00405{letter-spacing:0.036000px;}
.ls0_c00405{letter-spacing:0.050328px;}
.ls1_c00405{letter-spacing:0.058716px;}
.lsf_c00405{letter-spacing:0.151200px;}
.ls10_c00405{letter-spacing:0.158400px;}
.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;}
}
.ws10_c00405{word-spacing:-1.980000px;}
.ws6_c00405{word-spacing:-1.677600px;}
.ws5_c00405{word-spacing:-1.591200px;}
.ws1a_c00405{word-spacing:-0.028800px;}
.ws0_c00405{word-spacing:0.000000px;}
.ws20_c00405{word-spacing:0.172800px;}
.ws1d_c00405{word-spacing:0.180000px;}
.wse_c00405{word-spacing:0.187200px;}
.ws1b_c00405{word-spacing:0.201600px;}
.ws21_c00405{word-spacing:0.367200px;}
.ws7_c00405{word-spacing:0.914400px;}
.ws8_c00405{word-spacing:0.936000px;}
.ws4_c00405{word-spacing:1.260000px;}
.ws3_c00405{word-spacing:2.001600px;}
.ws2_c00405{word-spacing:2.088000px;}
.ws17_c00405{word-spacing:5.551200px;}
.ws16_c00405{word-spacing:5.587200px;}
.ws25_c00405{word-spacing:6.652800px;}
.ws26_c00405{word-spacing:6.667200px;}
.ws24_c00405{word-spacing:6.674400px;}
.ws27_c00405{word-spacing:6.739200px;}
.wsd_c00405{word-spacing:7.012800px;}
.wsf_c00405{word-spacing:9.755244px;}
.ws23_c00405{word-spacing:12.952800px;}
.ws22_c00405{word-spacing:12.981600px;}
.wsa_c00405{word-spacing:16.725600px;}
.ws9_c00405{word-spacing:16.826400px;}
.ws12_c00405{word-spacing:19.216800px;}
.ws14_c00405{word-spacing:19.281600px;}
.ws11_c00405{word-spacing:19.303200px;}
.ws15_c00405{word-spacing:19.317600px;}
.ws13_c00405{word-spacing:19.339200px;}
.ws1e_c00405{word-spacing:21.780000px;}
.ws1f_c00405{word-spacing:21.902400px;}
.ws18_c00405{word-spacing:22.147200px;}
.ws19_c00405{word-spacing:22.154400px;}
.wsb_c00405{word-spacing:31.125600px;}
.wsc_c00405{word-spacing:31.204800px;}
.ws1c_c00405{word-spacing:36.180000px;}
.ws1_c00405{word-spacing:187.606008px;}
._0_c00405{margin-left:-187.555680px;}
._3_c00405{margin-left:-36.000000px;}
._1_c00405{margin-left:-9.730080px;}
._2_c00405{width:1.008000px;}
.fc0_c00405{color:rgb(0,0,0);}
.fs0_c00405{font-size:72.000000px;}
.fs1_c00405{font-size:83.880000px;}
.y0_c00405{bottom:0.000000px;}
.y2_c00405{bottom:46.830450px;}
.y1_c00405{bottom:67.530450px;}
.y1e_c00405{bottom:165.000450px;}
.y1d_c00405{bottom:195.960450px;}
.y1c_c00405{bottom:227.010450px;}
.y1b_c00405{bottom:258.150450px;}
.y1a_c00405{bottom:298.200450px;}
.y19_c00405{bottom:329.250450px;}
.y18_c00405{bottom:369.300450px;}
.y17_c00405{bottom:400.350450px;}
.y16_c00405{bottom:440.400450px;}
.y15_c00405{bottom:471.450450px;}
.y14_c00405{bottom:502.500450px;}
.y13_c00405{bottom:533.550450px;}
.y12_c00405{bottom:564.600450px;}
.y11_c00405{bottom:595.650450px;}
.y10_c00405{bottom:635.700450px;}
.yf_c00405{bottom:665.850450px;}
.ye_c00405{bottom:717.960450px;}
.yd_c00405{bottom:757.920450px;}
.yc_c00405{bottom:788.970450px;}
.yb_c00405{bottom:819.930450px;}
.ya_c00405{bottom:850.980450px;}
.y9_c00405{bottom:882.120450px;}
.y8_c00405{bottom:913.170450px;}
.y7_c00405{bottom:944.220450px;}
.y6_c00405{bottom:975.270450px;}
.y5_c00405{bottom:1015.320450px;}
.y4_c00405{bottom:1045.470450px;}
.y3_c00405{bottom:1097.490450px;}
.h1_c00405{height:63.175781px;}
.h2_c00405{height:64.546875px;}
.h4_c00405{height:75.093750px;}
.h3_c00405{height:87.484219px;}
.h0_c00405{height:1263.000000px;}
.w1_c00405{width:892.500000px;}
.w0_c00405{width:892.830000px;}
.x0_c00405{left:0.000000px;}
.x2_c00405{left:127.620000px;}
.x3_c00405{left:181.620000px;}
.x4_c00405{left:208.620000px;}
.x1_c00405{left:695.880000px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.lsc_c00405{letter-spacing:-0.057600pt;}
.ls4_c00405{letter-spacing:-0.051200pt;}
.ls7_c00405{letter-spacing:-0.044800pt;}
.ls5_c00405{letter-spacing:-0.038400pt;}
.ls8_c00405{letter-spacing:-0.032000pt;}
.lsd_c00405{letter-spacing:-0.025600pt;}
.ls6_c00405{letter-spacing:-0.019200pt;}
.lsa_c00405{letter-spacing:-0.012800pt;}
.ls9_c00405{letter-spacing:-0.006400pt;}
.ls3_c00405{letter-spacing:0.000000pt;}
.lse_c00405{letter-spacing:0.006400pt;}
.ls2_c00405{letter-spacing:0.019200pt;}
.lsb_c00405{letter-spacing:0.032000pt;}
.ls0_c00405{letter-spacing:0.044736pt;}
.ls1_c00405{letter-spacing:0.052192pt;}
.lsf_c00405{letter-spacing:0.134400pt;}
.ls10_c00405{letter-spacing:0.140800pt;}
.ws10_c00405{word-spacing:-1.760000pt;}
.ws6_c00405{word-spacing:-1.491200pt;}
.ws5_c00405{word-spacing:-1.414400pt;}
.ws1a_c00405{word-spacing:-0.025600pt;}
.ws0_c00405{word-spacing:0.000000pt;}
.ws20_c00405{word-spacing:0.153600pt;}
.ws1d_c00405{word-spacing:0.160000pt;}
.wse_c00405{word-spacing:0.166400pt;}
.ws1b_c00405{word-spacing:0.179200pt;}
.ws21_c00405{word-spacing:0.326400pt;}
.ws7_c00405{word-spacing:0.812800pt;}
.ws8_c00405{word-spacing:0.832000pt;}
.ws4_c00405{word-spacing:1.120000pt;}
.ws3_c00405{word-spacing:1.779200pt;}
.ws2_c00405{word-spacing:1.856000pt;}
.ws17_c00405{word-spacing:4.934400pt;}
.ws16_c00405{word-spacing:4.966400pt;}
.ws25_c00405{word-spacing:5.913600pt;}
.ws26_c00405{word-spacing:5.926400pt;}
.ws24_c00405{word-spacing:5.932800pt;}
.ws27_c00405{word-spacing:5.990400pt;}
.wsd_c00405{word-spacing:6.233600pt;}
.wsf_c00405{word-spacing:8.671328pt;}
.ws23_c00405{word-spacing:11.513600pt;}
.ws22_c00405{word-spacing:11.539200pt;}
.wsa_c00405{word-spacing:14.867200pt;}
.ws9_c00405{word-spacing:14.956800pt;}
.ws12_c00405{word-spacing:17.081600pt;}
.ws14_c00405{word-spacing:17.139200pt;}
.ws11_c00405{word-spacing:17.158400pt;}
.ws15_c00405{word-spacing:17.171200pt;}
.ws13_c00405{word-spacing:17.190400pt;}
.ws1e_c00405{word-spacing:19.360000pt;}
.ws1f_c00405{word-spacing:19.468800pt;}
.ws18_c00405{word-spacing:19.686400pt;}
.ws19_c00405{word-spacing:19.692800pt;}
.wsb_c00405{word-spacing:27.667200pt;}
.wsc_c00405{word-spacing:27.737600pt;}
.ws1c_c00405{word-spacing:32.160000pt;}
.ws1_c00405{word-spacing:166.760896pt;}
._0_c00405{margin-left:-166.716160pt;}
._3_c00405{margin-left:-32.000000pt;}
._1_c00405{margin-left:-8.648960pt;}
._2_c00405{width:0.896000pt;}
.fs0_c00405{font-size:64.000000pt;}
.fs1_c00405{font-size:74.560000pt;}
.y0_c00405{bottom:0.000000pt;}
.y2_c00405{bottom:41.627067pt;}
.y1_c00405{bottom:60.027067pt;}
.y1e_c00405{bottom:146.667067pt;}
.y1d_c00405{bottom:174.187067pt;}
.y1c_c00405{bottom:201.787067pt;}
.y1b_c00405{bottom:229.467067pt;}
.y1a_c00405{bottom:265.067067pt;}
.y19_c00405{bottom:292.667067pt;}
.y18_c00405{bottom:328.267067pt;}
.y17_c00405{bottom:355.867067pt;}
.y16_c00405{bottom:391.467067pt;}
.y15_c00405{bottom:419.067067pt;}
.y14_c00405{bottom:446.667067pt;}
.y13_c00405{bottom:474.267067pt;}
.y12_c00405{bottom:501.867067pt;}
.y11_c00405{bottom:529.467067pt;}
.y10_c00405{bottom:565.067067pt;}
.yf_c00405{bottom:591.867067pt;}
.ye_c00405{bottom:638.187067pt;}
.yd_c00405{bottom:673.707067pt;}
.yc_c00405{bottom:701.307067pt;}
.yb_c00405{bottom:728.827067pt;}
.ya_c00405{bottom:756.427067pt;}
.y9_c00405{bottom:784.107067pt;}
.y8_c00405{bottom:811.707067pt;}
.y7_c00405{bottom:839.307067pt;}
.y6_c00405{bottom:866.907067pt;}
.y5_c00405{bottom:902.507067pt;}
.y4_c00405{bottom:929.307067pt;}
.y3_c00405{bottom:975.547067pt;}
.h1_c00405{height:56.156250pt;}
.h2_c00405{height:57.375000pt;}
.h4_c00405{height:66.750000pt;}
.h3_c00405{height:77.763750pt;}
.h0_c00405{height:1122.666667pt;}
.w1_c00405{width:793.333333pt;}
.w0_c00405{width:793.626667pt;}
.x0_c00405{left:0.000000pt;}
.x2_c00405{left:113.440000pt;}
.x3_c00405{left:161.440000pt;}
.x4_c00405{left:185.440000pt;}
.x1_c00405{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_50b913b803023f9f42119825.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.093262;font-style:normal;font-weight:normal;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_ab44d0240a7ec0e1e1b5a778.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.106934;font-style:normal;font-weight:normal;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_fa46ab9ca0e6e702f6f947c7.woff2')format("woff");}.ff3_c00406{font-family:ff3_c00406;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00406;src:url('chunks/assets/font_46d3f7bc95b6f3811c80759e.woff2')format("woff");}.ff4_c00406{font-family:ff4_c00406;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00406{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.ls5_c00406{letter-spacing:-0.057600px;}
.ls8_c00406{letter-spacing:-0.050400px;}
.ls9_c00406{letter-spacing:-0.028800px;}
.ls6_c00406{letter-spacing:-0.021600px;}
.lsb_c00406{letter-spacing:-0.014400px;}
.ls7_c00406{letter-spacing:-0.007200px;}
.ls3_c00406{letter-spacing:0.000000px;}
.ls1_c00406{letter-spacing:0.005400px;}
.ls2_c00406{letter-spacing:0.014400px;}
.ls0_c00406{letter-spacing:0.021600px;}
.lsa_c00406{letter-spacing:0.158400px;}
.ls4_c00406{letter-spacing:0.165600px;}
.sc__c00406{text-shadow:none;}
.sc0_c00406{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00406{-webkit-text-stroke:0px transparent;}
.sc0_c00406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00406{word-spacing:-20.008800px;}
.ws1_c00406{word-spacing:-19.987200px;}
.ws2_c00406{word-spacing:-19.965600px;}
.ws3_c00406{word-spacing:0.000000px;}
.wsd_c00406{word-spacing:0.178200px;}
.ws6_c00406{word-spacing:6.199200px;}
.ws7_c00406{word-spacing:6.285600px;}
.wsa_c00406{word-spacing:7.387200px;}
.ws5_c00406{word-spacing:18.280800px;}
.ws4_c00406{word-spacing:18.331200px;}
.ws9_c00406{word-spacing:38.757600px;}
.ws8_c00406{word-spacing:38.815200px;}
.wsb_c00406{word-spacing:58.845600px;}
.wsc_c00406{word-spacing:58.881600px;}
._0_c00406{width:1.080000px;}
.fc1_c00406{color:rgb(31,73,124);}
.fc0_c00406{color:rgb(0,0,0);}
.fs1_c00406{font-size:54.000000px;}
.fs0_c00406{font-size:72.000000px;}
.y0_c00406{bottom:0.000000px;}
.y2_c00406{bottom:46.830450px;}
.y1_c00406{bottom:67.530450px;}
.ye_c00406{bottom:144.930450px;}
.yd_c00406{bottom:179.850450px;}
.yc_c00406{bottom:211.530450px;}
.yb_c00406{bottom:822.090450px;}
.ya_c00406{bottom:862.140450px;}
.y9_c00406{bottom:893.190450px;}
.y8_c00406{bottom:924.240450px;}
.y7_c00406{bottom:964.290450px;}
.y6_c00406{bottom:995.250450px;}
.y5_c00406{bottom:1026.390450px;}
.y4_c00406{bottom:1066.440450px;}
.y3_c00406{bottom:1097.490450px;}
.h4_c00406{height:52.971680px;}
.h1_c00406{height:63.175781px;}
.h3_c00406{height:64.546875px;}
.h2_c00406{height:75.093750px;}
.h0_c00406{height:1263.000000px;}
.w1_c00406{width:892.500000px;}
.w0_c00406{width:892.830000px;}
.x0_c00406{left:0.000000px;}
.x2_c00406{left:170.098135px;}
.x1_c00406{left:738.360000px;}
.x3_c00406{left:797.843701px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls5_c00406{letter-spacing:-0.051200pt;}
.ls8_c00406{letter-spacing:-0.044800pt;}
.ls9_c00406{letter-spacing:-0.025600pt;}
.ls6_c00406{letter-spacing:-0.019200pt;}
.lsb_c00406{letter-spacing:-0.012800pt;}
.ls7_c00406{letter-spacing:-0.006400pt;}
.ls3_c00406{letter-spacing:0.000000pt;}
.ls1_c00406{letter-spacing:0.004800pt;}
.ls2_c00406{letter-spacing:0.012800pt;}
.ls0_c00406{letter-spacing:0.019200pt;}
.lsa_c00406{letter-spacing:0.140800pt;}
.ls4_c00406{letter-spacing:0.147200pt;}
.ws0_c00406{word-spacing:-17.785600pt;}
.ws1_c00406{word-spacing:-17.766400pt;}
.ws2_c00406{word-spacing:-17.747200pt;}
.ws3_c00406{word-spacing:0.000000pt;}
.wsd_c00406{word-spacing:0.158400pt;}
.ws6_c00406{word-spacing:5.510400pt;}
.ws7_c00406{word-spacing:5.587200pt;}
.wsa_c00406{word-spacing:6.566400pt;}
.ws5_c00406{word-spacing:16.249600pt;}
.ws4_c00406{word-spacing:16.294400pt;}
.ws9_c00406{word-spacing:34.451200pt;}
.ws8_c00406{word-spacing:34.502400pt;}
.wsb_c00406{word-spacing:52.307200pt;}
.wsc_c00406{word-spacing:52.339200pt;}
._0_c00406{width:0.960000pt;}
.fs1_c00406{font-size:48.000000pt;}
.fs0_c00406{font-size:64.000000pt;}
.y0_c00406{bottom:0.000000pt;}
.y2_c00406{bottom:41.627067pt;}
.y1_c00406{bottom:60.027067pt;}
.ye_c00406{bottom:128.827067pt;}
.yd_c00406{bottom:159.867067pt;}
.yc_c00406{bottom:188.027067pt;}
.yb_c00406{bottom:730.747067pt;}
.ya_c00406{bottom:766.347067pt;}
.y9_c00406{bottom:793.947067pt;}
.y8_c00406{bottom:821.547067pt;}
.y7_c00406{bottom:857.147067pt;}
.y6_c00406{bottom:884.667067pt;}
.y5_c00406{bottom:912.347067pt;}
.y4_c00406{bottom:947.947067pt;}
.y3_c00406{bottom:975.547067pt;}
.h4_c00406{height:47.085938pt;}
.h1_c00406{height:56.156250pt;}
.h3_c00406{height:57.375000pt;}
.h2_c00406{height:66.750000pt;}
.h0_c00406{height:1122.666667pt;}
.w1_c00406{width:793.333333pt;}
.w0_c00406{width:793.626667pt;}
.x0_c00406{left:0.000000pt;}
.x2_c00406{left:151.198342pt;}
.x1_c00406{left:656.320000pt;}
.x3_c00406{left:709.194401pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_36ef3ad115ca05048ebf19fd.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.093262;font-style:normal;font-weight:normal;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_7e4236bb7cb4382e3cc09df6.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.106934;font-style:normal;font-weight:normal;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_e49af8a6bba726446daca0a2.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.lsa_c00407{letter-spacing:-0.093600px;}
.lsb_c00407{letter-spacing:-0.079200px;}
.lsd_c00407{letter-spacing:-0.072000px;}
.ls7_c00407{letter-spacing:-0.064800px;}
.ls8_c00407{letter-spacing:-0.057600px;}
.ls3_c00407{letter-spacing:-0.050400px;}
.lsc_c00407{letter-spacing:-0.043200px;}
.ls5_c00407{letter-spacing:-0.036000px;}
.ls4_c00407{letter-spacing:-0.028800px;}
.ls6_c00407{letter-spacing:-0.021600px;}
.ls9_c00407{letter-spacing:-0.014400px;}
.ls2_c00407{letter-spacing:-0.007200px;}
.ls1_c00407{letter-spacing:0.000000px;}
.ls0_c00407{letter-spacing:0.007200px;}
.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;}
}
.ws31_c00407{word-spacing:-1.994400px;}
.ws30_c00407{word-spacing:-1.785600px;}
.ws35_c00407{word-spacing:-1.569600px;}
.ws36_c00407{word-spacing:-1.447200px;}
.ws0_c00407{word-spacing:0.000000px;}
.ws1b_c00407{word-spacing:0.172800px;}
.ws34_c00407{word-spacing:1.188000px;}
.ws2a_c00407{word-spacing:1.612800px;}
.ws29_c00407{word-spacing:1.648800px;}
.ws2b_c00407{word-spacing:2.728800px;}
.ws26_c00407{word-spacing:3.362400px;}
.ws27_c00407{word-spacing:3.456000px;}
.ws28_c00407{word-spacing:4.125600px;}
.ws4_c00407{word-spacing:4.147200px;}
.ws5_c00407{word-spacing:4.154400px;}
.ws1f_c00407{word-spacing:4.392000px;}
.ws1a_c00407{word-spacing:4.413600px;}
.ws1e_c00407{word-spacing:4.579200px;}
.ws19_c00407{word-spacing:4.600800px;}
.ws6_c00407{word-spacing:6.300000px;}
.wsf_c00407{word-spacing:6.624000px;}
.ws2f_c00407{word-spacing:6.652800px;}
.wse_c00407{word-spacing:6.674400px;}
.ws8_c00407{word-spacing:6.991200px;}
.ws9_c00407{word-spacing:7.020000px;}
.ws7_c00407{word-spacing:7.063200px;}
.ws17_c00407{word-spacing:13.147200px;}
.ws18_c00407{word-spacing:13.176000px;}
.ws1_c00407{word-spacing:15.991200px;}
.ws33_c00407{word-spacing:16.077600px;}
.ws2_c00407{word-spacing:16.092000px;}
.ws32_c00407{word-spacing:16.099200px;}
.ws2e_c00407{word-spacing:17.784000px;}
.ws11_c00407{word-spacing:17.827200px;}
.ws10_c00407{word-spacing:17.892000px;}
.ws2d_c00407{word-spacing:17.942400px;}
.wsb_c00407{word-spacing:19.159200px;}
.ws1d_c00407{word-spacing:19.166400px;}
.ws1c_c00407{word-spacing:19.267200px;}
.wsa_c00407{word-spacing:19.346400px;}
.ws20_c00407{word-spacing:20.268000px;}
.ws21_c00407{word-spacing:20.354400px;}
.ws13_c00407{word-spacing:21.398400px;}
.ws14_c00407{word-spacing:21.420000px;}
.ws12_c00407{word-spacing:21.427200px;}
.ws3_c00407{word-spacing:21.448800px;}
.ws24_c00407{word-spacing:22.485600px;}
.ws25_c00407{word-spacing:22.528800px;}
.ws2c_c00407{word-spacing:24.667200px;}
.ws15_c00407{word-spacing:28.260000px;}
.ws16_c00407{word-spacing:28.317600px;}
.wsc_c00407{word-spacing:29.642400px;}
.wsd_c00407{word-spacing:29.772000px;}
.ws23_c00407{word-spacing:43.689600px;}
.ws22_c00407{word-spacing:43.725600px;}
._0_c00407{margin-left:-5.472000px;}
._1_c00407{width:1.188000px;}
.fc0_c00407{color:rgb(0,0,0);}
.fs0_c00407{font-size:72.000000px;}
.y0_c00407{bottom:0.000000px;}
.y2_c00407{bottom:46.830450px;}
.y1_c00407{bottom:67.530450px;}
.y21_c00407{bottom:147.990450px;}
.y20_c00407{bottom:179.040450px;}
.y1f_c00407{bottom:210.090450px;}
.y1e_c00407{bottom:241.140450px;}
.y1d_c00407{bottom:272.190450px;}
.y1c_c00407{bottom:303.240450px;}
.y1b_c00407{bottom:334.380450px;}
.y1a_c00407{bottom:365.430450px;}
.y19_c00407{bottom:396.390450px;}
.y18_c00407{bottom:427.440450px;}
.y17_c00407{bottom:458.490450px;}
.y16_c00407{bottom:498.540450px;}
.y15_c00407{bottom:529.590450px;}
.y14_c00407{bottom:560.640450px;}
.y13_c00407{bottom:591.690450px;}
.y12_c00407{bottom:622.740450px;}
.y11_c00407{bottom:653.790450px;}
.y10_c00407{bottom:693.840450px;}
.yf_c00407{bottom:724.800450px;}
.ye_c00407{bottom:755.940450px;}
.yd_c00407{bottom:786.990450px;}
.yc_c00407{bottom:818.040450px;}
.yb_c00407{bottom:849.000450px;}
.ya_c00407{bottom:880.140450px;}
.y9_c00407{bottom:911.190450px;}
.y8_c00407{bottom:942.240450px;}
.y7_c00407{bottom:973.290450px;}
.y6_c00407{bottom:1004.340450px;}
.y5_c00407{bottom:1035.390450px;}
.y4_c00407{bottom:1066.440450px;}
.y3_c00407{bottom:1097.490450px;}
.h1_c00407{height:63.175781px;}
.h2_c00407{height:64.546875px;}
.h3_c00407{height:75.093750px;}
.h0_c00407{height:1263.000000px;}
.w1_c00407{width:892.500000px;}
.w0_c00407{width:892.830000px;}
.x0_c00407{left:0.000000px;}
.x2_c00407{left:127.620000px;}
.x1_c00407{left:695.880000px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.lsa_c00407{letter-spacing:-0.083200pt;}
.lsb_c00407{letter-spacing:-0.070400pt;}
.lsd_c00407{letter-spacing:-0.064000pt;}
.ls7_c00407{letter-spacing:-0.057600pt;}
.ls8_c00407{letter-spacing:-0.051200pt;}
.ls3_c00407{letter-spacing:-0.044800pt;}
.lsc_c00407{letter-spacing:-0.038400pt;}
.ls5_c00407{letter-spacing:-0.032000pt;}
.ls4_c00407{letter-spacing:-0.025600pt;}
.ls6_c00407{letter-spacing:-0.019200pt;}
.ls9_c00407{letter-spacing:-0.012800pt;}
.ls2_c00407{letter-spacing:-0.006400pt;}
.ls1_c00407{letter-spacing:0.000000pt;}
.ls0_c00407{letter-spacing:0.006400pt;}
.ws31_c00407{word-spacing:-1.772800pt;}
.ws30_c00407{word-spacing:-1.587200pt;}
.ws35_c00407{word-spacing:-1.395200pt;}
.ws36_c00407{word-spacing:-1.286400pt;}
.ws0_c00407{word-spacing:0.000000pt;}
.ws1b_c00407{word-spacing:0.153600pt;}
.ws34_c00407{word-spacing:1.056000pt;}
.ws2a_c00407{word-spacing:1.433600pt;}
.ws29_c00407{word-spacing:1.465600pt;}
.ws2b_c00407{word-spacing:2.425600pt;}
.ws26_c00407{word-spacing:2.988800pt;}
.ws27_c00407{word-spacing:3.072000pt;}
.ws28_c00407{word-spacing:3.667200pt;}
.ws4_c00407{word-spacing:3.686400pt;}
.ws5_c00407{word-spacing:3.692800pt;}
.ws1f_c00407{word-spacing:3.904000pt;}
.ws1a_c00407{word-spacing:3.923200pt;}
.ws1e_c00407{word-spacing:4.070400pt;}
.ws19_c00407{word-spacing:4.089600pt;}
.ws6_c00407{word-spacing:5.600000pt;}
.wsf_c00407{word-spacing:5.888000pt;}
.ws2f_c00407{word-spacing:5.913600pt;}
.wse_c00407{word-spacing:5.932800pt;}
.ws8_c00407{word-spacing:6.214400pt;}
.ws9_c00407{word-spacing:6.240000pt;}
.ws7_c00407{word-spacing:6.278400pt;}
.ws17_c00407{word-spacing:11.686400pt;}
.ws18_c00407{word-spacing:11.712000pt;}
.ws1_c00407{word-spacing:14.214400pt;}
.ws33_c00407{word-spacing:14.291200pt;}
.ws2_c00407{word-spacing:14.304000pt;}
.ws32_c00407{word-spacing:14.310400pt;}
.ws2e_c00407{word-spacing:15.808000pt;}
.ws11_c00407{word-spacing:15.846400pt;}
.ws10_c00407{word-spacing:15.904000pt;}
.ws2d_c00407{word-spacing:15.948800pt;}
.wsb_c00407{word-spacing:17.030400pt;}
.ws1d_c00407{word-spacing:17.036800pt;}
.ws1c_c00407{word-spacing:17.126400pt;}
.wsa_c00407{word-spacing:17.196800pt;}
.ws20_c00407{word-spacing:18.016000pt;}
.ws21_c00407{word-spacing:18.092800pt;}
.ws13_c00407{word-spacing:19.020800pt;}
.ws14_c00407{word-spacing:19.040000pt;}
.ws12_c00407{word-spacing:19.046400pt;}
.ws3_c00407{word-spacing:19.065600pt;}
.ws24_c00407{word-spacing:19.987200pt;}
.ws25_c00407{word-spacing:20.025600pt;}
.ws2c_c00407{word-spacing:21.926400pt;}
.ws15_c00407{word-spacing:25.120000pt;}
.ws16_c00407{word-spacing:25.171200pt;}
.wsc_c00407{word-spacing:26.348800pt;}
.wsd_c00407{word-spacing:26.464000pt;}
.ws23_c00407{word-spacing:38.835200pt;}
.ws22_c00407{word-spacing:38.867200pt;}
._0_c00407{margin-left:-4.864000pt;}
._1_c00407{width:1.056000pt;}
.fs0_c00407{font-size:64.000000pt;}
.y0_c00407{bottom:0.000000pt;}
.y2_c00407{bottom:41.627067pt;}
.y1_c00407{bottom:60.027067pt;}
.y21_c00407{bottom:131.547067pt;}
.y20_c00407{bottom:159.147067pt;}
.y1f_c00407{bottom:186.747067pt;}
.y1e_c00407{bottom:214.347067pt;}
.y1d_c00407{bottom:241.947067pt;}
.y1c_c00407{bottom:269.547067pt;}
.y1b_c00407{bottom:297.227067pt;}
.y1a_c00407{bottom:324.827067pt;}
.y19_c00407{bottom:352.347067pt;}
.y18_c00407{bottom:379.947067pt;}
.y17_c00407{bottom:407.547067pt;}
.y16_c00407{bottom:443.147067pt;}
.y15_c00407{bottom:470.747067pt;}
.y14_c00407{bottom:498.347067pt;}
.y13_c00407{bottom:525.947067pt;}
.y12_c00407{bottom:553.547067pt;}
.y11_c00407{bottom:581.147067pt;}
.y10_c00407{bottom:616.747067pt;}
.yf_c00407{bottom:644.267067pt;}
.ye_c00407{bottom:671.947067pt;}
.yd_c00407{bottom:699.547067pt;}
.yc_c00407{bottom:727.147067pt;}
.yb_c00407{bottom:754.667067pt;}
.ya_c00407{bottom:782.347067pt;}
.y9_c00407{bottom:809.947067pt;}
.y8_c00407{bottom:837.547067pt;}
.y7_c00407{bottom:865.147067pt;}
.y6_c00407{bottom:892.747067pt;}
.y5_c00407{bottom:920.347067pt;}
.y4_c00407{bottom:947.947067pt;}
.y3_c00407{bottom:975.547067pt;}
.h1_c00407{height:56.156250pt;}
.h2_c00407{height:57.375000pt;}
.h3_c00407{height:66.750000pt;}
.h0_c00407{height:1122.666667pt;}
.w1_c00407{width:793.333333pt;}
.w0_c00407{width:793.626667pt;}
.x0_c00407{left:0.000000pt;}
.x2_c00407{left:113.440000pt;}
.x1_c00407{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d82d4b7668d8877198bb5c8d.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.093262;font-style:normal;font-weight:normal;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_ac952380408edb640e3f51b5.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00408;src:url('chunks/assets/font_9540ed33baf4a2ba9a92312a.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;line-height:1.106934;font-style:normal;font-weight:normal;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_375ea47d089b618c8794917d.woff2')format("woff");}.ff4_c00408{font-family:ff4_c00408;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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.079200px;}
.lsa_c00408{letter-spacing:-0.072000px;}
.lsd_c00408{letter-spacing:-0.057600px;}
.ls5_c00408{letter-spacing:-0.050400px;}
.ls9_c00408{letter-spacing:-0.043200px;}
.ls3_c00408{letter-spacing:-0.036000px;}
.ls6_c00408{letter-spacing:-0.028800px;}
.ls4_c00408{letter-spacing:-0.021600px;}
.ls7_c00408{letter-spacing:-0.007200px;}
.ls1_c00408{letter-spacing:0.000000px;}
.ls0_c00408{letter-spacing:0.007200px;}
.lsb_c00408{letter-spacing:0.014400px;}
.lsc_c00408{letter-spacing:0.021600px;}
.ls8_c00408{letter-spacing:0.050328px;}
.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;}
}
.ws15_c00408{word-spacing:-0.655200px;}
.wsf_c00408{word-spacing:-0.525600px;}
.ws10_c00408{word-spacing:-0.489600px;}
.ws14_c00408{word-spacing:-0.482400px;}
.ws0_c00408{word-spacing:0.000000px;}
.ws9_c00408{word-spacing:0.158400px;}
.wsa_c00408{word-spacing:0.165600px;}
.wsc_c00408{word-spacing:2.354400px;}
.wsd_c00408{word-spacing:2.448000px;}
.ws13_c00408{word-spacing:4.096800px;}
.ws12_c00408{word-spacing:4.111200px;}
.ws11_c00408{word-spacing:4.168800px;}
.ws8_c00408{word-spacing:5.587200px;}
.ws7_c00408{word-spacing:5.774400px;}
.ws16_c00408{word-spacing:6.127200px;}
.ws18_c00408{word-spacing:6.321600px;}
.ws17_c00408{word-spacing:6.336000px;}
.ws19_c00408{word-spacing:9.547200px;}
.wsb_c00408{word-spacing:9.763632px;}
.wse_c00408{word-spacing:18.554400px;}
.ws2_c00408{word-spacing:28.994400px;}
.ws1_c00408{word-spacing:29.181600px;}
.ws6_c00408{word-spacing:37.627200px;}
.ws5_c00408{word-spacing:37.648800px;}
.ws4_c00408{word-spacing:57.427200px;}
.ws3_c00408{word-spacing:57.535200px;}
._1_c00408{margin-left:-1.281600px;}
._0_c00408{width:1.130400px;}
.fc0_c00408{color:rgb(0,0,0);}
.fs0_c00408{font-size:72.000000px;}
.fs1_c00408{font-size:83.880000px;}
.y0_c00408{bottom:0.000000px;}
.y2_c00408{bottom:46.830450px;}
.y1_c00408{bottom:67.530450px;}
.y12_c00408{bottom:584.670450px;}
.y11_c00408{bottom:615.720450px;}
.y10_c00408{bottom:646.770450px;}
.yf_c00408{bottom:677.820450px;}
.ye_c00408{bottom:717.870450px;}
.yd_c00408{bottom:748.920450px;}
.yc_c00408{bottom:779.970450px;}
.yb_c00408{bottom:811.020450px;}
.ya_c00408{bottom:851.070450px;}
.y9_c00408{bottom:881.220450px;}
.y8_c00408{bottom:933.240450px;}
.y7_c00408{bottom:973.290450px;}
.y6_c00408{bottom:1004.250450px;}
.y5_c00408{bottom:1035.300450px;}
.y4_c00408{bottom:1066.350450px;}
.y3_c00408{bottom:1097.400450px;}
.h1_c00408{height:63.175781px;}
.h3_c00408{height:64.546875px;}
.h2_c00408{height:75.093750px;}
.h4_c00408{height:87.484219px;}
.h0_c00408{height:1263.000000px;}
.w1_c00408{width:892.500000px;}
.w0_c00408{width:892.830000px;}
.x0_c00408{left:0.000000px;}
.x2_c00408{left:170.100000px;}
.x3_c00408{left:251.100000px;}
.x1_c00408{left:738.360000px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls2_c00408{letter-spacing:-0.070400pt;}
.lsa_c00408{letter-spacing:-0.064000pt;}
.lsd_c00408{letter-spacing:-0.051200pt;}
.ls5_c00408{letter-spacing:-0.044800pt;}
.ls9_c00408{letter-spacing:-0.038400pt;}
.ls3_c00408{letter-spacing:-0.032000pt;}
.ls6_c00408{letter-spacing:-0.025600pt;}
.ls4_c00408{letter-spacing:-0.019200pt;}
.ls7_c00408{letter-spacing:-0.006400pt;}
.ls1_c00408{letter-spacing:0.000000pt;}
.ls0_c00408{letter-spacing:0.006400pt;}
.lsb_c00408{letter-spacing:0.012800pt;}
.lsc_c00408{letter-spacing:0.019200pt;}
.ls8_c00408{letter-spacing:0.044736pt;}
.ws15_c00408{word-spacing:-0.582400pt;}
.wsf_c00408{word-spacing:-0.467200pt;}
.ws10_c00408{word-spacing:-0.435200pt;}
.ws14_c00408{word-spacing:-0.428800pt;}
.ws0_c00408{word-spacing:0.000000pt;}
.ws9_c00408{word-spacing:0.140800pt;}
.wsa_c00408{word-spacing:0.147200pt;}
.wsc_c00408{word-spacing:2.092800pt;}
.wsd_c00408{word-spacing:2.176000pt;}
.ws13_c00408{word-spacing:3.641600pt;}
.ws12_c00408{word-spacing:3.654400pt;}
.ws11_c00408{word-spacing:3.705600pt;}
.ws8_c00408{word-spacing:4.966400pt;}
.ws7_c00408{word-spacing:5.132800pt;}
.ws16_c00408{word-spacing:5.446400pt;}
.ws18_c00408{word-spacing:5.619200pt;}
.ws17_c00408{word-spacing:5.632000pt;}
.ws19_c00408{word-spacing:8.486400pt;}
.wsb_c00408{word-spacing:8.678784pt;}
.wse_c00408{word-spacing:16.492800pt;}
.ws2_c00408{word-spacing:25.772800pt;}
.ws1_c00408{word-spacing:25.939200pt;}
.ws6_c00408{word-spacing:33.446400pt;}
.ws5_c00408{word-spacing:33.465600pt;}
.ws4_c00408{word-spacing:51.046400pt;}
.ws3_c00408{word-spacing:51.142400pt;}
._1_c00408{margin-left:-1.139200pt;}
._0_c00408{width:1.004800pt;}
.fs0_c00408{font-size:64.000000pt;}
.fs1_c00408{font-size:74.560000pt;}
.y0_c00408{bottom:0.000000pt;}
.y2_c00408{bottom:41.627067pt;}
.y1_c00408{bottom:60.027067pt;}
.y12_c00408{bottom:519.707067pt;}
.y11_c00408{bottom:547.307067pt;}
.y10_c00408{bottom:574.907067pt;}
.yf_c00408{bottom:602.507067pt;}
.ye_c00408{bottom:638.107067pt;}
.yd_c00408{bottom:665.707067pt;}
.yc_c00408{bottom:693.307067pt;}
.yb_c00408{bottom:720.907067pt;}
.ya_c00408{bottom:756.507067pt;}
.y9_c00408{bottom:783.307067pt;}
.y8_c00408{bottom:829.547067pt;}
.y7_c00408{bottom:865.147067pt;}
.y6_c00408{bottom:892.667067pt;}
.y5_c00408{bottom:920.267067pt;}
.y4_c00408{bottom:947.867067pt;}
.y3_c00408{bottom:975.467067pt;}
.h1_c00408{height:56.156250pt;}
.h3_c00408{height:57.375000pt;}
.h2_c00408{height:66.750000pt;}
.h4_c00408{height:77.763750pt;}
.h0_c00408{height:1122.666667pt;}
.w1_c00408{width:793.333333pt;}
.w0_c00408{width:793.626667pt;}
.x0_c00408{left:0.000000pt;}
.x2_c00408{left:151.200000pt;}
.x3_c00408{left:223.200000pt;}
.x1_c00408{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f886e743a25eea541e653cc0.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.093262;font-style:normal;font-weight:normal;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_42f75c68c0a69c3267d71def.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.106934;font-style:normal;font-weight:normal;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_95b000e3e15b5408ec10e157.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00409;src:url('chunks/assets/font_81037d3b2da542601f0d1255.woff2')format("woff");}.ff4_c00409{font-family:ff4_c00409;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls8_c00409{letter-spacing:-0.072000px;}
.ls4_c00409{letter-spacing:-0.064800px;}
.ls5_c00409{letter-spacing:-0.057600px;}
.ls2_c00409{letter-spacing:-0.050400px;}
.ls6_c00409{letter-spacing:-0.043200px;}
.ls9_c00409{letter-spacing:-0.028800px;}
.ls3_c00409{letter-spacing:-0.021600px;}
.ls7_c00409{letter-spacing:-0.014400px;}
.ls1_c00409{letter-spacing:0.000000px;}
.ls0_c00409{letter-spacing:0.016200px;}
.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;}
}
.ws8_c00409{word-spacing:-3.067200px;}
.ws13_c00409{word-spacing:-3.024000px;}
.ws12_c00409{word-spacing:-3.002400px;}
.wsc_c00409{word-spacing:-1.620000px;}
.wsd_c00409{word-spacing:-1.591200px;}
.ws0_c00409{word-spacing:0.000000px;}
.ws1_c00409{word-spacing:0.162000px;}
.ws2_c00409{word-spacing:1.260000px;}
.ws7_c00409{word-spacing:1.576800px;}
.ws6_c00409{word-spacing:1.656000px;}
.ws16_c00409{word-spacing:2.728800px;}
.ws11_c00409{word-spacing:6.667200px;}
.ws10_c00409{word-spacing:6.681600px;}
.wsb_c00409{word-spacing:7.776000px;}
.ws9_c00409{word-spacing:7.783200px;}
.wsa_c00409{word-spacing:7.790400px;}
.wse_c00409{word-spacing:8.438400px;}
.wsf_c00409{word-spacing:8.604000px;}
.ws4_c00409{word-spacing:11.188800px;}
.ws5_c00409{word-spacing:11.361600px;}
.ws3_c00409{word-spacing:11.383200px;}
.ws14_c00409{word-spacing:24.328800px;}
.ws15_c00409{word-spacing:24.350400px;}
._0_c00409{width:1.180800px;}
.fc1_c00409{color:rgb(31,73,124);}
.fc0_c00409{color:rgb(0,0,0);}
.fs1_c00409{font-size:54.000000px;}
.fs0_c00409{font-size:72.000000px;}
.y0_c00409{bottom:0.000000px;}
.y2_c00409{bottom:46.830450px;}
.y1_c00409{bottom:67.530450px;}
.y10_c00409{bottom:139.080450px;}
.yf_c00409{bottom:170.130450px;}
.ye_c00409{bottom:201.090450px;}
.yd_c00409{bottom:232.140450px;}
.yc_c00409{bottom:263.190450px;}
.yb_c00409{bottom:294.240450px;}
.ya_c00409{bottom:325.380450px;}
.y9_c00409{bottom:356.430450px;}
.y8_c00409{bottom:387.480450px;}
.y7_c00409{bottom:418.530450px;}
.y6_c00409{bottom:449.580450px;}
.y5_c00409{bottom:484.500600px;}
.y4_c00409{bottom:516.180450px;}
.y3_c00409{bottom:1097.490450px;}
.h3_c00409{height:52.971680px;}
.h1_c00409{height:63.175781px;}
.h2_c00409{height:64.546875px;}
.h4_c00409{height:75.093750px;}
.h0_c00409{height:1263.000000px;}
.w1_c00409{width:892.500000px;}
.w0_c00409{width:892.830000px;}
.x0_c00409{left:0.000000px;}
.x2_c00409{left:127.620000px;}
.x1_c00409{left:695.880000px;}
.x3_c00409{left:723.870000px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls8_c00409{letter-spacing:-0.064000pt;}
.ls4_c00409{letter-spacing:-0.057600pt;}
.ls5_c00409{letter-spacing:-0.051200pt;}
.ls2_c00409{letter-spacing:-0.044800pt;}
.ls6_c00409{letter-spacing:-0.038400pt;}
.ls9_c00409{letter-spacing:-0.025600pt;}
.ls3_c00409{letter-spacing:-0.019200pt;}
.ls7_c00409{letter-spacing:-0.012800pt;}
.ls1_c00409{letter-spacing:0.000000pt;}
.ls0_c00409{letter-spacing:0.014400pt;}
.ws8_c00409{word-spacing:-2.726400pt;}
.ws13_c00409{word-spacing:-2.688000pt;}
.ws12_c00409{word-spacing:-2.668800pt;}
.wsc_c00409{word-spacing:-1.440000pt;}
.wsd_c00409{word-spacing:-1.414400pt;}
.ws0_c00409{word-spacing:0.000000pt;}
.ws1_c00409{word-spacing:0.144000pt;}
.ws2_c00409{word-spacing:1.120000pt;}
.ws7_c00409{word-spacing:1.401600pt;}
.ws6_c00409{word-spacing:1.472000pt;}
.ws16_c00409{word-spacing:2.425600pt;}
.ws11_c00409{word-spacing:5.926400pt;}
.ws10_c00409{word-spacing:5.939200pt;}
.wsb_c00409{word-spacing:6.912000pt;}
.ws9_c00409{word-spacing:6.918400pt;}
.wsa_c00409{word-spacing:6.924800pt;}
.wse_c00409{word-spacing:7.500800pt;}
.wsf_c00409{word-spacing:7.648000pt;}
.ws4_c00409{word-spacing:9.945600pt;}
.ws5_c00409{word-spacing:10.099200pt;}
.ws3_c00409{word-spacing:10.118400pt;}
.ws14_c00409{word-spacing:21.625600pt;}
.ws15_c00409{word-spacing:21.644800pt;}
._0_c00409{width:1.049600pt;}
.fs1_c00409{font-size:48.000000pt;}
.fs0_c00409{font-size:64.000000pt;}
.y0_c00409{bottom:0.000000pt;}
.y2_c00409{bottom:41.627067pt;}
.y1_c00409{bottom:60.027067pt;}
.y10_c00409{bottom:123.627067pt;}
.yf_c00409{bottom:151.227067pt;}
.ye_c00409{bottom:178.747067pt;}
.yd_c00409{bottom:206.347067pt;}
.yc_c00409{bottom:233.947067pt;}
.yb_c00409{bottom:261.547067pt;}
.ya_c00409{bottom:289.227067pt;}
.y9_c00409{bottom:316.827067pt;}
.y8_c00409{bottom:344.427067pt;}
.y7_c00409{bottom:372.027067pt;}
.y6_c00409{bottom:399.627067pt;}
.y5_c00409{bottom:430.667200pt;}
.y4_c00409{bottom:458.827067pt;}
.y3_c00409{bottom:975.547067pt;}
.h3_c00409{height:47.085938pt;}
.h1_c00409{height:56.156250pt;}
.h2_c00409{height:57.375000pt;}
.h4_c00409{height:66.750000pt;}
.h0_c00409{height:1122.666667pt;}
.w1_c00409{width:793.333333pt;}
.w0_c00409{width:793.626667pt;}
.x0_c00409{left:0.000000pt;}
.x2_c00409{left:113.440000pt;}
.x1_c00409{left:618.560000pt;}
.x3_c00409{left:643.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_894502163021d0ff90c5d0f9.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.093262;font-style:normal;font-weight:normal;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_32fbc35bb8654f75c3687357.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.106934;font-style:normal;font-weight:normal;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_6985d535923b297306fde94a.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00410;src:url('chunks/assets/font_07bcf9eb363a688e2345b449.woff2')format("woff");}.ff4_c00410{font-family:ff4_c00410;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls10_c00410{letter-spacing:-0.100800px;}
.lsd_c00410{letter-spacing:-0.086400px;}
.ls7_c00410{letter-spacing:-0.064800px;}
.lse_c00410{letter-spacing:-0.057600px;}
.ls5_c00410{letter-spacing:-0.050400px;}
.ls9_c00410{letter-spacing:-0.043200px;}
.lsa_c00410{letter-spacing:-0.036000px;}
.ls8_c00410{letter-spacing:-0.028800px;}
.lsb_c00410{letter-spacing:-0.021600px;}
.lsc_c00410{letter-spacing:-0.014400px;}
.ls6_c00410{letter-spacing:-0.007200px;}
.ls4_c00410{letter-spacing:0.000000px;}
.ls1_c00410{letter-spacing:0.007200px;}
.ls0_c00410{letter-spacing:0.014400px;}
.lsf_c00410{letter-spacing:0.079200px;}
.ls2_c00410{letter-spacing:0.136800px;}
.ls3_c00410{letter-spacing:0.144000px;}
.sc__c00410{text-shadow:none;}
.sc0_c00410{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00410{-webkit-text-stroke:0px transparent;}
.sc0_c00410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00410{word-spacing:-20.023200px;}
.ws4_c00410{word-spacing:-3.794400px;}
.ws5_c00410{word-spacing:-3.736800px;}
.ws18_c00410{word-spacing:-3.060000px;}
.ws17_c00410{word-spacing:-3.045600px;}
.ws10_c00410{word-spacing:-2.001600px;}
.ws11_c00410{word-spacing:-1.987200px;}
.wsf_c00410{word-spacing:-1.864800px;}
.ws1_c00410{word-spacing:0.000000px;}
.ws26_c00410{word-spacing:0.043200px;}
.ws20_c00410{word-spacing:0.092268px;}
.ws2b_c00410{word-spacing:0.172800px;}
.wsa_c00410{word-spacing:0.180000px;}
.ws1f_c00410{word-spacing:0.187200px;}
.ws1c_c00410{word-spacing:0.201600px;}
.ws1d_c00410{word-spacing:0.237600px;}
.ws1b_c00410{word-spacing:1.252800px;}
.ws8_c00410{word-spacing:1.346400px;}
.ws9_c00410{word-spacing:1.418400px;}
.wsd_c00410{word-spacing:4.464000px;}
.wse_c00410{word-spacing:4.492800px;}
.ws13_c00410{word-spacing:4.507200px;}
.ws12_c00410{word-spacing:4.608000px;}
.ws19_c00410{word-spacing:6.660000px;}
.ws1a_c00410{word-spacing:6.739200px;}
.ws21_c00410{word-spacing:7.761600px;}
.ws3_c00410{word-spacing:13.478400px;}
.ws2_c00410{word-spacing:13.528800px;}
.ws2a_c00410{word-spacing:15.314400px;}
.ws29_c00410{word-spacing:15.321600px;}
.ws2f_c00410{word-spacing:15.652800px;}
.wsb_c00410{word-spacing:15.660000px;}
.wsc_c00410{word-spacing:15.667200px;}
.ws24_c00410{word-spacing:16.725600px;}
.ws25_c00410{word-spacing:16.783200px;}
.ws6_c00410{word-spacing:18.907200px;}
.ws7_c00410{word-spacing:18.921600px;}
.ws1e_c00410{word-spacing:19.252800px;}
.ws28_c00410{word-spacing:26.532000px;}
.ws27_c00410{word-spacing:26.632800px;}
.ws22_c00410{word-spacing:31.096800px;}
.ws23_c00410{word-spacing:31.168800px;}
.ws16_c00410{word-spacing:36.021600px;}
.ws14_c00410{word-spacing:36.208800px;}
.ws15_c00410{word-spacing:36.259200px;}
.ws2c_c00410{word-spacing:40.852800px;}
.ws2d_c00410{word-spacing:40.896000px;}
.ws2e_c00410{word-spacing:40.924800px;}
._0_c00410{margin-left:-15.480000px;}
._1_c00410{width:1.058400px;}
._2_c00410{width:9.730080px;}
.fc0_c00410{color:rgb(0,0,0);}
.fs0_c00410{font-size:72.000000px;}
.fs1_c00410{font-size:83.880000px;}
.y0_c00410{bottom:0.000000px;}
.y2_c00410{bottom:46.830450px;}
.y1_c00410{bottom:67.530450px;}
.y1f_c00410{bottom:163.020450px;}
.y1e_c00410{bottom:194.070450px;}
.y1d_c00410{bottom:234.120450px;}
.y1c_c00410{bottom:265.080450px;}
.y1b_c00410{bottom:296.130450px;}
.y1a_c00410{bottom:327.270450px;}
.y19_c00410{bottom:358.320450px;}
.y18_c00410{bottom:389.370450px;}
.y17_c00410{bottom:420.420450px;}
.y16_c00410{bottom:460.470450px;}
.y15_c00410{bottom:490.620600px;}
.y14_c00410{bottom:542.640450px;}
.y13_c00410{bottom:582.690450px;}
.y12_c00410{bottom:613.650450px;}
.y11_c00410{bottom:644.700450px;}
.y10_c00410{bottom:675.750450px;}
.yf_c00410{bottom:706.890450px;}
.ye_c00410{bottom:737.940450px;}
.yd_c00410{bottom:768.990450px;}
.yc_c00410{bottom:809.040450px;}
.yb_c00410{bottom:840.000450px;}
.ya_c00410{bottom:871.050450px;}
.y9_c00410{bottom:902.190450px;}
.y8_c00410{bottom:933.240450px;}
.y7_c00410{bottom:973.290450px;}
.y6_c00410{bottom:1004.250450px;}
.y5_c00410{bottom:1035.300450px;}
.y4_c00410{bottom:1066.440450px;}
.y3_c00410{bottom:1097.490450px;}
.h1_c00410{height:63.175781px;}
.h2_c00410{height:64.546875px;}
.h3_c00410{height:75.093750px;}
.h4_c00410{height:87.484219px;}
.h0_c00410{height:1263.000000px;}
.w1_c00410{width:892.500000px;}
.w0_c00410{width:892.830000px;}
.x0_c00410{left:0.000000px;}
.x2_c00410{left:170.100000px;}
.x3_c00410{left:251.100000px;}
.x1_c00410{left:738.360000px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls10_c00410{letter-spacing:-0.089600pt;}
.lsd_c00410{letter-spacing:-0.076800pt;}
.ls7_c00410{letter-spacing:-0.057600pt;}
.lse_c00410{letter-spacing:-0.051200pt;}
.ls5_c00410{letter-spacing:-0.044800pt;}
.ls9_c00410{letter-spacing:-0.038400pt;}
.lsa_c00410{letter-spacing:-0.032000pt;}
.ls8_c00410{letter-spacing:-0.025600pt;}
.lsb_c00410{letter-spacing:-0.019200pt;}
.lsc_c00410{letter-spacing:-0.012800pt;}
.ls6_c00410{letter-spacing:-0.006400pt;}
.ls4_c00410{letter-spacing:0.000000pt;}
.ls1_c00410{letter-spacing:0.006400pt;}
.ls0_c00410{letter-spacing:0.012800pt;}
.lsf_c00410{letter-spacing:0.070400pt;}
.ls2_c00410{letter-spacing:0.121600pt;}
.ls3_c00410{letter-spacing:0.128000pt;}
.ws0_c00410{word-spacing:-17.798400pt;}
.ws4_c00410{word-spacing:-3.372800pt;}
.ws5_c00410{word-spacing:-3.321600pt;}
.ws18_c00410{word-spacing:-2.720000pt;}
.ws17_c00410{word-spacing:-2.707200pt;}
.ws10_c00410{word-spacing:-1.779200pt;}
.ws11_c00410{word-spacing:-1.766400pt;}
.wsf_c00410{word-spacing:-1.657600pt;}
.ws1_c00410{word-spacing:0.000000pt;}
.ws26_c00410{word-spacing:0.038400pt;}
.ws20_c00410{word-spacing:0.082016pt;}
.ws2b_c00410{word-spacing:0.153600pt;}
.wsa_c00410{word-spacing:0.160000pt;}
.ws1f_c00410{word-spacing:0.166400pt;}
.ws1c_c00410{word-spacing:0.179200pt;}
.ws1d_c00410{word-spacing:0.211200pt;}
.ws1b_c00410{word-spacing:1.113600pt;}
.ws8_c00410{word-spacing:1.196800pt;}
.ws9_c00410{word-spacing:1.260800pt;}
.wsd_c00410{word-spacing:3.968000pt;}
.wse_c00410{word-spacing:3.993600pt;}
.ws13_c00410{word-spacing:4.006400pt;}
.ws12_c00410{word-spacing:4.096000pt;}
.ws19_c00410{word-spacing:5.920000pt;}
.ws1a_c00410{word-spacing:5.990400pt;}
.ws21_c00410{word-spacing:6.899200pt;}
.ws3_c00410{word-spacing:11.980800pt;}
.ws2_c00410{word-spacing:12.025600pt;}
.ws2a_c00410{word-spacing:13.612800pt;}
.ws29_c00410{word-spacing:13.619200pt;}
.ws2f_c00410{word-spacing:13.913600pt;}
.wsb_c00410{word-spacing:13.920000pt;}
.wsc_c00410{word-spacing:13.926400pt;}
.ws24_c00410{word-spacing:14.867200pt;}
.ws25_c00410{word-spacing:14.918400pt;}
.ws6_c00410{word-spacing:16.806400pt;}
.ws7_c00410{word-spacing:16.819200pt;}
.ws1e_c00410{word-spacing:17.113600pt;}
.ws28_c00410{word-spacing:23.584000pt;}
.ws27_c00410{word-spacing:23.673600pt;}
.ws22_c00410{word-spacing:27.641600pt;}
.ws23_c00410{word-spacing:27.705600pt;}
.ws16_c00410{word-spacing:32.019200pt;}
.ws14_c00410{word-spacing:32.185600pt;}
.ws15_c00410{word-spacing:32.230400pt;}
.ws2c_c00410{word-spacing:36.313600pt;}
.ws2d_c00410{word-spacing:36.352000pt;}
.ws2e_c00410{word-spacing:36.377600pt;}
._0_c00410{margin-left:-13.760000pt;}
._1_c00410{width:0.940800pt;}
._2_c00410{width:8.648960pt;}
.fs0_c00410{font-size:64.000000pt;}
.fs1_c00410{font-size:74.560000pt;}
.y0_c00410{bottom:0.000000pt;}
.y2_c00410{bottom:41.627067pt;}
.y1_c00410{bottom:60.027067pt;}
.y1f_c00410{bottom:144.907067pt;}
.y1e_c00410{bottom:172.507067pt;}
.y1d_c00410{bottom:208.107067pt;}
.y1c_c00410{bottom:235.627067pt;}
.y1b_c00410{bottom:263.227067pt;}
.y1a_c00410{bottom:290.907067pt;}
.y19_c00410{bottom:318.507067pt;}
.y18_c00410{bottom:346.107067pt;}
.y17_c00410{bottom:373.707067pt;}
.y16_c00410{bottom:409.307067pt;}
.y15_c00410{bottom:436.107200pt;}
.y14_c00410{bottom:482.347067pt;}
.y13_c00410{bottom:517.947067pt;}
.y12_c00410{bottom:545.467067pt;}
.y11_c00410{bottom:573.067067pt;}
.y10_c00410{bottom:600.667067pt;}
.yf_c00410{bottom:628.347067pt;}
.ye_c00410{bottom:655.947067pt;}
.yd_c00410{bottom:683.547067pt;}
.yc_c00410{bottom:719.147067pt;}
.yb_c00410{bottom:746.667067pt;}
.ya_c00410{bottom:774.267067pt;}
.y9_c00410{bottom:801.947067pt;}
.y8_c00410{bottom:829.547067pt;}
.y7_c00410{bottom:865.147067pt;}
.y6_c00410{bottom:892.667067pt;}
.y5_c00410{bottom:920.267067pt;}
.y4_c00410{bottom:947.947067pt;}
.y3_c00410{bottom:975.547067pt;}
.h1_c00410{height:56.156250pt;}
.h2_c00410{height:57.375000pt;}
.h3_c00410{height:66.750000pt;}
.h4_c00410{height:77.763750pt;}
.h0_c00410{height:1122.666667pt;}
.w1_c00410{width:793.333333pt;}
.w0_c00410{width:793.626667pt;}
.x0_c00410{left:0.000000pt;}
.x2_c00410{left:151.200000pt;}
.x3_c00410{left:223.200000pt;}
.x1_c00410{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e48f61418c2ce975c7ab6000.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.093262;font-style:normal;font-weight:normal;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_b6fcf8992e74695eefe52bcc.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00411;src:url('chunks/assets/font_d0e9ac2aa243789774e4e5b5.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:1.106934;font-style:normal;font-weight:normal;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_090cdbcf7fc5f70143448d68.woff2')format("woff");}.ff4_c00411{font-family:ff4_c00411;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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.050400px;}
.ls7_c00411{letter-spacing:-0.036000px;}
.ls8_c00411{letter-spacing:-0.028800px;}
.ls4_c00411{letter-spacing:-0.021600px;}
.ls3_c00411{letter-spacing:-0.007200px;}
.ls1_c00411{letter-spacing:0.000000px;}
.ls6_c00411{letter-spacing:0.041940px;}
.ls0_c00411{letter-spacing:0.067104px;}
.ls5_c00411{letter-spacing:0.151200px;}
.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;}
}
.wsb_c00411{word-spacing:-3.052800px;}
.wsa_c00411{word-spacing:-2.988000px;}
.ws2_c00411{word-spacing:-1.634400px;}
.ws1_c00411{word-spacing:-1.497600px;}
.ws0_c00411{word-spacing:0.000000px;}
.ws5_c00411{word-spacing:0.025164px;}
.wsd_c00411{word-spacing:0.165600px;}
.ws3_c00411{word-spacing:0.180000px;}
.wsc_c00411{word-spacing:0.280800px;}
.ws9_c00411{word-spacing:8.100000px;}
.ws8_c00411{word-spacing:8.107200px;}
.ws4_c00411{word-spacing:14.968800px;}
.ws6_c00411{word-spacing:21.420000px;}
.ws7_c00411{word-spacing:21.434400px;}
._0_c00411{width:1.000800px;}
._1_c00411{width:9.730080px;}
.fc0_c00411{color:rgb(0,0,0);}
.fs0_c00411{font-size:72.000000px;}
.fs1_c00411{font-size:83.880000px;}
.y0_c00411{bottom:0.000000px;}
.y2_c00411{bottom:46.830450px;}
.y1_c00411{bottom:67.530450px;}
.y13_c00411{bottom:513.390450px;}
.y12_c00411{bottom:553.440450px;}
.y11_c00411{bottom:584.490450px;}
.y10_c00411{bottom:624.540450px;}
.yf_c00411{bottom:654.780450px;}
.ye_c00411{bottom:706.710450px;}
.yd_c00411{bottom:746.760450px;}
.yc_c00411{bottom:777.810450px;}
.yb_c00411{bottom:808.860450px;}
.ya_c00411{bottom:848.820450px;}
.y9_c00411{bottom:879.154950px;}
.y8_c00411{bottom:903.270450px;}
.y7_c00411{bottom:955.290450px;}
.y6_c00411{bottom:995.340450px;}
.y5_c00411{bottom:1026.390450px;}
.y4_c00411{bottom:1066.440450px;}
.y3_c00411{bottom:1097.400450px;}
.h1_c00411{height:63.175781px;}
.h3_c00411{height:64.546875px;}
.h2_c00411{height:75.093750px;}
.h4_c00411{height:87.484219px;}
.h0_c00411{height:1263.000000px;}
.w1_c00411{width:892.500000px;}
.w0_c00411{width:892.830000px;}
.x0_c00411{left:0.000000px;}
.x2_c00411{left:127.620000px;}
.x3_c00411{left:208.620000px;}
.x4_c00411{left:257.228460px;}
.x1_c00411{left:695.880000px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls2_c00411{letter-spacing:-0.044800pt;}
.ls7_c00411{letter-spacing:-0.032000pt;}
.ls8_c00411{letter-spacing:-0.025600pt;}
.ls4_c00411{letter-spacing:-0.019200pt;}
.ls3_c00411{letter-spacing:-0.006400pt;}
.ls1_c00411{letter-spacing:0.000000pt;}
.ls6_c00411{letter-spacing:0.037280pt;}
.ls0_c00411{letter-spacing:0.059648pt;}
.ls5_c00411{letter-spacing:0.134400pt;}
.wsb_c00411{word-spacing:-2.713600pt;}
.wsa_c00411{word-spacing:-2.656000pt;}
.ws2_c00411{word-spacing:-1.452800pt;}
.ws1_c00411{word-spacing:-1.331200pt;}
.ws0_c00411{word-spacing:0.000000pt;}
.ws5_c00411{word-spacing:0.022368pt;}
.wsd_c00411{word-spacing:0.147200pt;}
.ws3_c00411{word-spacing:0.160000pt;}
.wsc_c00411{word-spacing:0.249600pt;}
.ws9_c00411{word-spacing:7.200000pt;}
.ws8_c00411{word-spacing:7.206400pt;}
.ws4_c00411{word-spacing:13.305600pt;}
.ws6_c00411{word-spacing:19.040000pt;}
.ws7_c00411{word-spacing:19.052800pt;}
._0_c00411{width:0.889600pt;}
._1_c00411{width:8.648960pt;}
.fs0_c00411{font-size:64.000000pt;}
.fs1_c00411{font-size:74.560000pt;}
.y0_c00411{bottom:0.000000pt;}
.y2_c00411{bottom:41.627067pt;}
.y1_c00411{bottom:60.027067pt;}
.y13_c00411{bottom:456.347067pt;}
.y12_c00411{bottom:491.947067pt;}
.y11_c00411{bottom:519.547067pt;}
.y10_c00411{bottom:555.147067pt;}
.yf_c00411{bottom:582.027067pt;}
.ye_c00411{bottom:628.187067pt;}
.yd_c00411{bottom:663.787067pt;}
.yc_c00411{bottom:691.387067pt;}
.yb_c00411{bottom:718.987067pt;}
.ya_c00411{bottom:754.507067pt;}
.y9_c00411{bottom:781.471067pt;}
.y8_c00411{bottom:802.907067pt;}
.y7_c00411{bottom:849.147067pt;}
.y6_c00411{bottom:884.747067pt;}
.y5_c00411{bottom:912.347067pt;}
.y4_c00411{bottom:947.947067pt;}
.y3_c00411{bottom:975.467067pt;}
.h1_c00411{height:56.156250pt;}
.h3_c00411{height:57.375000pt;}
.h2_c00411{height:66.750000pt;}
.h4_c00411{height:77.763750pt;}
.h0_c00411{height:1122.666667pt;}
.w1_c00411{width:793.333333pt;}
.w0_c00411{width:793.626667pt;}
.x0_c00411{left:0.000000pt;}
.x2_c00411{left:113.440000pt;}
.x3_c00411{left:185.440000pt;}
.x4_c00411{left:228.647520pt;}
.x1_c00411{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e17566220d3494508a0aca85.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.093262;font-style:normal;font-weight:normal;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_5ff0f31ce81b460768db30d4.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00412{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.ls2_c00412{letter-spacing:0.000000px;}
.ls1_c00412{letter-spacing:0.014400px;}
.ls0_c00412{letter-spacing:0.027000px;}
.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;}
}
.ws0_c00412{word-spacing:0.000000px;}
.ws1_c00412{word-spacing:0.156600px;}
.fc2_c00412{color:transparent;}
.fc1_c00412{color:rgb(31,73,124);}
.fc0_c00412{color:rgb(0,0,0);}
.fs1_c00412{font-size:54.000000px;}
.fs0_c00412{font-size:72.000000px;}
.y0_c00412{bottom:0.000000px;}
.y2_c00412{bottom:46.830450px;}
.y1_c00412{bottom:67.530450px;}
.y4_c00412{bottom:153.300450px;}
.y3_c00412{bottom:184.980450px;}
.h2_c00412{height:52.971680px;}
.h1_c00412{height:63.175781px;}
.h0_c00412{height:1263.000000px;}
.w1_c00412{width:892.500000px;}
.w0_c00412{width:892.830000px;}
.x0_c00412{left:0.000000px;}
.x2_c00412{left:170.098135px;}
.x1_c00412{left:738.360000px;}
.x3_c00412{left:750.595002px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls2_c00412{letter-spacing:0.000000pt;}
.ls1_c00412{letter-spacing:0.012800pt;}
.ls0_c00412{letter-spacing:0.024000pt;}
.ws0_c00412{word-spacing:0.000000pt;}
.ws1_c00412{word-spacing:0.139200pt;}
.fs1_c00412{font-size:48.000000pt;}
.fs0_c00412{font-size:64.000000pt;}
.y0_c00412{bottom:0.000000pt;}
.y2_c00412{bottom:41.627067pt;}
.y1_c00412{bottom:60.027067pt;}
.y4_c00412{bottom:136.267067pt;}
.y3_c00412{bottom:164.427067pt;}
.h2_c00412{height:47.085938pt;}
.h1_c00412{height:56.156250pt;}
.h0_c00412{height:1122.666667pt;}
.w1_c00412{width:793.333333pt;}
.w0_c00412{width:793.626667pt;}
.x0_c00412{left:0.000000pt;}
.x2_c00412{left:151.198342pt;}
.x1_c00412{left:656.320000pt;}
.x3_c00412{left:667.195557pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_894502163021d0ff90c5d0f9.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.093262;font-style:normal;font-weight:normal;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_d31820aa7bfc3ebfeab2c5dd.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.106934;font-style:normal;font-weight:normal;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_8ac25c9e92605103dab06c4f.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00413{letter-spacing:-0.086400px;}
.lsd_c00413{letter-spacing:-0.079200px;}
.lsb_c00413{letter-spacing:-0.057600px;}
.ls4_c00413{letter-spacing:-0.050400px;}
.ls9_c00413{letter-spacing:-0.043200px;}
.ls3_c00413{letter-spacing:-0.036000px;}
.ls8_c00413{letter-spacing:-0.028800px;}
.lse_c00413{letter-spacing:-0.021600px;}
.ls7_c00413{letter-spacing:-0.014400px;}
.ls6_c00413{letter-spacing:-0.007200px;}
.ls2_c00413{letter-spacing:0.000000px;}
.ls1_c00413{letter-spacing:0.007200px;}
.ls5_c00413{letter-spacing:0.021600px;}
.ls0_c00413{letter-spacing:0.144000px;}
.lsa_c00413{letter-spacing:0.151200px;}
.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;}
}
.ws10_c00413{word-spacing:-1.281600px;}
.ws1b_c00413{word-spacing:-0.928800px;}
.ws1a_c00413{word-spacing:-0.907200px;}
.ws12_c00413{word-spacing:-0.885600px;}
.ws11_c00413{word-spacing:-0.835200px;}
.ws9_c00413{word-spacing:-0.554400px;}
.ws8_c00413{word-spacing:-0.532800px;}
.ws1c_c00413{word-spacing:-0.223200px;}
.ws1d_c00413{word-spacing:-0.208800px;}
.ws1e_c00413{word-spacing:-0.172800px;}
.ws0_c00413{word-spacing:0.000000px;}
.wsd_c00413{word-spacing:0.007200px;}
.ws16_c00413{word-spacing:0.165600px;}
.wsc_c00413{word-spacing:0.208800px;}
.ws7_c00413{word-spacing:1.814400px;}
.ws6_c00413{word-spacing:1.850400px;}
.ws5_c00413{word-spacing:1.994400px;}
.ws13_c00413{word-spacing:4.485600px;}
.ws15_c00413{word-spacing:4.514400px;}
.ws14_c00413{word-spacing:4.622400px;}
.ws1f_c00413{word-spacing:7.394400px;}
.wsa_c00413{word-spacing:10.245600px;}
.wsb_c00413{word-spacing:10.281600px;}
.wse_c00413{word-spacing:17.071200px;}
.wsf_c00413{word-spacing:17.107200px;}
.ws18_c00413{word-spacing:18.547200px;}
.ws19_c00413{word-spacing:18.597600px;}
.ws17_c00413{word-spacing:21.801600px;}
.ws1_c00413{word-spacing:31.514400px;}
.ws2_c00413{word-spacing:31.528800px;}
.ws3_c00413{word-spacing:55.965600px;}
.ws4_c00413{word-spacing:56.080800px;}
._1_c00413{margin-left:-1.152000px;}
._0_c00413{width:1.123200px;}
.fc0_c00413{color:rgb(0,0,0);}
.fs0_c00413{font-size:72.000000px;}
.y0_c00413{bottom:0.000000px;}
.y2_c00413{bottom:46.830450px;}
.y1_c00413{bottom:67.530450px;}
.y14_c00413{bottom:158.250450px;}
.y13_c00413{bottom:189.300450px;}
.y12_c00413{bottom:220.350450px;}
.y11_c00413{bottom:251.490450px;}
.y10_c00413{bottom:282.540450px;}
.yf_c00413{bottom:322.590450px;}
.ye_c00413{bottom:353.550450px;}
.yd_c00413{bottom:384.600450px;}
.yc_c00413{bottom:415.740450px;}
.yb_c00413{bottom:446.790450px;}
.ya_c00413{bottom:486.840450px;}
.y9_c00413{bottom:517.800450px;}
.y8_c00413{bottom:548.850450px;}
.y7_c00413{bottom:579.990450px;}
.y6_c00413{bottom:611.040450px;}
.y5_c00413{bottom:651.090450px;}
.y4_c00413{bottom:682.140450px;}
.y3_c00413{bottom:718.230450px;}
.h1_c00413{height:63.175781px;}
.h2_c00413{height:64.546875px;}
.h3_c00413{height:75.093750px;}
.h0_c00413{height:1263.000000px;}
.w1_c00413{width:892.500000px;}
.w0_c00413{width:892.830000px;}
.x0_c00413{left:0.000000px;}
.x2_c00413{left:127.620000px;}
.x1_c00413{left:695.880000px;}
.x3_c00413{left:723.870000px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.lsc_c00413{letter-spacing:-0.076800pt;}
.lsd_c00413{letter-spacing:-0.070400pt;}
.lsb_c00413{letter-spacing:-0.051200pt;}
.ls4_c00413{letter-spacing:-0.044800pt;}
.ls9_c00413{letter-spacing:-0.038400pt;}
.ls3_c00413{letter-spacing:-0.032000pt;}
.ls8_c00413{letter-spacing:-0.025600pt;}
.lse_c00413{letter-spacing:-0.019200pt;}
.ls7_c00413{letter-spacing:-0.012800pt;}
.ls6_c00413{letter-spacing:-0.006400pt;}
.ls2_c00413{letter-spacing:0.000000pt;}
.ls1_c00413{letter-spacing:0.006400pt;}
.ls5_c00413{letter-spacing:0.019200pt;}
.ls0_c00413{letter-spacing:0.128000pt;}
.lsa_c00413{letter-spacing:0.134400pt;}
.ws10_c00413{word-spacing:-1.139200pt;}
.ws1b_c00413{word-spacing:-0.825600pt;}
.ws1a_c00413{word-spacing:-0.806400pt;}
.ws12_c00413{word-spacing:-0.787200pt;}
.ws11_c00413{word-spacing:-0.742400pt;}
.ws9_c00413{word-spacing:-0.492800pt;}
.ws8_c00413{word-spacing:-0.473600pt;}
.ws1c_c00413{word-spacing:-0.198400pt;}
.ws1d_c00413{word-spacing:-0.185600pt;}
.ws1e_c00413{word-spacing:-0.153600pt;}
.ws0_c00413{word-spacing:0.000000pt;}
.wsd_c00413{word-spacing:0.006400pt;}
.ws16_c00413{word-spacing:0.147200pt;}
.wsc_c00413{word-spacing:0.185600pt;}
.ws7_c00413{word-spacing:1.612800pt;}
.ws6_c00413{word-spacing:1.644800pt;}
.ws5_c00413{word-spacing:1.772800pt;}
.ws13_c00413{word-spacing:3.987200pt;}
.ws15_c00413{word-spacing:4.012800pt;}
.ws14_c00413{word-spacing:4.108800pt;}
.ws1f_c00413{word-spacing:6.572800pt;}
.wsa_c00413{word-spacing:9.107200pt;}
.wsb_c00413{word-spacing:9.139200pt;}
.wse_c00413{word-spacing:15.174400pt;}
.wsf_c00413{word-spacing:15.206400pt;}
.ws18_c00413{word-spacing:16.486400pt;}
.ws19_c00413{word-spacing:16.531200pt;}
.ws17_c00413{word-spacing:19.379200pt;}
.ws1_c00413{word-spacing:28.012800pt;}
.ws2_c00413{word-spacing:28.025600pt;}
.ws3_c00413{word-spacing:49.747200pt;}
.ws4_c00413{word-spacing:49.849600pt;}
._1_c00413{margin-left:-1.024000pt;}
._0_c00413{width:0.998400pt;}
.fs0_c00413{font-size:64.000000pt;}
.y0_c00413{bottom:0.000000pt;}
.y2_c00413{bottom:41.627067pt;}
.y1_c00413{bottom:60.027067pt;}
.y14_c00413{bottom:140.667067pt;}
.y13_c00413{bottom:168.267067pt;}
.y12_c00413{bottom:195.867067pt;}
.y11_c00413{bottom:223.547067pt;}
.y10_c00413{bottom:251.147067pt;}
.yf_c00413{bottom:286.747067pt;}
.ye_c00413{bottom:314.267067pt;}
.yd_c00413{bottom:341.867067pt;}
.yc_c00413{bottom:369.547067pt;}
.yb_c00413{bottom:397.147067pt;}
.ya_c00413{bottom:432.747067pt;}
.y9_c00413{bottom:460.267067pt;}
.y8_c00413{bottom:487.867067pt;}
.y7_c00413{bottom:515.547067pt;}
.y6_c00413{bottom:543.147067pt;}
.y5_c00413{bottom:578.747067pt;}
.y4_c00413{bottom:606.347067pt;}
.y3_c00413{bottom:638.427067pt;}
.h1_c00413{height:56.156250pt;}
.h2_c00413{height:57.375000pt;}
.h3_c00413{height:66.750000pt;}
.h0_c00413{height:1122.666667pt;}
.w1_c00413{width:793.333333pt;}
.w0_c00413{width:793.626667pt;}
.x0_c00413{left:0.000000pt;}
.x2_c00413{left:113.440000pt;}
.x1_c00413{left:618.560000pt;}
.x3_c00413{left:643.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4281bedd143d11b81549d561.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.093262;font-style:normal;font-weight:normal;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_c283f7106f89dfbb1ee475cc.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00414;src:url('chunks/assets/font_d2ca2f0edabaa7efd7507781.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00414{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.lsf_c00414{letter-spacing:-0.266400px;}
.ls10_c00414{letter-spacing:-0.108000px;}
.ls6_c00414{letter-spacing:-0.093600px;}
.ls15_c00414{letter-spacing:-0.086400px;}
.ls13_c00414{letter-spacing:-0.079200px;}
.ls11_c00414{letter-spacing:-0.072000px;}
.lse_c00414{letter-spacing:-0.064800px;}
.lsd_c00414{letter-spacing:-0.057600px;}
.lsa_c00414{letter-spacing:-0.050400px;}
.lsb_c00414{letter-spacing:-0.043200px;}
.ls8_c00414{letter-spacing:-0.036000px;}
.ls7_c00414{letter-spacing:-0.028800px;}
.ls5_c00414{letter-spacing:-0.021600px;}
.ls4_c00414{letter-spacing:-0.014400px;}
.ls9_c00414{letter-spacing:-0.007200px;}
.ls3_c00414{letter-spacing:0.000000px;}
.ls1_c00414{letter-spacing:0.007200px;}
.ls14_c00414{letter-spacing:0.014400px;}
.ls2_c00414{letter-spacing:0.028800px;}
.ls0_c00414{letter-spacing:0.072000px;}
.lsc_c00414{letter-spacing:0.151200px;}
.ls12_c00414{letter-spacing:0.216000px;}
.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;}
}
.ws2_c00414{word-spacing:-20.044800px;}
.ws0_c00414{word-spacing:-20.016000px;}
.ws1_c00414{word-spacing:-19.908000px;}
.ws38_c00414{word-spacing:-2.318400px;}
.ws39_c00414{word-spacing:-2.239200px;}
.ws3_c00414{word-spacing:0.000000px;}
.ws25_c00414{word-spacing:0.108000px;}
.ws26_c00414{word-spacing:0.187200px;}
.ws2e_c00414{word-spacing:0.432000px;}
.ws2f_c00414{word-spacing:0.518400px;}
.ws2d_c00414{word-spacing:0.540000px;}
.ws34_c00414{word-spacing:0.554400px;}
.ws35_c00414{word-spacing:0.590400px;}
.wsb_c00414{word-spacing:0.835200px;}
.ws1f_c00414{word-spacing:0.921600px;}
.wsc_c00414{word-spacing:0.993600px;}
.ws3b_c00414{word-spacing:1.252800px;}
.ws3a_c00414{word-spacing:1.404000px;}
.ws5_c00414{word-spacing:2.246400px;}
.ws6_c00414{word-spacing:2.412000px;}
.ws7_c00414{word-spacing:2.692800px;}
.ws8_c00414{word-spacing:2.714400px;}
.ws32_c00414{word-spacing:3.024000px;}
.ws30_c00414{word-spacing:3.067200px;}
.ws31_c00414{word-spacing:3.088800px;}
.ws4_c00414{word-spacing:3.412800px;}
.ws9_c00414{word-spacing:3.765600px;}
.wsa_c00414{word-spacing:3.808800px;}
.ws36_c00414{word-spacing:4.500000px;}
.ws37_c00414{word-spacing:4.514400px;}
.ws1d_c00414{word-spacing:4.860000px;}
.ws1e_c00414{word-spacing:4.975200px;}
.ws1b_c00414{word-spacing:5.212800px;}
.ws1c_c00414{word-spacing:5.256000px;}
.ws27_c00414{word-spacing:6.681600px;}
.ws28_c00414{word-spacing:6.717600px;}
.ws16_c00414{word-spacing:14.212800px;}
.ws20_c00414{word-spacing:14.234400px;}
.ws17_c00414{word-spacing:14.263200px;}
.ws21_c00414{word-spacing:14.342400px;}
.ws29_c00414{word-spacing:15.292800px;}
.ws2a_c00414{word-spacing:15.321600px;}
.ws11_c00414{word-spacing:20.966400px;}
.ws10_c00414{word-spacing:21.326400px;}
.wsf_c00414{word-spacing:21.420000px;}
.wse_c00414{word-spacing:21.434400px;}
.ws24_c00414{word-spacing:22.845600px;}
.ws23_c00414{word-spacing:22.852800px;}
.ws1a_c00414{word-spacing:24.307200px;}
.wsd_c00414{word-spacing:24.336000px;}
.ws12_c00414{word-spacing:28.634400px;}
.ws13_c00414{word-spacing:28.663200px;}
.ws22_c00414{word-spacing:35.092800px;}
.ws33_c00414{word-spacing:35.445600px;}
.ws2b_c00414{word-spacing:40.867200px;}
.ws2c_c00414{word-spacing:40.903200px;}
.ws19_c00414{word-spacing:42.177600px;}
.ws18_c00414{word-spacing:42.285600px;}
.ws15_c00414{word-spacing:58.111200px;}
.ws14_c00414{word-spacing:58.147200px;}
._1_c00414{margin-left:-1.152000px;}
._0_c00414{width:1.094400px;}
.fc0_c00414{color:rgb(0,0,0);}
.fs0_c00414{font-size:72.000000px;}
.y0_c00414{bottom:0.000000px;}
.y2_c00414{bottom:46.830450px;}
.y1_c00414{bottom:67.530450px;}
.y21_c00414{bottom:147.990450px;}
.y20_c00414{bottom:179.040450px;}
.y1f_c00414{bottom:210.090450px;}
.y1e_c00414{bottom:241.140450px;}
.y1d_c00414{bottom:272.280450px;}
.y1c_c00414{bottom:303.330450px;}
.y1b_c00414{bottom:334.380450px;}
.y1a_c00414{bottom:365.430450px;}
.y19_c00414{bottom:396.390450px;}
.y18_c00414{bottom:436.440450px;}
.y17_c00414{bottom:467.400450px;}
.y16_c00414{bottom:498.450450px;}
.y15_c00414{bottom:529.590450px;}
.y14_c00414{bottom:560.640450px;}
.y13_c00414{bottom:591.690450px;}
.y12_c00414{bottom:622.650450px;}
.y11_c00414{bottom:653.700450px;}
.y10_c00414{bottom:684.840450px;}
.yf_c00414{bottom:715.890450px;}
.ye_c00414{bottom:746.940450px;}
.yd_c00414{bottom:777.900450px;}
.yc_c00414{bottom:809.040450px;}
.yb_c00414{bottom:840.090450px;}
.ya_c00414{bottom:871.140450px;}
.y9_c00414{bottom:902.190450px;}
.y8_c00414{bottom:942.240450px;}
.y7_c00414{bottom:973.200450px;}
.y6_c00414{bottom:1004.250450px;}
.y5_c00414{bottom:1035.390450px;}
.y4_c00414{bottom:1066.440450px;}
.y3_c00414{bottom:1097.400450px;}
.h1_c00414{height:63.175781px;}
.h3_c00414{height:64.546875px;}
.h2_c00414{height:75.093750px;}
.h0_c00414{height:1263.000000px;}
.w1_c00414{width:892.500000px;}
.w0_c00414{width:892.830000px;}
.x0_c00414{left:0.000000px;}
.x2_c00414{left:170.100000px;}
.x1_c00414{left:738.360000px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.lsf_c00414{letter-spacing:-0.236800pt;}
.ls10_c00414{letter-spacing:-0.096000pt;}
.ls6_c00414{letter-spacing:-0.083200pt;}
.ls15_c00414{letter-spacing:-0.076800pt;}
.ls13_c00414{letter-spacing:-0.070400pt;}
.ls11_c00414{letter-spacing:-0.064000pt;}
.lse_c00414{letter-spacing:-0.057600pt;}
.lsd_c00414{letter-spacing:-0.051200pt;}
.lsa_c00414{letter-spacing:-0.044800pt;}
.lsb_c00414{letter-spacing:-0.038400pt;}
.ls8_c00414{letter-spacing:-0.032000pt;}
.ls7_c00414{letter-spacing:-0.025600pt;}
.ls5_c00414{letter-spacing:-0.019200pt;}
.ls4_c00414{letter-spacing:-0.012800pt;}
.ls9_c00414{letter-spacing:-0.006400pt;}
.ls3_c00414{letter-spacing:0.000000pt;}
.ls1_c00414{letter-spacing:0.006400pt;}
.ls14_c00414{letter-spacing:0.012800pt;}
.ls2_c00414{letter-spacing:0.025600pt;}
.ls0_c00414{letter-spacing:0.064000pt;}
.lsc_c00414{letter-spacing:0.134400pt;}
.ls12_c00414{letter-spacing:0.192000pt;}
.ws2_c00414{word-spacing:-17.817600pt;}
.ws0_c00414{word-spacing:-17.792000pt;}
.ws1_c00414{word-spacing:-17.696000pt;}
.ws38_c00414{word-spacing:-2.060800pt;}
.ws39_c00414{word-spacing:-1.990400pt;}
.ws3_c00414{word-spacing:0.000000pt;}
.ws25_c00414{word-spacing:0.096000pt;}
.ws26_c00414{word-spacing:0.166400pt;}
.ws2e_c00414{word-spacing:0.384000pt;}
.ws2f_c00414{word-spacing:0.460800pt;}
.ws2d_c00414{word-spacing:0.480000pt;}
.ws34_c00414{word-spacing:0.492800pt;}
.ws35_c00414{word-spacing:0.524800pt;}
.wsb_c00414{word-spacing:0.742400pt;}
.ws1f_c00414{word-spacing:0.819200pt;}
.wsc_c00414{word-spacing:0.883200pt;}
.ws3b_c00414{word-spacing:1.113600pt;}
.ws3a_c00414{word-spacing:1.248000pt;}
.ws5_c00414{word-spacing:1.996800pt;}
.ws6_c00414{word-spacing:2.144000pt;}
.ws7_c00414{word-spacing:2.393600pt;}
.ws8_c00414{word-spacing:2.412800pt;}
.ws32_c00414{word-spacing:2.688000pt;}
.ws30_c00414{word-spacing:2.726400pt;}
.ws31_c00414{word-spacing:2.745600pt;}
.ws4_c00414{word-spacing:3.033600pt;}
.ws9_c00414{word-spacing:3.347200pt;}
.wsa_c00414{word-spacing:3.385600pt;}
.ws36_c00414{word-spacing:4.000000pt;}
.ws37_c00414{word-spacing:4.012800pt;}
.ws1d_c00414{word-spacing:4.320000pt;}
.ws1e_c00414{word-spacing:4.422400pt;}
.ws1b_c00414{word-spacing:4.633600pt;}
.ws1c_c00414{word-spacing:4.672000pt;}
.ws27_c00414{word-spacing:5.939200pt;}
.ws28_c00414{word-spacing:5.971200pt;}
.ws16_c00414{word-spacing:12.633600pt;}
.ws20_c00414{word-spacing:12.652800pt;}
.ws17_c00414{word-spacing:12.678400pt;}
.ws21_c00414{word-spacing:12.748800pt;}
.ws29_c00414{word-spacing:13.593600pt;}
.ws2a_c00414{word-spacing:13.619200pt;}
.ws11_c00414{word-spacing:18.636800pt;}
.ws10_c00414{word-spacing:18.956800pt;}
.wsf_c00414{word-spacing:19.040000pt;}
.wse_c00414{word-spacing:19.052800pt;}
.ws24_c00414{word-spacing:20.307200pt;}
.ws23_c00414{word-spacing:20.313600pt;}
.ws1a_c00414{word-spacing:21.606400pt;}
.wsd_c00414{word-spacing:21.632000pt;}
.ws12_c00414{word-spacing:25.452800pt;}
.ws13_c00414{word-spacing:25.478400pt;}
.ws22_c00414{word-spacing:31.193600pt;}
.ws33_c00414{word-spacing:31.507200pt;}
.ws2b_c00414{word-spacing:36.326400pt;}
.ws2c_c00414{word-spacing:36.358400pt;}
.ws19_c00414{word-spacing:37.491200pt;}
.ws18_c00414{word-spacing:37.587200pt;}
.ws15_c00414{word-spacing:51.654400pt;}
.ws14_c00414{word-spacing:51.686400pt;}
._1_c00414{margin-left:-1.024000pt;}
._0_c00414{width:0.972800pt;}
.fs0_c00414{font-size:64.000000pt;}
.y0_c00414{bottom:0.000000pt;}
.y2_c00414{bottom:41.627067pt;}
.y1_c00414{bottom:60.027067pt;}
.y21_c00414{bottom:131.547067pt;}
.y20_c00414{bottom:159.147067pt;}
.y1f_c00414{bottom:186.747067pt;}
.y1e_c00414{bottom:214.347067pt;}
.y1d_c00414{bottom:242.027067pt;}
.y1c_c00414{bottom:269.627067pt;}
.y1b_c00414{bottom:297.227067pt;}
.y1a_c00414{bottom:324.827067pt;}
.y19_c00414{bottom:352.347067pt;}
.y18_c00414{bottom:387.947067pt;}
.y17_c00414{bottom:415.467067pt;}
.y16_c00414{bottom:443.067067pt;}
.y15_c00414{bottom:470.747067pt;}
.y14_c00414{bottom:498.347067pt;}
.y13_c00414{bottom:525.947067pt;}
.y12_c00414{bottom:553.467067pt;}
.y11_c00414{bottom:581.067067pt;}
.y10_c00414{bottom:608.747067pt;}
.yf_c00414{bottom:636.347067pt;}
.ye_c00414{bottom:663.947067pt;}
.yd_c00414{bottom:691.467067pt;}
.yc_c00414{bottom:719.147067pt;}
.yb_c00414{bottom:746.747067pt;}
.ya_c00414{bottom:774.347067pt;}
.y9_c00414{bottom:801.947067pt;}
.y8_c00414{bottom:837.547067pt;}
.y7_c00414{bottom:865.067067pt;}
.y6_c00414{bottom:892.667067pt;}
.y5_c00414{bottom:920.347067pt;}
.y4_c00414{bottom:947.947067pt;}
.y3_c00414{bottom:975.467067pt;}
.h1_c00414{height:56.156250pt;}
.h3_c00414{height:57.375000pt;}
.h2_c00414{height:66.750000pt;}
.h0_c00414{height:1122.666667pt;}
.w1_c00414{width:793.333333pt;}
.w0_c00414{width:793.626667pt;}
.x0_c00414{left:0.000000pt;}
.x2_c00414{left:151.200000pt;}
.x1_c00414{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0857182981ebe5a4d597ccc9.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.093262;font-style:normal;font-weight:normal;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_67863ca51ac5269fd4dfd25c.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00415;src:url('chunks/assets/font_ff37bfb75d46d50efb25c3f4.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:1.106934;font-style:normal;font-weight:normal;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_76f4e71d711e17050f5fc390.woff2')format("woff");}.ff4_c00415{font-family:ff4_c00415;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls11_c00415{letter-spacing:-0.208800px;}
.ls12_c00415{letter-spacing:-0.151200px;}
.ls13_c00415{letter-spacing:-0.129600px;}
.lsb_c00415{letter-spacing:-0.079200px;}
.ls10_c00415{letter-spacing:-0.064800px;}
.ls7_c00415{letter-spacing:-0.057600px;}
.lsd_c00415{letter-spacing:-0.050400px;}
.ls6_c00415{letter-spacing:-0.043200px;}
.lse_c00415{letter-spacing:-0.036000px;}
.ls9_c00415{letter-spacing:-0.028800px;}
.lsc_c00415{letter-spacing:-0.021600px;}
.lsa_c00415{letter-spacing:-0.014400px;}
.ls8_c00415{letter-spacing:-0.007200px;}
.ls5_c00415{letter-spacing:0.000000px;}
.ls0_c00415{letter-spacing:0.036000px;}
.ls1_c00415{letter-spacing:0.064800px;}
.ls4_c00415{letter-spacing:0.072000px;}
.ls3_c00415{letter-spacing:0.086400px;}
.ls2_c00415{letter-spacing:0.144000px;}
.lsf_c00415{letter-spacing:0.151200px;}
.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;}
}
.ws29_c00415{word-spacing:-4.118400px;}
.ws1_c00415{word-spacing:-2.750400px;}
.ws2_c00415{word-spacing:-2.678400px;}
.wsb_c00415{word-spacing:-2.347200px;}
.wsa_c00415{word-spacing:-2.268000px;}
.ws33_c00415{word-spacing:-1.994400px;}
.ws32_c00415{word-spacing:-1.879200px;}
.ws28_c00415{word-spacing:-1.317600px;}
.ws2e_c00415{word-spacing:-1.245600px;}
.ws27_c00415{word-spacing:-1.159200px;}
.ws2f_c00415{word-spacing:-0.892800px;}
.ws3_c00415{word-spacing:-0.144000px;}
.ws0_c00415{word-spacing:0.000000px;}
.ws4_c00415{word-spacing:0.165600px;}
.ws18_c00415{word-spacing:0.172800px;}
.ws17_c00415{word-spacing:0.252000px;}
.ws13_c00415{word-spacing:0.878400px;}
.ws14_c00415{word-spacing:0.921600px;}
.ws2d_c00415{word-spacing:2.052000px;}
.ws1b_c00415{word-spacing:2.692800px;}
.ws1c_c00415{word-spacing:2.714400px;}
.wsf_c00415{word-spacing:4.096800px;}
.wse_c00415{word-spacing:4.140000px;}
.ws20_c00415{word-spacing:5.918400px;}
.ws21_c00415{word-spacing:5.990400px;}
.ws24_c00415{word-spacing:7.272000px;}
.ws23_c00415{word-spacing:7.394400px;}
.ws12_c00415{word-spacing:7.754400px;}
.ws11_c00415{word-spacing:7.768800px;}
.ws2c_c00415{word-spacing:8.092800px;}
.ws1d_c00415{word-spacing:10.310400px;}
.wsc_c00415{word-spacing:13.456800px;}
.wsd_c00415{word-spacing:13.507200px;}
.ws16_c00415{word-spacing:14.450400px;}
.ws15_c00415{word-spacing:14.493600px;}
.ws8_c00415{word-spacing:15.062400px;}
.ws7_c00415{word-spacing:15.307200px;}
.ws9_c00415{word-spacing:15.357600px;}
.ws36_c00415{word-spacing:19.526400px;}
.ws37_c00415{word-spacing:19.612800px;}
.ws34_c00415{word-spacing:19.627200px;}
.ws35_c00415{word-spacing:19.656000px;}
.ws10_c00415{word-spacing:19.965600px;}
.ws30_c00415{word-spacing:21.456000px;}
.ws31_c00415{word-spacing:21.528000px;}
.ws1f_c00415{word-spacing:23.493600px;}
.ws2a_c00415{word-spacing:23.572800px;}
.ws1e_c00415{word-spacing:23.616000px;}
.ws2b_c00415{word-spacing:23.637600px;}
.ws19_c00415{word-spacing:31.543200px;}
.ws6_c00415{word-spacing:41.572800px;}
.ws5_c00415{word-spacing:41.587200px;}
.ws22_c00415{word-spacing:51.300000px;}
.ws1a_c00415{word-spacing:57.456000px;}
.ws25_c00415{word-spacing:70.725600px;}
.ws26_c00415{word-spacing:70.732800px;}
._0_c00415{width:1.224000px;}
.fc0_c00415{color:rgb(0,0,0);}
.fs0_c00415{font-size:72.000000px;}
.y0_c00415{bottom:0.000000px;}
.y2_c00415{bottom:46.830450px;}
.y1_c00415{bottom:67.530450px;}
.y21_c00415{bottom:148.080450px;}
.y20_c00415{bottom:179.040450px;}
.y1f_c00415{bottom:210.180450px;}
.y1e_c00415{bottom:241.230450px;}
.y1d_c00415{bottom:272.190450px;}
.y1c_c00415{bottom:303.330450px;}
.y1b_c00415{bottom:334.380450px;}
.y1a_c00415{bottom:365.340450px;}
.y19_c00415{bottom:396.300450px;}
.y18_c00415{bottom:427.440450px;}
.y17_c00415{bottom:458.490450px;}
.y16_c00415{bottom:489.540450px;}
.y15_c00415{bottom:520.590450px;}
.y14_c00415{bottom:551.550450px;}
.y13_c00415{bottom:582.600450px;}
.y12_c00415{bottom:613.740450px;}
.y11_c00415{bottom:644.790450px;}
.y10_c00415{bottom:675.840450px;}
.yf_c00415{bottom:715.890450px;}
.ye_c00415{bottom:746.940450px;}
.yd_c00415{bottom:777.990450px;}
.yc_c00415{bottom:808.950450px;}
.yb_c00415{bottom:840.090450px;}
.ya_c00415{bottom:871.140450px;}
.y9_c00415{bottom:902.100450px;}
.y8_c00415{bottom:933.150450px;}
.y7_c00415{bottom:964.290450px;}
.y6_c00415{bottom:995.340450px;}
.y5_c00415{bottom:1035.390450px;}
.y4_c00415{bottom:1066.350450px;}
.y3_c00415{bottom:1097.400450px;}
.h1_c00415{height:63.175781px;}
.h3_c00415{height:64.546875px;}
.h2_c00415{height:75.093750px;}
.h0_c00415{height:1263.000000px;}
.w1_c00415{width:892.500000px;}
.w0_c00415{width:892.830000px;}
.x0_c00415{left:0.000000px;}
.x2_c00415{left:127.620000px;}
.x1_c00415{left:695.880000px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls11_c00415{letter-spacing:-0.185600pt;}
.ls12_c00415{letter-spacing:-0.134400pt;}
.ls13_c00415{letter-spacing:-0.115200pt;}
.lsb_c00415{letter-spacing:-0.070400pt;}
.ls10_c00415{letter-spacing:-0.057600pt;}
.ls7_c00415{letter-spacing:-0.051200pt;}
.lsd_c00415{letter-spacing:-0.044800pt;}
.ls6_c00415{letter-spacing:-0.038400pt;}
.lse_c00415{letter-spacing:-0.032000pt;}
.ls9_c00415{letter-spacing:-0.025600pt;}
.lsc_c00415{letter-spacing:-0.019200pt;}
.lsa_c00415{letter-spacing:-0.012800pt;}
.ls8_c00415{letter-spacing:-0.006400pt;}
.ls5_c00415{letter-spacing:0.000000pt;}
.ls0_c00415{letter-spacing:0.032000pt;}
.ls1_c00415{letter-spacing:0.057600pt;}
.ls4_c00415{letter-spacing:0.064000pt;}
.ls3_c00415{letter-spacing:0.076800pt;}
.ls2_c00415{letter-spacing:0.128000pt;}
.lsf_c00415{letter-spacing:0.134400pt;}
.ws29_c00415{word-spacing:-3.660800pt;}
.ws1_c00415{word-spacing:-2.444800pt;}
.ws2_c00415{word-spacing:-2.380800pt;}
.wsb_c00415{word-spacing:-2.086400pt;}
.wsa_c00415{word-spacing:-2.016000pt;}
.ws33_c00415{word-spacing:-1.772800pt;}
.ws32_c00415{word-spacing:-1.670400pt;}
.ws28_c00415{word-spacing:-1.171200pt;}
.ws2e_c00415{word-spacing:-1.107200pt;}
.ws27_c00415{word-spacing:-1.030400pt;}
.ws2f_c00415{word-spacing:-0.793600pt;}
.ws3_c00415{word-spacing:-0.128000pt;}
.ws0_c00415{word-spacing:0.000000pt;}
.ws4_c00415{word-spacing:0.147200pt;}
.ws18_c00415{word-spacing:0.153600pt;}
.ws17_c00415{word-spacing:0.224000pt;}
.ws13_c00415{word-spacing:0.780800pt;}
.ws14_c00415{word-spacing:0.819200pt;}
.ws2d_c00415{word-spacing:1.824000pt;}
.ws1b_c00415{word-spacing:2.393600pt;}
.ws1c_c00415{word-spacing:2.412800pt;}
.wsf_c00415{word-spacing:3.641600pt;}
.wse_c00415{word-spacing:3.680000pt;}
.ws20_c00415{word-spacing:5.260800pt;}
.ws21_c00415{word-spacing:5.324800pt;}
.ws24_c00415{word-spacing:6.464000pt;}
.ws23_c00415{word-spacing:6.572800pt;}
.ws12_c00415{word-spacing:6.892800pt;}
.ws11_c00415{word-spacing:6.905600pt;}
.ws2c_c00415{word-spacing:7.193600pt;}
.ws1d_c00415{word-spacing:9.164800pt;}
.wsc_c00415{word-spacing:11.961600pt;}
.wsd_c00415{word-spacing:12.006400pt;}
.ws16_c00415{word-spacing:12.844800pt;}
.ws15_c00415{word-spacing:12.883200pt;}
.ws8_c00415{word-spacing:13.388800pt;}
.ws7_c00415{word-spacing:13.606400pt;}
.ws9_c00415{word-spacing:13.651200pt;}
.ws36_c00415{word-spacing:17.356800pt;}
.ws37_c00415{word-spacing:17.433600pt;}
.ws34_c00415{word-spacing:17.446400pt;}
.ws35_c00415{word-spacing:17.472000pt;}
.ws10_c00415{word-spacing:17.747200pt;}
.ws30_c00415{word-spacing:19.072000pt;}
.ws31_c00415{word-spacing:19.136000pt;}
.ws1f_c00415{word-spacing:20.883200pt;}
.ws2a_c00415{word-spacing:20.953600pt;}
.ws1e_c00415{word-spacing:20.992000pt;}
.ws2b_c00415{word-spacing:21.011200pt;}
.ws19_c00415{word-spacing:28.038400pt;}
.ws6_c00415{word-spacing:36.953600pt;}
.ws5_c00415{word-spacing:36.966400pt;}
.ws22_c00415{word-spacing:45.600000pt;}
.ws1a_c00415{word-spacing:51.072000pt;}
.ws25_c00415{word-spacing:62.867200pt;}
.ws26_c00415{word-spacing:62.873600pt;}
._0_c00415{width:1.088000pt;}
.fs0_c00415{font-size:64.000000pt;}
.y0_c00415{bottom:0.000000pt;}
.y2_c00415{bottom:41.627067pt;}
.y1_c00415{bottom:60.027067pt;}
.y21_c00415{bottom:131.627067pt;}
.y20_c00415{bottom:159.147067pt;}
.y1f_c00415{bottom:186.827067pt;}
.y1e_c00415{bottom:214.427067pt;}
.y1d_c00415{bottom:241.947067pt;}
.y1c_c00415{bottom:269.627067pt;}
.y1b_c00415{bottom:297.227067pt;}
.y1a_c00415{bottom:324.747067pt;}
.y19_c00415{bottom:352.267067pt;}
.y18_c00415{bottom:379.947067pt;}
.y17_c00415{bottom:407.547067pt;}
.y16_c00415{bottom:435.147067pt;}
.y15_c00415{bottom:462.747067pt;}
.y14_c00415{bottom:490.267067pt;}
.y13_c00415{bottom:517.867067pt;}
.y12_c00415{bottom:545.547067pt;}
.y11_c00415{bottom:573.147067pt;}
.y10_c00415{bottom:600.747067pt;}
.yf_c00415{bottom:636.347067pt;}
.ye_c00415{bottom:663.947067pt;}
.yd_c00415{bottom:691.547067pt;}
.yc_c00415{bottom:719.067067pt;}
.yb_c00415{bottom:746.747067pt;}
.ya_c00415{bottom:774.347067pt;}
.y9_c00415{bottom:801.867067pt;}
.y8_c00415{bottom:829.467067pt;}
.y7_c00415{bottom:857.147067pt;}
.y6_c00415{bottom:884.747067pt;}
.y5_c00415{bottom:920.347067pt;}
.y4_c00415{bottom:947.867067pt;}
.y3_c00415{bottom:975.467067pt;}
.h1_c00415{height:56.156250pt;}
.h3_c00415{height:57.375000pt;}
.h2_c00415{height:66.750000pt;}
.h0_c00415{height:1122.666667pt;}
.w1_c00415{width:793.333333pt;}
.w0_c00415{width:793.626667pt;}
.x0_c00415{left:0.000000pt;}
.x2_c00415{left:113.440000pt;}
.x1_c00415{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_767d5f2fc8150c09f1eeb346.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.093262;font-style:normal;font-weight:normal;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_754aad40919edfb8cbf68d50.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00416;src:url('chunks/assets/font_5746f731c903bfc68ef4e170.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00416{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.ls8_c00416{letter-spacing:-0.057600px;}
.ls7_c00416{letter-spacing:-0.050400px;}
.ls6_c00416{letter-spacing:-0.043200px;}
.ls3_c00416{letter-spacing:-0.036000px;}
.ls4_c00416{letter-spacing:-0.028800px;}
.ls2_c00416{letter-spacing:-0.021600px;}
.ls5_c00416{letter-spacing:-0.014400px;}
.ls9_c00416{letter-spacing:-0.007200px;}
.ls1_c00416{letter-spacing:0.000000px;}
.ls0_c00416{letter-spacing:0.057600px;}
.lsa_c00416{letter-spacing:843.998400px;}
.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;}
}
.ws1a_c00416{word-spacing:-0.554400px;}
.ws6_c00416{word-spacing:-0.547200px;}
.ws8_c00416{word-spacing:-0.525600px;}
.ws9_c00416{word-spacing:-0.518400px;}
.ws7_c00416{word-spacing:-0.439200px;}
.ws0_c00416{word-spacing:0.000000px;}
.wsf_c00416{word-spacing:0.295200px;}
.wse_c00416{word-spacing:0.878400px;}
.wsd_c00416{word-spacing:0.914400px;}
.wsc_c00416{word-spacing:0.928800px;}
.ws3_c00416{word-spacing:4.154400px;}
.ws2_c00416{word-spacing:4.226400px;}
.wsa_c00416{word-spacing:6.307200px;}
.wsb_c00416{word-spacing:6.314400px;}
.ws19_c00416{word-spacing:6.652800px;}
.ws18_c00416{word-spacing:6.832800px;}
.ws15_c00416{word-spacing:8.380800px;}
.ws14_c00416{word-spacing:8.452800px;}
.ws12_c00416{word-spacing:8.733600px;}
.ws13_c00416{word-spacing:8.820000px;}
.ws5_c00416{word-spacing:9.460800px;}
.ws4_c00416{word-spacing:9.547200px;}
.ws11_c00416{word-spacing:10.260000px;}
.ws10_c00416{word-spacing:10.296000px;}
.ws1_c00416{word-spacing:14.220000px;}
.ws17_c00416{word-spacing:28.972800px;}
.ws16_c00416{word-spacing:28.994400px;}
._0_c00416{margin-left:-1.166400px;}
._1_c00416{width:1.152000px;}
.fc0_c00416{color:rgb(0,0,0);}
.fs0_c00416{font-size:72.000000px;}
.y0_c00416{bottom:0.000000px;}
.y2_c00416{bottom:46.830450px;}
.y1_c00416{bottom:67.530450px;}
.y13_c00416{bottom:573.690450px;}
.y12_c00416{bottom:613.740450px;}
.y11_c00416{bottom:653.790450px;}
.y10_c00416{bottom:684.840450px;}
.yf_c00416{bottom:715.890450px;}
.ye_c00416{bottom:746.940450px;}
.yd_c00416{bottom:777.990450px;}
.yc_c00416{bottom:809.040450px;}
.yb_c00416{bottom:840.090450px;}
.ya_c00416{bottom:880.140450px;}
.y9_c00416{bottom:911.190450px;}
.y8_c00416{bottom:942.150450px;}
.y7_c00416{bottom:973.200450px;}
.y6_c00416{bottom:1004.340450px;}
.y5_c00416{bottom:1035.390450px;}
.y4_c00416{bottom:1066.350450px;}
.y3_c00416{bottom:1097.400450px;}
.h1_c00416{height:63.175781px;}
.h3_c00416{height:64.546875px;}
.h2_c00416{height:75.093750px;}
.h0_c00416{height:1263.000000px;}
.w1_c00416{width:892.500000px;}
.w0_c00416{width:892.830000px;}
.x0_c00416{left:0.000000px;}
.x2_c00416{left:170.100000px;}
.x1_c00416{left:738.360000px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls8_c00416{letter-spacing:-0.051200pt;}
.ls7_c00416{letter-spacing:-0.044800pt;}
.ls6_c00416{letter-spacing:-0.038400pt;}
.ls3_c00416{letter-spacing:-0.032000pt;}
.ls4_c00416{letter-spacing:-0.025600pt;}
.ls2_c00416{letter-spacing:-0.019200pt;}
.ls5_c00416{letter-spacing:-0.012800pt;}
.ls9_c00416{letter-spacing:-0.006400pt;}
.ls1_c00416{letter-spacing:0.000000pt;}
.ls0_c00416{letter-spacing:0.051200pt;}
.lsa_c00416{letter-spacing:750.220800pt;}
.ws1a_c00416{word-spacing:-0.492800pt;}
.ws6_c00416{word-spacing:-0.486400pt;}
.ws8_c00416{word-spacing:-0.467200pt;}
.ws9_c00416{word-spacing:-0.460800pt;}
.ws7_c00416{word-spacing:-0.390400pt;}
.ws0_c00416{word-spacing:0.000000pt;}
.wsf_c00416{word-spacing:0.262400pt;}
.wse_c00416{word-spacing:0.780800pt;}
.wsd_c00416{word-spacing:0.812800pt;}
.wsc_c00416{word-spacing:0.825600pt;}
.ws3_c00416{word-spacing:3.692800pt;}
.ws2_c00416{word-spacing:3.756800pt;}
.wsa_c00416{word-spacing:5.606400pt;}
.wsb_c00416{word-spacing:5.612800pt;}
.ws19_c00416{word-spacing:5.913600pt;}
.ws18_c00416{word-spacing:6.073600pt;}
.ws15_c00416{word-spacing:7.449600pt;}
.ws14_c00416{word-spacing:7.513600pt;}
.ws12_c00416{word-spacing:7.763200pt;}
.ws13_c00416{word-spacing:7.840000pt;}
.ws5_c00416{word-spacing:8.409600pt;}
.ws4_c00416{word-spacing:8.486400pt;}
.ws11_c00416{word-spacing:9.120000pt;}
.ws10_c00416{word-spacing:9.152000pt;}
.ws1_c00416{word-spacing:12.640000pt;}
.ws17_c00416{word-spacing:25.753600pt;}
.ws16_c00416{word-spacing:25.772800pt;}
._0_c00416{margin-left:-1.036800pt;}
._1_c00416{width:1.024000pt;}
.fs0_c00416{font-size:64.000000pt;}
.y0_c00416{bottom:0.000000pt;}
.y2_c00416{bottom:41.627067pt;}
.y1_c00416{bottom:60.027067pt;}
.y13_c00416{bottom:509.947067pt;}
.y12_c00416{bottom:545.547067pt;}
.y11_c00416{bottom:581.147067pt;}
.y10_c00416{bottom:608.747067pt;}
.yf_c00416{bottom:636.347067pt;}
.ye_c00416{bottom:663.947067pt;}
.yd_c00416{bottom:691.547067pt;}
.yc_c00416{bottom:719.147067pt;}
.yb_c00416{bottom:746.747067pt;}
.ya_c00416{bottom:782.347067pt;}
.y9_c00416{bottom:809.947067pt;}
.y8_c00416{bottom:837.467067pt;}
.y7_c00416{bottom:865.067067pt;}
.y6_c00416{bottom:892.747067pt;}
.y5_c00416{bottom:920.347067pt;}
.y4_c00416{bottom:947.867067pt;}
.y3_c00416{bottom:975.467067pt;}
.h1_c00416{height:56.156250pt;}
.h3_c00416{height:57.375000pt;}
.h2_c00416{height:66.750000pt;}
.h0_c00416{height:1122.666667pt;}
.w1_c00416{width:793.333333pt;}
.w0_c00416{width:793.626667pt;}
.x0_c00416{left:0.000000pt;}
.x2_c00416{left:151.200000pt;}
.x1_c00416{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1a29c871cf9bef179bbdeda6.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00417{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00417{vertical-align:0.000000px;}
.ls0_c00417{letter-spacing:0.000000px;}
.ls1_c00417{letter-spacing:843.998400px;}
.sc__c00417{text-shadow:none;}
.sc0_c00417{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00417{-webkit-text-stroke:0px transparent;}
.sc0_c00417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00417{word-spacing:0.000000px;}
.fc0_c00417{color:rgb(0,0,0);}
.fs0_c00417{font-size:72.000000px;}
.y0_c00417{bottom:0.000000px;}
.y2_c00417{bottom:46.830450px;}
.y1_c00417{bottom:67.530450px;}
.y5_c00417{bottom:1017.390450px;}
.y4_c00417{bottom:1057.440450px;}
.y3_c00417{bottom:1097.490450px;}
.h1_c00417{height:63.175781px;}
.h2_c00417{height:64.546875px;}
.h0_c00417{height:1263.000000px;}
.w1_c00417{width:892.500000px;}
.w0_c00417{width:892.830000px;}
.x0_c00417{left:0.000000px;}
.x2_c00417{left:127.620000px;}
.x1_c00417{left:695.880000px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls0_c00417{letter-spacing:0.000000pt;}
.ls1_c00417{letter-spacing:750.220800pt;}
.ws0_c00417{word-spacing:0.000000pt;}
.fs0_c00417{font-size:64.000000pt;}
.y0_c00417{bottom:0.000000pt;}
.y2_c00417{bottom:41.627067pt;}
.y1_c00417{bottom:60.027067pt;}
.y5_c00417{bottom:904.347067pt;}
.y4_c00417{bottom:939.947067pt;}
.y3_c00417{bottom:975.547067pt;}
.h1_c00417{height:56.156250pt;}
.h2_c00417{height:57.375000pt;}
.h0_c00417{height:1122.666667pt;}
.w1_c00417{width:793.333333pt;}
.w0_c00417{width:793.626667pt;}
.x0_c00417{left:0.000000pt;}
.x2_c00417{left:113.440000pt;}
.x1_c00417{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5283835cca8909442e9f304b.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.093262;font-style:normal;font-weight:normal;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_5e2a05d96fb9b7d7e414e1c5.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00418;src:url('chunks/assets/font_74d0e46d6bef13b25b86e66a.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:1.106934;font-style:normal;font-weight:normal;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_557f0688545cded8e713d1f9.woff2')format("woff");}.ff4_c00418{font-family:ff4_c00418;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00418{letter-spacing:-0.093600px;}
.ls9_c00418{letter-spacing:-0.072000px;}
.lse_c00418{letter-spacing:-0.064800px;}
.lsc_c00418{letter-spacing:-0.057600px;}
.lsd_c00418{letter-spacing:-0.050400px;}
.ls4_c00418{letter-spacing:-0.043200px;}
.ls6_c00418{letter-spacing:-0.036000px;}
.ls5_c00418{letter-spacing:-0.028800px;}
.lsa_c00418{letter-spacing:-0.021600px;}
.ls8_c00418{letter-spacing:-0.014400px;}
.ls7_c00418{letter-spacing:-0.007200px;}
.ls3_c00418{letter-spacing:0.000000px;}
.ls2_c00418{letter-spacing:0.028800px;}
.ls0_c00418{letter-spacing:0.058716px;}
.ls1_c00418{letter-spacing:0.067104px;}
.sc__c00418{text-shadow:none;}
.sc0_c00418{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00418{-webkit-text-stroke:0px transparent;}
.sc0_c00418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00418{word-spacing:-20.016000px;}
.ws29_c00418{word-spacing:-4.485600px;}
.ws20_c00418{word-spacing:-4.053600px;}
.ws21_c00418{word-spacing:-4.024800px;}
.ws13_c00418{word-spacing:-3.765600px;}
.ws14_c00418{word-spacing:-3.708000px;}
.ws11_c00418{word-spacing:-3.441600px;}
.ws10_c00418{word-spacing:-3.412800px;}
.ws7_c00418{word-spacing:-3.189600px;}
.ws9_c00418{word-spacing:-3.160800px;}
.ws8_c00418{word-spacing:-3.110400px;}
.ws1b_c00418{word-spacing:-2.707200px;}
.ws1a_c00418{word-spacing:-2.606400px;}
.ws19_c00418{word-spacing:-1.965600px;}
.wsb_c00418{word-spacing:-1.958400px;}
.ws18_c00418{word-spacing:-1.886400px;}
.wsa_c00418{word-spacing:-0.914400px;}
.ws1_c00418{word-spacing:0.000000px;}
.ws2_c00418{word-spacing:0.033552px;}
.wsf_c00418{word-spacing:0.129600px;}
.ws3_c00418{word-spacing:0.150984px;}
.wse_c00418{word-spacing:0.165600px;}
.ws24_c00418{word-spacing:0.187200px;}
.ws25_c00418{word-spacing:0.194400px;}
.ws15_c00418{word-spacing:0.201600px;}
.ws26_c00418{word-spacing:0.432000px;}
.ws27_c00418{word-spacing:0.525600px;}
.ws2c_c00418{word-spacing:1.238400px;}
.ws2d_c00418{word-spacing:1.267200px;}
.ws1c_c00418{word-spacing:1.620000px;}
.ws28_c00418{word-spacing:1.929600px;}
.ws1d_c00418{word-spacing:1.994400px;}
.ws12_c00418{word-spacing:3.060000px;}
.ws5_c00418{word-spacing:5.652000px;}
.ws6_c00418{word-spacing:5.702400px;}
.ws1f_c00418{word-spacing:7.034400px;}
.ws1e_c00418{word-spacing:7.099200px;}
.ws16_c00418{word-spacing:15.271200px;}
.ws2e_c00418{word-spacing:16.034400px;}
.ws23_c00418{word-spacing:16.387200px;}
.ws22_c00418{word-spacing:16.401600px;}
.ws2a_c00418{word-spacing:18.640800px;}
.ws2b_c00418{word-spacing:18.756000px;}
.ws17_c00418{word-spacing:18.921600px;}
.wsd_c00418{word-spacing:23.220000px;}
.wsc_c00418{word-spacing:23.227200px;}
.ws4_c00418{word-spacing:187.589232px;}
._1_c00418{margin-left:-187.555680px;}
._2_c00418{width:1.209600px;}
._0_c00418{width:153.332640px;}
.fc0_c00418{color:rgb(0,0,0);}
.fs0_c00418{font-size:72.000000px;}
.fs1_c00418{font-size:83.880000px;}
.y0_c00418{bottom:0.000000px;}
.y2_c00418{bottom:46.830450px;}
.y1_c00418{bottom:67.530450px;}
.y27_c00418{bottom:151.950450px;}
.y26_c00418{bottom:181.650450px;}
.y25_c00418{bottom:202.350450px;}
.y24_c00418{bottom:223.050450px;}
.y23_c00418{bottom:243.750450px;}
.y22_c00418{bottom:264.450450px;}
.y21_c00418{bottom:285.150450px;}
.y20_c00418{bottom:305.850450px;}
.y1f_c00418{bottom:345.900450px;}
.y1e_c00418{bottom:375.600450px;}
.y1d_c00418{bottom:396.300450px;}
.y1c_c00418{bottom:417.000450px;}
.y1b_c00418{bottom:437.700450px;}
.y1a_c00418{bottom:458.400450px;}
.y19_c00418{bottom:479.100450px;}
.y18_c00418{bottom:499.800450px;}
.y17_c00418{bottom:520.500450px;}
.y16_c00418{bottom:541.200450px;}
.y15_c00418{bottom:561.900450px;}
.y14_c00418{bottom:582.600450px;}
.y13_c00418{bottom:603.300450px;}
.y12_c00418{bottom:624.000450px;}
.y11_c00418{bottom:644.700450px;}
.y10_c00418{bottom:665.400450px;}
.yf_c00418{bottom:686.010450px;}
.ye_c00418{bottom:706.710450px;}
.yd_c00418{bottom:746.760450px;}
.yc_c00418{bottom:786.810450px;}
.yb_c00418{bottom:817.860450px;}
.ya_c00418{bottom:848.910450px;}
.y9_c00418{bottom:879.960450px;}
.y8_c00418{bottom:911.010450px;}
.y7_c00418{bottom:942.060450px;}
.y6_c00418{bottom:982.110450px;}
.y5_c00418{bottom:1012.350450px;}
.y4_c00418{bottom:1064.370450px;}
.y3_c00418{bottom:1094.520450px;}
.h1_c00418{height:63.175781px;}
.h3_c00418{height:64.546875px;}
.h4_c00418{height:75.093750px;}
.h2_c00418{height:87.484219px;}
.h0_c00418{height:1263.000000px;}
.w1_c00418{width:892.500000px;}
.w0_c00418{width:892.830000px;}
.x0_c00418{left:0.000000px;}
.x2_c00418{left:170.100000px;}
.x3_c00418{left:197.100000px;}
.x4_c00418{left:224.100000px;}
.x5_c00418{left:245.430000px;}
.x1_c00418{left:738.360000px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.lsb_c00418{letter-spacing:-0.083200pt;}
.ls9_c00418{letter-spacing:-0.064000pt;}
.lse_c00418{letter-spacing:-0.057600pt;}
.lsc_c00418{letter-spacing:-0.051200pt;}
.lsd_c00418{letter-spacing:-0.044800pt;}
.ls4_c00418{letter-spacing:-0.038400pt;}
.ls6_c00418{letter-spacing:-0.032000pt;}
.ls5_c00418{letter-spacing:-0.025600pt;}
.lsa_c00418{letter-spacing:-0.019200pt;}
.ls8_c00418{letter-spacing:-0.012800pt;}
.ls7_c00418{letter-spacing:-0.006400pt;}
.ls3_c00418{letter-spacing:0.000000pt;}
.ls2_c00418{letter-spacing:0.025600pt;}
.ls0_c00418{letter-spacing:0.052192pt;}
.ls1_c00418{letter-spacing:0.059648pt;}
.ws0_c00418{word-spacing:-17.792000pt;}
.ws29_c00418{word-spacing:-3.987200pt;}
.ws20_c00418{word-spacing:-3.603200pt;}
.ws21_c00418{word-spacing:-3.577600pt;}
.ws13_c00418{word-spacing:-3.347200pt;}
.ws14_c00418{word-spacing:-3.296000pt;}
.ws11_c00418{word-spacing:-3.059200pt;}
.ws10_c00418{word-spacing:-3.033600pt;}
.ws7_c00418{word-spacing:-2.835200pt;}
.ws9_c00418{word-spacing:-2.809600pt;}
.ws8_c00418{word-spacing:-2.764800pt;}
.ws1b_c00418{word-spacing:-2.406400pt;}
.ws1a_c00418{word-spacing:-2.316800pt;}
.ws19_c00418{word-spacing:-1.747200pt;}
.wsb_c00418{word-spacing:-1.740800pt;}
.ws18_c00418{word-spacing:-1.676800pt;}
.wsa_c00418{word-spacing:-0.812800pt;}
.ws1_c00418{word-spacing:0.000000pt;}
.ws2_c00418{word-spacing:0.029824pt;}
.wsf_c00418{word-spacing:0.115200pt;}
.ws3_c00418{word-spacing:0.134208pt;}
.wse_c00418{word-spacing:0.147200pt;}
.ws24_c00418{word-spacing:0.166400pt;}
.ws25_c00418{word-spacing:0.172800pt;}
.ws15_c00418{word-spacing:0.179200pt;}
.ws26_c00418{word-spacing:0.384000pt;}
.ws27_c00418{word-spacing:0.467200pt;}
.ws2c_c00418{word-spacing:1.100800pt;}
.ws2d_c00418{word-spacing:1.126400pt;}
.ws1c_c00418{word-spacing:1.440000pt;}
.ws28_c00418{word-spacing:1.715200pt;}
.ws1d_c00418{word-spacing:1.772800pt;}
.ws12_c00418{word-spacing:2.720000pt;}
.ws5_c00418{word-spacing:5.024000pt;}
.ws6_c00418{word-spacing:5.068800pt;}
.ws1f_c00418{word-spacing:6.252800pt;}
.ws1e_c00418{word-spacing:6.310400pt;}
.ws16_c00418{word-spacing:13.574400pt;}
.ws2e_c00418{word-spacing:14.252800pt;}
.ws23_c00418{word-spacing:14.566400pt;}
.ws22_c00418{word-spacing:14.579200pt;}
.ws2a_c00418{word-spacing:16.569600pt;}
.ws2b_c00418{word-spacing:16.672000pt;}
.ws17_c00418{word-spacing:16.819200pt;}
.wsd_c00418{word-spacing:20.640000pt;}
.wsc_c00418{word-spacing:20.646400pt;}
.ws4_c00418{word-spacing:166.745984pt;}
._1_c00418{margin-left:-166.716160pt;}
._2_c00418{width:1.075200pt;}
._0_c00418{width:136.295680pt;}
.fs0_c00418{font-size:64.000000pt;}
.fs1_c00418{font-size:74.560000pt;}
.y0_c00418{bottom:0.000000pt;}
.y2_c00418{bottom:41.627067pt;}
.y1_c00418{bottom:60.027067pt;}
.y27_c00418{bottom:135.067067pt;}
.y26_c00418{bottom:161.467067pt;}
.y25_c00418{bottom:179.867067pt;}
.y24_c00418{bottom:198.267067pt;}
.y23_c00418{bottom:216.667067pt;}
.y22_c00418{bottom:235.067067pt;}
.y21_c00418{bottom:253.467067pt;}
.y20_c00418{bottom:271.867067pt;}
.y1f_c00418{bottom:307.467067pt;}
.y1e_c00418{bottom:333.867067pt;}
.y1d_c00418{bottom:352.267067pt;}
.y1c_c00418{bottom:370.667067pt;}
.y1b_c00418{bottom:389.067067pt;}
.y1a_c00418{bottom:407.467067pt;}
.y19_c00418{bottom:425.867067pt;}
.y18_c00418{bottom:444.267067pt;}
.y17_c00418{bottom:462.667067pt;}
.y16_c00418{bottom:481.067067pt;}
.y15_c00418{bottom:499.467067pt;}
.y14_c00418{bottom:517.867067pt;}
.y13_c00418{bottom:536.267067pt;}
.y12_c00418{bottom:554.667067pt;}
.y11_c00418{bottom:573.067067pt;}
.y10_c00418{bottom:591.467067pt;}
.yf_c00418{bottom:609.787067pt;}
.ye_c00418{bottom:628.187067pt;}
.yd_c00418{bottom:663.787067pt;}
.yc_c00418{bottom:699.387067pt;}
.yb_c00418{bottom:726.987067pt;}
.ya_c00418{bottom:754.587067pt;}
.y9_c00418{bottom:782.187067pt;}
.y8_c00418{bottom:809.787067pt;}
.y7_c00418{bottom:837.387067pt;}
.y6_c00418{bottom:872.987067pt;}
.y5_c00418{bottom:899.867067pt;}
.y4_c00418{bottom:946.107067pt;}
.y3_c00418{bottom:972.907067pt;}
.h1_c00418{height:56.156250pt;}
.h3_c00418{height:57.375000pt;}
.h4_c00418{height:66.750000pt;}
.h2_c00418{height:77.763750pt;}
.h0_c00418{height:1122.666667pt;}
.w1_c00418{width:793.333333pt;}
.w0_c00418{width:793.626667pt;}
.x0_c00418{left:0.000000pt;}
.x2_c00418{left:151.200000pt;}
.x3_c00418{left:175.200000pt;}
.x4_c00418{left:199.200000pt;}
.x5_c00418{left:218.160000pt;}
.x1_c00418{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3b48e1e2db813eb6b711d5d1.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.093262;font-style:normal;font-weight:normal;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_ff4c1ea1fe45f55fd83c5700.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.106934;font-style:normal;font-weight:normal;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_1bf05453386b596fd1c9e445.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00419{letter-spacing:-0.079200px;}
.lsb_c00419{letter-spacing:-0.072000px;}
.ls7_c00419{letter-spacing:-0.064800px;}
.ls4_c00419{letter-spacing:-0.057600px;}
.ls5_c00419{letter-spacing:-0.050400px;}
.ls8_c00419{letter-spacing:-0.043200px;}
.lsa_c00419{letter-spacing:-0.036000px;}
.lsc_c00419{letter-spacing:-0.028800px;}
.lsd_c00419{letter-spacing:-0.021600px;}
.ls6_c00419{letter-spacing:-0.014400px;}
.ls3_c00419{letter-spacing:-0.007200px;}
.ls2_c00419{letter-spacing:0.000000px;}
.ls1_c00419{letter-spacing:0.014400px;}
.ls0_c00419{letter-spacing:0.028800px;}
.lse_c00419{letter-spacing:0.036000px;}
.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;}
}
.ws16_c00419{word-spacing:-0.828000px;}
.ws17_c00419{word-spacing:-0.806400px;}
.wsc_c00419{word-spacing:-0.208800px;}
.ws18_c00419{word-spacing:-0.144000px;}
.wsd_c00419{word-spacing:-0.122400px;}
.ws0_c00419{word-spacing:0.000000px;}
.ws19_c00419{word-spacing:0.057600px;}
.wsb_c00419{word-spacing:0.064800px;}
.ws3_c00419{word-spacing:0.129600px;}
.ws1_c00419{word-spacing:0.158400px;}
.ws2_c00419{word-spacing:0.165600px;}
.ws8_c00419{word-spacing:0.172800px;}
.ws15_c00419{word-spacing:0.187200px;}
.ws14_c00419{word-spacing:0.208800px;}
.ws13_c00419{word-spacing:0.216000px;}
.ws1c_c00419{word-spacing:1.245600px;}
.ws22_c00419{word-spacing:1.260000px;}
.ws23_c00419{word-spacing:1.296000px;}
.ws12_c00419{word-spacing:2.030400px;}
.ws4_c00419{word-spacing:2.700000px;}
.ws11_c00419{word-spacing:4.528800px;}
.ws10_c00419{word-spacing:4.629600px;}
.ws1e_c00419{word-spacing:6.300000px;}
.ws1f_c00419{word-spacing:6.307200px;}
.ws1a_c00419{word-spacing:6.336000px;}
.ws7_c00419{word-spacing:6.688800px;}
.ws6_c00419{word-spacing:7.056000px;}
.ws5_c00419{word-spacing:7.106400px;}
.ws1d_c00419{word-spacing:7.401600px;}
.wsa_c00419{word-spacing:12.081600px;}
.ws9_c00419{word-spacing:17.863200px;}
.ws25_c00419{word-spacing:19.569600px;}
.ws24_c00419{word-spacing:19.627200px;}
.ws1b_c00419{word-spacing:22.132800px;}
.wsf_c00419{word-spacing:22.874400px;}
.ws20_c00419{word-spacing:23.162400px;}
.ws21_c00419{word-spacing:23.220000px;}
.wse_c00419{word-spacing:24.652800px;}
._1_c00419{margin-left:-1.166400px;}
._0_c00419{width:1.123200px;}
.fc0_c00419{color:rgb(0,0,0);}
.fs0_c00419{font-size:72.000000px;}
.y0_c00419{bottom:0.000000px;}
.y2_c00419{bottom:46.830450px;}
.y1_c00419{bottom:67.530450px;}
.y26_c00419{bottom:188.490450px;}
.y25_c00419{bottom:219.540450px;}
.y24_c00419{bottom:250.680450px;}
.y23_c00419{bottom:281.730450px;}
.y22_c00419{bottom:321.690450px;}
.y21_c00419{bottom:351.390450px;}
.y20_c00419{bottom:372.090450px;}
.y1f_c00419{bottom:392.790450px;}
.y1e_c00419{bottom:413.490450px;}
.y1d_c00419{bottom:434.190450px;}
.y1c_c00419{bottom:474.240450px;}
.y1b_c00419{bottom:505.290450px;}
.y1a_c00419{bottom:534.990450px;}
.y19_c00419{bottom:555.690450px;}
.y18_c00419{bottom:576.390450px;}
.y17_c00419{bottom:597.090450px;}
.y16_c00419{bottom:617.790450px;}
.y15_c00419{bottom:638.490450px;}
.y14_c00419{bottom:659.190450px;}
.y13_c00419{bottom:679.890450px;}
.y12_c00419{bottom:700.590450px;}
.y11_c00419{bottom:721.290450px;}
.y10_c00419{bottom:761.340450px;}
.yf_c00419{bottom:801.390450px;}
.ye_c00419{bottom:831.090450px;}
.yd_c00419{bottom:851.790450px;}
.yc_c00419{bottom:872.490450px;}
.yb_c00419{bottom:893.190450px;}
.ya_c00419{bottom:913.890450px;}
.y9_c00419{bottom:934.590450px;}
.y8_c00419{bottom:955.290450px;}
.y7_c00419{bottom:975.990450px;}
.y6_c00419{bottom:996.690450px;}
.y5_c00419{bottom:1017.390450px;}
.y4_c00419{bottom:1057.440450px;}
.y3_c00419{bottom:1097.490450px;}
.h1_c00419{height:63.175781px;}
.h2_c00419{height:64.546875px;}
.h3_c00419{height:75.093750px;}
.h0_c00419{height:1263.000000px;}
.w1_c00419{width:892.500000px;}
.w0_c00419{width:892.830000px;}
.x0_c00419{left:0.000000px;}
.x2_c00419{left:127.620000px;}
.x3_c00419{left:202.950000px;}
.x1_c00419{left:695.880000px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls9_c00419{letter-spacing:-0.070400pt;}
.lsb_c00419{letter-spacing:-0.064000pt;}
.ls7_c00419{letter-spacing:-0.057600pt;}
.ls4_c00419{letter-spacing:-0.051200pt;}
.ls5_c00419{letter-spacing:-0.044800pt;}
.ls8_c00419{letter-spacing:-0.038400pt;}
.lsa_c00419{letter-spacing:-0.032000pt;}
.lsc_c00419{letter-spacing:-0.025600pt;}
.lsd_c00419{letter-spacing:-0.019200pt;}
.ls6_c00419{letter-spacing:-0.012800pt;}
.ls3_c00419{letter-spacing:-0.006400pt;}
.ls2_c00419{letter-spacing:0.000000pt;}
.ls1_c00419{letter-spacing:0.012800pt;}
.ls0_c00419{letter-spacing:0.025600pt;}
.lse_c00419{letter-spacing:0.032000pt;}
.ws16_c00419{word-spacing:-0.736000pt;}
.ws17_c00419{word-spacing:-0.716800pt;}
.wsc_c00419{word-spacing:-0.185600pt;}
.ws18_c00419{word-spacing:-0.128000pt;}
.wsd_c00419{word-spacing:-0.108800pt;}
.ws0_c00419{word-spacing:0.000000pt;}
.ws19_c00419{word-spacing:0.051200pt;}
.wsb_c00419{word-spacing:0.057600pt;}
.ws3_c00419{word-spacing:0.115200pt;}
.ws1_c00419{word-spacing:0.140800pt;}
.ws2_c00419{word-spacing:0.147200pt;}
.ws8_c00419{word-spacing:0.153600pt;}
.ws15_c00419{word-spacing:0.166400pt;}
.ws14_c00419{word-spacing:0.185600pt;}
.ws13_c00419{word-spacing:0.192000pt;}
.ws1c_c00419{word-spacing:1.107200pt;}
.ws22_c00419{word-spacing:1.120000pt;}
.ws23_c00419{word-spacing:1.152000pt;}
.ws12_c00419{word-spacing:1.804800pt;}
.ws4_c00419{word-spacing:2.400000pt;}
.ws11_c00419{word-spacing:4.025600pt;}
.ws10_c00419{word-spacing:4.115200pt;}
.ws1e_c00419{word-spacing:5.600000pt;}
.ws1f_c00419{word-spacing:5.606400pt;}
.ws1a_c00419{word-spacing:5.632000pt;}
.ws7_c00419{word-spacing:5.945600pt;}
.ws6_c00419{word-spacing:6.272000pt;}
.ws5_c00419{word-spacing:6.316800pt;}
.ws1d_c00419{word-spacing:6.579200pt;}
.wsa_c00419{word-spacing:10.739200pt;}
.ws9_c00419{word-spacing:15.878400pt;}
.ws25_c00419{word-spacing:17.395200pt;}
.ws24_c00419{word-spacing:17.446400pt;}
.ws1b_c00419{word-spacing:19.673600pt;}
.wsf_c00419{word-spacing:20.332800pt;}
.ws20_c00419{word-spacing:20.588800pt;}
.ws21_c00419{word-spacing:20.640000pt;}
.wse_c00419{word-spacing:21.913600pt;}
._1_c00419{margin-left:-1.036800pt;}
._0_c00419{width:0.998400pt;}
.fs0_c00419{font-size:64.000000pt;}
.y0_c00419{bottom:0.000000pt;}
.y2_c00419{bottom:41.627067pt;}
.y1_c00419{bottom:60.027067pt;}
.y26_c00419{bottom:167.547067pt;}
.y25_c00419{bottom:195.147067pt;}
.y24_c00419{bottom:222.827067pt;}
.y23_c00419{bottom:250.427067pt;}
.y22_c00419{bottom:285.947067pt;}
.y21_c00419{bottom:312.347067pt;}
.y20_c00419{bottom:330.747067pt;}
.y1f_c00419{bottom:349.147067pt;}
.y1e_c00419{bottom:367.547067pt;}
.y1d_c00419{bottom:385.947067pt;}
.y1c_c00419{bottom:421.547067pt;}
.y1b_c00419{bottom:449.147067pt;}
.y1a_c00419{bottom:475.547067pt;}
.y19_c00419{bottom:493.947067pt;}
.y18_c00419{bottom:512.347067pt;}
.y17_c00419{bottom:530.747067pt;}
.y16_c00419{bottom:549.147067pt;}
.y15_c00419{bottom:567.547067pt;}
.y14_c00419{bottom:585.947067pt;}
.y13_c00419{bottom:604.347067pt;}
.y12_c00419{bottom:622.747067pt;}
.y11_c00419{bottom:641.147067pt;}
.y10_c00419{bottom:676.747067pt;}
.yf_c00419{bottom:712.347067pt;}
.ye_c00419{bottom:738.747067pt;}
.yd_c00419{bottom:757.147067pt;}
.yc_c00419{bottom:775.547067pt;}
.yb_c00419{bottom:793.947067pt;}
.ya_c00419{bottom:812.347067pt;}
.y9_c00419{bottom:830.747067pt;}
.y8_c00419{bottom:849.147067pt;}
.y7_c00419{bottom:867.547067pt;}
.y6_c00419{bottom:885.947067pt;}
.y5_c00419{bottom:904.347067pt;}
.y4_c00419{bottom:939.947067pt;}
.y3_c00419{bottom:975.547067pt;}
.h1_c00419{height:56.156250pt;}
.h2_c00419{height:57.375000pt;}
.h3_c00419{height:66.750000pt;}
.h0_c00419{height:1122.666667pt;}
.w1_c00419{width:793.333333pt;}
.w0_c00419{width:793.626667pt;}
.x0_c00419{left:0.000000pt;}
.x2_c00419{left:113.440000pt;}
.x3_c00419{left:180.400000pt;}
.x1_c00419{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e48f61418c2ce975c7ab6000.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.093262;font-style:normal;font-weight:normal;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_8790755014e39aa21b6e81a2.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00420;src:url('chunks/assets/font_6115fa73ab7803dccb5f6d1a.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.ls5_c00420{letter-spacing:-0.136800px;}
.lsf_c00420{letter-spacing:-0.079200px;}
.lsd_c00420{letter-spacing:-0.072000px;}
.lsb_c00420{letter-spacing:-0.064800px;}
.lse_c00420{letter-spacing:-0.057600px;}
.ls3_c00420{letter-spacing:-0.050400px;}
.lsc_c00420{letter-spacing:-0.043200px;}
.ls4_c00420{letter-spacing:-0.036000px;}
.ls9_c00420{letter-spacing:-0.028800px;}
.ls6_c00420{letter-spacing:-0.021600px;}
.ls8_c00420{letter-spacing:-0.014400px;}
.ls7_c00420{letter-spacing:-0.007200px;}
.ls2_c00420{letter-spacing:0.000000px;}
.ls0_c00420{letter-spacing:0.007200px;}
.lsa_c00420{letter-spacing:0.021600px;}
.ls1_c00420{letter-spacing:0.086400px;}
.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;}
}
.ws2_c00420{word-spacing:-20.102400px;}
.ws0_c00420{word-spacing:-19.965600px;}
.ws1_c00420{word-spacing:-19.879200px;}
.ws16_c00420{word-spacing:-4.053600px;}
.ws1d_c00420{word-spacing:-3.794400px;}
.ws1b_c00420{word-spacing:-3.765600px;}
.ws1c_c00420{word-spacing:-3.729600px;}
.ws10_c00420{word-spacing:-1.598400px;}
.ws1f_c00420{word-spacing:-0.943200px;}
.ws27_c00420{word-spacing:-0.936000px;}
.ws26_c00420{word-spacing:-0.878400px;}
.ws20_c00420{word-spacing:-0.864000px;}
.wse_c00420{word-spacing:-0.856800px;}
.ws1e_c00420{word-spacing:-0.144000px;}
.ws3_c00420{word-spacing:0.000000px;}
.ws7_c00420{word-spacing:0.158400px;}
.ws37_c00420{word-spacing:0.172800px;}
.ws15_c00420{word-spacing:0.180000px;}
.ws6_c00420{word-spacing:0.194400px;}
.ws23_c00420{word-spacing:0.266400px;}
.ws17_c00420{word-spacing:0.295200px;}
.ws18_c00420{word-spacing:0.475200px;}
.ws2a_c00420{word-spacing:0.820800px;}
.ws2b_c00420{word-spacing:0.835200px;}
.ws24_c00420{word-spacing:2.764800px;}
.ws25_c00420{word-spacing:2.865600px;}
.wsb_c00420{word-spacing:2.966400px;}
.wsa_c00420{word-spacing:3.045600px;}
.wsc_c00420{word-spacing:3.139200px;}
.ws2c_c00420{word-spacing:5.263200px;}
.ws28_c00420{word-spacing:5.580000px;}
.wsd_c00420{word-spacing:5.947200px;}
.ws29_c00420{word-spacing:5.961600px;}
.ws9_c00420{word-spacing:6.285600px;}
.ws8_c00420{word-spacing:6.300000px;}
.ws2f_c00420{word-spacing:6.566400px;}
.ws30_c00420{word-spacing:6.573600px;}
.ws4_c00420{word-spacing:7.948800px;}
.ws5_c00420{word-spacing:8.114400px;}
.ws31_c00420{word-spacing:8.121600px;}
.ws32_c00420{word-spacing:8.143200px;}
.ws33_c00420{word-spacing:8.834400px;}
.ws34_c00420{word-spacing:8.913600px;}
.ws21_c00420{word-spacing:10.303200px;}
.ws22_c00420{word-spacing:10.317600px;}
.ws12_c00420{word-spacing:14.572800px;}
.ws11_c00420{word-spacing:14.659200px;}
.wsf_c00420{word-spacing:17.863200px;}
.ws2d_c00420{word-spacing:23.594400px;}
.ws2e_c00420{word-spacing:23.709600px;}
.ws1a_c00420{word-spacing:23.990400px;}
.ws36_c00420{word-spacing:25.394400px;}
.ws35_c00420{word-spacing:25.495200px;}
.ws13_c00420{word-spacing:27.115200px;}
.ws14_c00420{word-spacing:27.230400px;}
.ws19_c00420{word-spacing:28.296000px;}
._0_c00420{width:1.137600px;}
.fc0_c00420{color:rgb(0,0,0);}
.fs0_c00420{font-size:72.000000px;}
.y0_c00420{bottom:0.000000px;}
.y2_c00420{bottom:46.830450px;}
.y1_c00420{bottom:67.530450px;}
.y27_c00420{bottom:152.130450px;}
.y26_c00420{bottom:172.830450px;}
.y25_c00420{bottom:193.530450px;}
.y24_c00420{bottom:214.230450px;}
.y23_c00420{bottom:234.930450px;}
.y22_c00420{bottom:255.630450px;}
.y21_c00420{bottom:276.330450px;}
.y20_c00420{bottom:297.030450px;}
.y1f_c00420{bottom:317.730450px;}
.y1e_c00420{bottom:338.430450px;}
.y1d_c00420{bottom:359.040450px;}
.y1c_c00420{bottom:379.740450px;}
.y1b_c00420{bottom:419.790450px;}
.y1a_c00420{bottom:450.840450px;}
.y19_c00420{bottom:481.890450px;}
.y18_c00420{bottom:512.940450px;}
.y17_c00420{bottom:543.990450px;}
.y16_c00420{bottom:575.040450px;}
.y15_c00420{bottom:606.090450px;}
.y14_c00420{bottom:637.140450px;}
.y13_c00420{bottom:677.190450px;}
.y12_c00420{bottom:706.890450px;}
.y11_c00420{bottom:727.590450px;}
.y10_c00420{bottom:748.290450px;}
.yf_c00420{bottom:768.990450px;}
.ye_c00420{bottom:789.690450px;}
.yd_c00420{bottom:810.390450px;}
.yc_c00420{bottom:831.090450px;}
.yb_c00420{bottom:851.790450px;}
.ya_c00420{bottom:872.490450px;}
.y9_c00420{bottom:893.190450px;}
.y8_c00420{bottom:933.240450px;}
.y7_c00420{bottom:964.290450px;}
.y6_c00420{bottom:995.340450px;}
.y5_c00420{bottom:1026.390450px;}
.y4_c00420{bottom:1066.440450px;}
.y3_c00420{bottom:1097.490450px;}
.h1_c00420{height:63.175781px;}
.h3_c00420{height:64.546875px;}
.h2_c00420{height:75.093750px;}
.h0_c00420{height:1263.000000px;}
.w1_c00420{width:892.500000px;}
.w0_c00420{width:892.830000px;}
.x0_c00420{left:0.000000px;}
.x2_c00420{left:170.100000px;}
.x3_c00420{left:245.430000px;}
.x1_c00420{left:738.360000px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls5_c00420{letter-spacing:-0.121600pt;}
.lsf_c00420{letter-spacing:-0.070400pt;}
.lsd_c00420{letter-spacing:-0.064000pt;}
.lsb_c00420{letter-spacing:-0.057600pt;}
.lse_c00420{letter-spacing:-0.051200pt;}
.ls3_c00420{letter-spacing:-0.044800pt;}
.lsc_c00420{letter-spacing:-0.038400pt;}
.ls4_c00420{letter-spacing:-0.032000pt;}
.ls9_c00420{letter-spacing:-0.025600pt;}
.ls6_c00420{letter-spacing:-0.019200pt;}
.ls8_c00420{letter-spacing:-0.012800pt;}
.ls7_c00420{letter-spacing:-0.006400pt;}
.ls2_c00420{letter-spacing:0.000000pt;}
.ls0_c00420{letter-spacing:0.006400pt;}
.lsa_c00420{letter-spacing:0.019200pt;}
.ls1_c00420{letter-spacing:0.076800pt;}
.ws2_c00420{word-spacing:-17.868800pt;}
.ws0_c00420{word-spacing:-17.747200pt;}
.ws1_c00420{word-spacing:-17.670400pt;}
.ws16_c00420{word-spacing:-3.603200pt;}
.ws1d_c00420{word-spacing:-3.372800pt;}
.ws1b_c00420{word-spacing:-3.347200pt;}
.ws1c_c00420{word-spacing:-3.315200pt;}
.ws10_c00420{word-spacing:-1.420800pt;}
.ws1f_c00420{word-spacing:-0.838400pt;}
.ws27_c00420{word-spacing:-0.832000pt;}
.ws26_c00420{word-spacing:-0.780800pt;}
.ws20_c00420{word-spacing:-0.768000pt;}
.wse_c00420{word-spacing:-0.761600pt;}
.ws1e_c00420{word-spacing:-0.128000pt;}
.ws3_c00420{word-spacing:0.000000pt;}
.ws7_c00420{word-spacing:0.140800pt;}
.ws37_c00420{word-spacing:0.153600pt;}
.ws15_c00420{word-spacing:0.160000pt;}
.ws6_c00420{word-spacing:0.172800pt;}
.ws23_c00420{word-spacing:0.236800pt;}
.ws17_c00420{word-spacing:0.262400pt;}
.ws18_c00420{word-spacing:0.422400pt;}
.ws2a_c00420{word-spacing:0.729600pt;}
.ws2b_c00420{word-spacing:0.742400pt;}
.ws24_c00420{word-spacing:2.457600pt;}
.ws25_c00420{word-spacing:2.547200pt;}
.wsb_c00420{word-spacing:2.636800pt;}
.wsa_c00420{word-spacing:2.707200pt;}
.wsc_c00420{word-spacing:2.790400pt;}
.ws2c_c00420{word-spacing:4.678400pt;}
.ws28_c00420{word-spacing:4.960000pt;}
.wsd_c00420{word-spacing:5.286400pt;}
.ws29_c00420{word-spacing:5.299200pt;}
.ws9_c00420{word-spacing:5.587200pt;}
.ws8_c00420{word-spacing:5.600000pt;}
.ws2f_c00420{word-spacing:5.836800pt;}
.ws30_c00420{word-spacing:5.843200pt;}
.ws4_c00420{word-spacing:7.065600pt;}
.ws5_c00420{word-spacing:7.212800pt;}
.ws31_c00420{word-spacing:7.219200pt;}
.ws32_c00420{word-spacing:7.238400pt;}
.ws33_c00420{word-spacing:7.852800pt;}
.ws34_c00420{word-spacing:7.923200pt;}
.ws21_c00420{word-spacing:9.158400pt;}
.ws22_c00420{word-spacing:9.171200pt;}
.ws12_c00420{word-spacing:12.953600pt;}
.ws11_c00420{word-spacing:13.030400pt;}
.wsf_c00420{word-spacing:15.878400pt;}
.ws2d_c00420{word-spacing:20.972800pt;}
.ws2e_c00420{word-spacing:21.075200pt;}
.ws1a_c00420{word-spacing:21.324800pt;}
.ws36_c00420{word-spacing:22.572800pt;}
.ws35_c00420{word-spacing:22.662400pt;}
.ws13_c00420{word-spacing:24.102400pt;}
.ws14_c00420{word-spacing:24.204800pt;}
.ws19_c00420{word-spacing:25.152000pt;}
._0_c00420{width:1.011200pt;}
.fs0_c00420{font-size:64.000000pt;}
.y0_c00420{bottom:0.000000pt;}
.y2_c00420{bottom:41.627067pt;}
.y1_c00420{bottom:60.027067pt;}
.y27_c00420{bottom:135.227067pt;}
.y26_c00420{bottom:153.627067pt;}
.y25_c00420{bottom:172.027067pt;}
.y24_c00420{bottom:190.427067pt;}
.y23_c00420{bottom:208.827067pt;}
.y22_c00420{bottom:227.227067pt;}
.y21_c00420{bottom:245.627067pt;}
.y20_c00420{bottom:264.027067pt;}
.y1f_c00420{bottom:282.427067pt;}
.y1e_c00420{bottom:300.827067pt;}
.y1d_c00420{bottom:319.147067pt;}
.y1c_c00420{bottom:337.547067pt;}
.y1b_c00420{bottom:373.147067pt;}
.y1a_c00420{bottom:400.747067pt;}
.y19_c00420{bottom:428.347067pt;}
.y18_c00420{bottom:455.947067pt;}
.y17_c00420{bottom:483.547067pt;}
.y16_c00420{bottom:511.147067pt;}
.y15_c00420{bottom:538.747067pt;}
.y14_c00420{bottom:566.347067pt;}
.y13_c00420{bottom:601.947067pt;}
.y12_c00420{bottom:628.347067pt;}
.y11_c00420{bottom:646.747067pt;}
.y10_c00420{bottom:665.147067pt;}
.yf_c00420{bottom:683.547067pt;}
.ye_c00420{bottom:701.947067pt;}
.yd_c00420{bottom:720.347067pt;}
.yc_c00420{bottom:738.747067pt;}
.yb_c00420{bottom:757.147067pt;}
.ya_c00420{bottom:775.547067pt;}
.y9_c00420{bottom:793.947067pt;}
.y8_c00420{bottom:829.547067pt;}
.y7_c00420{bottom:857.147067pt;}
.y6_c00420{bottom:884.747067pt;}
.y5_c00420{bottom:912.347067pt;}
.y4_c00420{bottom:947.947067pt;}
.y3_c00420{bottom:975.547067pt;}
.h1_c00420{height:56.156250pt;}
.h3_c00420{height:57.375000pt;}
.h2_c00420{height:66.750000pt;}
.h0_c00420{height:1122.666667pt;}
.w1_c00420{width:793.333333pt;}
.w0_c00420{width:793.626667pt;}
.x0_c00420{left:0.000000pt;}
.x2_c00420{left:151.200000pt;}
.x3_c00420{left:218.160000pt;}
.x1_c00420{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a01e766aac10d2b2ee8daadd.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.093262;font-style:normal;font-weight:normal;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_f50b19146a36eb07f7eb2c65.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.106934;font-style: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;}
.lsb_c00421{letter-spacing:-0.079200px;}
.ls4_c00421{letter-spacing:-0.072000px;}
.ls7_c00421{letter-spacing:-0.064800px;}
.ls8_c00421{letter-spacing:-0.057600px;}
.ls2_c00421{letter-spacing:-0.050400px;}
.ls6_c00421{letter-spacing:-0.043200px;}
.ls9_c00421{letter-spacing:-0.036000px;}
.ls3_c00421{letter-spacing:-0.028800px;}
.lsa_c00421{letter-spacing:-0.021600px;}
.ls1_c00421{letter-spacing:-0.014400px;}
.lsc_c00421{letter-spacing:-0.007200px;}
.ls0_c00421{letter-spacing:0.000000px;}
.ls5_c00421{letter-spacing:0.014400px;}
.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;}
}
.ws12_c00421{word-spacing:-4.104000px;}
.ws11_c00421{word-spacing:-4.024800px;}
.ws13_c00421{word-spacing:-2.779200px;}
.ws14_c00421{word-spacing:-2.642400px;}
.ws1d_c00421{word-spacing:-1.972800px;}
.ws1c_c00421{word-spacing:-1.944000px;}
.ws0_c00421{word-spacing:0.000000px;}
.ws8_c00421{word-spacing:0.021600px;}
.ws4_c00421{word-spacing:0.064800px;}
.ws1a_c00421{word-spacing:0.144000px;}
.ws7_c00421{word-spacing:0.172800px;}
.ws2a_c00421{word-spacing:0.180000px;}
.ws3_c00421{word-spacing:0.187200px;}
.ws1f_c00421{word-spacing:0.201600px;}
.ws1e_c00421{word-spacing:0.302400px;}
.ws29_c00421{word-spacing:2.368800px;}
.ws28_c00421{word-spacing:2.397600px;}
.ws1_c00421{word-spacing:3.052800px;}
.ws1b_c00421{word-spacing:3.074400px;}
.ws2_c00421{word-spacing:3.088800px;}
.ws2e_c00421{word-spacing:3.355200px;}
.ws2c_c00421{word-spacing:3.391200px;}
.ws2d_c00421{word-spacing:3.420000px;}
.ws2f_c00421{word-spacing:3.427200px;}
.ws2b_c00421{word-spacing:3.456000px;}
.ws26_c00421{word-spacing:4.154400px;}
.wsc_c00421{word-spacing:4.161600px;}
.ws27_c00421{word-spacing:4.183200px;}
.wsb_c00421{word-spacing:4.255200px;}
.ws17_c00421{word-spacing:4.435200px;}
.ws18_c00421{word-spacing:4.485600px;}
.wse_c00421{word-spacing:4.874400px;}
.wsd_c00421{word-spacing:4.896000px;}
.ws9_c00421{word-spacing:5.947200px;}
.wsa_c00421{word-spacing:6.105600px;}
.ws19_c00421{word-spacing:6.681600px;}
.ws6_c00421{word-spacing:13.816800px;}
.ws5_c00421{word-spacing:13.910400px;}
.ws20_c00421{word-spacing:15.256800px;}
.ws21_c00421{word-spacing:15.307200px;}
.wsf_c00421{word-spacing:19.980000px;}
.ws15_c00421{word-spacing:20.325600px;}
.ws16_c00421{word-spacing:20.361600px;}
.ws25_c00421{word-spacing:20.419200px;}
.ws24_c00421{word-spacing:20.462400px;}
.ws22_c00421{word-spacing:25.970400px;}
.ws23_c00421{word-spacing:26.020800px;}
.ws10_c00421{word-spacing:27.194400px;}
._1_c00421{margin-left:-2.368800px;}
._0_c00421{width:1.267200px;}
.fc0_c00421{color:rgb(0,0,0);}
.fs0_c00421{font-size:72.000000px;}
.y0_c00421{bottom:0.000000px;}
.y2_c00421{bottom:46.830450px;}
.y1_c00421{bottom:67.530450px;}
.y23_c00421{bottom:167.880450px;}
.y22_c00421{bottom:198.930450px;}
.y21_c00421{bottom:238.980450px;}
.y20_c00421{bottom:268.680450px;}
.y1f_c00421{bottom:289.380450px;}
.y1e_c00421{bottom:310.080450px;}
.y1d_c00421{bottom:330.690450px;}
.y1c_c00421{bottom:351.390450px;}
.y1b_c00421{bottom:372.090450px;}
.y1a_c00421{bottom:412.140450px;}
.y19_c00421{bottom:452.190450px;}
.y18_c00421{bottom:483.240450px;}
.y17_c00421{bottom:523.290450px;}
.y16_c00421{bottom:554.340450px;}
.y15_c00421{bottom:585.390450px;}
.y14_c00421{bottom:616.440450px;}
.y13_c00421{bottom:647.490450px;}
.y12_c00421{bottom:678.540450px;}
.y11_c00421{bottom:718.590450px;}
.y10_c00421{bottom:749.640450px;}
.yf_c00421{bottom:780.690450px;}
.ye_c00421{bottom:811.740450px;}
.yd_c00421{bottom:851.790450px;}
.yc_c00421{bottom:881.490450px;}
.yb_c00421{bottom:902.190450px;}
.ya_c00421{bottom:922.890450px;}
.y9_c00421{bottom:943.590450px;}
.y8_c00421{bottom:964.290450px;}
.y7_c00421{bottom:984.990450px;}
.y6_c00421{bottom:1005.690450px;}
.y5_c00421{bottom:1026.390450px;}
.y4_c00421{bottom:1066.440450px;}
.y3_c00421{bottom:1097.490450px;}
.h1_c00421{height:63.175781px;}
.h2_c00421{height:64.546875px;}
.h0_c00421{height:1263.000000px;}
.w1_c00421{width:892.500000px;}
.w0_c00421{width:892.830000px;}
.x0_c00421{left:0.000000px;}
.x2_c00421{left:127.620000px;}
.x3_c00421{left:202.950000px;}
.x1_c00421{left:695.880000px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.lsb_c00421{letter-spacing:-0.070400pt;}
.ls4_c00421{letter-spacing:-0.064000pt;}
.ls7_c00421{letter-spacing:-0.057600pt;}
.ls8_c00421{letter-spacing:-0.051200pt;}
.ls2_c00421{letter-spacing:-0.044800pt;}
.ls6_c00421{letter-spacing:-0.038400pt;}
.ls9_c00421{letter-spacing:-0.032000pt;}
.ls3_c00421{letter-spacing:-0.025600pt;}
.lsa_c00421{letter-spacing:-0.019200pt;}
.ls1_c00421{letter-spacing:-0.012800pt;}
.lsc_c00421{letter-spacing:-0.006400pt;}
.ls0_c00421{letter-spacing:0.000000pt;}
.ls5_c00421{letter-spacing:0.012800pt;}
.ws12_c00421{word-spacing:-3.648000pt;}
.ws11_c00421{word-spacing:-3.577600pt;}
.ws13_c00421{word-spacing:-2.470400pt;}
.ws14_c00421{word-spacing:-2.348800pt;}
.ws1d_c00421{word-spacing:-1.753600pt;}
.ws1c_c00421{word-spacing:-1.728000pt;}
.ws0_c00421{word-spacing:0.000000pt;}
.ws8_c00421{word-spacing:0.019200pt;}
.ws4_c00421{word-spacing:0.057600pt;}
.ws1a_c00421{word-spacing:0.128000pt;}
.ws7_c00421{word-spacing:0.153600pt;}
.ws2a_c00421{word-spacing:0.160000pt;}
.ws3_c00421{word-spacing:0.166400pt;}
.ws1f_c00421{word-spacing:0.179200pt;}
.ws1e_c00421{word-spacing:0.268800pt;}
.ws29_c00421{word-spacing:2.105600pt;}
.ws28_c00421{word-spacing:2.131200pt;}
.ws1_c00421{word-spacing:2.713600pt;}
.ws1b_c00421{word-spacing:2.732800pt;}
.ws2_c00421{word-spacing:2.745600pt;}
.ws2e_c00421{word-spacing:2.982400pt;}
.ws2c_c00421{word-spacing:3.014400pt;}
.ws2d_c00421{word-spacing:3.040000pt;}
.ws2f_c00421{word-spacing:3.046400pt;}
.ws2b_c00421{word-spacing:3.072000pt;}
.ws26_c00421{word-spacing:3.692800pt;}
.wsc_c00421{word-spacing:3.699200pt;}
.ws27_c00421{word-spacing:3.718400pt;}
.wsb_c00421{word-spacing:3.782400pt;}
.ws17_c00421{word-spacing:3.942400pt;}
.ws18_c00421{word-spacing:3.987200pt;}
.wse_c00421{word-spacing:4.332800pt;}
.wsd_c00421{word-spacing:4.352000pt;}
.ws9_c00421{word-spacing:5.286400pt;}
.wsa_c00421{word-spacing:5.427200pt;}
.ws19_c00421{word-spacing:5.939200pt;}
.ws6_c00421{word-spacing:12.281600pt;}
.ws5_c00421{word-spacing:12.364800pt;}
.ws20_c00421{word-spacing:13.561600pt;}
.ws21_c00421{word-spacing:13.606400pt;}
.wsf_c00421{word-spacing:17.760000pt;}
.ws15_c00421{word-spacing:18.067200pt;}
.ws16_c00421{word-spacing:18.099200pt;}
.ws25_c00421{word-spacing:18.150400pt;}
.ws24_c00421{word-spacing:18.188800pt;}
.ws22_c00421{word-spacing:23.084800pt;}
.ws23_c00421{word-spacing:23.129600pt;}
.ws10_c00421{word-spacing:24.172800pt;}
._1_c00421{margin-left:-2.105600pt;}
._0_c00421{width:1.126400pt;}
.fs0_c00421{font-size:64.000000pt;}
.y0_c00421{bottom:0.000000pt;}
.y2_c00421{bottom:41.627067pt;}
.y1_c00421{bottom:60.027067pt;}
.y23_c00421{bottom:149.227067pt;}
.y22_c00421{bottom:176.827067pt;}
.y21_c00421{bottom:212.427067pt;}
.y20_c00421{bottom:238.827067pt;}
.y1f_c00421{bottom:257.227067pt;}
.y1e_c00421{bottom:275.627067pt;}
.y1d_c00421{bottom:293.947067pt;}
.y1c_c00421{bottom:312.347067pt;}
.y1b_c00421{bottom:330.747067pt;}
.y1a_c00421{bottom:366.347067pt;}
.y19_c00421{bottom:401.947067pt;}
.y18_c00421{bottom:429.547067pt;}
.y17_c00421{bottom:465.147067pt;}
.y16_c00421{bottom:492.747067pt;}
.y15_c00421{bottom:520.347067pt;}
.y14_c00421{bottom:547.947067pt;}
.y13_c00421{bottom:575.547067pt;}
.y12_c00421{bottom:603.147067pt;}
.y11_c00421{bottom:638.747067pt;}
.y10_c00421{bottom:666.347067pt;}
.yf_c00421{bottom:693.947067pt;}
.ye_c00421{bottom:721.547067pt;}
.yd_c00421{bottom:757.147067pt;}
.yc_c00421{bottom:783.547067pt;}
.yb_c00421{bottom:801.947067pt;}
.ya_c00421{bottom:820.347067pt;}
.y9_c00421{bottom:838.747067pt;}
.y8_c00421{bottom:857.147067pt;}
.y7_c00421{bottom:875.547067pt;}
.y6_c00421{bottom:893.947067pt;}
.y5_c00421{bottom:912.347067pt;}
.y4_c00421{bottom:947.947067pt;}
.y3_c00421{bottom:975.547067pt;}
.h1_c00421{height:56.156250pt;}
.h2_c00421{height:57.375000pt;}
.h0_c00421{height:1122.666667pt;}
.w1_c00421{width:793.333333pt;}
.w0_c00421{width:793.626667pt;}
.x0_c00421{left:0.000000pt;}
.x2_c00421{left:113.440000pt;}
.x3_c00421{left:180.400000pt;}
.x1_c00421{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2da461fad6c4015aff066d45.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.093262;font-style:normal;font-weight:normal;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_114bad2cd980a541ce2a875a.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00422{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.lsb_c00422{letter-spacing:-0.086400px;}
.ls7_c00422{letter-spacing:-0.064800px;}
.lsa_c00422{letter-spacing:-0.057600px;}
.ls8_c00422{letter-spacing:-0.050400px;}
.ls5_c00422{letter-spacing:-0.043200px;}
.ls6_c00422{letter-spacing:-0.036000px;}
.ls2_c00422{letter-spacing:-0.028800px;}
.ls9_c00422{letter-spacing:-0.021600px;}
.ls3_c00422{letter-spacing:-0.014400px;}
.ls4_c00422{letter-spacing:-0.007200px;}
.ls1_c00422{letter-spacing:0.000000px;}
.ls0_c00422{letter-spacing:0.007200px;}
.sc__c00422{text-shadow:none;}
.sc0_c00422{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00422{-webkit-text-stroke:0px transparent;}
.sc0_c00422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00422{word-spacing:-4.161600px;}
.ws1_c00422{word-spacing:-4.132800px;}
.ws23_c00422{word-spacing:-3.787200px;}
.ws22_c00422{word-spacing:-3.736800px;}
.ws1a_c00422{word-spacing:-2.332800px;}
.ws1b_c00422{word-spacing:-2.260800px;}
.ws18_c00422{word-spacing:-1.994400px;}
.ws10_c00422{word-spacing:-0.885600px;}
.ws26_c00422{word-spacing:-0.597600px;}
.ws27_c00422{word-spacing:-0.532800px;}
.ws12_c00422{word-spacing:-0.187200px;}
.ws11_c00422{word-spacing:-0.151200px;}
.ws0_c00422{word-spacing:0.000000px;}
.wsa_c00422{word-spacing:0.079200px;}
.ws8_c00422{word-spacing:0.108000px;}
.ws9_c00422{word-spacing:0.122400px;}
.ws29_c00422{word-spacing:0.151200px;}
.wsb_c00422{word-spacing:0.158400px;}
.ws3_c00422{word-spacing:0.172800px;}
.ws19_c00422{word-spacing:0.180000px;}
.ws16_c00422{word-spacing:0.187200px;}
.ws2a_c00422{word-spacing:0.518400px;}
.ws2b_c00422{word-spacing:0.547200px;}
.ws1f_c00422{word-spacing:1.584000px;}
.ws20_c00422{word-spacing:1.656000px;}
.ws21_c00422{word-spacing:1.987200px;}
.wse_c00422{word-spacing:2.361600px;}
.ws7_c00422{word-spacing:2.714400px;}
.ws6_c00422{word-spacing:2.728800px;}
.wsd_c00422{word-spacing:3.434400px;}
.wsc_c00422{word-spacing:3.441600px;}
.ws1c_c00422{word-spacing:5.961600px;}
.ws1d_c00422{word-spacing:6.048000px;}
.ws14_c00422{word-spacing:8.805600px;}
.ws2c_c00422{word-spacing:8.820000px;}
.ws13_c00422{word-spacing:8.827200px;}
.ws5_c00422{word-spacing:10.216800px;}
.ws4_c00422{word-spacing:10.245600px;}
.ws25_c00422{word-spacing:10.958400px;}
.ws24_c00422{word-spacing:10.994400px;}
.ws15_c00422{word-spacing:12.837600px;}
.ws17_c00422{word-spacing:13.528800px;}
.ws1e_c00422{word-spacing:16.387200px;}
.ws28_c00422{word-spacing:17.100000px;}
.wsf_c00422{word-spacing:27.547200px;}
._0_c00422{width:1.288800px;}
.fc0_c00422{color:rgb(0,0,0);}
.fs0_c00422{font-size:72.000000px;}
.y0_c00422{bottom:0.000000px;}
.y2_c00422{bottom:46.830450px;}
.y1_c00422{bottom:67.530450px;}
.y27_c00422{bottom:138.180450px;}
.y26_c00422{bottom:158.880450px;}
.y25_c00422{bottom:198.930450px;}
.y24_c00422{bottom:229.980450px;}
.y23_c00422{bottom:261.030450px;}
.y22_c00422{bottom:301.080450px;}
.y21_c00422{bottom:330.690450px;}
.y20_c00422{bottom:351.390450px;}
.y1f_c00422{bottom:372.090450px;}
.y1e_c00422{bottom:392.790450px;}
.y1d_c00422{bottom:413.490450px;}
.y1c_c00422{bottom:434.190450px;}
.y1b_c00422{bottom:454.890450px;}
.y1a_c00422{bottom:475.590450px;}
.y19_c00422{bottom:496.290450px;}
.y18_c00422{bottom:516.990450px;}
.y17_c00422{bottom:557.040450px;}
.y16_c00422{bottom:588.090450px;}
.y15_c00422{bottom:619.140450px;}
.y14_c00422{bottom:659.190450px;}
.y13_c00422{bottom:688.890450px;}
.y12_c00422{bottom:709.590450px;}
.y11_c00422{bottom:730.290450px;}
.y10_c00422{bottom:750.990450px;}
.yf_c00422{bottom:771.690450px;}
.ye_c00422{bottom:792.390450px;}
.yd_c00422{bottom:813.090450px;}
.yc_c00422{bottom:833.790450px;}
.yb_c00422{bottom:854.490450px;}
.ya_c00422{bottom:875.190450px;}
.y9_c00422{bottom:915.240450px;}
.y8_c00422{bottom:955.290450px;}
.y7_c00422{bottom:984.990450px;}
.y6_c00422{bottom:1005.690450px;}
.y5_c00422{bottom:1026.390450px;}
.y4_c00422{bottom:1066.440450px;}
.y3_c00422{bottom:1097.490450px;}
.h1_c00422{height:63.175781px;}
.h2_c00422{height:64.546875px;}
.h0_c00422{height:1263.000000px;}
.w1_c00422{width:892.500000px;}
.w0_c00422{width:892.830000px;}
.x0_c00422{left:0.000000px;}
.x2_c00422{left:170.100000px;}
.x3_c00422{left:245.430000px;}
.x1_c00422{left:738.360000px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.lsb_c00422{letter-spacing:-0.076800pt;}
.ls7_c00422{letter-spacing:-0.057600pt;}
.lsa_c00422{letter-spacing:-0.051200pt;}
.ls8_c00422{letter-spacing:-0.044800pt;}
.ls5_c00422{letter-spacing:-0.038400pt;}
.ls6_c00422{letter-spacing:-0.032000pt;}
.ls2_c00422{letter-spacing:-0.025600pt;}
.ls9_c00422{letter-spacing:-0.019200pt;}
.ls3_c00422{letter-spacing:-0.012800pt;}
.ls4_c00422{letter-spacing:-0.006400pt;}
.ls1_c00422{letter-spacing:0.000000pt;}
.ls0_c00422{letter-spacing:0.006400pt;}
.ws2_c00422{word-spacing:-3.699200pt;}
.ws1_c00422{word-spacing:-3.673600pt;}
.ws23_c00422{word-spacing:-3.366400pt;}
.ws22_c00422{word-spacing:-3.321600pt;}
.ws1a_c00422{word-spacing:-2.073600pt;}
.ws1b_c00422{word-spacing:-2.009600pt;}
.ws18_c00422{word-spacing:-1.772800pt;}
.ws10_c00422{word-spacing:-0.787200pt;}
.ws26_c00422{word-spacing:-0.531200pt;}
.ws27_c00422{word-spacing:-0.473600pt;}
.ws12_c00422{word-spacing:-0.166400pt;}
.ws11_c00422{word-spacing:-0.134400pt;}
.ws0_c00422{word-spacing:0.000000pt;}
.wsa_c00422{word-spacing:0.070400pt;}
.ws8_c00422{word-spacing:0.096000pt;}
.ws9_c00422{word-spacing:0.108800pt;}
.ws29_c00422{word-spacing:0.134400pt;}
.wsb_c00422{word-spacing:0.140800pt;}
.ws3_c00422{word-spacing:0.153600pt;}
.ws19_c00422{word-spacing:0.160000pt;}
.ws16_c00422{word-spacing:0.166400pt;}
.ws2a_c00422{word-spacing:0.460800pt;}
.ws2b_c00422{word-spacing:0.486400pt;}
.ws1f_c00422{word-spacing:1.408000pt;}
.ws20_c00422{word-spacing:1.472000pt;}
.ws21_c00422{word-spacing:1.766400pt;}
.wse_c00422{word-spacing:2.099200pt;}
.ws7_c00422{word-spacing:2.412800pt;}
.ws6_c00422{word-spacing:2.425600pt;}
.wsd_c00422{word-spacing:3.052800pt;}
.wsc_c00422{word-spacing:3.059200pt;}
.ws1c_c00422{word-spacing:5.299200pt;}
.ws1d_c00422{word-spacing:5.376000pt;}
.ws14_c00422{word-spacing:7.827200pt;}
.ws2c_c00422{word-spacing:7.840000pt;}
.ws13_c00422{word-spacing:7.846400pt;}
.ws5_c00422{word-spacing:9.081600pt;}
.ws4_c00422{word-spacing:9.107200pt;}
.ws25_c00422{word-spacing:9.740800pt;}
.ws24_c00422{word-spacing:9.772800pt;}
.ws15_c00422{word-spacing:11.411200pt;}
.ws17_c00422{word-spacing:12.025600pt;}
.ws1e_c00422{word-spacing:14.566400pt;}
.ws28_c00422{word-spacing:15.200000pt;}
.wsf_c00422{word-spacing:24.486400pt;}
._0_c00422{width:1.145600pt;}
.fs0_c00422{font-size:64.000000pt;}
.y0_c00422{bottom:0.000000pt;}
.y2_c00422{bottom:41.627067pt;}
.y1_c00422{bottom:60.027067pt;}
.y27_c00422{bottom:122.827067pt;}
.y26_c00422{bottom:141.227067pt;}
.y25_c00422{bottom:176.827067pt;}
.y24_c00422{bottom:204.427067pt;}
.y23_c00422{bottom:232.027067pt;}
.y22_c00422{bottom:267.627067pt;}
.y21_c00422{bottom:293.947067pt;}
.y20_c00422{bottom:312.347067pt;}
.y1f_c00422{bottom:330.747067pt;}
.y1e_c00422{bottom:349.147067pt;}
.y1d_c00422{bottom:367.547067pt;}
.y1c_c00422{bottom:385.947067pt;}
.y1b_c00422{bottom:404.347067pt;}
.y1a_c00422{bottom:422.747067pt;}
.y19_c00422{bottom:441.147067pt;}
.y18_c00422{bottom:459.547067pt;}
.y17_c00422{bottom:495.147067pt;}
.y16_c00422{bottom:522.747067pt;}
.y15_c00422{bottom:550.347067pt;}
.y14_c00422{bottom:585.947067pt;}
.y13_c00422{bottom:612.347067pt;}
.y12_c00422{bottom:630.747067pt;}
.y11_c00422{bottom:649.147067pt;}
.y10_c00422{bottom:667.547067pt;}
.yf_c00422{bottom:685.947067pt;}
.ye_c00422{bottom:704.347067pt;}
.yd_c00422{bottom:722.747067pt;}
.yc_c00422{bottom:741.147067pt;}
.yb_c00422{bottom:759.547067pt;}
.ya_c00422{bottom:777.947067pt;}
.y9_c00422{bottom:813.547067pt;}
.y8_c00422{bottom:849.147067pt;}
.y7_c00422{bottom:875.547067pt;}
.y6_c00422{bottom:893.947067pt;}
.y5_c00422{bottom:912.347067pt;}
.y4_c00422{bottom:947.947067pt;}
.y3_c00422{bottom:975.547067pt;}
.h1_c00422{height:56.156250pt;}
.h2_c00422{height:57.375000pt;}
.h0_c00422{height:1122.666667pt;}
.w1_c00422{width:793.333333pt;}
.w0_c00422{width:793.626667pt;}
.x0_c00422{left:0.000000pt;}
.x2_c00422{left:151.200000pt;}
.x3_c00422{left:218.160000pt;}
.x1_c00422{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a01e766aac10d2b2ee8daadd.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.093262;font-style:normal;font-weight:normal;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_ed94ad4bc16abce1b77addc7.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.106934;font-style: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;}
.lse_c00423{letter-spacing:-0.108000px;}
.ls5_c00423{letter-spacing:-0.086400px;}
.lsd_c00423{letter-spacing:-0.079200px;}
.lsc_c00423{letter-spacing:-0.072000px;}
.ls9_c00423{letter-spacing:-0.064800px;}
.lsa_c00423{letter-spacing:-0.057600px;}
.ls8_c00423{letter-spacing:-0.050400px;}
.ls3_c00423{letter-spacing:-0.043200px;}
.ls6_c00423{letter-spacing:-0.036000px;}
.ls2_c00423{letter-spacing:-0.028800px;}
.lsb_c00423{letter-spacing:-0.021600px;}
.ls4_c00423{letter-spacing:-0.014400px;}
.ls7_c00423{letter-spacing:-0.007200px;}
.ls1_c00423{letter-spacing:0.000000px;}
.ls0_c00423{letter-spacing:0.007200px;}
.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:-4.852800px;}
.ws5_c00423{word-spacing:-4.327200px;}
.ws29_c00423{word-spacing:-4.197600px;}
.ws2a_c00423{word-spacing:-4.183200px;}
.ws6_c00423{word-spacing:-4.075200px;}
.ws24_c00423{word-spacing:-3.484800px;}
.ws25_c00423{word-spacing:-3.463200px;}
.wsf_c00423{word-spacing:-3.391200px;}
.ws10_c00423{word-spacing:-3.376800px;}
.ws28_c00423{word-spacing:-2.289600px;}
.ws27_c00423{word-spacing:-2.282400px;}
.ws1b_c00423{word-spacing:-1.951200px;}
.ws1c_c00423{word-spacing:-1.893600px;}
.ws1a_c00423{word-spacing:-0.950400px;}
.ws19_c00423{word-spacing:-0.914400px;}
.ws0_c00423{word-spacing:0.000000px;}
.ws2e_c00423{word-spacing:0.115200px;}
.ws31_c00423{word-spacing:0.180000px;}
.wse_c00423{word-spacing:0.201600px;}
.ws2b_c00423{word-spacing:2.736000px;}
.ws17_c00423{word-spacing:2.757600px;}
.ws11_c00423{word-spacing:3.096000px;}
.ws14_c00423{word-spacing:4.024800px;}
.ws13_c00423{word-spacing:4.118400px;}
.ws23_c00423{word-spacing:4.140000px;}
.ws22_c00423{word-spacing:4.168800px;}
.ws16_c00423{word-spacing:4.802400px;}
.ws15_c00423{word-spacing:4.874400px;}
.ws7_c00423{word-spacing:7.250400px;}
.ws8_c00423{word-spacing:7.387200px;}
.ws20_c00423{word-spacing:7.408800px;}
.ws1f_c00423{word-spacing:8.042400px;}
.ws1e_c00423{word-spacing:8.136000px;}
.ws12_c00423{word-spacing:10.620000px;}
.ws21_c00423{word-spacing:11.354400px;}
.ws26_c00423{word-spacing:11.757600px;}
.ws2f_c00423{word-spacing:12.420000px;}
.ws4_c00423{word-spacing:14.587200px;}
.ws3_c00423{word-spacing:14.659200px;}
.ws2c_c00423{word-spacing:16.012800px;}
.ws2d_c00423{word-spacing:16.200000px;}
.wsa_c00423{word-spacing:17.733600px;}
.wsb_c00423{word-spacing:17.834400px;}
.ws30_c00423{word-spacing:18.180000px;}
.ws9_c00423{word-spacing:18.914400px;}
.ws18_c00423{word-spacing:19.238400px;}
.ws1d_c00423{word-spacing:22.147200px;}
.ws2_c00423{word-spacing:22.521600px;}
.wsd_c00423{word-spacing:25.351200px;}
.wsc_c00423{word-spacing:25.387200px;}
._0_c00423{width:1.008000px;}
.fc0_c00423{color:rgb(0,0,0);}
.fs0_c00423{font-size:72.000000px;}
.y0_c00423{bottom:0.000000px;}
.y2_c00423{bottom:46.830450px;}
.y1_c00423{bottom:67.530450px;}
.y28_c00423{bottom:245.280450px;}
.y27_c00423{bottom:285.330450px;}
.y26_c00423{bottom:315.030450px;}
.y25_c00423{bottom:335.730450px;}
.y24_c00423{bottom:356.430450px;}
.y23_c00423{bottom:396.390450px;}
.y22_c00423{bottom:427.440450px;}
.y21_c00423{bottom:467.490450px;}
.y20_c00423{bottom:497.190450px;}
.y1f_c00423{bottom:517.890450px;}
.y1e_c00423{bottom:538.590450px;}
.y1d_c00423{bottom:559.290450px;}
.y1c_c00423{bottom:579.990450px;}
.y1b_c00423{bottom:600.690450px;}
.y1a_c00423{bottom:621.390450px;}
.y19_c00423{bottom:642.090450px;}
.y18_c00423{bottom:662.790450px;}
.y17_c00423{bottom:683.490450px;}
.y16_c00423{bottom:704.190450px;}
.y15_c00423{bottom:724.890450px;}
.y14_c00423{bottom:745.590450px;}
.y13_c00423{bottom:766.290450px;}
.y12_c00423{bottom:786.990450px;}
.y11_c00423{bottom:807.690450px;}
.y10_c00423{bottom:828.390450px;}
.yf_c00423{bottom:849.090450px;}
.ye_c00423{bottom:869.790450px;}
.yd_c00423{bottom:890.490450px;}
.yc_c00423{bottom:911.190450px;}
.yb_c00423{bottom:931.890450px;}
.ya_c00423{bottom:952.590450px;}
.y9_c00423{bottom:973.290450px;}
.y8_c00423{bottom:993.990450px;}
.y7_c00423{bottom:1014.690450px;}
.y6_c00423{bottom:1035.390450px;}
.y5_c00423{bottom:1056.090450px;}
.y4_c00423{bottom:1076.790450px;}
.y3_c00423{bottom:1097.490450px;}
.h1_c00423{height:63.175781px;}
.h2_c00423{height:64.546875px;}
.h0_c00423{height:1263.000000px;}
.w1_c00423{width:892.500000px;}
.w0_c00423{width:892.830000px;}
.x0_c00423{left:0.000000px;}
.x2_c00423{left:127.620000px;}
.x3_c00423{left:202.950000px;}
.x1_c00423{left:695.880000px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.lse_c00423{letter-spacing:-0.096000pt;}
.ls5_c00423{letter-spacing:-0.076800pt;}
.lsd_c00423{letter-spacing:-0.070400pt;}
.lsc_c00423{letter-spacing:-0.064000pt;}
.ls9_c00423{letter-spacing:-0.057600pt;}
.lsa_c00423{letter-spacing:-0.051200pt;}
.ls8_c00423{letter-spacing:-0.044800pt;}
.ls3_c00423{letter-spacing:-0.038400pt;}
.ls6_c00423{letter-spacing:-0.032000pt;}
.ls2_c00423{letter-spacing:-0.025600pt;}
.lsb_c00423{letter-spacing:-0.019200pt;}
.ls4_c00423{letter-spacing:-0.012800pt;}
.ls7_c00423{letter-spacing:-0.006400pt;}
.ls1_c00423{letter-spacing:0.000000pt;}
.ls0_c00423{letter-spacing:0.006400pt;}
.ws1_c00423{word-spacing:-4.313600pt;}
.ws5_c00423{word-spacing:-3.846400pt;}
.ws29_c00423{word-spacing:-3.731200pt;}
.ws2a_c00423{word-spacing:-3.718400pt;}
.ws6_c00423{word-spacing:-3.622400pt;}
.ws24_c00423{word-spacing:-3.097600pt;}
.ws25_c00423{word-spacing:-3.078400pt;}
.wsf_c00423{word-spacing:-3.014400pt;}
.ws10_c00423{word-spacing:-3.001600pt;}
.ws28_c00423{word-spacing:-2.035200pt;}
.ws27_c00423{word-spacing:-2.028800pt;}
.ws1b_c00423{word-spacing:-1.734400pt;}
.ws1c_c00423{word-spacing:-1.683200pt;}
.ws1a_c00423{word-spacing:-0.844800pt;}
.ws19_c00423{word-spacing:-0.812800pt;}
.ws0_c00423{word-spacing:0.000000pt;}
.ws2e_c00423{word-spacing:0.102400pt;}
.ws31_c00423{word-spacing:0.160000pt;}
.wse_c00423{word-spacing:0.179200pt;}
.ws2b_c00423{word-spacing:2.432000pt;}
.ws17_c00423{word-spacing:2.451200pt;}
.ws11_c00423{word-spacing:2.752000pt;}
.ws14_c00423{word-spacing:3.577600pt;}
.ws13_c00423{word-spacing:3.660800pt;}
.ws23_c00423{word-spacing:3.680000pt;}
.ws22_c00423{word-spacing:3.705600pt;}
.ws16_c00423{word-spacing:4.268800pt;}
.ws15_c00423{word-spacing:4.332800pt;}
.ws7_c00423{word-spacing:6.444800pt;}
.ws8_c00423{word-spacing:6.566400pt;}
.ws20_c00423{word-spacing:6.585600pt;}
.ws1f_c00423{word-spacing:7.148800pt;}
.ws1e_c00423{word-spacing:7.232000pt;}
.ws12_c00423{word-spacing:9.440000pt;}
.ws21_c00423{word-spacing:10.092800pt;}
.ws26_c00423{word-spacing:10.451200pt;}
.ws2f_c00423{word-spacing:11.040000pt;}
.ws4_c00423{word-spacing:12.966400pt;}
.ws3_c00423{word-spacing:13.030400pt;}
.ws2c_c00423{word-spacing:14.233600pt;}
.ws2d_c00423{word-spacing:14.400000pt;}
.wsa_c00423{word-spacing:15.763200pt;}
.wsb_c00423{word-spacing:15.852800pt;}
.ws30_c00423{word-spacing:16.160000pt;}
.ws9_c00423{word-spacing:16.812800pt;}
.ws18_c00423{word-spacing:17.100800pt;}
.ws1d_c00423{word-spacing:19.686400pt;}
.ws2_c00423{word-spacing:20.019200pt;}
.wsd_c00423{word-spacing:22.534400pt;}
.wsc_c00423{word-spacing:22.566400pt;}
._0_c00423{width:0.896000pt;}
.fs0_c00423{font-size:64.000000pt;}
.y0_c00423{bottom:0.000000pt;}
.y2_c00423{bottom:41.627067pt;}
.y1_c00423{bottom:60.027067pt;}
.y28_c00423{bottom:218.027067pt;}
.y27_c00423{bottom:253.627067pt;}
.y26_c00423{bottom:280.027067pt;}
.y25_c00423{bottom:298.427067pt;}
.y24_c00423{bottom:316.827067pt;}
.y23_c00423{bottom:352.347067pt;}
.y22_c00423{bottom:379.947067pt;}
.y21_c00423{bottom:415.547067pt;}
.y20_c00423{bottom:441.947067pt;}
.y1f_c00423{bottom:460.347067pt;}
.y1e_c00423{bottom:478.747067pt;}
.y1d_c00423{bottom:497.147067pt;}
.y1c_c00423{bottom:515.547067pt;}
.y1b_c00423{bottom:533.947067pt;}
.y1a_c00423{bottom:552.347067pt;}
.y19_c00423{bottom:570.747067pt;}
.y18_c00423{bottom:589.147067pt;}
.y17_c00423{bottom:607.547067pt;}
.y16_c00423{bottom:625.947067pt;}
.y15_c00423{bottom:644.347067pt;}
.y14_c00423{bottom:662.747067pt;}
.y13_c00423{bottom:681.147067pt;}
.y12_c00423{bottom:699.547067pt;}
.y11_c00423{bottom:717.947067pt;}
.y10_c00423{bottom:736.347067pt;}
.yf_c00423{bottom:754.747067pt;}
.ye_c00423{bottom:773.147067pt;}
.yd_c00423{bottom:791.547067pt;}
.yc_c00423{bottom:809.947067pt;}
.yb_c00423{bottom:828.347067pt;}
.ya_c00423{bottom:846.747067pt;}
.y9_c00423{bottom:865.147067pt;}
.y8_c00423{bottom:883.547067pt;}
.y7_c00423{bottom:901.947067pt;}
.y6_c00423{bottom:920.347067pt;}
.y5_c00423{bottom:938.747067pt;}
.y4_c00423{bottom:957.147067pt;}
.y3_c00423{bottom:975.547067pt;}
.h1_c00423{height:56.156250pt;}
.h2_c00423{height:57.375000pt;}
.h0_c00423{height:1122.666667pt;}
.w1_c00423{width:793.333333pt;}
.w0_c00423{width:793.626667pt;}
.x0_c00423{left:0.000000pt;}
.x2_c00423{left:113.440000pt;}
.x3_c00423{left:180.400000pt;}
.x1_c00423{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c7dcfab1c4ccb51c96fb2d40.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.093262;font-style:normal;font-weight:normal;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_aab54be97a52a573f8ad3921.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00424;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00424;src:url('chunks/assets/font_43fad524cf7ddc5bf5e5d261.woff2')format("woff");}.ff4_c00424{font-family:ff4_c00424;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00424{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m1_c00424{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.v0_c00424{vertical-align:0.000000px;}
.ls6_c00424{letter-spacing:-0.050400px;}
.ls4_c00424{letter-spacing:-0.036000px;}
.ls7_c00424{letter-spacing:-0.021600px;}
.ls5_c00424{letter-spacing:-0.007200px;}
.ls2_c00424{letter-spacing:0.000000px;}
.ls8_c00424{letter-spacing:0.007200px;}
.ls1_c00424{letter-spacing:0.014400px;}
.ls0_c00424{letter-spacing:0.021600px;}
.ls3_c00424{letter-spacing:0.144288px;}
.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:-0.408816px;}
.ws0_c00424{word-spacing:0.000000px;}
.ws4_c00424{word-spacing:0.144000px;}
.wsc_c00424{word-spacing:0.158400px;}
.ws5_c00424{word-spacing:0.216000px;}
.ws3_c00424{word-spacing:7.012800px;}
.ws2_c00424{word-spacing:7.142400px;}
.ws7_c00424{word-spacing:16.732800px;}
.ws6_c00424{word-spacing:16.840800px;}
.ws9_c00424{word-spacing:19.576800px;}
.ws8_c00424{word-spacing:19.612800px;}
.wsb_c00424{word-spacing:25.365600px;}
.wsa_c00424{word-spacing:25.459200px;}
.wsf_c00424{word-spacing:25.797600px;}
.wse_c00424{word-spacing:25.819200px;}
.wsd_c00424{word-spacing:28.620000px;}
._0_c00424{margin-left:-1.082160px;}
.fc1_c00424{color:rgb(31,73,124);}
.fc0_c00424{color:rgb(0,0,0);}
.fs1_c00424{font-size:60.120000px;}
.fs0_c00424{font-size:72.000000px;}
.y0_c00424{bottom:0.000000px;}
.y2_c00424{bottom:46.830450px;}
.y1_c00424{bottom:67.530450px;}
.y10_c00424{bottom:140.520450px;}
.yf_c00424{bottom:171.570450px;}
.ye_c00424{bottom:202.620450px;}
.yd_c00424{bottom:242.670450px;}
.yc_c00424{bottom:272.370450px;}
.yb_c00424{bottom:293.070450px;}
.ya_c00424{bottom:313.770450px;}
.y9_c00424{bottom:334.470450px;}
.y8_c00424{bottom:374.520450px;}
.y7_c00424{bottom:405.570450px;}
.y6_c00424{bottom:445.620450px;}
.y5_c00424{bottom:485.670450px;}
.y4_c00424{bottom:520.770600px;}
.y3_c00424{bottom:553.980450px;}
.h2_c00424{height:62.703281px;}
.h1_c00424{height:63.175781px;}
.h3_c00424{height:64.546875px;}
.h0_c00424{height:1263.000000px;}
.w1_c00424{width:892.500000px;}
.w0_c00424{width:892.830000px;}
.x0_c00424{left:0.000000px;}
.x2_c00424{left:170.098135px;}
.x4_c00424{left:245.435226px;}
.x1_c00424{left:738.360000px;}
.x3_c00424{left:842.843319px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls6_c00424{letter-spacing:-0.044800pt;}
.ls4_c00424{letter-spacing:-0.032000pt;}
.ls7_c00424{letter-spacing:-0.019200pt;}
.ls5_c00424{letter-spacing:-0.006400pt;}
.ls2_c00424{letter-spacing:0.000000pt;}
.ls8_c00424{letter-spacing:0.006400pt;}
.ls1_c00424{letter-spacing:0.012800pt;}
.ls0_c00424{letter-spacing:0.019200pt;}
.ls3_c00424{letter-spacing:0.128256pt;}
.ws1_c00424{word-spacing:-0.363392pt;}
.ws0_c00424{word-spacing:0.000000pt;}
.ws4_c00424{word-spacing:0.128000pt;}
.wsc_c00424{word-spacing:0.140800pt;}
.ws5_c00424{word-spacing:0.192000pt;}
.ws3_c00424{word-spacing:6.233600pt;}
.ws2_c00424{word-spacing:6.348800pt;}
.ws7_c00424{word-spacing:14.873600pt;}
.ws6_c00424{word-spacing:14.969600pt;}
.ws9_c00424{word-spacing:17.401600pt;}
.ws8_c00424{word-spacing:17.433600pt;}
.wsb_c00424{word-spacing:22.547200pt;}
.wsa_c00424{word-spacing:22.630400pt;}
.wsf_c00424{word-spacing:22.931200pt;}
.wse_c00424{word-spacing:22.950400pt;}
.wsd_c00424{word-spacing:25.440000pt;}
._0_c00424{margin-left:-0.961920pt;}
.fs1_c00424{font-size:53.440000pt;}
.fs0_c00424{font-size:64.000000pt;}
.y0_c00424{bottom:0.000000pt;}
.y2_c00424{bottom:41.627067pt;}
.y1_c00424{bottom:60.027067pt;}
.y10_c00424{bottom:124.907067pt;}
.yf_c00424{bottom:152.507067pt;}
.ye_c00424{bottom:180.107067pt;}
.yd_c00424{bottom:215.707067pt;}
.yc_c00424{bottom:242.107067pt;}
.yb_c00424{bottom:260.507067pt;}
.ya_c00424{bottom:278.907067pt;}
.y9_c00424{bottom:297.307067pt;}
.y8_c00424{bottom:332.907067pt;}
.y7_c00424{bottom:360.507067pt;}
.y6_c00424{bottom:396.107067pt;}
.y5_c00424{bottom:431.707067pt;}
.y4_c00424{bottom:462.907200pt;}
.y3_c00424{bottom:492.427067pt;}
.h2_c00424{height:55.736250pt;}
.h1_c00424{height:56.156250pt;}
.h3_c00424{height:57.375000pt;}
.h0_c00424{height:1122.666667pt;}
.w1_c00424{width:793.333333pt;}
.w0_c00424{width:793.626667pt;}
.x0_c00424{left:0.000000pt;}
.x2_c00424{left:151.198342pt;}
.x4_c00424{left:218.164645pt;}
.x1_c00424{left:656.320000pt;}
.x3_c00424{left:749.194061pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5ff0f7fc33a3623741df946.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.093262;font-style:normal;font-weight:normal;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_59c2772e4c89640ff3f9aded.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00425{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.lsd_c00425{letter-spacing:-0.093600px;}
.ls5_c00425{letter-spacing:-0.072000px;}
.lsc_c00425{letter-spacing:-0.064800px;}
.ls7_c00425{letter-spacing:-0.057600px;}
.ls4_c00425{letter-spacing:-0.050400px;}
.ls9_c00425{letter-spacing:-0.043200px;}
.ls3_c00425{letter-spacing:-0.036000px;}
.ls6_c00425{letter-spacing:-0.028800px;}
.lsa_c00425{letter-spacing:-0.021600px;}
.ls8_c00425{letter-spacing:-0.014400px;}
.lsb_c00425{letter-spacing:-0.007200px;}
.ls2_c00425{letter-spacing:0.000000px;}
.ls1_c00425{letter-spacing:0.007200px;}
.ls0_c00425{letter-spacing:0.028800px;}
.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;}
}
.wsd_c00425{word-spacing:-4.521600px;}
.wsc_c00425{word-spacing:-4.464000px;}
.ws8_c00425{word-spacing:-0.900000px;}
.ws9_c00425{word-spacing:-0.864000px;}
.ws20_c00425{word-spacing:-0.540000px;}
.ws0_c00425{word-spacing:0.000000px;}
.ws18_c00425{word-spacing:0.100800px;}
.ws1_c00425{word-spacing:0.129600px;}
.ws23_c00425{word-spacing:0.165600px;}
.wse_c00425{word-spacing:0.172800px;}
.ws13_c00425{word-spacing:0.180000px;}
.ws5_c00425{word-spacing:0.187200px;}
.ws17_c00425{word-spacing:0.194400px;}
.ws19_c00425{word-spacing:0.223200px;}
.ws6_c00425{word-spacing:0.518400px;}
.ws7_c00425{word-spacing:0.547200px;}
.ws1a_c00425{word-spacing:0.900000px;}
.ws22_c00425{word-spacing:1.267200px;}
.ws21_c00425{word-spacing:1.288800px;}
.ws1b_c00425{word-spacing:1.296000px;}
.ws2_c00425{word-spacing:1.994400px;}
.ws16_c00425{word-spacing:5.594400px;}
.ws3_c00425{word-spacing:7.696800px;}
.ws4_c00425{word-spacing:7.790400px;}
.wsa_c00425{word-spacing:8.056800px;}
.wsb_c00425{word-spacing:8.121600px;}
.ws1c_c00425{word-spacing:8.388000px;}
.wsf_c00425{word-spacing:8.431200px;}
.ws10_c00425{word-spacing:8.467200px;}
.ws1d_c00425{word-spacing:8.496000px;}
.ws15_c00425{word-spacing:10.548000px;}
.ws14_c00425{word-spacing:10.591200px;}
.ws12_c00425{word-spacing:13.478400px;}
.ws11_c00425{word-spacing:13.521600px;}
.ws1e_c00425{word-spacing:15.667200px;}
.ws1f_c00425{word-spacing:15.753600px;}
._0_c00425{margin-left:-1.080000px;}
._1_c00425{width:1.296000px;}
.fc0_c00425{color:rgb(0,0,0);}
.fs0_c00425{font-size:72.000000px;}
.y0_c00425{bottom:0.000000px;}
.y2_c00425{bottom:46.830450px;}
.y1_c00425{bottom:67.530450px;}
.y27_c00425{bottom:188.580450px;}
.y26_c00425{bottom:218.280450px;}
.y25_c00425{bottom:238.980450px;}
.y24_c00425{bottom:259.680450px;}
.y23_c00425{bottom:280.380450px;}
.y22_c00425{bottom:301.080450px;}
.y21_c00425{bottom:321.690450px;}
.y20_c00425{bottom:342.390450px;}
.y1f_c00425{bottom:363.090450px;}
.y1e_c00425{bottom:383.790450px;}
.y1d_c00425{bottom:404.490450px;}
.y1c_c00425{bottom:425.190450px;}
.y1b_c00425{bottom:445.890450px;}
.y1a_c00425{bottom:466.590450px;}
.y19_c00425{bottom:487.290450px;}
.y18_c00425{bottom:527.340450px;}
.y17_c00425{bottom:567.390450px;}
.y16_c00425{bottom:597.090450px;}
.y15_c00425{bottom:617.790450px;}
.y14_c00425{bottom:638.490450px;}
.y13_c00425{bottom:659.190450px;}
.y12_c00425{bottom:679.890450px;}
.y11_c00425{bottom:719.940450px;}
.y10_c00425{bottom:759.990450px;}
.yf_c00425{bottom:791.040450px;}
.ye_c00425{bottom:822.090450px;}
.yd_c00425{bottom:862.140450px;}
.yc_c00425{bottom:891.840450px;}
.yb_c00425{bottom:912.540450px;}
.ya_c00425{bottom:933.240450px;}
.y9_c00425{bottom:953.940450px;}
.y8_c00425{bottom:974.640450px;}
.y7_c00425{bottom:995.340450px;}
.y6_c00425{bottom:1016.040450px;}
.y5_c00425{bottom:1036.740450px;}
.y4_c00425{bottom:1057.440450px;}
.y3_c00425{bottom:1097.490450px;}
.h1_c00425{height:63.175781px;}
.h2_c00425{height:64.546875px;}
.h0_c00425{height:1263.000000px;}
.w1_c00425{width:892.500000px;}
.w0_c00425{width:892.830000px;}
.x0_c00425{left:0.000000px;}
.x2_c00425{left:127.620000px;}
.x3_c00425{left:202.950000px;}
.x1_c00425{left:695.880000px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.lsd_c00425{letter-spacing:-0.083200pt;}
.ls5_c00425{letter-spacing:-0.064000pt;}
.lsc_c00425{letter-spacing:-0.057600pt;}
.ls7_c00425{letter-spacing:-0.051200pt;}
.ls4_c00425{letter-spacing:-0.044800pt;}
.ls9_c00425{letter-spacing:-0.038400pt;}
.ls3_c00425{letter-spacing:-0.032000pt;}
.ls6_c00425{letter-spacing:-0.025600pt;}
.lsa_c00425{letter-spacing:-0.019200pt;}
.ls8_c00425{letter-spacing:-0.012800pt;}
.lsb_c00425{letter-spacing:-0.006400pt;}
.ls2_c00425{letter-spacing:0.000000pt;}
.ls1_c00425{letter-spacing:0.006400pt;}
.ls0_c00425{letter-spacing:0.025600pt;}
.wsd_c00425{word-spacing:-4.019200pt;}
.wsc_c00425{word-spacing:-3.968000pt;}
.ws8_c00425{word-spacing:-0.800000pt;}
.ws9_c00425{word-spacing:-0.768000pt;}
.ws20_c00425{word-spacing:-0.480000pt;}
.ws0_c00425{word-spacing:0.000000pt;}
.ws18_c00425{word-spacing:0.089600pt;}
.ws1_c00425{word-spacing:0.115200pt;}
.ws23_c00425{word-spacing:0.147200pt;}
.wse_c00425{word-spacing:0.153600pt;}
.ws13_c00425{word-spacing:0.160000pt;}
.ws5_c00425{word-spacing:0.166400pt;}
.ws17_c00425{word-spacing:0.172800pt;}
.ws19_c00425{word-spacing:0.198400pt;}
.ws6_c00425{word-spacing:0.460800pt;}
.ws7_c00425{word-spacing:0.486400pt;}
.ws1a_c00425{word-spacing:0.800000pt;}
.ws22_c00425{word-spacing:1.126400pt;}
.ws21_c00425{word-spacing:1.145600pt;}
.ws1b_c00425{word-spacing:1.152000pt;}
.ws2_c00425{word-spacing:1.772800pt;}
.ws16_c00425{word-spacing:4.972800pt;}
.ws3_c00425{word-spacing:6.841600pt;}
.ws4_c00425{word-spacing:6.924800pt;}
.wsa_c00425{word-spacing:7.161600pt;}
.wsb_c00425{word-spacing:7.219200pt;}
.ws1c_c00425{word-spacing:7.456000pt;}
.wsf_c00425{word-spacing:7.494400pt;}
.ws10_c00425{word-spacing:7.526400pt;}
.ws1d_c00425{word-spacing:7.552000pt;}
.ws15_c00425{word-spacing:9.376000pt;}
.ws14_c00425{word-spacing:9.414400pt;}
.ws12_c00425{word-spacing:11.980800pt;}
.ws11_c00425{word-spacing:12.019200pt;}
.ws1e_c00425{word-spacing:13.926400pt;}
.ws1f_c00425{word-spacing:14.003200pt;}
._0_c00425{margin-left:-0.960000pt;}
._1_c00425{width:1.152000pt;}
.fs0_c00425{font-size:64.000000pt;}
.y0_c00425{bottom:0.000000pt;}
.y2_c00425{bottom:41.627067pt;}
.y1_c00425{bottom:60.027067pt;}
.y27_c00425{bottom:167.627067pt;}
.y26_c00425{bottom:194.027067pt;}
.y25_c00425{bottom:212.427067pt;}
.y24_c00425{bottom:230.827067pt;}
.y23_c00425{bottom:249.227067pt;}
.y22_c00425{bottom:267.627067pt;}
.y21_c00425{bottom:285.947067pt;}
.y20_c00425{bottom:304.347067pt;}
.y1f_c00425{bottom:322.747067pt;}
.y1e_c00425{bottom:341.147067pt;}
.y1d_c00425{bottom:359.547067pt;}
.y1c_c00425{bottom:377.947067pt;}
.y1b_c00425{bottom:396.347067pt;}
.y1a_c00425{bottom:414.747067pt;}
.y19_c00425{bottom:433.147067pt;}
.y18_c00425{bottom:468.747067pt;}
.y17_c00425{bottom:504.347067pt;}
.y16_c00425{bottom:530.747067pt;}
.y15_c00425{bottom:549.147067pt;}
.y14_c00425{bottom:567.547067pt;}
.y13_c00425{bottom:585.947067pt;}
.y12_c00425{bottom:604.347067pt;}
.y11_c00425{bottom:639.947067pt;}
.y10_c00425{bottom:675.547067pt;}
.yf_c00425{bottom:703.147067pt;}
.ye_c00425{bottom:730.747067pt;}
.yd_c00425{bottom:766.347067pt;}
.yc_c00425{bottom:792.747067pt;}
.yb_c00425{bottom:811.147067pt;}
.ya_c00425{bottom:829.547067pt;}
.y9_c00425{bottom:847.947067pt;}
.y8_c00425{bottom:866.347067pt;}
.y7_c00425{bottom:884.747067pt;}
.y6_c00425{bottom:903.147067pt;}
.y5_c00425{bottom:921.547067pt;}
.y4_c00425{bottom:939.947067pt;}
.y3_c00425{bottom:975.547067pt;}
.h1_c00425{height:56.156250pt;}
.h2_c00425{height:57.375000pt;}
.h0_c00425{height:1122.666667pt;}
.w1_c00425{width:793.333333pt;}
.w0_c00425{width:793.626667pt;}
.x0_c00425{left:0.000000pt;}
.x2_c00425{left:113.440000pt;}
.x3_c00425{left:180.400000pt;}
.x1_c00425{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dee2cf6c5b08ef3a343dda87.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.093262;font-style:normal;font-weight:normal;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_1438d2bbbf7a4b0b60b060c4.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:1.106934;font-style:normal;font-weight:normal;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_2255acb3be69f211c5e58dd8.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00426{letter-spacing:-0.079200px;}
.lsb_c00426{letter-spacing:-0.072000px;}
.ls6_c00426{letter-spacing:-0.064800px;}
.lsa_c00426{letter-spacing:-0.057600px;}
.ls7_c00426{letter-spacing:-0.050400px;}
.ls9_c00426{letter-spacing:-0.043200px;}
.ls3_c00426{letter-spacing:-0.036000px;}
.ls5_c00426{letter-spacing:-0.028800px;}
.ls8_c00426{letter-spacing:-0.021600px;}
.ls4_c00426{letter-spacing:-0.014400px;}
.lsc_c00426{letter-spacing:-0.007200px;}
.ls2_c00426{letter-spacing:0.000000px;}
.ls0_c00426{letter-spacing:0.007200px;}
.ls1_c00426{letter-spacing:0.028800px;}
.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;}
}
.ws16_c00426{word-spacing:-4.478400px;}
.ws25_c00426{word-spacing:-4.154400px;}
.ws26_c00426{word-spacing:-4.140000px;}
.ws1c_c00426{word-spacing:-3.859200px;}
.ws1d_c00426{word-spacing:-3.772800px;}
.ws1e_c00426{word-spacing:-3.729600px;}
.ws8_c00426{word-spacing:-3.052800px;}
.ws35_c00426{word-spacing:-2.642400px;}
.wse_c00426{word-spacing:-2.505600px;}
.wsd_c00426{word-spacing:-2.311200px;}
.ws32_c00426{word-spacing:-1.224000px;}
.ws31_c00426{word-spacing:-1.166400px;}
.ws14_c00426{word-spacing:-0.900000px;}
.ws13_c00426{word-spacing:-0.813600px;}
.ws2f_c00426{word-spacing:-0.806400px;}
.ws21_c00426{word-spacing:-0.525600px;}
.ws20_c00426{word-spacing:-0.518400px;}
.ws15_c00426{word-spacing:-0.511200px;}
.ws0_c00426{word-spacing:0.000000px;}
.ws30_c00426{word-spacing:0.129600px;}
.ws10_c00426{word-spacing:0.151200px;}
.ws24_c00426{word-spacing:0.172800px;}
.ws34_c00426{word-spacing:0.187200px;}
.wsf_c00426{word-spacing:0.201600px;}
.ws36_c00426{word-spacing:0.331200px;}
.ws17_c00426{word-spacing:1.195200px;}
.ws18_c00426{word-spacing:1.353600px;}
.ws19_c00426{word-spacing:2.361600px;}
.ws33_c00426{word-spacing:2.383200px;}
.wsa_c00426{word-spacing:3.420000px;}
.ws9_c00426{word-spacing:3.448800px;}
.ws2c_c00426{word-spacing:4.874400px;}
.ws22_c00426{word-spacing:5.220000px;}
.ws23_c00426{word-spacing:8.481600px;}
.ws1a_c00426{word-spacing:9.525600px;}
.ws1b_c00426{word-spacing:9.554400px;}
.ws1f_c00426{word-spacing:9.777600px;}
.ws11_c00426{word-spacing:9.900000px;}
.ws1_c00426{word-spacing:9.914400px;}
.ws12_c00426{word-spacing:9.928800px;}
.ws2_c00426{word-spacing:9.950400px;}
.ws4_c00426{word-spacing:11.692800px;}
.ws5_c00426{word-spacing:11.764800px;}
.ws27_c00426{word-spacing:14.551200px;}
.ws28_c00426{word-spacing:14.601600px;}
.ws2a_c00426{word-spacing:15.667200px;}
.ws29_c00426{word-spacing:15.674400px;}
.ws2b_c00426{word-spacing:18.201600px;}
.wsc_c00426{word-spacing:18.511200px;}
.wsb_c00426{word-spacing:18.554400px;}
.ws6_c00426{word-spacing:20.959200px;}
.ws7_c00426{word-spacing:21.103200px;}
.ws3_c00426{word-spacing:28.598400px;}
.ws2d_c00426{word-spacing:61.380000px;}
.ws2e_c00426{word-spacing:61.401600px;}
._1_c00426{margin-left:-1.166400px;}
._0_c00426{width:1.015200px;}
.fc0_c00426{color:rgb(0,0,0);}
.fs0_c00426{font-size:72.000000px;}
.y0_c00426{bottom:0.000000px;}
.y2_c00426{bottom:46.830450px;}
.y1_c00426{bottom:67.530450px;}
.y28_c00426{bottom:141.780450px;}
.y27_c00426{bottom:162.480450px;}
.y26_c00426{bottom:183.180450px;}
.y25_c00426{bottom:203.880450px;}
.y24_c00426{bottom:224.580450px;}
.y23_c00426{bottom:245.280450px;}
.y22_c00426{bottom:265.980450px;}
.y21_c00426{bottom:306.030450px;}
.y20_c00426{bottom:346.080450px;}
.y1f_c00426{bottom:375.690450px;}
.y1e_c00426{bottom:396.390450px;}
.y1d_c00426{bottom:417.090450px;}
.y1c_c00426{bottom:437.790450px;}
.y1b_c00426{bottom:458.490450px;}
.y1a_c00426{bottom:479.190450px;}
.y19_c00426{bottom:499.890450px;}
.y18_c00426{bottom:520.590450px;}
.y17_c00426{bottom:541.290450px;}
.y16_c00426{bottom:561.990450px;}
.y15_c00426{bottom:582.690450px;}
.y14_c00426{bottom:603.390450px;}
.y13_c00426{bottom:624.090450px;}
.y12_c00426{bottom:644.790450px;}
.y11_c00426{bottom:665.490450px;}
.y10_c00426{bottom:686.190450px;}
.yf_c00426{bottom:706.890450px;}
.ye_c00426{bottom:746.940450px;}
.yd_c00426{bottom:777.990450px;}
.yc_c00426{bottom:809.040450px;}
.yb_c00426{bottom:849.090450px;}
.ya_c00426{bottom:880.140450px;}
.y9_c00426{bottom:911.190450px;}
.y8_c00426{bottom:942.240450px;}
.y7_c00426{bottom:973.290450px;}
.y6_c00426{bottom:1004.340450px;}
.y5_c00426{bottom:1035.390450px;}
.y4_c00426{bottom:1066.440450px;}
.y3_c00426{bottom:1097.490450px;}
.h1_c00426{height:63.175781px;}
.h2_c00426{height:64.546875px;}
.h3_c00426{height:75.093750px;}
.h0_c00426{height:1263.000000px;}
.w1_c00426{width:892.500000px;}
.w0_c00426{width:892.830000px;}
.x0_c00426{left:0.000000px;}
.x2_c00426{left:170.100000px;}
.x3_c00426{left:245.430000px;}
.x1_c00426{left:738.360000px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.lsd_c00426{letter-spacing:-0.070400pt;}
.lsb_c00426{letter-spacing:-0.064000pt;}
.ls6_c00426{letter-spacing:-0.057600pt;}
.lsa_c00426{letter-spacing:-0.051200pt;}
.ls7_c00426{letter-spacing:-0.044800pt;}
.ls9_c00426{letter-spacing:-0.038400pt;}
.ls3_c00426{letter-spacing:-0.032000pt;}
.ls5_c00426{letter-spacing:-0.025600pt;}
.ls8_c00426{letter-spacing:-0.019200pt;}
.ls4_c00426{letter-spacing:-0.012800pt;}
.lsc_c00426{letter-spacing:-0.006400pt;}
.ls2_c00426{letter-spacing:0.000000pt;}
.ls0_c00426{letter-spacing:0.006400pt;}
.ls1_c00426{letter-spacing:0.025600pt;}
.ws16_c00426{word-spacing:-3.980800pt;}
.ws25_c00426{word-spacing:-3.692800pt;}
.ws26_c00426{word-spacing:-3.680000pt;}
.ws1c_c00426{word-spacing:-3.430400pt;}
.ws1d_c00426{word-spacing:-3.353600pt;}
.ws1e_c00426{word-spacing:-3.315200pt;}
.ws8_c00426{word-spacing:-2.713600pt;}
.ws35_c00426{word-spacing:-2.348800pt;}
.wse_c00426{word-spacing:-2.227200pt;}
.wsd_c00426{word-spacing:-2.054400pt;}
.ws32_c00426{word-spacing:-1.088000pt;}
.ws31_c00426{word-spacing:-1.036800pt;}
.ws14_c00426{word-spacing:-0.800000pt;}
.ws13_c00426{word-spacing:-0.723200pt;}
.ws2f_c00426{word-spacing:-0.716800pt;}
.ws21_c00426{word-spacing:-0.467200pt;}
.ws20_c00426{word-spacing:-0.460800pt;}
.ws15_c00426{word-spacing:-0.454400pt;}
.ws0_c00426{word-spacing:0.000000pt;}
.ws30_c00426{word-spacing:0.115200pt;}
.ws10_c00426{word-spacing:0.134400pt;}
.ws24_c00426{word-spacing:0.153600pt;}
.ws34_c00426{word-spacing:0.166400pt;}
.wsf_c00426{word-spacing:0.179200pt;}
.ws36_c00426{word-spacing:0.294400pt;}
.ws17_c00426{word-spacing:1.062400pt;}
.ws18_c00426{word-spacing:1.203200pt;}
.ws19_c00426{word-spacing:2.099200pt;}
.ws33_c00426{word-spacing:2.118400pt;}
.wsa_c00426{word-spacing:3.040000pt;}
.ws9_c00426{word-spacing:3.065600pt;}
.ws2c_c00426{word-spacing:4.332800pt;}
.ws22_c00426{word-spacing:4.640000pt;}
.ws23_c00426{word-spacing:7.539200pt;}
.ws1a_c00426{word-spacing:8.467200pt;}
.ws1b_c00426{word-spacing:8.492800pt;}
.ws1f_c00426{word-spacing:8.691200pt;}
.ws11_c00426{word-spacing:8.800000pt;}
.ws1_c00426{word-spacing:8.812800pt;}
.ws12_c00426{word-spacing:8.825600pt;}
.ws2_c00426{word-spacing:8.844800pt;}
.ws4_c00426{word-spacing:10.393600pt;}
.ws5_c00426{word-spacing:10.457600pt;}
.ws27_c00426{word-spacing:12.934400pt;}
.ws28_c00426{word-spacing:12.979200pt;}
.ws2a_c00426{word-spacing:13.926400pt;}
.ws29_c00426{word-spacing:13.932800pt;}
.ws2b_c00426{word-spacing:16.179200pt;}
.wsc_c00426{word-spacing:16.454400pt;}
.wsb_c00426{word-spacing:16.492800pt;}
.ws6_c00426{word-spacing:18.630400pt;}
.ws7_c00426{word-spacing:18.758400pt;}
.ws3_c00426{word-spacing:25.420800pt;}
.ws2d_c00426{word-spacing:54.560000pt;}
.ws2e_c00426{word-spacing:54.579200pt;}
._1_c00426{margin-left:-1.036800pt;}
._0_c00426{width:0.902400pt;}
.fs0_c00426{font-size:64.000000pt;}
.y0_c00426{bottom:0.000000pt;}
.y2_c00426{bottom:41.627067pt;}
.y1_c00426{bottom:60.027067pt;}
.y28_c00426{bottom:126.027067pt;}
.y27_c00426{bottom:144.427067pt;}
.y26_c00426{bottom:162.827067pt;}
.y25_c00426{bottom:181.227067pt;}
.y24_c00426{bottom:199.627067pt;}
.y23_c00426{bottom:218.027067pt;}
.y22_c00426{bottom:236.427067pt;}
.y21_c00426{bottom:272.027067pt;}
.y20_c00426{bottom:307.627067pt;}
.y1f_c00426{bottom:333.947067pt;}
.y1e_c00426{bottom:352.347067pt;}
.y1d_c00426{bottom:370.747067pt;}
.y1c_c00426{bottom:389.147067pt;}
.y1b_c00426{bottom:407.547067pt;}
.y1a_c00426{bottom:425.947067pt;}
.y19_c00426{bottom:444.347067pt;}
.y18_c00426{bottom:462.747067pt;}
.y17_c00426{bottom:481.147067pt;}
.y16_c00426{bottom:499.547067pt;}
.y15_c00426{bottom:517.947067pt;}
.y14_c00426{bottom:536.347067pt;}
.y13_c00426{bottom:554.747067pt;}
.y12_c00426{bottom:573.147067pt;}
.y11_c00426{bottom:591.547067pt;}
.y10_c00426{bottom:609.947067pt;}
.yf_c00426{bottom:628.347067pt;}
.ye_c00426{bottom:663.947067pt;}
.yd_c00426{bottom:691.547067pt;}
.yc_c00426{bottom:719.147067pt;}
.yb_c00426{bottom:754.747067pt;}
.ya_c00426{bottom:782.347067pt;}
.y9_c00426{bottom:809.947067pt;}
.y8_c00426{bottom:837.547067pt;}
.y7_c00426{bottom:865.147067pt;}
.y6_c00426{bottom:892.747067pt;}
.y5_c00426{bottom:920.347067pt;}
.y4_c00426{bottom:947.947067pt;}
.y3_c00426{bottom:975.547067pt;}
.h1_c00426{height:56.156250pt;}
.h2_c00426{height:57.375000pt;}
.h3_c00426{height:66.750000pt;}
.h0_c00426{height:1122.666667pt;}
.w1_c00426{width:793.333333pt;}
.w0_c00426{width:793.626667pt;}
.x0_c00426{left:0.000000pt;}
.x2_c00426{left:151.200000pt;}
.x3_c00426{left:218.160000pt;}
.x1_c00426{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_884dc2e015ca0e7c3f7e4069.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.093262;font-style:normal;font-weight:normal;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_dd21c9d5718c2e03639cfd76.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00427;src:url('chunks/assets/font_6641f87c3f8ef216b78e90e1.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:1.106934;font-style:normal;font-weight:normal;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_e018a4916ed8255f6caa1579.woff2')format("woff");}.ff4_c00427{font-family:ff4_c00427;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00427;src:url('chunks/assets/font_e4b82f33289a7abee99da48a.woff2')format("woff");}.ff5_c00427{font-family:ff5_c00427;line-height:0.666504;font-style:normal;font-weight:normal;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_ff4323d65e5fbffba5bedba0.woff2')format("woff");}.ff6_c00427{font-family:ff6_c00427;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsa_c00427{letter-spacing:-0.064800px;}
.ls6_c00427{letter-spacing:-0.057600px;}
.ls8_c00427{letter-spacing:-0.050400px;}
.ls3_c00427{letter-spacing:-0.043200px;}
.ls4_c00427{letter-spacing:-0.036000px;}
.ls5_c00427{letter-spacing:-0.028800px;}
.ls7_c00427{letter-spacing:-0.021600px;}
.ls2_c00427{letter-spacing:-0.014400px;}
.ls9_c00427{letter-spacing:-0.007200px;}
.ls1_c00427{letter-spacing:0.000000px;}
.lsb_c00427{letter-spacing:0.007200px;}
.lsc_c00427{letter-spacing:0.036000px;}
.ls0_c00427{letter-spacing:0.058716px;}
.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:-65.880000px;}
.ws0_c00427{word-spacing:-20.001600px;}
.ws1a_c00427{word-spacing:-2.764800px;}
.ws1b_c00427{word-spacing:-2.714400px;}
.wsa_c00427{word-spacing:-2.347200px;}
.ws9_c00427{word-spacing:-2.340000px;}
.ws22_c00427{word-spacing:-2.325600px;}
.ws25_c00427{word-spacing:-1.648800px;}
.ws23_c00427{word-spacing:-1.627200px;}
.ws24_c00427{word-spacing:-1.548000px;}
.ws12_c00427{word-spacing:-0.907200px;}
.ws13_c00427{word-spacing:-0.806400px;}
.ws26_c00427{word-spacing:-0.237600px;}
.ws1f_c00427{word-spacing:-0.007200px;}
.ws2_c00427{word-spacing:0.000000px;}
.ws7_c00427{word-spacing:0.172800px;}
.ws5_c00427{word-spacing:0.187200px;}
.ws1e_c00427{word-spacing:0.194400px;}
.ws2b_c00427{word-spacing:0.201600px;}
.ws11_c00427{word-spacing:0.252000px;}
.ws1c_c00427{word-spacing:0.568800px;}
.ws1d_c00427{word-spacing:0.583200px;}
.wsc_c00427{word-spacing:1.620000px;}
.wsb_c00427{word-spacing:1.634400px;}
.ws21_c00427{word-spacing:3.067200px;}
.ws10_c00427{word-spacing:6.674400px;}
.wse_c00427{word-spacing:6.919200px;}
.wsd_c00427{word-spacing:7.041600px;}
.ws29_c00427{word-spacing:8.114400px;}
.ws2a_c00427{word-spacing:8.186400px;}
.ws8_c00427{word-spacing:10.296000px;}
.ws27_c00427{word-spacing:12.801600px;}
.ws28_c00427{word-spacing:12.816000px;}
.ws15_c00427{word-spacing:16.401600px;}
.ws14_c00427{word-spacing:16.516800px;}
.ws3_c00427{word-spacing:18.828000px;}
.ws4_c00427{word-spacing:18.914400px;}
.ws17_c00427{word-spacing:25.538400px;}
.ws16_c00427{word-spacing:25.761600px;}
.ws19_c00427{word-spacing:26.359200px;}
.ws18_c00427{word-spacing:26.481600px;}
.wsf_c00427{word-spacing:34.027200px;}
.ws6_c00427{word-spacing:42.314400px;}
.ws20_c00427{word-spacing:187.597620px;}
._1_c00427{margin-left:-187.555680px;}
._3_c00427{margin-left:-7.164000px;}
._2_c00427{margin-left:-1.208880px;}
._0_c00427{width:1.281600px;}
.fc0_c00427{color:rgb(0,0,0);}
.fs2_c00427{font-size:65.880000px;}
.fs0_c00427{font-size:72.000000px;}
.fs1_c00427{font-size:83.880000px;}
.y0_c00427{bottom:0.000000px;}
.y2_c00427{bottom:46.830450px;}
.y1_c00427{bottom:67.530450px;}
.y24_c00427{bottom:134.670450px;}
.y23_c00427{bottom:174.720450px;}
.y22_c00427{bottom:205.770450px;}
.y21_c00427{bottom:236.820450px;}
.y20_c00427{bottom:276.870450px;}
.y1f_c00427{bottom:307.920450px;}
.y1e_c00427{bottom:338.970450px;}
.y1d_c00427{bottom:370.020450px;}
.y1c_c00427{bottom:410.070450px;}
.y1b_c00427{bottom:440.220450px;}
.y1a_c00427{bottom:492.240450px;}
.y19_c00427{bottom:532.290450px;}
.y18_c00427{bottom:572.340450px;}
.y17_c00427{bottom:612.390450px;}
.y16_c00427{bottom:643.440450px;}
.y15_c00427{bottom:674.490450px;}
.y14_c00427{bottom:705.540450px;}
.y13_c00427{bottom:736.590450px;}
.y12_c00427{bottom:767.640450px;}
.y11_c00427{bottom:798.690450px;}
.y10_c00427{bottom:828.390450px;}
.yf_c00427{bottom:849.090450px;}
.ye_c00427{bottom:869.790450px;}
.yd_c00427{bottom:890.490450px;}
.yc_c00427{bottom:911.190450px;}
.yb_c00427{bottom:931.890450px;}
.ya_c00427{bottom:952.590450px;}
.y9_c00427{bottom:973.290450px;}
.y8_c00427{bottom:993.990450px;}
.y7_c00427{bottom:1014.690450px;}
.y6_c00427{bottom:1035.390450px;}
.y5_c00427{bottom:1056.090450px;}
.y4_c00427{bottom:1076.790450px;}
.y3_c00427{bottom:1097.490450px;}
.h1_c00427{height:63.175781px;}
.h3_c00427{height:64.546875px;}
.h2_c00427{height:75.093750px;}
.h4_c00427{height:87.484219px;}
.h0_c00427{height:1263.000000px;}
.w1_c00427{width:892.500000px;}
.w0_c00427{width:892.830000px;}
.x0_c00427{left:0.000000px;}
.x2_c00427{left:127.620000px;}
.x4_c00427{left:181.620000px;}
.x3_c00427{left:202.950000px;}
.x1_c00427{left:695.880000px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.lsa_c00427{letter-spacing:-0.057600pt;}
.ls6_c00427{letter-spacing:-0.051200pt;}
.ls8_c00427{letter-spacing:-0.044800pt;}
.ls3_c00427{letter-spacing:-0.038400pt;}
.ls4_c00427{letter-spacing:-0.032000pt;}
.ls5_c00427{letter-spacing:-0.025600pt;}
.ls7_c00427{letter-spacing:-0.019200pt;}
.ls2_c00427{letter-spacing:-0.012800pt;}
.ls9_c00427{letter-spacing:-0.006400pt;}
.ls1_c00427{letter-spacing:0.000000pt;}
.lsb_c00427{letter-spacing:0.006400pt;}
.lsc_c00427{letter-spacing:0.032000pt;}
.ls0_c00427{letter-spacing:0.052192pt;}
.ws1_c00427{word-spacing:-58.560000pt;}
.ws0_c00427{word-spacing:-17.779200pt;}
.ws1a_c00427{word-spacing:-2.457600pt;}
.ws1b_c00427{word-spacing:-2.412800pt;}
.wsa_c00427{word-spacing:-2.086400pt;}
.ws9_c00427{word-spacing:-2.080000pt;}
.ws22_c00427{word-spacing:-2.067200pt;}
.ws25_c00427{word-spacing:-1.465600pt;}
.ws23_c00427{word-spacing:-1.446400pt;}
.ws24_c00427{word-spacing:-1.376000pt;}
.ws12_c00427{word-spacing:-0.806400pt;}
.ws13_c00427{word-spacing:-0.716800pt;}
.ws26_c00427{word-spacing:-0.211200pt;}
.ws1f_c00427{word-spacing:-0.006400pt;}
.ws2_c00427{word-spacing:0.000000pt;}
.ws7_c00427{word-spacing:0.153600pt;}
.ws5_c00427{word-spacing:0.166400pt;}
.ws1e_c00427{word-spacing:0.172800pt;}
.ws2b_c00427{word-spacing:0.179200pt;}
.ws11_c00427{word-spacing:0.224000pt;}
.ws1c_c00427{word-spacing:0.505600pt;}
.ws1d_c00427{word-spacing:0.518400pt;}
.wsc_c00427{word-spacing:1.440000pt;}
.wsb_c00427{word-spacing:1.452800pt;}
.ws21_c00427{word-spacing:2.726400pt;}
.ws10_c00427{word-spacing:5.932800pt;}
.wse_c00427{word-spacing:6.150400pt;}
.wsd_c00427{word-spacing:6.259200pt;}
.ws29_c00427{word-spacing:7.212800pt;}
.ws2a_c00427{word-spacing:7.276800pt;}
.ws8_c00427{word-spacing:9.152000pt;}
.ws27_c00427{word-spacing:11.379200pt;}
.ws28_c00427{word-spacing:11.392000pt;}
.ws15_c00427{word-spacing:14.579200pt;}
.ws14_c00427{word-spacing:14.681600pt;}
.ws3_c00427{word-spacing:16.736000pt;}
.ws4_c00427{word-spacing:16.812800pt;}
.ws17_c00427{word-spacing:22.700800pt;}
.ws16_c00427{word-spacing:22.899200pt;}
.ws19_c00427{word-spacing:23.430400pt;}
.ws18_c00427{word-spacing:23.539200pt;}
.wsf_c00427{word-spacing:30.246400pt;}
.ws6_c00427{word-spacing:37.612800pt;}
.ws20_c00427{word-spacing:166.753440pt;}
._1_c00427{margin-left:-166.716160pt;}
._3_c00427{margin-left:-6.368000pt;}
._2_c00427{margin-left:-1.074560pt;}
._0_c00427{width:1.139200pt;}
.fs2_c00427{font-size:58.560000pt;}
.fs0_c00427{font-size:64.000000pt;}
.fs1_c00427{font-size:74.560000pt;}
.y0_c00427{bottom:0.000000pt;}
.y2_c00427{bottom:41.627067pt;}
.y1_c00427{bottom:60.027067pt;}
.y24_c00427{bottom:119.707067pt;}
.y23_c00427{bottom:155.307067pt;}
.y22_c00427{bottom:182.907067pt;}
.y21_c00427{bottom:210.507067pt;}
.y20_c00427{bottom:246.107067pt;}
.y1f_c00427{bottom:273.707067pt;}
.y1e_c00427{bottom:301.307067pt;}
.y1d_c00427{bottom:328.907067pt;}
.y1c_c00427{bottom:364.507067pt;}
.y1b_c00427{bottom:391.307067pt;}
.y1a_c00427{bottom:437.547067pt;}
.y19_c00427{bottom:473.147067pt;}
.y18_c00427{bottom:508.747067pt;}
.y17_c00427{bottom:544.347067pt;}
.y16_c00427{bottom:571.947067pt;}
.y15_c00427{bottom:599.547067pt;}
.y14_c00427{bottom:627.147067pt;}
.y13_c00427{bottom:654.747067pt;}
.y12_c00427{bottom:682.347067pt;}
.y11_c00427{bottom:709.947067pt;}
.y10_c00427{bottom:736.347067pt;}
.yf_c00427{bottom:754.747067pt;}
.ye_c00427{bottom:773.147067pt;}
.yd_c00427{bottom:791.547067pt;}
.yc_c00427{bottom:809.947067pt;}
.yb_c00427{bottom:828.347067pt;}
.ya_c00427{bottom:846.747067pt;}
.y9_c00427{bottom:865.147067pt;}
.y8_c00427{bottom:883.547067pt;}
.y7_c00427{bottom:901.947067pt;}
.y6_c00427{bottom:920.347067pt;}
.y5_c00427{bottom:938.747067pt;}
.y4_c00427{bottom:957.147067pt;}
.y3_c00427{bottom:975.547067pt;}
.h1_c00427{height:56.156250pt;}
.h3_c00427{height:57.375000pt;}
.h2_c00427{height:66.750000pt;}
.h4_c00427{height:77.763750pt;}
.h0_c00427{height:1122.666667pt;}
.w1_c00427{width:793.333333pt;}
.w0_c00427{width:793.626667pt;}
.x0_c00427{left:0.000000pt;}
.x2_c00427{left:113.440000pt;}
.x4_c00427{left:161.440000pt;}
.x3_c00427{left:180.400000pt;}
.x1_c00427{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_64793b51478615da70d31246.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.093262;font-style:normal;font-weight:normal;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_d37175060b84b8039242fd59.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00428{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.ls9_c00428{letter-spacing:-0.064800px;}
.lsa_c00428{letter-spacing:-0.057600px;}
.ls6_c00428{letter-spacing:-0.050400px;}
.ls8_c00428{letter-spacing:-0.043200px;}
.ls3_c00428{letter-spacing:-0.036000px;}
.ls2_c00428{letter-spacing:-0.028800px;}
.ls7_c00428{letter-spacing:-0.021600px;}
.ls5_c00428{letter-spacing:-0.014400px;}
.ls4_c00428{letter-spacing:-0.007200px;}
.ls1_c00428{letter-spacing:0.000000px;}
.ls0_c00428{letter-spacing:0.028800px;}
.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;}
}
.ws11_c00428{word-spacing:-4.521600px;}
.ws12_c00428{word-spacing:-4.478400px;}
.ws1b_c00428{word-spacing:-2.692800px;}
.ws1c_c00428{word-spacing:-1.281600px;}
.ws7_c00428{word-spacing:-0.900000px;}
.ws0_c00428{word-spacing:0.000000px;}
.ws4_c00428{word-spacing:0.043200px;}
.ws5_c00428{word-spacing:0.100800px;}
.ws10_c00428{word-spacing:0.122400px;}
.ws8_c00428{word-spacing:0.129600px;}
.wse_c00428{word-spacing:0.172800px;}
.ws2_c00428{word-spacing:0.187200px;}
.ws3_c00428{word-spacing:0.194400px;}
.ws1_c00428{word-spacing:0.223200px;}
.wsa_c00428{word-spacing:5.220000px;}
.wsb_c00428{word-spacing:5.241600px;}
.ws19_c00428{word-spacing:5.299200px;}
.ws1a_c00428{word-spacing:5.306400px;}
.ws13_c00428{word-spacing:5.896800px;}
.ws14_c00428{word-spacing:5.961600px;}
.ws15_c00428{word-spacing:5.968800px;}
.ws17_c00428{word-spacing:8.467200px;}
.ws16_c00428{word-spacing:8.481600px;}
.ws18_c00428{word-spacing:9.892800px;}
.wsc_c00428{word-spacing:11.563200px;}
.wsf_c00428{word-spacing:11.649600px;}
.wsd_c00428{word-spacing:11.728800px;}
.ws9_c00428{word-spacing:15.328800px;}
.ws6_c00428{word-spacing:18.907200px;}
._0_c00428{width:1.224000px;}
.fc0_c00428{color:rgb(0,0,0);}
.fs0_c00428{font-size:72.000000px;}
.y0_c00428{bottom:0.000000px;}
.y2_c00428{bottom:46.830450px;}
.y1_c00428{bottom:67.530450px;}
.y25_c00428{bottom:211.980450px;}
.y24_c00428{bottom:241.680450px;}
.y23_c00428{bottom:262.380450px;}
.y22_c00428{bottom:283.080450px;}
.y21_c00428{bottom:303.690450px;}
.y20_c00428{bottom:324.390450px;}
.y1f_c00428{bottom:345.090450px;}
.y1e_c00428{bottom:365.790450px;}
.y1d_c00428{bottom:386.490450px;}
.y1c_c00428{bottom:407.190450px;}
.y1b_c00428{bottom:427.890450px;}
.y1a_c00428{bottom:448.590450px;}
.y19_c00428{bottom:469.290450px;}
.y18_c00428{bottom:509.340450px;}
.y17_c00428{bottom:549.390450px;}
.y16_c00428{bottom:580.440450px;}
.y15_c00428{bottom:620.490450px;}
.y14_c00428{bottom:650.190450px;}
.y13_c00428{bottom:670.890450px;}
.y12_c00428{bottom:691.590450px;}
.y11_c00428{bottom:712.290450px;}
.y10_c00428{bottom:732.990450px;}
.yf_c00428{bottom:753.690450px;}
.ye_c00428{bottom:793.740450px;}
.yd_c00428{bottom:833.790450px;}
.yc_c00428{bottom:863.490450px;}
.yb_c00428{bottom:884.190450px;}
.ya_c00428{bottom:904.890450px;}
.y9_c00428{bottom:925.590450px;}
.y8_c00428{bottom:946.290450px;}
.y7_c00428{bottom:966.990450px;}
.y6_c00428{bottom:987.690450px;}
.y5_c00428{bottom:1027.740450px;}
.y4_c00428{bottom:1067.790450px;}
.y3_c00428{bottom:1097.490450px;}
.h1_c00428{height:63.175781px;}
.h2_c00428{height:64.546875px;}
.h0_c00428{height:1263.000000px;}
.w1_c00428{width:892.500000px;}
.w0_c00428{width:892.830000px;}
.x0_c00428{left:0.000000px;}
.x2_c00428{left:170.100000px;}
.x3_c00428{left:245.430000px;}
.x1_c00428{left:738.360000px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls9_c00428{letter-spacing:-0.057600pt;}
.lsa_c00428{letter-spacing:-0.051200pt;}
.ls6_c00428{letter-spacing:-0.044800pt;}
.ls8_c00428{letter-spacing:-0.038400pt;}
.ls3_c00428{letter-spacing:-0.032000pt;}
.ls2_c00428{letter-spacing:-0.025600pt;}
.ls7_c00428{letter-spacing:-0.019200pt;}
.ls5_c00428{letter-spacing:-0.012800pt;}
.ls4_c00428{letter-spacing:-0.006400pt;}
.ls1_c00428{letter-spacing:0.000000pt;}
.ls0_c00428{letter-spacing:0.025600pt;}
.ws11_c00428{word-spacing:-4.019200pt;}
.ws12_c00428{word-spacing:-3.980800pt;}
.ws1b_c00428{word-spacing:-2.393600pt;}
.ws1c_c00428{word-spacing:-1.139200pt;}
.ws7_c00428{word-spacing:-0.800000pt;}
.ws0_c00428{word-spacing:0.000000pt;}
.ws4_c00428{word-spacing:0.038400pt;}
.ws5_c00428{word-spacing:0.089600pt;}
.ws10_c00428{word-spacing:0.108800pt;}
.ws8_c00428{word-spacing:0.115200pt;}
.wse_c00428{word-spacing:0.153600pt;}
.ws2_c00428{word-spacing:0.166400pt;}
.ws3_c00428{word-spacing:0.172800pt;}
.ws1_c00428{word-spacing:0.198400pt;}
.wsa_c00428{word-spacing:4.640000pt;}
.wsb_c00428{word-spacing:4.659200pt;}
.ws19_c00428{word-spacing:4.710400pt;}
.ws1a_c00428{word-spacing:4.716800pt;}
.ws13_c00428{word-spacing:5.241600pt;}
.ws14_c00428{word-spacing:5.299200pt;}
.ws15_c00428{word-spacing:5.305600pt;}
.ws17_c00428{word-spacing:7.526400pt;}
.ws16_c00428{word-spacing:7.539200pt;}
.ws18_c00428{word-spacing:8.793600pt;}
.wsc_c00428{word-spacing:10.278400pt;}
.wsf_c00428{word-spacing:10.355200pt;}
.wsd_c00428{word-spacing:10.425600pt;}
.ws9_c00428{word-spacing:13.625600pt;}
.ws6_c00428{word-spacing:16.806400pt;}
._0_c00428{width:1.088000pt;}
.fs0_c00428{font-size:64.000000pt;}
.y0_c00428{bottom:0.000000pt;}
.y2_c00428{bottom:41.627067pt;}
.y1_c00428{bottom:60.027067pt;}
.y25_c00428{bottom:188.427067pt;}
.y24_c00428{bottom:214.827067pt;}
.y23_c00428{bottom:233.227067pt;}
.y22_c00428{bottom:251.627067pt;}
.y21_c00428{bottom:269.947067pt;}
.y20_c00428{bottom:288.347067pt;}
.y1f_c00428{bottom:306.747067pt;}
.y1e_c00428{bottom:325.147067pt;}
.y1d_c00428{bottom:343.547067pt;}
.y1c_c00428{bottom:361.947067pt;}
.y1b_c00428{bottom:380.347067pt;}
.y1a_c00428{bottom:398.747067pt;}
.y19_c00428{bottom:417.147067pt;}
.y18_c00428{bottom:452.747067pt;}
.y17_c00428{bottom:488.347067pt;}
.y16_c00428{bottom:515.947067pt;}
.y15_c00428{bottom:551.547067pt;}
.y14_c00428{bottom:577.947067pt;}
.y13_c00428{bottom:596.347067pt;}
.y12_c00428{bottom:614.747067pt;}
.y11_c00428{bottom:633.147067pt;}
.y10_c00428{bottom:651.547067pt;}
.yf_c00428{bottom:669.947067pt;}
.ye_c00428{bottom:705.547067pt;}
.yd_c00428{bottom:741.147067pt;}
.yc_c00428{bottom:767.547067pt;}
.yb_c00428{bottom:785.947067pt;}
.ya_c00428{bottom:804.347067pt;}
.y9_c00428{bottom:822.747067pt;}
.y8_c00428{bottom:841.147067pt;}
.y7_c00428{bottom:859.547067pt;}
.y6_c00428{bottom:877.947067pt;}
.y5_c00428{bottom:913.547067pt;}
.y4_c00428{bottom:949.147067pt;}
.y3_c00428{bottom:975.547067pt;}
.h1_c00428{height:56.156250pt;}
.h2_c00428{height:57.375000pt;}
.h0_c00428{height:1122.666667pt;}
.w1_c00428{width:793.333333pt;}
.w0_c00428{width:793.626667pt;}
.x0_c00428{left:0.000000pt;}
.x2_c00428{left:151.200000pt;}
.x3_c00428{left:218.160000pt;}
.x1_c00428{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_80e5097c2c65181ddfc62ff3.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.093262;font-style:normal;font-weight:normal;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_44a125d0de519abc252f0acd.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.106934;font-style:normal;font-weight:normal;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_24492a2a08f5d9d3723302e9.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lse_c00429{letter-spacing:-0.086400px;}
.lsa_c00429{letter-spacing:-0.079200px;}
.ls9_c00429{letter-spacing:-0.072000px;}
.lsc_c00429{letter-spacing:-0.064800px;}
.lsd_c00429{letter-spacing:-0.057600px;}
.ls2_c00429{letter-spacing:-0.050400px;}
.ls4_c00429{letter-spacing:-0.043200px;}
.ls3_c00429{letter-spacing:-0.036000px;}
.ls6_c00429{letter-spacing:-0.028800px;}
.lsb_c00429{letter-spacing:-0.021600px;}
.ls5_c00429{letter-spacing:-0.014400px;}
.ls1_c00429{letter-spacing:0.000000px;}
.ls7_c00429{letter-spacing:0.007200px;}
.ls8_c00429{letter-spacing:0.014400px;}
.ls0_c00429{letter-spacing:0.028800px;}
.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;}
}
.ws6_c00429{word-spacing:-4.197600px;}
.ws5_c00429{word-spacing:-4.111200px;}
.ws18_c00429{word-spacing:-3.988800px;}
.ws17_c00429{word-spacing:-3.852000px;}
.ws19_c00429{word-spacing:-3.765600px;}
.ws1a_c00429{word-spacing:-1.584000px;}
.ws16_c00429{word-spacing:-1.317600px;}
.ws15_c00429{word-spacing:-1.238400px;}
.wse_c00429{word-spacing:-0.885600px;}
.wsd_c00429{word-spacing:-0.849600px;}
.ws28_c00429{word-spacing:-0.151200px;}
.ws27_c00429{word-spacing:-0.129600px;}
.ws0_c00429{word-spacing:0.000000px;}
.ws10_c00429{word-spacing:0.180000px;}
.ws8_c00429{word-spacing:0.194400px;}
.ws14_c00429{word-spacing:0.201600px;}
.ws2_c00429{word-spacing:0.648000px;}
.ws1_c00429{word-spacing:0.684000px;}
.ws3_c00429{word-spacing:0.741600px;}
.ws20_c00429{word-spacing:1.980000px;}
.ws26_c00429{word-spacing:1.994400px;}
.ws1b_c00429{word-spacing:2.001600px;}
.ws1f_c00429{word-spacing:2.066400px;}
.ws1c_c00429{word-spacing:2.073600px;}
.ws1e_c00429{word-spacing:5.580000px;}
.ws1d_c00429{word-spacing:5.594400px;}
.ws9_c00429{word-spacing:5.932800px;}
.ws7_c00429{word-spacing:8.841600px;}
.ws4_c00429{word-spacing:9.914400px;}
.ws24_c00429{word-spacing:12.427200px;}
.ws25_c00429{word-spacing:12.470400px;}
.ws12_c00429{word-spacing:14.947200px;}
.ws13_c00429{word-spacing:14.961600px;}
.ws11_c00429{word-spacing:18.590400px;}
.ws22_c00429{word-spacing:20.361600px;}
.ws21_c00429{word-spacing:20.383200px;}
.ws23_c00429{word-spacing:20.404800px;}
.wsf_c00429{word-spacing:21.477600px;}
.wsc_c00429{word-spacing:24.271200px;}
.wsb_c00429{word-spacing:24.307200px;}
.wsa_c00429{word-spacing:24.314400px;}
._0_c00429{width:1.000800px;}
.fc0_c00429{color:rgb(0,0,0);}
.fs0_c00429{font-size:72.000000px;}
.y0_c00429{bottom:0.000000px;}
.y2_c00429{bottom:46.830450px;}
.y1_c00429{bottom:67.530450px;}
.y29_c00429{bottom:134.130450px;}
.y28_c00429{bottom:165.180450px;}
.y27_c00429{bottom:196.230450px;}
.y26_c00429{bottom:227.280450px;}
.y25_c00429{bottom:267.330450px;}
.y24_c00429{bottom:297.030450px;}
.y23_c00429{bottom:317.730450px;}
.y22_c00429{bottom:338.430450px;}
.y21_c00429{bottom:359.040450px;}
.y20_c00429{bottom:379.740450px;}
.y1f_c00429{bottom:400.440450px;}
.y1e_c00429{bottom:421.140450px;}
.y1d_c00429{bottom:441.840450px;}
.y1c_c00429{bottom:462.540450px;}
.y1b_c00429{bottom:483.240450px;}
.y1a_c00429{bottom:523.290450px;}
.y19_c00429{bottom:554.340450px;}
.y18_c00429{bottom:594.390450px;}
.y17_c00429{bottom:624.090450px;}
.y16_c00429{bottom:644.790450px;}
.y15_c00429{bottom:665.490450px;}
.y14_c00429{bottom:686.190450px;}
.y13_c00429{bottom:706.890450px;}
.y12_c00429{bottom:727.590450px;}
.y11_c00429{bottom:748.290450px;}
.y10_c00429{bottom:768.990450px;}
.yf_c00429{bottom:789.690450px;}
.ye_c00429{bottom:810.390450px;}
.yd_c00429{bottom:831.090450px;}
.yc_c00429{bottom:851.790450px;}
.yb_c00429{bottom:872.490450px;}
.ya_c00429{bottom:893.190450px;}
.y9_c00429{bottom:913.890450px;}
.y8_c00429{bottom:934.590450px;}
.y7_c00429{bottom:955.290450px;}
.y6_c00429{bottom:995.340450px;}
.y5_c00429{bottom:1035.390450px;}
.y4_c00429{bottom:1066.440450px;}
.y3_c00429{bottom:1097.490450px;}
.h1_c00429{height:63.175781px;}
.h2_c00429{height:64.546875px;}
.h3_c00429{height:75.093750px;}
.h0_c00429{height:1263.000000px;}
.w1_c00429{width:892.500000px;}
.w0_c00429{width:892.830000px;}
.x0_c00429{left:0.000000px;}
.x2_c00429{left:127.620000px;}
.x3_c00429{left:202.950000px;}
.x1_c00429{left:695.880000px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.lse_c00429{letter-spacing:-0.076800pt;}
.lsa_c00429{letter-spacing:-0.070400pt;}
.ls9_c00429{letter-spacing:-0.064000pt;}
.lsc_c00429{letter-spacing:-0.057600pt;}
.lsd_c00429{letter-spacing:-0.051200pt;}
.ls2_c00429{letter-spacing:-0.044800pt;}
.ls4_c00429{letter-spacing:-0.038400pt;}
.ls3_c00429{letter-spacing:-0.032000pt;}
.ls6_c00429{letter-spacing:-0.025600pt;}
.lsb_c00429{letter-spacing:-0.019200pt;}
.ls5_c00429{letter-spacing:-0.012800pt;}
.ls1_c00429{letter-spacing:0.000000pt;}
.ls7_c00429{letter-spacing:0.006400pt;}
.ls8_c00429{letter-spacing:0.012800pt;}
.ls0_c00429{letter-spacing:0.025600pt;}
.ws6_c00429{word-spacing:-3.731200pt;}
.ws5_c00429{word-spacing:-3.654400pt;}
.ws18_c00429{word-spacing:-3.545600pt;}
.ws17_c00429{word-spacing:-3.424000pt;}
.ws19_c00429{word-spacing:-3.347200pt;}
.ws1a_c00429{word-spacing:-1.408000pt;}
.ws16_c00429{word-spacing:-1.171200pt;}
.ws15_c00429{word-spacing:-1.100800pt;}
.wse_c00429{word-spacing:-0.787200pt;}
.wsd_c00429{word-spacing:-0.755200pt;}
.ws28_c00429{word-spacing:-0.134400pt;}
.ws27_c00429{word-spacing:-0.115200pt;}
.ws0_c00429{word-spacing:0.000000pt;}
.ws10_c00429{word-spacing:0.160000pt;}
.ws8_c00429{word-spacing:0.172800pt;}
.ws14_c00429{word-spacing:0.179200pt;}
.ws2_c00429{word-spacing:0.576000pt;}
.ws1_c00429{word-spacing:0.608000pt;}
.ws3_c00429{word-spacing:0.659200pt;}
.ws20_c00429{word-spacing:1.760000pt;}
.ws26_c00429{word-spacing:1.772800pt;}
.ws1b_c00429{word-spacing:1.779200pt;}
.ws1f_c00429{word-spacing:1.836800pt;}
.ws1c_c00429{word-spacing:1.843200pt;}
.ws1e_c00429{word-spacing:4.960000pt;}
.ws1d_c00429{word-spacing:4.972800pt;}
.ws9_c00429{word-spacing:5.273600pt;}
.ws7_c00429{word-spacing:7.859200pt;}
.ws4_c00429{word-spacing:8.812800pt;}
.ws24_c00429{word-spacing:11.046400pt;}
.ws25_c00429{word-spacing:11.084800pt;}
.ws12_c00429{word-spacing:13.286400pt;}
.ws13_c00429{word-spacing:13.299200pt;}
.ws11_c00429{word-spacing:16.524800pt;}
.ws22_c00429{word-spacing:18.099200pt;}
.ws21_c00429{word-spacing:18.118400pt;}
.ws23_c00429{word-spacing:18.137600pt;}
.wsf_c00429{word-spacing:19.091200pt;}
.wsc_c00429{word-spacing:21.574400pt;}
.wsb_c00429{word-spacing:21.606400pt;}
.wsa_c00429{word-spacing:21.612800pt;}
._0_c00429{width:0.889600pt;}
.fs0_c00429{font-size:64.000000pt;}
.y0_c00429{bottom:0.000000pt;}
.y2_c00429{bottom:41.627067pt;}
.y1_c00429{bottom:60.027067pt;}
.y29_c00429{bottom:119.227067pt;}
.y28_c00429{bottom:146.827067pt;}
.y27_c00429{bottom:174.427067pt;}
.y26_c00429{bottom:202.027067pt;}
.y25_c00429{bottom:237.627067pt;}
.y24_c00429{bottom:264.027067pt;}
.y23_c00429{bottom:282.427067pt;}
.y22_c00429{bottom:300.827067pt;}
.y21_c00429{bottom:319.147067pt;}
.y20_c00429{bottom:337.547067pt;}
.y1f_c00429{bottom:355.947067pt;}
.y1e_c00429{bottom:374.347067pt;}
.y1d_c00429{bottom:392.747067pt;}
.y1c_c00429{bottom:411.147067pt;}
.y1b_c00429{bottom:429.547067pt;}
.y1a_c00429{bottom:465.147067pt;}
.y19_c00429{bottom:492.747067pt;}
.y18_c00429{bottom:528.347067pt;}
.y17_c00429{bottom:554.747067pt;}
.y16_c00429{bottom:573.147067pt;}
.y15_c00429{bottom:591.547067pt;}
.y14_c00429{bottom:609.947067pt;}
.y13_c00429{bottom:628.347067pt;}
.y12_c00429{bottom:646.747067pt;}
.y11_c00429{bottom:665.147067pt;}
.y10_c00429{bottom:683.547067pt;}
.yf_c00429{bottom:701.947067pt;}
.ye_c00429{bottom:720.347067pt;}
.yd_c00429{bottom:738.747067pt;}
.yc_c00429{bottom:757.147067pt;}
.yb_c00429{bottom:775.547067pt;}
.ya_c00429{bottom:793.947067pt;}
.y9_c00429{bottom:812.347067pt;}
.y8_c00429{bottom:830.747067pt;}
.y7_c00429{bottom:849.147067pt;}
.y6_c00429{bottom:884.747067pt;}
.y5_c00429{bottom:920.347067pt;}
.y4_c00429{bottom:947.947067pt;}
.y3_c00429{bottom:975.547067pt;}
.h1_c00429{height:56.156250pt;}
.h2_c00429{height:57.375000pt;}
.h3_c00429{height:66.750000pt;}
.h0_c00429{height:1122.666667pt;}
.w1_c00429{width:793.333333pt;}
.w0_c00429{width:793.626667pt;}
.x0_c00429{left:0.000000pt;}
.x2_c00429{left:113.440000pt;}
.x3_c00429{left:180.400000pt;}
.x1_c00429{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e17566220d3494508a0aca85.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.093262;font-style:normal;font-weight:normal;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_6d8c4ca7aa56425797587d1a.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00430{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00430{vertical-align:0.000000px;}
.lsa_c00430{letter-spacing:-0.100800px;}
.ls6_c00430{letter-spacing:-0.086400px;}
.ls7_c00430{letter-spacing:-0.072000px;}
.ls2_c00430{letter-spacing:-0.064800px;}
.ls9_c00430{letter-spacing:-0.057600px;}
.ls8_c00430{letter-spacing:-0.050400px;}
.ls1_c00430{letter-spacing:-0.043200px;}
.ls3_c00430{letter-spacing:-0.036000px;}
.ls5_c00430{letter-spacing:-0.028800px;}
.ls4_c00430{letter-spacing:-0.021600px;}
.lsb_c00430{letter-spacing:-0.014400px;}
.ls0_c00430{letter-spacing:0.000000px;}
.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;}
}
.ws2c_c00430{word-spacing:-4.867200px;}
.wsc_c00430{word-spacing:-3.715200px;}
.ws1f_c00430{word-spacing:-3.412800px;}
.ws1e_c00430{word-spacing:-3.384000px;}
.ws2b_c00430{word-spacing:-3.074400px;}
.ws30_c00430{word-spacing:-1.576800px;}
.wsd_c00430{word-spacing:-0.439200px;}
.wse_c00430{word-spacing:-0.417600px;}
.ws0_c00430{word-spacing:0.000000px;}
.ws8_c00430{word-spacing:0.180000px;}
.ws7_c00430{word-spacing:0.187200px;}
.wsa_c00430{word-spacing:0.194400px;}
.ws9_c00430{word-spacing:0.295200px;}
.ws24_c00430{word-spacing:0.511200px;}
.ws1a_c00430{word-spacing:0.532800px;}
.ws25_c00430{word-spacing:0.576000px;}
.ws22_c00430{word-spacing:0.936000px;}
.wsb_c00430{word-spacing:1.634400px;}
.ws31_c00430{word-spacing:1.656000px;}
.ws27_c00430{word-spacing:2.001600px;}
.ws26_c00430{word-spacing:2.052000px;}
.ws11_c00430{word-spacing:2.203200px;}
.ws10_c00430{word-spacing:2.347200px;}
.ws32_c00430{word-spacing:2.354400px;}
.ws2d_c00430{word-spacing:2.743200px;}
.ws29_c00430{word-spacing:3.736800px;}
.ws28_c00430{word-spacing:3.787200px;}
.ws12_c00430{word-spacing:5.968800px;}
.ws2e_c00430{word-spacing:6.220800px;}
.ws2f_c00430{word-spacing:6.285600px;}
.ws33_c00430{word-spacing:6.681600px;}
.ws14_c00430{word-spacing:7.070400px;}
.ws13_c00430{word-spacing:7.142400px;}
.ws2a_c00430{word-spacing:8.092800px;}
.ws17_c00430{word-spacing:8.294400px;}
.ws18_c00430{word-spacing:8.460000px;}
.ws1b_c00430{word-spacing:8.496000px;}
.ws15_c00430{word-spacing:9.842400px;}
.ws16_c00430{word-spacing:9.936000px;}
.wsf_c00430{word-spacing:13.197600px;}
.ws20_c00430{word-spacing:14.493600px;}
.ws21_c00430{word-spacing:14.608800px;}
.ws19_c00430{word-spacing:16.034400px;}
.ws6_c00430{word-spacing:19.267200px;}
.ws5_c00430{word-spacing:19.418400px;}
.ws4_c00430{word-spacing:22.140000px;}
.ws3_c00430{word-spacing:22.154400px;}
.ws23_c00430{word-spacing:22.219200px;}
.ws1c_c00430{word-spacing:30.333600px;}
.ws1d_c00430{word-spacing:30.376800px;}
.ws1_c00430{word-spacing:32.241600px;}
.ws2_c00430{word-spacing:32.263200px;}
._0_c00430{width:1.252800px;}
.fc0_c00430{color:rgb(0,0,0);}
.fs0_c00430{font-size:72.000000px;}
.y0_c00430{bottom:0.000000px;}
.y2_c00430{bottom:46.830450px;}
.y1_c00430{bottom:67.530450px;}
.y2e_c00430{bottom:137.730450px;}
.y2d_c00430{bottom:158.430450px;}
.y2c_c00430{bottom:179.130450px;}
.y2b_c00430{bottom:199.830450px;}
.y2a_c00430{bottom:220.530450px;}
.y29_c00430{bottom:241.230450px;}
.y28_c00430{bottom:261.930450px;}
.y27_c00430{bottom:282.630450px;}
.y26_c00430{bottom:303.330450px;}
.y25_c00430{bottom:324.030450px;}
.y24_c00430{bottom:344.730450px;}
.y23_c00430{bottom:365.430450px;}
.y22_c00430{bottom:386.040450px;}
.y21_c00430{bottom:406.740450px;}
.y20_c00430{bottom:427.440450px;}
.y1f_c00430{bottom:448.140450px;}
.y1e_c00430{bottom:468.840450px;}
.y1d_c00430{bottom:489.540450px;}
.y1c_c00430{bottom:510.240450px;}
.y1b_c00430{bottom:530.940450px;}
.y1a_c00430{bottom:551.640450px;}
.y19_c00430{bottom:572.340450px;}
.y18_c00430{bottom:593.040450px;}
.y17_c00430{bottom:613.740450px;}
.y16_c00430{bottom:634.440450px;}
.y15_c00430{bottom:655.140450px;}
.y14_c00430{bottom:675.840450px;}
.y13_c00430{bottom:696.540450px;}
.y12_c00430{bottom:717.240450px;}
.y11_c00430{bottom:737.940450px;}
.y10_c00430{bottom:758.640450px;}
.yf_c00430{bottom:779.340450px;}
.ye_c00430{bottom:800.040450px;}
.yd_c00430{bottom:820.740450px;}
.yc_c00430{bottom:841.440450px;}
.yb_c00430{bottom:862.140450px;}
.ya_c00430{bottom:882.840450px;}
.y9_c00430{bottom:903.540450px;}
.y8_c00430{bottom:924.240450px;}
.y7_c00430{bottom:964.290450px;}
.y6_c00430{bottom:1004.340450px;}
.y5_c00430{bottom:1035.390450px;}
.y4_c00430{bottom:1066.440450px;}
.y3_c00430{bottom:1097.490450px;}
.h1_c00430{height:63.175781px;}
.h2_c00430{height:64.546875px;}
.h0_c00430{height:1263.000000px;}
.w1_c00430{width:892.500000px;}
.w0_c00430{width:892.830000px;}
.x0_c00430{left:0.000000px;}
.x2_c00430{left:170.100000px;}
.x3_c00430{left:245.430000px;}
.x1_c00430{left:738.360000px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.lsa_c00430{letter-spacing:-0.089600pt;}
.ls6_c00430{letter-spacing:-0.076800pt;}
.ls7_c00430{letter-spacing:-0.064000pt;}
.ls2_c00430{letter-spacing:-0.057600pt;}
.ls9_c00430{letter-spacing:-0.051200pt;}
.ls8_c00430{letter-spacing:-0.044800pt;}
.ls1_c00430{letter-spacing:-0.038400pt;}
.ls3_c00430{letter-spacing:-0.032000pt;}
.ls5_c00430{letter-spacing:-0.025600pt;}
.ls4_c00430{letter-spacing:-0.019200pt;}
.lsb_c00430{letter-spacing:-0.012800pt;}
.ls0_c00430{letter-spacing:0.000000pt;}
.ws2c_c00430{word-spacing:-4.326400pt;}
.wsc_c00430{word-spacing:-3.302400pt;}
.ws1f_c00430{word-spacing:-3.033600pt;}
.ws1e_c00430{word-spacing:-3.008000pt;}
.ws2b_c00430{word-spacing:-2.732800pt;}
.ws30_c00430{word-spacing:-1.401600pt;}
.wsd_c00430{word-spacing:-0.390400pt;}
.wse_c00430{word-spacing:-0.371200pt;}
.ws0_c00430{word-spacing:0.000000pt;}
.ws8_c00430{word-spacing:0.160000pt;}
.ws7_c00430{word-spacing:0.166400pt;}
.wsa_c00430{word-spacing:0.172800pt;}
.ws9_c00430{word-spacing:0.262400pt;}
.ws24_c00430{word-spacing:0.454400pt;}
.ws1a_c00430{word-spacing:0.473600pt;}
.ws25_c00430{word-spacing:0.512000pt;}
.ws22_c00430{word-spacing:0.832000pt;}
.wsb_c00430{word-spacing:1.452800pt;}
.ws31_c00430{word-spacing:1.472000pt;}
.ws27_c00430{word-spacing:1.779200pt;}
.ws26_c00430{word-spacing:1.824000pt;}
.ws11_c00430{word-spacing:1.958400pt;}
.ws10_c00430{word-spacing:2.086400pt;}
.ws32_c00430{word-spacing:2.092800pt;}
.ws2d_c00430{word-spacing:2.438400pt;}
.ws29_c00430{word-spacing:3.321600pt;}
.ws28_c00430{word-spacing:3.366400pt;}
.ws12_c00430{word-spacing:5.305600pt;}
.ws2e_c00430{word-spacing:5.529600pt;}
.ws2f_c00430{word-spacing:5.587200pt;}
.ws33_c00430{word-spacing:5.939200pt;}
.ws14_c00430{word-spacing:6.284800pt;}
.ws13_c00430{word-spacing:6.348800pt;}
.ws2a_c00430{word-spacing:7.193600pt;}
.ws17_c00430{word-spacing:7.372800pt;}
.ws18_c00430{word-spacing:7.520000pt;}
.ws1b_c00430{word-spacing:7.552000pt;}
.ws15_c00430{word-spacing:8.748800pt;}
.ws16_c00430{word-spacing:8.832000pt;}
.wsf_c00430{word-spacing:11.731200pt;}
.ws20_c00430{word-spacing:12.883200pt;}
.ws21_c00430{word-spacing:12.985600pt;}
.ws19_c00430{word-spacing:14.252800pt;}
.ws6_c00430{word-spacing:17.126400pt;}
.ws5_c00430{word-spacing:17.260800pt;}
.ws4_c00430{word-spacing:19.680000pt;}
.ws3_c00430{word-spacing:19.692800pt;}
.ws23_c00430{word-spacing:19.750400pt;}
.ws1c_c00430{word-spacing:26.963200pt;}
.ws1d_c00430{word-spacing:27.001600pt;}
.ws1_c00430{word-spacing:28.659200pt;}
.ws2_c00430{word-spacing:28.678400pt;}
._0_c00430{width:1.113600pt;}
.fs0_c00430{font-size:64.000000pt;}
.y0_c00430{bottom:0.000000pt;}
.y2_c00430{bottom:41.627067pt;}
.y1_c00430{bottom:60.027067pt;}
.y2e_c00430{bottom:122.427067pt;}
.y2d_c00430{bottom:140.827067pt;}
.y2c_c00430{bottom:159.227067pt;}
.y2b_c00430{bottom:177.627067pt;}
.y2a_c00430{bottom:196.027067pt;}
.y29_c00430{bottom:214.427067pt;}
.y28_c00430{bottom:232.827067pt;}
.y27_c00430{bottom:251.227067pt;}
.y26_c00430{bottom:269.627067pt;}
.y25_c00430{bottom:288.027067pt;}
.y24_c00430{bottom:306.427067pt;}
.y23_c00430{bottom:324.827067pt;}
.y22_c00430{bottom:343.147067pt;}
.y21_c00430{bottom:361.547067pt;}
.y20_c00430{bottom:379.947067pt;}
.y1f_c00430{bottom:398.347067pt;}
.y1e_c00430{bottom:416.747067pt;}
.y1d_c00430{bottom:435.147067pt;}
.y1c_c00430{bottom:453.547067pt;}
.y1b_c00430{bottom:471.947067pt;}
.y1a_c00430{bottom:490.347067pt;}
.y19_c00430{bottom:508.747067pt;}
.y18_c00430{bottom:527.147067pt;}
.y17_c00430{bottom:545.547067pt;}
.y16_c00430{bottom:563.947067pt;}
.y15_c00430{bottom:582.347067pt;}
.y14_c00430{bottom:600.747067pt;}
.y13_c00430{bottom:619.147067pt;}
.y12_c00430{bottom:637.547067pt;}
.y11_c00430{bottom:655.947067pt;}
.y10_c00430{bottom:674.347067pt;}
.yf_c00430{bottom:692.747067pt;}
.ye_c00430{bottom:711.147067pt;}
.yd_c00430{bottom:729.547067pt;}
.yc_c00430{bottom:747.947067pt;}
.yb_c00430{bottom:766.347067pt;}
.ya_c00430{bottom:784.747067pt;}
.y9_c00430{bottom:803.147067pt;}
.y8_c00430{bottom:821.547067pt;}
.y7_c00430{bottom:857.147067pt;}
.y6_c00430{bottom:892.747067pt;}
.y5_c00430{bottom:920.347067pt;}
.y4_c00430{bottom:947.947067pt;}
.y3_c00430{bottom:975.547067pt;}
.h1_c00430{height:56.156250pt;}
.h2_c00430{height:57.375000pt;}
.h0_c00430{height:1122.666667pt;}
.w1_c00430{width:793.333333pt;}
.w0_c00430{width:793.626667pt;}
.x0_c00430{left:0.000000pt;}
.x2_c00430{left:151.200000pt;}
.x3_c00430{left:218.160000pt;}
.x1_c00430{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2da461fad6c4015aff066d45.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.093262;font-style:normal;font-weight:normal;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_48f16e013112767a451410d4.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.106934;font-style: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;}
.lsc_c00431{letter-spacing:-0.108000px;}
.lsa_c00431{letter-spacing:-0.093600px;}
.ls3_c00431{letter-spacing:-0.072000px;}
.lsb_c00431{letter-spacing:-0.064800px;}
.ls6_c00431{letter-spacing:-0.057600px;}
.ls9_c00431{letter-spacing:-0.050400px;}
.ls4_c00431{letter-spacing:-0.043200px;}
.ls8_c00431{letter-spacing:-0.036000px;}
.ls7_c00431{letter-spacing:-0.028800px;}
.ls2_c00431{letter-spacing:-0.021600px;}
.ls1_c00431{letter-spacing:-0.014400px;}
.ls5_c00431{letter-spacing:-0.007200px;}
.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;}
}
.ws24_c00431{word-spacing:-2.073600px;}
.ws23_c00431{word-spacing:-1.965600px;}
.ws1b_c00431{word-spacing:-0.907200px;}
.ws2c_c00431{word-spacing:-0.669600px;}
.ws0_c00431{word-spacing:0.000000px;}
.ws2d_c00431{word-spacing:0.021600px;}
.ws2a_c00431{word-spacing:0.136800px;}
.ws6_c00431{word-spacing:0.165600px;}
.ws25_c00431{word-spacing:0.172800px;}
.ws9_c00431{word-spacing:0.187200px;}
.ws1d_c00431{word-spacing:0.727200px;}
.ws1c_c00431{word-spacing:0.943200px;}
.ws19_c00431{word-spacing:1.245600px;}
.ws1a_c00431{word-spacing:1.274400px;}
.ws16_c00431{word-spacing:1.987200px;}
.wsb_c00431{word-spacing:2.001600px;}
.ws12_c00431{word-spacing:2.340000px;}
.ws3_c00431{word-spacing:3.052800px;}
.ws2_c00431{word-spacing:3.060000px;}
.ws17_c00431{word-spacing:3.672000px;}
.ws18_c00431{word-spacing:3.816000px;}
.ws8_c00431{word-spacing:3.844800px;}
.ws22_c00431{word-spacing:4.161600px;}
.ws15_c00431{word-spacing:4.183200px;}
.ws5_c00431{word-spacing:4.939200px;}
.ws4_c00431{word-spacing:4.960800px;}
.ws14_c00431{word-spacing:5.652000px;}
.ws20_c00431{word-spacing:9.554400px;}
.ws21_c00431{word-spacing:9.568800px;}
.wsa_c00431{word-spacing:11.707200px;}
.ws11_c00431{word-spacing:11.923200px;}
.ws10_c00431{word-spacing:12.088800px;}
.ws1e_c00431{word-spacing:12.412800px;}
.ws13_c00431{word-spacing:12.456000px;}
.ws1f_c00431{word-spacing:12.499200px;}
.ws28_c00431{word-spacing:14.140800px;}
.ws29_c00431{word-spacing:14.306400px;}
.wsf_c00431{word-spacing:18.806400px;}
.wse_c00431{word-spacing:18.936000px;}
.ws7_c00431{word-spacing:20.692800px;}
.wsc_c00431{word-spacing:21.052800px;}
.wsd_c00431{word-spacing:21.132000px;}
.ws1_c00431{word-spacing:23.932800px;}
.ws2b_c00431{word-spacing:24.328800px;}
.ws27_c00431{word-spacing:63.496800px;}
.ws26_c00431{word-spacing:63.561600px;}
._0_c00431{width:1.274400px;}
.fc0_c00431{color:rgb(0,0,0);}
.fs0_c00431{font-size:72.000000px;}
.y0_c00431{bottom:0.000000px;}
.y2_c00431{bottom:46.830450px;}
.y1_c00431{bottom:67.530450px;}
.y28_c00431{bottom:143.130450px;}
.y27_c00431{bottom:183.180450px;}
.y26_c00431{bottom:214.230450px;}
.y25_c00431{bottom:245.280450px;}
.y24_c00431{bottom:285.330450px;}
.y23_c00431{bottom:315.030450px;}
.y22_c00431{bottom:335.730450px;}
.y21_c00431{bottom:356.430450px;}
.y20_c00431{bottom:396.390450px;}
.y1f_c00431{bottom:427.440450px;}
.y1e_c00431{bottom:458.490450px;}
.y1d_c00431{bottom:489.540450px;}
.y1c_c00431{bottom:520.590450px;}
.y1b_c00431{bottom:551.640450px;}
.y1a_c00431{bottom:582.690450px;}
.y19_c00431{bottom:613.740450px;}
.y18_c00431{bottom:653.790450px;}
.y17_c00431{bottom:683.490450px;}
.y16_c00431{bottom:704.190450px;}
.y15_c00431{bottom:724.890450px;}
.y14_c00431{bottom:745.590450px;}
.y13_c00431{bottom:766.290450px;}
.y12_c00431{bottom:786.990450px;}
.y11_c00431{bottom:807.690450px;}
.y10_c00431{bottom:828.390450px;}
.yf_c00431{bottom:849.090450px;}
.ye_c00431{bottom:869.790450px;}
.yd_c00431{bottom:890.490450px;}
.yc_c00431{bottom:911.190450px;}
.yb_c00431{bottom:931.890450px;}
.ya_c00431{bottom:952.590450px;}
.y9_c00431{bottom:973.290450px;}
.y8_c00431{bottom:993.990450px;}
.y7_c00431{bottom:1014.690450px;}
.y6_c00431{bottom:1035.390450px;}
.y5_c00431{bottom:1056.090450px;}
.y4_c00431{bottom:1076.790450px;}
.y3_c00431{bottom:1097.490450px;}
.h1_c00431{height:63.175781px;}
.h2_c00431{height:64.546875px;}
.h0_c00431{height:1263.000000px;}
.w1_c00431{width:892.500000px;}
.w0_c00431{width:892.830000px;}
.x0_c00431{left:0.000000px;}
.x2_c00431{left:127.620000px;}
.x3_c00431{left:202.950000px;}
.x1_c00431{left:695.880000px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.lsc_c00431{letter-spacing:-0.096000pt;}
.lsa_c00431{letter-spacing:-0.083200pt;}
.ls3_c00431{letter-spacing:-0.064000pt;}
.lsb_c00431{letter-spacing:-0.057600pt;}
.ls6_c00431{letter-spacing:-0.051200pt;}
.ls9_c00431{letter-spacing:-0.044800pt;}
.ls4_c00431{letter-spacing:-0.038400pt;}
.ls8_c00431{letter-spacing:-0.032000pt;}
.ls7_c00431{letter-spacing:-0.025600pt;}
.ls2_c00431{letter-spacing:-0.019200pt;}
.ls1_c00431{letter-spacing:-0.012800pt;}
.ls5_c00431{letter-spacing:-0.006400pt;}
.ls0_c00431{letter-spacing:0.000000pt;}
.ws24_c00431{word-spacing:-1.843200pt;}
.ws23_c00431{word-spacing:-1.747200pt;}
.ws1b_c00431{word-spacing:-0.806400pt;}
.ws2c_c00431{word-spacing:-0.595200pt;}
.ws0_c00431{word-spacing:0.000000pt;}
.ws2d_c00431{word-spacing:0.019200pt;}
.ws2a_c00431{word-spacing:0.121600pt;}
.ws6_c00431{word-spacing:0.147200pt;}
.ws25_c00431{word-spacing:0.153600pt;}
.ws9_c00431{word-spacing:0.166400pt;}
.ws1d_c00431{word-spacing:0.646400pt;}
.ws1c_c00431{word-spacing:0.838400pt;}
.ws19_c00431{word-spacing:1.107200pt;}
.ws1a_c00431{word-spacing:1.132800pt;}
.ws16_c00431{word-spacing:1.766400pt;}
.wsb_c00431{word-spacing:1.779200pt;}
.ws12_c00431{word-spacing:2.080000pt;}
.ws3_c00431{word-spacing:2.713600pt;}
.ws2_c00431{word-spacing:2.720000pt;}
.ws17_c00431{word-spacing:3.264000pt;}
.ws18_c00431{word-spacing:3.392000pt;}
.ws8_c00431{word-spacing:3.417600pt;}
.ws22_c00431{word-spacing:3.699200pt;}
.ws15_c00431{word-spacing:3.718400pt;}
.ws5_c00431{word-spacing:4.390400pt;}
.ws4_c00431{word-spacing:4.409600pt;}
.ws14_c00431{word-spacing:5.024000pt;}
.ws20_c00431{word-spacing:8.492800pt;}
.ws21_c00431{word-spacing:8.505600pt;}
.wsa_c00431{word-spacing:10.406400pt;}
.ws11_c00431{word-spacing:10.598400pt;}
.ws10_c00431{word-spacing:10.745600pt;}
.ws1e_c00431{word-spacing:11.033600pt;}
.ws13_c00431{word-spacing:11.072000pt;}
.ws1f_c00431{word-spacing:11.110400pt;}
.ws28_c00431{word-spacing:12.569600pt;}
.ws29_c00431{word-spacing:12.716800pt;}
.wsf_c00431{word-spacing:16.716800pt;}
.wse_c00431{word-spacing:16.832000pt;}
.ws7_c00431{word-spacing:18.393600pt;}
.wsc_c00431{word-spacing:18.713600pt;}
.wsd_c00431{word-spacing:18.784000pt;}
.ws1_c00431{word-spacing:21.273600pt;}
.ws2b_c00431{word-spacing:21.625600pt;}
.ws27_c00431{word-spacing:56.441600pt;}
.ws26_c00431{word-spacing:56.499200pt;}
._0_c00431{width:1.132800pt;}
.fs0_c00431{font-size:64.000000pt;}
.y0_c00431{bottom:0.000000pt;}
.y2_c00431{bottom:41.627067pt;}
.y1_c00431{bottom:60.027067pt;}
.y28_c00431{bottom:127.227067pt;}
.y27_c00431{bottom:162.827067pt;}
.y26_c00431{bottom:190.427067pt;}
.y25_c00431{bottom:218.027067pt;}
.y24_c00431{bottom:253.627067pt;}
.y23_c00431{bottom:280.027067pt;}
.y22_c00431{bottom:298.427067pt;}
.y21_c00431{bottom:316.827067pt;}
.y20_c00431{bottom:352.347067pt;}
.y1f_c00431{bottom:379.947067pt;}
.y1e_c00431{bottom:407.547067pt;}
.y1d_c00431{bottom:435.147067pt;}
.y1c_c00431{bottom:462.747067pt;}
.y1b_c00431{bottom:490.347067pt;}
.y1a_c00431{bottom:517.947067pt;}
.y19_c00431{bottom:545.547067pt;}
.y18_c00431{bottom:581.147067pt;}
.y17_c00431{bottom:607.547067pt;}
.y16_c00431{bottom:625.947067pt;}
.y15_c00431{bottom:644.347067pt;}
.y14_c00431{bottom:662.747067pt;}
.y13_c00431{bottom:681.147067pt;}
.y12_c00431{bottom:699.547067pt;}
.y11_c00431{bottom:717.947067pt;}
.y10_c00431{bottom:736.347067pt;}
.yf_c00431{bottom:754.747067pt;}
.ye_c00431{bottom:773.147067pt;}
.yd_c00431{bottom:791.547067pt;}
.yc_c00431{bottom:809.947067pt;}
.yb_c00431{bottom:828.347067pt;}
.ya_c00431{bottom:846.747067pt;}
.y9_c00431{bottom:865.147067pt;}
.y8_c00431{bottom:883.547067pt;}
.y7_c00431{bottom:901.947067pt;}
.y6_c00431{bottom:920.347067pt;}
.y5_c00431{bottom:938.747067pt;}
.y4_c00431{bottom:957.147067pt;}
.y3_c00431{bottom:975.547067pt;}
.h1_c00431{height:56.156250pt;}
.h2_c00431{height:57.375000pt;}
.h0_c00431{height:1122.666667pt;}
.w1_c00431{width:793.333333pt;}
.w0_c00431{width:793.626667pt;}
.x0_c00431{left:0.000000pt;}
.x2_c00431{left:113.440000pt;}
.x3_c00431{left:180.400000pt;}
.x1_c00431{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5e1c5f61476dc25a6d2d29f6.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.093262;font-style:normal;font-weight:normal;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_b4379cacb29e1c80077bc619.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:1.106934;font-style:normal;font-weight:normal;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_2b66f3bbebccb7d525204342.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls8_c00432{letter-spacing:-0.072000px;}
.ls2_c00432{letter-spacing:-0.057600px;}
.ls9_c00432{letter-spacing:-0.050400px;}
.ls6_c00432{letter-spacing:-0.043200px;}
.ls4_c00432{letter-spacing:-0.036000px;}
.ls3_c00432{letter-spacing:-0.028800px;}
.ls5_c00432{letter-spacing:-0.021600px;}
.lsa_c00432{letter-spacing:-0.014400px;}
.ls7_c00432{letter-spacing:-0.007200px;}
.ls1_c00432{letter-spacing:0.000000px;}
.ls0_c00432{letter-spacing:0.028800px;}
.sc__c00432{text-shadow:none;}
.sc0_c00432{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00432{-webkit-text-stroke:0px transparent;}
.sc0_c00432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00432{word-spacing:-20.016000px;}
.wsb_c00432{word-spacing:-1.526400px;}
.wsc_c00432{word-spacing:-1.512000px;}
.ws1_c00432{word-spacing:0.000000px;}
.ws2_c00432{word-spacing:0.129600px;}
.ws6_c00432{word-spacing:0.158400px;}
.wsd_c00432{word-spacing:0.165600px;}
.ws14_c00432{word-spacing:0.172800px;}
.ws8_c00432{word-spacing:0.180000px;}
.ws7_c00432{word-spacing:0.187200px;}
.ws11_c00432{word-spacing:0.194400px;}
.wsa_c00432{word-spacing:0.201600px;}
.ws10_c00432{word-spacing:0.950400px;}
.wse_c00432{word-spacing:1.238400px;}
.wsf_c00432{word-spacing:1.274400px;}
.ws9_c00432{word-spacing:5.947200px;}
.ws13_c00432{word-spacing:7.380000px;}
.ws5_c00432{word-spacing:21.794400px;}
.ws12_c00432{word-spacing:40.579200px;}
.ws3_c00432{word-spacing:40.831200px;}
.ws4_c00432{word-spacing:66.067200px;}
._0_c00432{width:1.008000px;}
.fc0_c00432{color:rgb(0,0,0);}
.fs0_c00432{font-size:72.000000px;}
.y0_c00432{bottom:0.000000px;}
.y2_c00432{bottom:46.830450px;}
.y1_c00432{bottom:67.530450px;}
.y1f_c00432{bottom:346.440450px;}
.y1e_c00432{bottom:376.140450px;}
.y1d_c00432{bottom:396.840450px;}
.y1c_c00432{bottom:417.540450px;}
.y1b_c00432{bottom:438.240450px;}
.y1a_c00432{bottom:458.940450px;}
.y19_c00432{bottom:479.640450px;}
.y18_c00432{bottom:500.340450px;}
.y17_c00432{bottom:521.040450px;}
.y16_c00432{bottom:541.740450px;}
.y15_c00432{bottom:581.790450px;}
.y14_c00432{bottom:621.840450px;}
.y13_c00432{bottom:651.540450px;}
.y12_c00432{bottom:672.240450px;}
.y11_c00432{bottom:712.290450px;}
.y10_c00432{bottom:752.340450px;}
.yf_c00432{bottom:782.040450px;}
.ye_c00432{bottom:802.740450px;}
.yd_c00432{bottom:842.790450px;}
.yc_c00432{bottom:882.840450px;}
.yb_c00432{bottom:912.540450px;}
.ya_c00432{bottom:933.240450px;}
.y9_c00432{bottom:953.940450px;}
.y8_c00432{bottom:974.640450px;}
.y7_c00432{bottom:995.340450px;}
.y6_c00432{bottom:1016.040450px;}
.y5_c00432{bottom:1036.740450px;}
.y4_c00432{bottom:1057.440450px;}
.y3_c00432{bottom:1097.490450px;}
.h1_c00432{height:63.175781px;}
.h2_c00432{height:64.546875px;}
.h3_c00432{height:75.093750px;}
.h0_c00432{height:1263.000000px;}
.w1_c00432{width:892.500000px;}
.w0_c00432{width:892.830000px;}
.x0_c00432{left:0.000000px;}
.x2_c00432{left:170.100000px;}
.x3_c00432{left:245.430000px;}
.x1_c00432{left:738.360000px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls8_c00432{letter-spacing:-0.064000pt;}
.ls2_c00432{letter-spacing:-0.051200pt;}
.ls9_c00432{letter-spacing:-0.044800pt;}
.ls6_c00432{letter-spacing:-0.038400pt;}
.ls4_c00432{letter-spacing:-0.032000pt;}
.ls3_c00432{letter-spacing:-0.025600pt;}
.ls5_c00432{letter-spacing:-0.019200pt;}
.lsa_c00432{letter-spacing:-0.012800pt;}
.ls7_c00432{letter-spacing:-0.006400pt;}
.ls1_c00432{letter-spacing:0.000000pt;}
.ls0_c00432{letter-spacing:0.025600pt;}
.ws0_c00432{word-spacing:-17.792000pt;}
.wsb_c00432{word-spacing:-1.356800pt;}
.wsc_c00432{word-spacing:-1.344000pt;}
.ws1_c00432{word-spacing:0.000000pt;}
.ws2_c00432{word-spacing:0.115200pt;}
.ws6_c00432{word-spacing:0.140800pt;}
.wsd_c00432{word-spacing:0.147200pt;}
.ws14_c00432{word-spacing:0.153600pt;}
.ws8_c00432{word-spacing:0.160000pt;}
.ws7_c00432{word-spacing:0.166400pt;}
.ws11_c00432{word-spacing:0.172800pt;}
.wsa_c00432{word-spacing:0.179200pt;}
.ws10_c00432{word-spacing:0.844800pt;}
.wse_c00432{word-spacing:1.100800pt;}
.wsf_c00432{word-spacing:1.132800pt;}
.ws9_c00432{word-spacing:5.286400pt;}
.ws13_c00432{word-spacing:6.560000pt;}
.ws5_c00432{word-spacing:19.372800pt;}
.ws12_c00432{word-spacing:36.070400pt;}
.ws3_c00432{word-spacing:36.294400pt;}
.ws4_c00432{word-spacing:58.726400pt;}
._0_c00432{width:0.896000pt;}
.fs0_c00432{font-size:64.000000pt;}
.y0_c00432{bottom:0.000000pt;}
.y2_c00432{bottom:41.627067pt;}
.y1_c00432{bottom:60.027067pt;}
.y1f_c00432{bottom:307.947067pt;}
.y1e_c00432{bottom:334.347067pt;}
.y1d_c00432{bottom:352.747067pt;}
.y1c_c00432{bottom:371.147067pt;}
.y1b_c00432{bottom:389.547067pt;}
.y1a_c00432{bottom:407.947067pt;}
.y19_c00432{bottom:426.347067pt;}
.y18_c00432{bottom:444.747067pt;}
.y17_c00432{bottom:463.147067pt;}
.y16_c00432{bottom:481.547067pt;}
.y15_c00432{bottom:517.147067pt;}
.y14_c00432{bottom:552.747067pt;}
.y13_c00432{bottom:579.147067pt;}
.y12_c00432{bottom:597.547067pt;}
.y11_c00432{bottom:633.147067pt;}
.y10_c00432{bottom:668.747067pt;}
.yf_c00432{bottom:695.147067pt;}
.ye_c00432{bottom:713.547067pt;}
.yd_c00432{bottom:749.147067pt;}
.yc_c00432{bottom:784.747067pt;}
.yb_c00432{bottom:811.147067pt;}
.ya_c00432{bottom:829.547067pt;}
.y9_c00432{bottom:847.947067pt;}
.y8_c00432{bottom:866.347067pt;}
.y7_c00432{bottom:884.747067pt;}
.y6_c00432{bottom:903.147067pt;}
.y5_c00432{bottom:921.547067pt;}
.y4_c00432{bottom:939.947067pt;}
.y3_c00432{bottom:975.547067pt;}
.h1_c00432{height:56.156250pt;}
.h2_c00432{height:57.375000pt;}
.h3_c00432{height:66.750000pt;}
.h0_c00432{height:1122.666667pt;}
.w1_c00432{width:793.333333pt;}
.w0_c00432{width:793.626667pt;}
.x0_c00432{left:0.000000pt;}
.x2_c00432{left:151.200000pt;}
.x3_c00432{left:218.160000pt;}
.x1_c00432{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5e1c5f61476dc25a6d2d29f6.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.093262;font-style:normal;font-weight:normal;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_acf93aed203874bb376c8f53.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00433;src:url('chunks/assets/font_80c914ca61cf8a7b77310def.woff2')format("woff");}.ff3_c00433{font-family:ff3_c00433;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00433;src:url('chunks/assets/font_6f136923909a7af430d3aeec.woff2')format("woff");}.ff4_c00433{font-family:ff4_c00433;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00433{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.v0_c00433{vertical-align:0.000000px;}
.lsb_c00433{letter-spacing:-0.093600px;}
.ls4_c00433{letter-spacing:-0.043200px;}
.ls7_c00433{letter-spacing:-0.036000px;}
.ls9_c00433{letter-spacing:-0.028800px;}
.ls3_c00433{letter-spacing:-0.021600px;}
.ls8_c00433{letter-spacing:-0.014400px;}
.ls5_c00433{letter-spacing:-0.007200px;}
.ls2_c00433{letter-spacing:0.000000px;}
.ls6_c00433{letter-spacing:0.007200px;}
.ls1_c00433{letter-spacing:0.014400px;}
.ls0_c00433{letter-spacing:0.037800px;}
.lsa_c00433{letter-spacing:0.043200px;}
.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;}
}
.ws14_c00433{word-spacing:-1.620000px;}
.ws15_c00433{word-spacing:-1.612800px;}
.wsa_c00433{word-spacing:-1.252800px;}
.ws9_c00433{word-spacing:-1.238400px;}
.ws16_c00433{word-spacing:-0.028800px;}
.ws0_c00433{word-spacing:0.000000px;}
.ws1_c00433{word-spacing:0.145800px;}
.ws27_c00433{word-spacing:0.158400px;}
.ws3_c00433{word-spacing:0.187200px;}
.ws4_c00433{word-spacing:0.194400px;}
.ws1f_c00433{word-spacing:0.216000px;}
.ws1c_c00433{word-spacing:0.280800px;}
.wsb_c00433{word-spacing:0.828000px;}
.wsc_c00433{word-spacing:0.914400px;}
.ws2_c00433{word-spacing:1.605600px;}
.ws1d_c00433{word-spacing:3.060000px;}
.ws1e_c00433{word-spacing:3.074400px;}
.wsf_c00433{word-spacing:3.405600px;}
.ws10_c00433{word-spacing:3.477600px;}
.ws23_c00433{word-spacing:3.484800px;}
.ws22_c00433{word-spacing:3.492000px;}
.ws25_c00433{word-spacing:4.053600px;}
.ws24_c00433{word-spacing:4.161600px;}
.ws20_c00433{word-spacing:5.508000px;}
.ws21_c00433{word-spacing:5.601600px;}
.ws17_c00433{word-spacing:7.732800px;}
.ws18_c00433{word-spacing:7.747200px;}
.ws13_c00433{word-spacing:8.762400px;}
.ws11_c00433{word-spacing:8.920800px;}
.ws12_c00433{word-spacing:8.949600px;}
.ws8_c00433{word-spacing:12.045600px;}
.ws7_c00433{word-spacing:12.124800px;}
.ws26_c00433{word-spacing:12.830400px;}
.wsd_c00433{word-spacing:14.932800px;}
.wse_c00433{word-spacing:14.976000px;}
.ws19_c00433{word-spacing:15.292800px;}
.ws1a_c00433{word-spacing:15.307200px;}
.ws1b_c00433{word-spacing:15.314400px;}
.ws6_c00433{word-spacing:31.838400px;}
.ws5_c00433{word-spacing:31.903200px;}
._0_c00433{margin-left:-1.134000px;}
._1_c00433{width:1.108800px;}
.fc1_c00433{color:rgb(31,73,124);}
.fc0_c00433{color:rgb(0,0,0);}
.fs1_c00433{font-size:54.000000px;}
.fs0_c00433{font-size:72.000000px;}
.y0_c00433{bottom:0.000000px;}
.y2_c00433{bottom:46.830450px;}
.y1_c00433{bottom:67.530450px;}
.y1a_c00433{bottom:139.080450px;}
.y19_c00433{bottom:168.780450px;}
.y18_c00433{bottom:189.480450px;}
.y17_c00433{bottom:210.180450px;}
.y16_c00433{bottom:230.880450px;}
.y15_c00433{bottom:251.580450px;}
.y14_c00433{bottom:291.630450px;}
.y13_c00433{bottom:322.680450px;}
.y12_c00433{bottom:362.730450px;}
.y11_c00433{bottom:393.780450px;}
.y10_c00433{bottom:424.830450px;}
.yf_c00433{bottom:464.880450px;}
.ye_c00433{bottom:495.930450px;}
.yd_c00433{bottom:526.980450px;}
.yc_c00433{bottom:558.030450px;}
.yb_c00433{bottom:589.080450px;}
.ya_c00433{bottom:620.130450px;}
.y9_c00433{bottom:651.180450px;}
.y8_c00433{bottom:682.230450px;}
.y7_c00433{bottom:713.280450px;}
.y6_c00433{bottom:744.330450px;}
.y5_c00433{bottom:775.380450px;}
.y4_c00433{bottom:810.300450px;}
.y3_c00433{bottom:841.980450px;}
.h2_c00433{height:56.320312px;}
.h1_c00433{height:63.175781px;}
.h3_c00433{height:64.546875px;}
.h4_c00433{height:75.093750px;}
.h0_c00433{height:1263.000000px;}
.w1_c00433{width:892.500000px;}
.w0_c00433{width:892.830000px;}
.x0_c00433{left:0.000000px;}
.x2_c00433{left:127.618135px;}
.x4_c00433{left:202.991211px;}
.x1_c00433{left:695.880000px;}
.x3_c00433{left:728.374726px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.lsb_c00433{letter-spacing:-0.083200pt;}
.ls4_c00433{letter-spacing:-0.038400pt;}
.ls7_c00433{letter-spacing:-0.032000pt;}
.ls9_c00433{letter-spacing:-0.025600pt;}
.ls3_c00433{letter-spacing:-0.019200pt;}
.ls8_c00433{letter-spacing:-0.012800pt;}
.ls5_c00433{letter-spacing:-0.006400pt;}
.ls2_c00433{letter-spacing:0.000000pt;}
.ls6_c00433{letter-spacing:0.006400pt;}
.ls1_c00433{letter-spacing:0.012800pt;}
.ls0_c00433{letter-spacing:0.033600pt;}
.lsa_c00433{letter-spacing:0.038400pt;}
.ws14_c00433{word-spacing:-1.440000pt;}
.ws15_c00433{word-spacing:-1.433600pt;}
.wsa_c00433{word-spacing:-1.113600pt;}
.ws9_c00433{word-spacing:-1.100800pt;}
.ws16_c00433{word-spacing:-0.025600pt;}
.ws0_c00433{word-spacing:0.000000pt;}
.ws1_c00433{word-spacing:0.129600pt;}
.ws27_c00433{word-spacing:0.140800pt;}
.ws3_c00433{word-spacing:0.166400pt;}
.ws4_c00433{word-spacing:0.172800pt;}
.ws1f_c00433{word-spacing:0.192000pt;}
.ws1c_c00433{word-spacing:0.249600pt;}
.wsb_c00433{word-spacing:0.736000pt;}
.wsc_c00433{word-spacing:0.812800pt;}
.ws2_c00433{word-spacing:1.427200pt;}
.ws1d_c00433{word-spacing:2.720000pt;}
.ws1e_c00433{word-spacing:2.732800pt;}
.wsf_c00433{word-spacing:3.027200pt;}
.ws10_c00433{word-spacing:3.091200pt;}
.ws23_c00433{word-spacing:3.097600pt;}
.ws22_c00433{word-spacing:3.104000pt;}
.ws25_c00433{word-spacing:3.603200pt;}
.ws24_c00433{word-spacing:3.699200pt;}
.ws20_c00433{word-spacing:4.896000pt;}
.ws21_c00433{word-spacing:4.979200pt;}
.ws17_c00433{word-spacing:6.873600pt;}
.ws18_c00433{word-spacing:6.886400pt;}
.ws13_c00433{word-spacing:7.788800pt;}
.ws11_c00433{word-spacing:7.929600pt;}
.ws12_c00433{word-spacing:7.955200pt;}
.ws8_c00433{word-spacing:10.707200pt;}
.ws7_c00433{word-spacing:10.777600pt;}
.ws26_c00433{word-spacing:11.404800pt;}
.wsd_c00433{word-spacing:13.273600pt;}
.wse_c00433{word-spacing:13.312000pt;}
.ws19_c00433{word-spacing:13.593600pt;}
.ws1a_c00433{word-spacing:13.606400pt;}
.ws1b_c00433{word-spacing:13.612800pt;}
.ws6_c00433{word-spacing:28.300800pt;}
.ws5_c00433{word-spacing:28.358400pt;}
._0_c00433{margin-left:-1.008000pt;}
._1_c00433{width:0.985600pt;}
.fs1_c00433{font-size:48.000000pt;}
.fs0_c00433{font-size:64.000000pt;}
.y0_c00433{bottom:0.000000pt;}
.y2_c00433{bottom:41.627067pt;}
.y1_c00433{bottom:60.027067pt;}
.y1a_c00433{bottom:123.627067pt;}
.y19_c00433{bottom:150.027067pt;}
.y18_c00433{bottom:168.427067pt;}
.y17_c00433{bottom:186.827067pt;}
.y16_c00433{bottom:205.227067pt;}
.y15_c00433{bottom:223.627067pt;}
.y14_c00433{bottom:259.227067pt;}
.y13_c00433{bottom:286.827067pt;}
.y12_c00433{bottom:322.427067pt;}
.y11_c00433{bottom:350.027067pt;}
.y10_c00433{bottom:377.627067pt;}
.yf_c00433{bottom:413.227067pt;}
.ye_c00433{bottom:440.827067pt;}
.yd_c00433{bottom:468.427067pt;}
.yc_c00433{bottom:496.027067pt;}
.yb_c00433{bottom:523.627067pt;}
.ya_c00433{bottom:551.227067pt;}
.y9_c00433{bottom:578.827067pt;}
.y8_c00433{bottom:606.427067pt;}
.y7_c00433{bottom:634.027067pt;}
.y6_c00433{bottom:661.627067pt;}
.y5_c00433{bottom:689.227067pt;}
.y4_c00433{bottom:720.267067pt;}
.y3_c00433{bottom:748.427067pt;}
.h2_c00433{height:50.062500pt;}
.h1_c00433{height:56.156250pt;}
.h3_c00433{height:57.375000pt;}
.h4_c00433{height:66.750000pt;}
.h0_c00433{height:1122.666667pt;}
.w1_c00433{width:793.333333pt;}
.w0_c00433{width:793.626667pt;}
.x0_c00433{left:0.000000pt;}
.x2_c00433{left:113.438342pt;}
.x4_c00433{left:180.436632pt;}
.x1_c00433{left:618.560000pt;}
.x3_c00433{left:647.444201pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1216ac9d09f1d37be329b8d8.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.093262;font-style:normal;font-weight:normal;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_b42d20bd9d56cb5b1cb2cbe2.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00434{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls2_c00434{letter-spacing:-0.079200px;}
.ls5_c00434{letter-spacing:-0.064800px;}
.ls7_c00434{letter-spacing:-0.057600px;}
.ls4_c00434{letter-spacing:-0.050400px;}
.ls8_c00434{letter-spacing:-0.043200px;}
.ls6_c00434{letter-spacing:-0.036000px;}
.ls3_c00434{letter-spacing:-0.028800px;}
.ls1_c00434{letter-spacing:-0.021600px;}
.ls9_c00434{letter-spacing:-0.014400px;}
.lsb_c00434{letter-spacing:-0.007200px;}
.ls0_c00434{letter-spacing:0.000000px;}
.lsa_c00434{letter-spacing:0.028800px;}
.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;}
}
.wse_c00434{word-spacing:-3.470400px;}
.wsd_c00434{word-spacing:-3.448800px;}
.ws22_c00434{word-spacing:-1.641600px;}
.ws21_c00434{word-spacing:-1.612800px;}
.wsc_c00434{word-spacing:-0.972000px;}
.wsb_c00434{word-spacing:-0.864000px;}
.ws28_c00434{word-spacing:-0.511200px;}
.ws0_c00434{word-spacing:0.000000px;}
.ws11_c00434{word-spacing:0.014400px;}
.ws1c_c00434{word-spacing:0.079200px;}
.ws23_c00434{word-spacing:0.136800px;}
.ws1d_c00434{word-spacing:0.172800px;}
.ws5_c00434{word-spacing:0.180000px;}
.ws3_c00434{word-spacing:0.187200px;}
.wsa_c00434{word-spacing:0.194400px;}
.ws12_c00434{word-spacing:0.201600px;}
.ws4_c00434{word-spacing:0.208800px;}
.ws29_c00434{word-spacing:0.223200px;}
.ws15_c00434{word-spacing:0.568800px;}
.ws16_c00434{word-spacing:0.626400px;}
.ws13_c00434{word-spacing:1.332000px;}
.ws14_c00434{word-spacing:1.346400px;}
.ws9_c00434{word-spacing:1.994400px;}
.ws1b_c00434{word-spacing:2.016000px;}
.ws8_c00434{word-spacing:2.066400px;}
.ws7_c00434{word-spacing:3.448800px;}
.ws6_c00434{word-spacing:3.463200px;}
.ws20_c00434{word-spacing:4.478400px;}
.ws26_c00434{word-spacing:7.365600px;}
.ws27_c00434{word-spacing:7.387200px;}
.ws19_c00434{word-spacing:7.689600px;}
.ws1a_c00434{word-spacing:7.747200px;}
.ws18_c00434{word-spacing:8.834400px;}
.ws17_c00434{word-spacing:8.942400px;}
.ws1f_c00434{word-spacing:12.780000px;}
.ws1e_c00434{word-spacing:12.852000px;}
.ws24_c00434{word-spacing:18.900000px;}
.ws25_c00434{word-spacing:19.058400px;}
.ws1_c00434{word-spacing:27.900000px;}
.ws2_c00434{word-spacing:27.957600px;}
.ws10_c00434{word-spacing:29.332800px;}
.wsf_c00434{word-spacing:29.412000px;}
._0_c00434{width:1.094400px;}
.fc0_c00434{color:rgb(0,0,0);}
.fs0_c00434{font-size:72.000000px;}
.y0_c00434{bottom:0.000000px;}
.y2_c00434{bottom:46.830450px;}
.y1_c00434{bottom:67.530450px;}
.y24_c00434{bottom:140.880450px;}
.y23_c00434{bottom:161.580450px;}
.y22_c00434{bottom:182.280450px;}
.y21_c00434{bottom:202.980450px;}
.y20_c00434{bottom:243.030450px;}
.y1f_c00434{bottom:272.730450px;}
.y1e_c00434{bottom:293.430450px;}
.y1d_c00434{bottom:314.040450px;}
.y1c_c00434{bottom:334.740450px;}
.y1b_c00434{bottom:355.440450px;}
.y1a_c00434{bottom:376.140450px;}
.y19_c00434{bottom:396.840450px;}
.y18_c00434{bottom:417.540450px;}
.y17_c00434{bottom:457.590450px;}
.y16_c00434{bottom:497.640450px;}
.y15_c00434{bottom:528.690450px;}
.y14_c00434{bottom:559.740450px;}
.y13_c00434{bottom:590.790450px;}
.y12_c00434{bottom:630.840450px;}
.y11_c00434{bottom:660.540450px;}
.y10_c00434{bottom:681.240450px;}
.yf_c00434{bottom:701.940450px;}
.ye_c00434{bottom:741.990450px;}
.yd_c00434{bottom:782.040450px;}
.yc_c00434{bottom:813.090450px;}
.yb_c00434{bottom:844.140450px;}
.ya_c00434{bottom:875.190450px;}
.y9_c00434{bottom:915.240450px;}
.y8_c00434{bottom:944.940450px;}
.y7_c00434{bottom:965.640450px;}
.y6_c00434{bottom:986.340450px;}
.y5_c00434{bottom:1026.390450px;}
.y4_c00434{bottom:1066.440450px;}
.y3_c00434{bottom:1097.490450px;}
.h1_c00434{height:63.175781px;}
.h2_c00434{height:64.546875px;}
.h0_c00434{height:1263.000000px;}
.w1_c00434{width:892.500000px;}
.w0_c00434{width:892.830000px;}
.x0_c00434{left:0.000000px;}
.x2_c00434{left:170.100000px;}
.x3_c00434{left:245.430000px;}
.x1_c00434{left:738.360000px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls2_c00434{letter-spacing:-0.070400pt;}
.ls5_c00434{letter-spacing:-0.057600pt;}
.ls7_c00434{letter-spacing:-0.051200pt;}
.ls4_c00434{letter-spacing:-0.044800pt;}
.ls8_c00434{letter-spacing:-0.038400pt;}
.ls6_c00434{letter-spacing:-0.032000pt;}
.ls3_c00434{letter-spacing:-0.025600pt;}
.ls1_c00434{letter-spacing:-0.019200pt;}
.ls9_c00434{letter-spacing:-0.012800pt;}
.lsb_c00434{letter-spacing:-0.006400pt;}
.ls0_c00434{letter-spacing:0.000000pt;}
.lsa_c00434{letter-spacing:0.025600pt;}
.wse_c00434{word-spacing:-3.084800pt;}
.wsd_c00434{word-spacing:-3.065600pt;}
.ws22_c00434{word-spacing:-1.459200pt;}
.ws21_c00434{word-spacing:-1.433600pt;}
.wsc_c00434{word-spacing:-0.864000pt;}
.wsb_c00434{word-spacing:-0.768000pt;}
.ws28_c00434{word-spacing:-0.454400pt;}
.ws0_c00434{word-spacing:0.000000pt;}
.ws11_c00434{word-spacing:0.012800pt;}
.ws1c_c00434{word-spacing:0.070400pt;}
.ws23_c00434{word-spacing:0.121600pt;}
.ws1d_c00434{word-spacing:0.153600pt;}
.ws5_c00434{word-spacing:0.160000pt;}
.ws3_c00434{word-spacing:0.166400pt;}
.wsa_c00434{word-spacing:0.172800pt;}
.ws12_c00434{word-spacing:0.179200pt;}
.ws4_c00434{word-spacing:0.185600pt;}
.ws29_c00434{word-spacing:0.198400pt;}
.ws15_c00434{word-spacing:0.505600pt;}
.ws16_c00434{word-spacing:0.556800pt;}
.ws13_c00434{word-spacing:1.184000pt;}
.ws14_c00434{word-spacing:1.196800pt;}
.ws9_c00434{word-spacing:1.772800pt;}
.ws1b_c00434{word-spacing:1.792000pt;}
.ws8_c00434{word-spacing:1.836800pt;}
.ws7_c00434{word-spacing:3.065600pt;}
.ws6_c00434{word-spacing:3.078400pt;}
.ws20_c00434{word-spacing:3.980800pt;}
.ws26_c00434{word-spacing:6.547200pt;}
.ws27_c00434{word-spacing:6.566400pt;}
.ws19_c00434{word-spacing:6.835200pt;}
.ws1a_c00434{word-spacing:6.886400pt;}
.ws18_c00434{word-spacing:7.852800pt;}
.ws17_c00434{word-spacing:7.948800pt;}
.ws1f_c00434{word-spacing:11.360000pt;}
.ws1e_c00434{word-spacing:11.424000pt;}
.ws24_c00434{word-spacing:16.800000pt;}
.ws25_c00434{word-spacing:16.940800pt;}
.ws1_c00434{word-spacing:24.800000pt;}
.ws2_c00434{word-spacing:24.851200pt;}
.ws10_c00434{word-spacing:26.073600pt;}
.wsf_c00434{word-spacing:26.144000pt;}
._0_c00434{width:0.972800pt;}
.fs0_c00434{font-size:64.000000pt;}
.y0_c00434{bottom:0.000000pt;}
.y2_c00434{bottom:41.627067pt;}
.y1_c00434{bottom:60.027067pt;}
.y24_c00434{bottom:125.227067pt;}
.y23_c00434{bottom:143.627067pt;}
.y22_c00434{bottom:162.027067pt;}
.y21_c00434{bottom:180.427067pt;}
.y20_c00434{bottom:216.027067pt;}
.y1f_c00434{bottom:242.427067pt;}
.y1e_c00434{bottom:260.827067pt;}
.y1d_c00434{bottom:279.147067pt;}
.y1c_c00434{bottom:297.547067pt;}
.y1b_c00434{bottom:315.947067pt;}
.y1a_c00434{bottom:334.347067pt;}
.y19_c00434{bottom:352.747067pt;}
.y18_c00434{bottom:371.147067pt;}
.y17_c00434{bottom:406.747067pt;}
.y16_c00434{bottom:442.347067pt;}
.y15_c00434{bottom:469.947067pt;}
.y14_c00434{bottom:497.547067pt;}
.y13_c00434{bottom:525.147067pt;}
.y12_c00434{bottom:560.747067pt;}
.y11_c00434{bottom:587.147067pt;}
.y10_c00434{bottom:605.547067pt;}
.yf_c00434{bottom:623.947067pt;}
.ye_c00434{bottom:659.547067pt;}
.yd_c00434{bottom:695.147067pt;}
.yc_c00434{bottom:722.747067pt;}
.yb_c00434{bottom:750.347067pt;}
.ya_c00434{bottom:777.947067pt;}
.y9_c00434{bottom:813.547067pt;}
.y8_c00434{bottom:839.947067pt;}
.y7_c00434{bottom:858.347067pt;}
.y6_c00434{bottom:876.747067pt;}
.y5_c00434{bottom:912.347067pt;}
.y4_c00434{bottom:947.947067pt;}
.y3_c00434{bottom:975.547067pt;}
.h1_c00434{height:56.156250pt;}
.h2_c00434{height:57.375000pt;}
.h0_c00434{height:1122.666667pt;}
.w1_c00434{width:793.333333pt;}
.w0_c00434{width:793.626667pt;}
.x0_c00434{left:0.000000pt;}
.x2_c00434{left:151.200000pt;}
.x3_c00434{left:218.160000pt;}
.x1_c00434{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7dfd1003c6f55c63a4989e3a.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.093262;font-style:normal;font-weight:normal;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_65ee8898139c78a58a4a0089.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.106934;font-style:normal;font-weight:normal;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_94581cbdbeeb3d3cd75a9dfe.woff2')format("woff");}.ff3_c00435{font-family:ff3_c00435;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00435;src:url('chunks/assets/font_2e5b1502d4b30cd45d096ad6.woff2')format("woff");}.ff4_c00435{font-family:ff4_c00435;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00435{letter-spacing:-0.072000px;}
.ls5_c00435{letter-spacing:-0.057600px;}
.lsa_c00435{letter-spacing:-0.050400px;}
.ls3_c00435{letter-spacing:-0.043200px;}
.ls7_c00435{letter-spacing:-0.036000px;}
.ls4_c00435{letter-spacing:-0.028800px;}
.ls8_c00435{letter-spacing:-0.021600px;}
.ls9_c00435{letter-spacing:-0.014400px;}
.ls6_c00435{letter-spacing:-0.007200px;}
.ls2_c00435{letter-spacing:0.000000px;}
.ls1_c00435{letter-spacing:0.007200px;}
.ls0_c00435{letter-spacing:0.041940px;}
.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;}
}
.wsb_c00435{word-spacing:-2.016000px;}
.wsc_c00435{word-spacing:-1.972800px;}
.ws1e_c00435{word-spacing:-0.165600px;}
.ws0_c00435{word-spacing:0.000000px;}
.wsd_c00435{word-spacing:0.151200px;}
.ws2a_c00435{word-spacing:0.165600px;}
.wse_c00435{word-spacing:0.180000px;}
.ws12_c00435{word-spacing:0.295200px;}
.ws26_c00435{word-spacing:0.936000px;}
.wsa_c00435{word-spacing:1.260000px;}
.ws9_c00435{word-spacing:1.281600px;}
.ws6_c00435{word-spacing:1.965600px;}
.ws5_c00435{word-spacing:2.016000px;}
.ws4_c00435{word-spacing:2.131200px;}
.ws1a_c00435{word-spacing:3.693600px;}
.ws19_c00435{word-spacing:3.715200px;}
.ws28_c00435{word-spacing:3.945600px;}
.ws29_c00435{word-spacing:4.046400px;}
.ws27_c00435{word-spacing:4.140000px;}
.ws1b_c00435{word-spacing:4.708800px;}
.ws1c_c00435{word-spacing:4.780800px;}
.ws23_c00435{word-spacing:5.932800px;}
.ws8_c00435{word-spacing:6.314400px;}
.ws7_c00435{word-spacing:6.321600px;}
.ws17_c00435{word-spacing:6.645600px;}
.ws18_c00435{word-spacing:6.710400px;}
.ws25_c00435{word-spacing:8.431200px;}
.ws24_c00435{word-spacing:8.452800px;}
.ws3_c00435{word-spacing:11.707200px;}
.ws2_c00435{word-spacing:11.793600px;}
.ws14_c00435{word-spacing:15.631200px;}
.ws13_c00435{word-spacing:15.710400px;}
.ws22_c00435{word-spacing:21.765600px;}
.ws16_c00435{word-spacing:21.794400px;}
.ws21_c00435{word-spacing:21.873600px;}
.ws10_c00435{word-spacing:23.558400px;}
.ws11_c00435{word-spacing:23.594400px;}
.ws15_c00435{word-spacing:25.027200px;}
.ws1d_c00435{word-spacing:31.521600px;}
.ws1f_c00435{word-spacing:35.474400px;}
.ws20_c00435{word-spacing:35.496000px;}
.wsf_c00435{word-spacing:89.452800px;}
.ws1_c00435{word-spacing:187.614396px;}
._0_c00435{margin-left:-187.555680px;}
._1_c00435{width:1.137600px;}
.fc0_c00435{color:rgb(0,0,0);}
.fs0_c00435{font-size:72.000000px;}
.fs1_c00435{font-size:83.880000px;}
.y0_c00435{bottom:0.000000px;}
.y2_c00435{bottom:46.830450px;}
.y1_c00435{bottom:67.530450px;}
.y20_c00435{bottom:145.020450px;}
.y1f_c00435{bottom:185.070450px;}
.y1e_c00435{bottom:216.120450px;}
.y1d_c00435{bottom:247.170450px;}
.y1c_c00435{bottom:278.220450px;}
.y1b_c00435{bottom:309.270450px;}
.y1a_c00435{bottom:340.320450px;}
.y19_c00435{bottom:371.370450px;}
.y18_c00435{bottom:411.420450px;}
.y17_c00435{bottom:442.470450px;}
.y16_c00435{bottom:473.520450px;}
.y15_c00435{bottom:504.570450px;}
.y14_c00435{bottom:535.620450px;}
.y13_c00435{bottom:566.670450px;}
.y12_c00435{bottom:597.720450px;}
.y11_c00435{bottom:628.770450px;}
.y10_c00435{bottom:668.820450px;}
.yf_c00435{bottom:698.520450px;}
.ye_c00435{bottom:719.220450px;}
.yd_c00435{bottom:739.920450px;}
.yc_c00435{bottom:779.970450px;}
.yb_c00435{bottom:820.020450px;}
.ya_c00435{bottom:851.070450px;}
.y9_c00435{bottom:882.120450px;}
.y8_c00435{bottom:913.170450px;}
.y7_c00435{bottom:944.220450px;}
.y6_c00435{bottom:975.270450px;}
.y5_c00435{bottom:1015.320450px;}
.y4_c00435{bottom:1045.470450px;}
.y3_c00435{bottom:1097.490450px;}
.h1_c00435{height:63.175781px;}
.h2_c00435{height:64.546875px;}
.h4_c00435{height:75.093750px;}
.h3_c00435{height:87.484219px;}
.h0_c00435{height:1263.000000px;}
.w1_c00435{width:892.500000px;}
.w0_c00435{width:892.830000px;}
.x0_c00435{left:0.000000px;}
.x2_c00435{left:127.620000px;}
.x3_c00435{left:181.620000px;}
.x4_c00435{left:202.950000px;}
.x1_c00435{left:695.880000px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.lsb_c00435{letter-spacing:-0.064000pt;}
.ls5_c00435{letter-spacing:-0.051200pt;}
.lsa_c00435{letter-spacing:-0.044800pt;}
.ls3_c00435{letter-spacing:-0.038400pt;}
.ls7_c00435{letter-spacing:-0.032000pt;}
.ls4_c00435{letter-spacing:-0.025600pt;}
.ls8_c00435{letter-spacing:-0.019200pt;}
.ls9_c00435{letter-spacing:-0.012800pt;}
.ls6_c00435{letter-spacing:-0.006400pt;}
.ls2_c00435{letter-spacing:0.000000pt;}
.ls1_c00435{letter-spacing:0.006400pt;}
.ls0_c00435{letter-spacing:0.037280pt;}
.wsb_c00435{word-spacing:-1.792000pt;}
.wsc_c00435{word-spacing:-1.753600pt;}
.ws1e_c00435{word-spacing:-0.147200pt;}
.ws0_c00435{word-spacing:0.000000pt;}
.wsd_c00435{word-spacing:0.134400pt;}
.ws2a_c00435{word-spacing:0.147200pt;}
.wse_c00435{word-spacing:0.160000pt;}
.ws12_c00435{word-spacing:0.262400pt;}
.ws26_c00435{word-spacing:0.832000pt;}
.wsa_c00435{word-spacing:1.120000pt;}
.ws9_c00435{word-spacing:1.139200pt;}
.ws6_c00435{word-spacing:1.747200pt;}
.ws5_c00435{word-spacing:1.792000pt;}
.ws4_c00435{word-spacing:1.894400pt;}
.ws1a_c00435{word-spacing:3.283200pt;}
.ws19_c00435{word-spacing:3.302400pt;}
.ws28_c00435{word-spacing:3.507200pt;}
.ws29_c00435{word-spacing:3.596800pt;}
.ws27_c00435{word-spacing:3.680000pt;}
.ws1b_c00435{word-spacing:4.185600pt;}
.ws1c_c00435{word-spacing:4.249600pt;}
.ws23_c00435{word-spacing:5.273600pt;}
.ws8_c00435{word-spacing:5.612800pt;}
.ws7_c00435{word-spacing:5.619200pt;}
.ws17_c00435{word-spacing:5.907200pt;}
.ws18_c00435{word-spacing:5.964800pt;}
.ws25_c00435{word-spacing:7.494400pt;}
.ws24_c00435{word-spacing:7.513600pt;}
.ws3_c00435{word-spacing:10.406400pt;}
.ws2_c00435{word-spacing:10.483200pt;}
.ws14_c00435{word-spacing:13.894400pt;}
.ws13_c00435{word-spacing:13.964800pt;}
.ws22_c00435{word-spacing:19.347200pt;}
.ws16_c00435{word-spacing:19.372800pt;}
.ws21_c00435{word-spacing:19.443200pt;}
.ws10_c00435{word-spacing:20.940800pt;}
.ws11_c00435{word-spacing:20.972800pt;}
.ws15_c00435{word-spacing:22.246400pt;}
.ws1d_c00435{word-spacing:28.019200pt;}
.ws1f_c00435{word-spacing:31.532800pt;}
.ws20_c00435{word-spacing:31.552000pt;}
.wsf_c00435{word-spacing:79.513600pt;}
.ws1_c00435{word-spacing:166.768352pt;}
._0_c00435{margin-left:-166.716160pt;}
._1_c00435{width:1.011200pt;}
.fs0_c00435{font-size:64.000000pt;}
.fs1_c00435{font-size:74.560000pt;}
.y0_c00435{bottom:0.000000pt;}
.y2_c00435{bottom:41.627067pt;}
.y1_c00435{bottom:60.027067pt;}
.y20_c00435{bottom:128.907067pt;}
.y1f_c00435{bottom:164.507067pt;}
.y1e_c00435{bottom:192.107067pt;}
.y1d_c00435{bottom:219.707067pt;}
.y1c_c00435{bottom:247.307067pt;}
.y1b_c00435{bottom:274.907067pt;}
.y1a_c00435{bottom:302.507067pt;}
.y19_c00435{bottom:330.107067pt;}
.y18_c00435{bottom:365.707067pt;}
.y17_c00435{bottom:393.307067pt;}
.y16_c00435{bottom:420.907067pt;}
.y15_c00435{bottom:448.507067pt;}
.y14_c00435{bottom:476.107067pt;}
.y13_c00435{bottom:503.707067pt;}
.y12_c00435{bottom:531.307067pt;}
.y11_c00435{bottom:558.907067pt;}
.y10_c00435{bottom:594.507067pt;}
.yf_c00435{bottom:620.907067pt;}
.ye_c00435{bottom:639.307067pt;}
.yd_c00435{bottom:657.707067pt;}
.yc_c00435{bottom:693.307067pt;}
.yb_c00435{bottom:728.907067pt;}
.ya_c00435{bottom:756.507067pt;}
.y9_c00435{bottom:784.107067pt;}
.y8_c00435{bottom:811.707067pt;}
.y7_c00435{bottom:839.307067pt;}
.y6_c00435{bottom:866.907067pt;}
.y5_c00435{bottom:902.507067pt;}
.y4_c00435{bottom:929.307067pt;}
.y3_c00435{bottom:975.547067pt;}
.h1_c00435{height:56.156250pt;}
.h2_c00435{height:57.375000pt;}
.h4_c00435{height:66.750000pt;}
.h3_c00435{height:77.763750pt;}
.h0_c00435{height:1122.666667pt;}
.w1_c00435{width:793.333333pt;}
.w0_c00435{width:793.626667pt;}
.x0_c00435{left:0.000000pt;}
.x2_c00435{left:113.440000pt;}
.x3_c00435{left:161.440000pt;}
.x4_c00435{left:180.400000pt;}
.x1_c00435{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d503944409faa6c7b71cd395.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.093262;font-style:normal;font-weight:normal;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_b549051106f9d487d8ac1024.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00436{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00436{vertical-align:0.000000px;}
.lsa_c00436{letter-spacing:-0.100800px;}
.ls9_c00436{letter-spacing:-0.079200px;}
.lsb_c00436{letter-spacing:-0.064800px;}
.ls5_c00436{letter-spacing:-0.057600px;}
.lsc_c00436{letter-spacing:-0.050400px;}
.ls3_c00436{letter-spacing:-0.043200px;}
.ls8_c00436{letter-spacing:-0.036000px;}
.ls6_c00436{letter-spacing:-0.028800px;}
.ls4_c00436{letter-spacing:-0.021600px;}
.ls7_c00436{letter-spacing:-0.014400px;}
.ls2_c00436{letter-spacing:0.000000px;}
.ls0_c00436{letter-spacing:0.007200px;}
.ls1_c00436{letter-spacing:0.028800px;}
.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;}
}
.ws21_c00436{word-spacing:-1.447200px;}
.ws20_c00436{word-spacing:-1.224000px;}
.ws22_c00436{word-spacing:-1.216800px;}
.ws1f_c00436{word-spacing:-0.604800px;}
.ws1e_c00436{word-spacing:-0.540000px;}
.ws23_c00436{word-spacing:-0.511200px;}
.ws0_c00436{word-spacing:0.000000px;}
.ws7_c00436{word-spacing:0.115200px;}
.ws13_c00436{word-spacing:0.129600px;}
.ws12_c00436{word-spacing:0.158400px;}
.ws1b_c00436{word-spacing:0.172800px;}
.ws19_c00436{word-spacing:0.180000px;}
.ws1a_c00436{word-spacing:0.187200px;}
.wse_c00436{word-spacing:0.194400px;}
.ws1_c00436{word-spacing:0.201600px;}
.ws11_c00436{word-spacing:0.302400px;}
.ws24_c00436{word-spacing:0.532800px;}
.ws16_c00436{word-spacing:0.835200px;}
.ws15_c00436{word-spacing:0.892800px;}
.wsf_c00436{word-spacing:2.289600px;}
.ws17_c00436{word-spacing:2.347200px;}
.ws10_c00436{word-spacing:2.361600px;}
.ws18_c00436{word-spacing:2.383200px;}
.ws5_c00436{word-spacing:2.671200px;}
.ws4_c00436{word-spacing:2.707200px;}
.wsb_c00436{word-spacing:6.436800px;}
.wsa_c00436{word-spacing:6.573600px;}
.ws6_c00436{word-spacing:6.667200px;}
.ws3_c00436{word-spacing:6.696000px;}
.ws2_c00436{word-spacing:7.020000px;}
.ws14_c00436{word-spacing:7.070400px;}
.ws1d_c00436{word-spacing:8.100000px;}
.ws1c_c00436{word-spacing:16.041600px;}
.ws8_c00436{word-spacing:23.580000px;}
.ws9_c00436{word-spacing:23.601600px;}
.wsd_c00436{word-spacing:24.674400px;}
.wsc_c00436{word-spacing:31.168800px;}
.fc0_c00436{color:rgb(0,0,0);}
.fs0_c00436{font-size:72.000000px;}
.y0_c00436{bottom:0.000000px;}
.y2_c00436{bottom:46.830450px;}
.y1_c00436{bottom:67.530450px;}
.y2a_c00436{bottom:143.130450px;}
.y29_c00436{bottom:174.180450px;}
.y28_c00436{bottom:205.230450px;}
.y27_c00436{bottom:245.280450px;}
.y26_c00436{bottom:276.330450px;}
.y25_c00436{bottom:307.380450px;}
.y24_c00436{bottom:338.430450px;}
.y23_c00436{bottom:378.390450px;}
.y22_c00436{bottom:408.090450px;}
.y21_c00436{bottom:428.790450px;}
.y20_c00436{bottom:449.490450px;}
.y1f_c00436{bottom:470.190450px;}
.y1e_c00436{bottom:490.890450px;}
.y1d_c00436{bottom:511.590450px;}
.y1c_c00436{bottom:532.290450px;}
.y1b_c00436{bottom:552.990450px;}
.y1a_c00436{bottom:573.690450px;}
.y19_c00436{bottom:594.390450px;}
.y18_c00436{bottom:615.090450px;}
.y17_c00436{bottom:635.790450px;}
.y16_c00436{bottom:656.490450px;}
.y15_c00436{bottom:677.190450px;}
.y14_c00436{bottom:717.240450px;}
.y13_c00436{bottom:746.940450px;}
.y12_c00436{bottom:767.640450px;}
.y11_c00436{bottom:788.340450px;}
.y10_c00436{bottom:809.040450px;}
.yf_c00436{bottom:829.740450px;}
.ye_c00436{bottom:850.440450px;}
.yd_c00436{bottom:871.140450px;}
.yc_c00436{bottom:891.840450px;}
.yb_c00436{bottom:912.540450px;}
.ya_c00436{bottom:933.240450px;}
.y9_c00436{bottom:953.940450px;}
.y8_c00436{bottom:974.640450px;}
.y7_c00436{bottom:995.340450px;}
.y6_c00436{bottom:1016.040450px;}
.y5_c00436{bottom:1036.740450px;}
.y4_c00436{bottom:1057.440450px;}
.y3_c00436{bottom:1097.490450px;}
.h1_c00436{height:63.175781px;}
.h2_c00436{height:64.546875px;}
.h0_c00436{height:1263.000000px;}
.w1_c00436{width:892.500000px;}
.w0_c00436{width:892.830000px;}
.x0_c00436{left:0.000000px;}
.x2_c00436{left:170.100000px;}
.x3_c00436{left:245.430000px;}
.x1_c00436{left:738.360000px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.lsa_c00436{letter-spacing:-0.089600pt;}
.ls9_c00436{letter-spacing:-0.070400pt;}
.lsb_c00436{letter-spacing:-0.057600pt;}
.ls5_c00436{letter-spacing:-0.051200pt;}
.lsc_c00436{letter-spacing:-0.044800pt;}
.ls3_c00436{letter-spacing:-0.038400pt;}
.ls8_c00436{letter-spacing:-0.032000pt;}
.ls6_c00436{letter-spacing:-0.025600pt;}
.ls4_c00436{letter-spacing:-0.019200pt;}
.ls7_c00436{letter-spacing:-0.012800pt;}
.ls2_c00436{letter-spacing:0.000000pt;}
.ls0_c00436{letter-spacing:0.006400pt;}
.ls1_c00436{letter-spacing:0.025600pt;}
.ws21_c00436{word-spacing:-1.286400pt;}
.ws20_c00436{word-spacing:-1.088000pt;}
.ws22_c00436{word-spacing:-1.081600pt;}
.ws1f_c00436{word-spacing:-0.537600pt;}
.ws1e_c00436{word-spacing:-0.480000pt;}
.ws23_c00436{word-spacing:-0.454400pt;}
.ws0_c00436{word-spacing:0.000000pt;}
.ws7_c00436{word-spacing:0.102400pt;}
.ws13_c00436{word-spacing:0.115200pt;}
.ws12_c00436{word-spacing:0.140800pt;}
.ws1b_c00436{word-spacing:0.153600pt;}
.ws19_c00436{word-spacing:0.160000pt;}
.ws1a_c00436{word-spacing:0.166400pt;}
.wse_c00436{word-spacing:0.172800pt;}
.ws1_c00436{word-spacing:0.179200pt;}
.ws11_c00436{word-spacing:0.268800pt;}
.ws24_c00436{word-spacing:0.473600pt;}
.ws16_c00436{word-spacing:0.742400pt;}
.ws15_c00436{word-spacing:0.793600pt;}
.wsf_c00436{word-spacing:2.035200pt;}
.ws17_c00436{word-spacing:2.086400pt;}
.ws10_c00436{word-spacing:2.099200pt;}
.ws18_c00436{word-spacing:2.118400pt;}
.ws5_c00436{word-spacing:2.374400pt;}
.ws4_c00436{word-spacing:2.406400pt;}
.wsb_c00436{word-spacing:5.721600pt;}
.wsa_c00436{word-spacing:5.843200pt;}
.ws6_c00436{word-spacing:5.926400pt;}
.ws3_c00436{word-spacing:5.952000pt;}
.ws2_c00436{word-spacing:6.240000pt;}
.ws14_c00436{word-spacing:6.284800pt;}
.ws1d_c00436{word-spacing:7.200000pt;}
.ws1c_c00436{word-spacing:14.259200pt;}
.ws8_c00436{word-spacing:20.960000pt;}
.ws9_c00436{word-spacing:20.979200pt;}
.wsd_c00436{word-spacing:21.932800pt;}
.wsc_c00436{word-spacing:27.705600pt;}
.fs0_c00436{font-size:64.000000pt;}
.y0_c00436{bottom:0.000000pt;}
.y2_c00436{bottom:41.627067pt;}
.y1_c00436{bottom:60.027067pt;}
.y2a_c00436{bottom:127.227067pt;}
.y29_c00436{bottom:154.827067pt;}
.y28_c00436{bottom:182.427067pt;}
.y27_c00436{bottom:218.027067pt;}
.y26_c00436{bottom:245.627067pt;}
.y25_c00436{bottom:273.227067pt;}
.y24_c00436{bottom:300.827067pt;}
.y23_c00436{bottom:336.347067pt;}
.y22_c00436{bottom:362.747067pt;}
.y21_c00436{bottom:381.147067pt;}
.y20_c00436{bottom:399.547067pt;}
.y1f_c00436{bottom:417.947067pt;}
.y1e_c00436{bottom:436.347067pt;}
.y1d_c00436{bottom:454.747067pt;}
.y1c_c00436{bottom:473.147067pt;}
.y1b_c00436{bottom:491.547067pt;}
.y1a_c00436{bottom:509.947067pt;}
.y19_c00436{bottom:528.347067pt;}
.y18_c00436{bottom:546.747067pt;}
.y17_c00436{bottom:565.147067pt;}
.y16_c00436{bottom:583.547067pt;}
.y15_c00436{bottom:601.947067pt;}
.y14_c00436{bottom:637.547067pt;}
.y13_c00436{bottom:663.947067pt;}
.y12_c00436{bottom:682.347067pt;}
.y11_c00436{bottom:700.747067pt;}
.y10_c00436{bottom:719.147067pt;}
.yf_c00436{bottom:737.547067pt;}
.ye_c00436{bottom:755.947067pt;}
.yd_c00436{bottom:774.347067pt;}
.yc_c00436{bottom:792.747067pt;}
.yb_c00436{bottom:811.147067pt;}
.ya_c00436{bottom:829.547067pt;}
.y9_c00436{bottom:847.947067pt;}
.y8_c00436{bottom:866.347067pt;}
.y7_c00436{bottom:884.747067pt;}
.y6_c00436{bottom:903.147067pt;}
.y5_c00436{bottom:921.547067pt;}
.y4_c00436{bottom:939.947067pt;}
.y3_c00436{bottom:975.547067pt;}
.h1_c00436{height:56.156250pt;}
.h2_c00436{height:57.375000pt;}
.h0_c00436{height:1122.666667pt;}
.w1_c00436{width:793.333333pt;}
.w0_c00436{width:793.626667pt;}
.x0_c00436{left:0.000000pt;}
.x2_c00436{left:151.200000pt;}
.x3_c00436{left:218.160000pt;}
.x1_c00436{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5b9e32d7f0555c9a71804e58.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.093262;font-style:normal;font-weight:normal;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_346c91688cc403fe4e77d58b.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00437;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00437;src:url('chunks/assets/font_babd092a939fb7ee1c26855e.woff2')format("woff");}.ff4_c00437{font-family:ff4_c00437;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00437{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.ls5_c00437{letter-spacing:-0.064800px;}
.ls3_c00437{letter-spacing:-0.043200px;}
.ls7_c00437{letter-spacing:-0.036000px;}
.ls4_c00437{letter-spacing:-0.028800px;}
.ls2_c00437{letter-spacing:-0.021600px;}
.ls1_c00437{letter-spacing:0.000000px;}
.ls6_c00437{letter-spacing:0.007200px;}
.ls0_c00437{letter-spacing:0.014400px;}
.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;}
}
.ws8_c00437{word-spacing:-1.612800px;}
.ws1_c00437{word-spacing:-0.086400px;}
.ws0_c00437{word-spacing:0.000000px;}
.wsc_c00437{word-spacing:0.151200px;}
.ws7_c00437{word-spacing:0.158400px;}
.ws2_c00437{word-spacing:0.180000px;}
.ws6_c00437{word-spacing:0.187200px;}
.ws12_c00437{word-spacing:0.194400px;}
.ws11_c00437{word-spacing:5.227200px;}
.wsb_c00437{word-spacing:6.271200px;}
.wsf_c00437{word-spacing:9.136800px;}
.wsd_c00437{word-spacing:9.158400px;}
.ws10_c00437{word-spacing:9.194400px;}
.wse_c00437{word-spacing:9.216000px;}
.wsa_c00437{word-spacing:10.951200px;}
.ws9_c00437{word-spacing:11.167200px;}
.ws3_c00437{word-spacing:14.241600px;}
.ws4_c00437{word-spacing:33.948000px;}
.ws5_c00437{word-spacing:34.027200px;}
._0_c00437{width:1.000800px;}
.fc1_c00437{color:rgb(31,73,124);}
.fc0_c00437{color:rgb(0,0,0);}
.fs0_c00437{font-size:72.000000px;}
.y0_c00437{bottom:0.000000px;}
.y2_c00437{bottom:46.830450px;}
.y1_c00437{bottom:67.530450px;}
.y14_c00437{bottom:173.550450px;}
.y13_c00437{bottom:204.600450px;}
.y12_c00437{bottom:235.560450px;}
.y11_c00437{bottom:266.610450px;}
.y10_c00437{bottom:296.310450px;}
.yf_c00437{bottom:317.010450px;}
.ye_c00437{bottom:337.710450px;}
.yd_c00437{bottom:358.410450px;}
.yc_c00437{bottom:379.110450px;}
.yb_c00437{bottom:419.160450px;}
.ya_c00437{bottom:459.210450px;}
.y9_c00437{bottom:488.910450px;}
.y8_c00437{bottom:509.610450px;}
.y7_c00437{bottom:530.310450px;}
.y6_c00437{bottom:570.360450px;}
.y5_c00437{bottom:610.410450px;}
.y4_c00437{bottom:646.140450px;}
.y3_c00437{bottom:682.230450px;}
.h1_c00437{height:63.175781px;}
.h3_c00437{height:64.546875px;}
.h2_c00437{height:75.093750px;}
.h0_c00437{height:1263.000000px;}
.w1_c00437{width:892.500000px;}
.w0_c00437{width:892.830000px;}
.x0_c00437{left:0.000000px;}
.x2_c00437{left:127.620000px;}
.x4_c00437{left:202.950000px;}
.x1_c00437{left:695.880000px;}
.x3_c00437{left:728.370000px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls5_c00437{letter-spacing:-0.057600pt;}
.ls3_c00437{letter-spacing:-0.038400pt;}
.ls7_c00437{letter-spacing:-0.032000pt;}
.ls4_c00437{letter-spacing:-0.025600pt;}
.ls2_c00437{letter-spacing:-0.019200pt;}
.ls1_c00437{letter-spacing:0.000000pt;}
.ls6_c00437{letter-spacing:0.006400pt;}
.ls0_c00437{letter-spacing:0.012800pt;}
.ws8_c00437{word-spacing:-1.433600pt;}
.ws1_c00437{word-spacing:-0.076800pt;}
.ws0_c00437{word-spacing:0.000000pt;}
.wsc_c00437{word-spacing:0.134400pt;}
.ws7_c00437{word-spacing:0.140800pt;}
.ws2_c00437{word-spacing:0.160000pt;}
.ws6_c00437{word-spacing:0.166400pt;}
.ws12_c00437{word-spacing:0.172800pt;}
.ws11_c00437{word-spacing:4.646400pt;}
.wsb_c00437{word-spacing:5.574400pt;}
.wsf_c00437{word-spacing:8.121600pt;}
.wsd_c00437{word-spacing:8.140800pt;}
.ws10_c00437{word-spacing:8.172800pt;}
.wse_c00437{word-spacing:8.192000pt;}
.wsa_c00437{word-spacing:9.734400pt;}
.ws9_c00437{word-spacing:9.926400pt;}
.ws3_c00437{word-spacing:12.659200pt;}
.ws4_c00437{word-spacing:30.176000pt;}
.ws5_c00437{word-spacing:30.246400pt;}
._0_c00437{width:0.889600pt;}
.fs0_c00437{font-size:64.000000pt;}
.y0_c00437{bottom:0.000000pt;}
.y2_c00437{bottom:41.627067pt;}
.y1_c00437{bottom:60.027067pt;}
.y14_c00437{bottom:154.267067pt;}
.y13_c00437{bottom:181.867067pt;}
.y12_c00437{bottom:209.387067pt;}
.y11_c00437{bottom:236.987067pt;}
.y10_c00437{bottom:263.387067pt;}
.yf_c00437{bottom:281.787067pt;}
.ye_c00437{bottom:300.187067pt;}
.yd_c00437{bottom:318.587067pt;}
.yc_c00437{bottom:336.987067pt;}
.yb_c00437{bottom:372.587067pt;}
.ya_c00437{bottom:408.187067pt;}
.y9_c00437{bottom:434.587067pt;}
.y8_c00437{bottom:452.987067pt;}
.y7_c00437{bottom:471.387067pt;}
.y6_c00437{bottom:506.987067pt;}
.y5_c00437{bottom:542.587067pt;}
.y4_c00437{bottom:574.347067pt;}
.y3_c00437{bottom:606.427067pt;}
.h1_c00437{height:56.156250pt;}
.h3_c00437{height:57.375000pt;}
.h2_c00437{height:66.750000pt;}
.h0_c00437{height:1122.666667pt;}
.w1_c00437{width:793.333333pt;}
.w0_c00437{width:793.626667pt;}
.x0_c00437{left:0.000000pt;}
.x2_c00437{left:113.440000pt;}
.x4_c00437{left:180.400000pt;}
.x1_c00437{left:618.560000pt;}
.x3_c00437{left:647.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_67f1d63ab26f867c33f1835a.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.093262;font-style:normal;font-weight:normal;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_8631b1b94236088b72787121.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00438{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.lsd_c00438{letter-spacing:-0.108000px;}
.lsc_c00438{letter-spacing:-0.086400px;}
.ls9_c00438{letter-spacing:-0.072000px;}
.ls2_c00438{letter-spacing:-0.057600px;}
.ls4_c00438{letter-spacing:-0.050400px;}
.ls1_c00438{letter-spacing:-0.043200px;}
.ls3_c00438{letter-spacing:-0.036000px;}
.ls5_c00438{letter-spacing:-0.028800px;}
.ls6_c00438{letter-spacing:-0.021600px;}
.lsa_c00438{letter-spacing:-0.014400px;}
.ls8_c00438{letter-spacing:-0.007200px;}
.ls0_c00438{letter-spacing:0.000000px;}
.ls7_c00438{letter-spacing:0.007200px;}
.lsb_c00438{letter-spacing:0.021600px;}
.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;}
}
.wsd_c00438{word-spacing:-4.500000px;}
.wse_c00438{word-spacing:-4.392000px;}
.ws27_c00438{word-spacing:-4.240800px;}
.ws28_c00438{word-spacing:-4.089600px;}
.ws2e_c00438{word-spacing:-3.456000px;}
.ws2f_c00438{word-spacing:-3.355200px;}
.ws10_c00438{word-spacing:-3.146400px;}
.wsf_c00438{word-spacing:-3.117600px;}
.ws13_c00438{word-spacing:-2.721600px;}
.ws12_c00438{word-spacing:-2.649600px;}
.ws6_c00438{word-spacing:-2.332800px;}
.ws5_c00438{word-spacing:-2.253600px;}
.ws17_c00438{word-spacing:-0.021600px;}
.ws0_c00438{word-spacing:0.000000px;}
.ws1b_c00438{word-spacing:0.036000px;}
.ws11_c00438{word-spacing:0.129600px;}
.ws1d_c00438{word-spacing:0.172800px;}
.wsa_c00438{word-spacing:0.180000px;}
.ws2b_c00438{word-spacing:0.187200px;}
.ws1c_c00438{word-spacing:0.194400px;}
.ws26_c00438{word-spacing:0.201600px;}
.ws25_c00438{word-spacing:0.273600px;}
.wsc_c00438{word-spacing:1.274400px;}
.ws4_c00438{word-spacing:2.037600px;}
.wsb_c00438{word-spacing:3.031200px;}
.ws15_c00438{word-spacing:3.434400px;}
.ws14_c00438{word-spacing:3.513600px;}
.ws16_c00438{word-spacing:4.154400px;}
.ws1_c00438{word-spacing:4.816800px;}
.ws7_c00438{word-spacing:4.845600px;}
.ws31_c00438{word-spacing:4.874400px;}
.ws2_c00438{word-spacing:4.896000px;}
.ws32_c00438{word-spacing:5.133600px;}
.ws33_c00438{word-spacing:5.306400px;}
.ws3_c00438{word-spacing:5.594400px;}
.ws2c_c00438{word-spacing:5.896800px;}
.ws2d_c00438{word-spacing:5.968800px;}
.ws22_c00438{word-spacing:7.041600px;}
.ws21_c00438{word-spacing:7.048800px;}
.ws8_c00438{word-spacing:7.682400px;}
.ws9_c00438{word-spacing:7.776000px;}
.ws18_c00438{word-spacing:8.812800px;}
.ws19_c00438{word-spacing:8.827200px;}
.ws24_c00438{word-spacing:10.936800px;}
.ws23_c00438{word-spacing:11.044800px;}
.ws1a_c00438{word-spacing:13.161600px;}
.ws1f_c00438{word-spacing:14.572800px;}
.ws1e_c00438{word-spacing:14.601600px;}
.ws30_c00438{word-spacing:21.441600px;}
.ws20_c00438{word-spacing:27.180000px;}
.ws29_c00438{word-spacing:32.947200px;}
.ws2a_c00438{word-spacing:33.112800px;}
._0_c00438{width:1.008000px;}
.fc0_c00438{color:rgb(0,0,0);}
.fs0_c00438{font-size:72.000000px;}
.y0_c00438{bottom:0.000000px;}
.y2_c00438{bottom:46.830450px;}
.y1_c00438{bottom:67.530450px;}
.y28_c00438{bottom:141.780450px;}
.y27_c00438{bottom:162.480450px;}
.y26_c00438{bottom:183.180450px;}
.y25_c00438{bottom:203.880450px;}
.y24_c00438{bottom:224.580450px;}
.y23_c00438{bottom:245.280450px;}
.y22_c00438{bottom:265.980450px;}
.y21_c00438{bottom:286.680450px;}
.y20_c00438{bottom:307.380450px;}
.y1f_c00438{bottom:347.430450px;}
.y1e_c00438{bottom:387.390450px;}
.y1d_c00438{bottom:418.440450px;}
.y1c_c00438{bottom:449.490450px;}
.y1b_c00438{bottom:480.540450px;}
.y1a_c00438{bottom:511.590450px;}
.y19_c00438{bottom:551.640450px;}
.y18_c00438{bottom:582.690450px;}
.y17_c00438{bottom:613.740450px;}
.y16_c00438{bottom:644.790450px;}
.y15_c00438{bottom:684.840450px;}
.y14_c00438{bottom:715.890450px;}
.y13_c00438{bottom:746.940450px;}
.y12_c00438{bottom:777.990450px;}
.y11_c00438{bottom:807.690450px;}
.y10_c00438{bottom:828.390450px;}
.yf_c00438{bottom:849.090450px;}
.ye_c00438{bottom:869.790450px;}
.yd_c00438{bottom:890.490450px;}
.yc_c00438{bottom:911.190450px;}
.yb_c00438{bottom:931.890450px;}
.ya_c00438{bottom:952.590450px;}
.y9_c00438{bottom:973.290450px;}
.y8_c00438{bottom:993.990450px;}
.y7_c00438{bottom:1014.690450px;}
.y6_c00438{bottom:1035.390450px;}
.y5_c00438{bottom:1056.090450px;}
.y4_c00438{bottom:1076.790450px;}
.y3_c00438{bottom:1097.490450px;}
.h1_c00438{height:63.175781px;}
.h2_c00438{height:64.546875px;}
.h0_c00438{height:1263.000000px;}
.w1_c00438{width:892.500000px;}
.w0_c00438{width:892.830000px;}
.x0_c00438{left:0.000000px;}
.x2_c00438{left:170.100000px;}
.x3_c00438{left:245.430000px;}
.x1_c00438{left:738.360000px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.lsd_c00438{letter-spacing:-0.096000pt;}
.lsc_c00438{letter-spacing:-0.076800pt;}
.ls9_c00438{letter-spacing:-0.064000pt;}
.ls2_c00438{letter-spacing:-0.051200pt;}
.ls4_c00438{letter-spacing:-0.044800pt;}
.ls1_c00438{letter-spacing:-0.038400pt;}
.ls3_c00438{letter-spacing:-0.032000pt;}
.ls5_c00438{letter-spacing:-0.025600pt;}
.ls6_c00438{letter-spacing:-0.019200pt;}
.lsa_c00438{letter-spacing:-0.012800pt;}
.ls8_c00438{letter-spacing:-0.006400pt;}
.ls0_c00438{letter-spacing:0.000000pt;}
.ls7_c00438{letter-spacing:0.006400pt;}
.lsb_c00438{letter-spacing:0.019200pt;}
.wsd_c00438{word-spacing:-4.000000pt;}
.wse_c00438{word-spacing:-3.904000pt;}
.ws27_c00438{word-spacing:-3.769600pt;}
.ws28_c00438{word-spacing:-3.635200pt;}
.ws2e_c00438{word-spacing:-3.072000pt;}
.ws2f_c00438{word-spacing:-2.982400pt;}
.ws10_c00438{word-spacing:-2.796800pt;}
.wsf_c00438{word-spacing:-2.771200pt;}
.ws13_c00438{word-spacing:-2.419200pt;}
.ws12_c00438{word-spacing:-2.355200pt;}
.ws6_c00438{word-spacing:-2.073600pt;}
.ws5_c00438{word-spacing:-2.003200pt;}
.ws17_c00438{word-spacing:-0.019200pt;}
.ws0_c00438{word-spacing:0.000000pt;}
.ws1b_c00438{word-spacing:0.032000pt;}
.ws11_c00438{word-spacing:0.115200pt;}
.ws1d_c00438{word-spacing:0.153600pt;}
.wsa_c00438{word-spacing:0.160000pt;}
.ws2b_c00438{word-spacing:0.166400pt;}
.ws1c_c00438{word-spacing:0.172800pt;}
.ws26_c00438{word-spacing:0.179200pt;}
.ws25_c00438{word-spacing:0.243200pt;}
.wsc_c00438{word-spacing:1.132800pt;}
.ws4_c00438{word-spacing:1.811200pt;}
.wsb_c00438{word-spacing:2.694400pt;}
.ws15_c00438{word-spacing:3.052800pt;}
.ws14_c00438{word-spacing:3.123200pt;}
.ws16_c00438{word-spacing:3.692800pt;}
.ws1_c00438{word-spacing:4.281600pt;}
.ws7_c00438{word-spacing:4.307200pt;}
.ws31_c00438{word-spacing:4.332800pt;}
.ws2_c00438{word-spacing:4.352000pt;}
.ws32_c00438{word-spacing:4.563200pt;}
.ws33_c00438{word-spacing:4.716800pt;}
.ws3_c00438{word-spacing:4.972800pt;}
.ws2c_c00438{word-spacing:5.241600pt;}
.ws2d_c00438{word-spacing:5.305600pt;}
.ws22_c00438{word-spacing:6.259200pt;}
.ws21_c00438{word-spacing:6.265600pt;}
.ws8_c00438{word-spacing:6.828800pt;}
.ws9_c00438{word-spacing:6.912000pt;}
.ws18_c00438{word-spacing:7.833600pt;}
.ws19_c00438{word-spacing:7.846400pt;}
.ws24_c00438{word-spacing:9.721600pt;}
.ws23_c00438{word-spacing:9.817600pt;}
.ws1a_c00438{word-spacing:11.699200pt;}
.ws1f_c00438{word-spacing:12.953600pt;}
.ws1e_c00438{word-spacing:12.979200pt;}
.ws30_c00438{word-spacing:19.059200pt;}
.ws20_c00438{word-spacing:24.160000pt;}
.ws29_c00438{word-spacing:29.286400pt;}
.ws2a_c00438{word-spacing:29.433600pt;}
._0_c00438{width:0.896000pt;}
.fs0_c00438{font-size:64.000000pt;}
.y0_c00438{bottom:0.000000pt;}
.y2_c00438{bottom:41.627067pt;}
.y1_c00438{bottom:60.027067pt;}
.y28_c00438{bottom:126.027067pt;}
.y27_c00438{bottom:144.427067pt;}
.y26_c00438{bottom:162.827067pt;}
.y25_c00438{bottom:181.227067pt;}
.y24_c00438{bottom:199.627067pt;}
.y23_c00438{bottom:218.027067pt;}
.y22_c00438{bottom:236.427067pt;}
.y21_c00438{bottom:254.827067pt;}
.y20_c00438{bottom:273.227067pt;}
.y1f_c00438{bottom:308.827067pt;}
.y1e_c00438{bottom:344.347067pt;}
.y1d_c00438{bottom:371.947067pt;}
.y1c_c00438{bottom:399.547067pt;}
.y1b_c00438{bottom:427.147067pt;}
.y1a_c00438{bottom:454.747067pt;}
.y19_c00438{bottom:490.347067pt;}
.y18_c00438{bottom:517.947067pt;}
.y17_c00438{bottom:545.547067pt;}
.y16_c00438{bottom:573.147067pt;}
.y15_c00438{bottom:608.747067pt;}
.y14_c00438{bottom:636.347067pt;}
.y13_c00438{bottom:663.947067pt;}
.y12_c00438{bottom:691.547067pt;}
.y11_c00438{bottom:717.947067pt;}
.y10_c00438{bottom:736.347067pt;}
.yf_c00438{bottom:754.747067pt;}
.ye_c00438{bottom:773.147067pt;}
.yd_c00438{bottom:791.547067pt;}
.yc_c00438{bottom:809.947067pt;}
.yb_c00438{bottom:828.347067pt;}
.ya_c00438{bottom:846.747067pt;}
.y9_c00438{bottom:865.147067pt;}
.y8_c00438{bottom:883.547067pt;}
.y7_c00438{bottom:901.947067pt;}
.y6_c00438{bottom:920.347067pt;}
.y5_c00438{bottom:938.747067pt;}
.y4_c00438{bottom:957.147067pt;}
.y3_c00438{bottom:975.547067pt;}
.h1_c00438{height:56.156250pt;}
.h2_c00438{height:57.375000pt;}
.h0_c00438{height:1122.666667pt;}
.w1_c00438{width:793.333333pt;}
.w0_c00438{width:793.626667pt;}
.x0_c00438{left:0.000000pt;}
.x2_c00438{left:151.200000pt;}
.x3_c00438{left:218.160000pt;}
.x1_c00438{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_432b5673e411595ae2859e39.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.093262;font-style:normal;font-weight:normal;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_1fc4b5e288c2c28f4f57efa2.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00439{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.ls5_c00439{letter-spacing:-0.086400px;}
.lsa_c00439{letter-spacing:-0.064800px;}
.lsc_c00439{letter-spacing:-0.057600px;}
.ls9_c00439{letter-spacing:-0.050400px;}
.ls3_c00439{letter-spacing:-0.043200px;}
.ls7_c00439{letter-spacing:-0.036000px;}
.ls4_c00439{letter-spacing:-0.028800px;}
.lsb_c00439{letter-spacing:-0.021600px;}
.ls6_c00439{letter-spacing:-0.014400px;}
.ls8_c00439{letter-spacing:-0.007200px;}
.ls2_c00439{letter-spacing:0.000000px;}
.ls0_c00439{letter-spacing:0.007200px;}
.ls1_c00439{letter-spacing:0.028800px;}
.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;}
}
.ws6_c00439{word-spacing:-2.822400px;}
.ws8_c00439{word-spacing:-2.714400px;}
.ws7_c00439{word-spacing:-2.685600px;}
.ws4_c00439{word-spacing:-0.856800px;}
.ws22_c00439{word-spacing:-0.144000px;}
.ws23_c00439{word-spacing:-0.136800px;}
.ws0_c00439{word-spacing:0.000000px;}
.ws29_c00439{word-spacing:0.129600px;}
.wse_c00439{word-spacing:0.151200px;}
.ws21_c00439{word-spacing:0.158400px;}
.ws1e_c00439{word-spacing:0.165600px;}
.ws5_c00439{word-spacing:0.172800px;}
.ws20_c00439{word-spacing:0.180000px;}
.ws19_c00439{word-spacing:0.187200px;}
.ws1f_c00439{word-spacing:0.194400px;}
.ws1b_c00439{word-spacing:0.201600px;}
.ws28_c00439{word-spacing:0.208800px;}
.wsd_c00439{word-spacing:0.352800px;}
.ws17_c00439{word-spacing:0.871200px;}
.ws3_c00439{word-spacing:0.907200px;}
.ws16_c00439{word-spacing:0.936000px;}
.wsc_c00439{word-spacing:2.325600px;}
.ws27_c00439{word-spacing:2.347200px;}
.wsb_c00439{word-spacing:2.469600px;}
.wsa_c00439{word-spacing:2.476800px;}
.ws1a_c00439{word-spacing:2.700000px;}
.ws14_c00439{word-spacing:4.845600px;}
.ws15_c00439{word-spacing:4.860000px;}
.ws10_c00439{word-spacing:5.983200px;}
.ws1d_c00439{word-spacing:6.292800px;}
.ws1c_c00439{word-spacing:6.300000px;}
.ws11_c00439{word-spacing:8.337600px;}
.ws12_c00439{word-spacing:8.481600px;}
.ws1_c00439{word-spacing:9.079200px;}
.ws2_c00439{word-spacing:9.144000px;}
.ws18_c00439{word-spacing:9.921600px;}
.wsf_c00439{word-spacing:13.147200px;}
.ws13_c00439{word-spacing:13.485600px;}
.ws25_c00439{word-spacing:15.307200px;}
.ws9_c00439{word-spacing:15.328800px;}
.ws26_c00439{word-spacing:15.372000px;}
.ws24_c00439{word-spacing:22.140000px;}
._0_c00439{width:1.123200px;}
.fc0_c00439{color:rgb(0,0,0);}
.fs0_c00439{font-size:72.000000px;}
.y0_c00439{bottom:0.000000px;}
.y2_c00439{bottom:46.830450px;}
.y1_c00439{bottom:67.530450px;}
.y28_c00439{bottom:163.830450px;}
.y27_c00439{bottom:203.880450px;}
.y26_c00439{bottom:234.930450px;}
.y25_c00439{bottom:265.980450px;}
.y24_c00439{bottom:297.030450px;}
.y23_c00439{bottom:328.080450px;}
.y22_c00439{bottom:368.040450px;}
.y21_c00439{bottom:397.740450px;}
.y20_c00439{bottom:418.440450px;}
.y1f_c00439{bottom:439.140450px;}
.y1e_c00439{bottom:459.840450px;}
.y1d_c00439{bottom:480.540450px;}
.y1c_c00439{bottom:501.240450px;}
.y1b_c00439{bottom:521.940450px;}
.y1a_c00439{bottom:542.640450px;}
.y19_c00439{bottom:563.340450px;}
.y18_c00439{bottom:584.040450px;}
.y17_c00439{bottom:604.740450px;}
.y16_c00439{bottom:625.440450px;}
.y15_c00439{bottom:646.140450px;}
.y14_c00439{bottom:666.840450px;}
.y13_c00439{bottom:687.540450px;}
.y12_c00439{bottom:708.240450px;}
.y11_c00439{bottom:728.940450px;}
.y10_c00439{bottom:749.640450px;}
.yf_c00439{bottom:770.340450px;}
.ye_c00439{bottom:791.040450px;}
.yd_c00439{bottom:831.090450px;}
.yc_c00439{bottom:871.140450px;}
.yb_c00439{bottom:902.190450px;}
.ya_c00439{bottom:933.240450px;}
.y9_c00439{bottom:964.290450px;}
.y8_c00439{bottom:993.990450px;}
.y7_c00439{bottom:1014.690450px;}
.y6_c00439{bottom:1035.390450px;}
.y5_c00439{bottom:1056.090450px;}
.y4_c00439{bottom:1076.790450px;}
.y3_c00439{bottom:1097.490450px;}
.h1_c00439{height:63.175781px;}
.h2_c00439{height:64.546875px;}
.h0_c00439{height:1263.000000px;}
.w1_c00439{width:892.500000px;}
.w0_c00439{width:892.830000px;}
.x0_c00439{left:0.000000px;}
.x2_c00439{left:127.620000px;}
.x3_c00439{left:202.950000px;}
.x1_c00439{left:695.880000px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls5_c00439{letter-spacing:-0.076800pt;}
.lsa_c00439{letter-spacing:-0.057600pt;}
.lsc_c00439{letter-spacing:-0.051200pt;}
.ls9_c00439{letter-spacing:-0.044800pt;}
.ls3_c00439{letter-spacing:-0.038400pt;}
.ls7_c00439{letter-spacing:-0.032000pt;}
.ls4_c00439{letter-spacing:-0.025600pt;}
.lsb_c00439{letter-spacing:-0.019200pt;}
.ls6_c00439{letter-spacing:-0.012800pt;}
.ls8_c00439{letter-spacing:-0.006400pt;}
.ls2_c00439{letter-spacing:0.000000pt;}
.ls0_c00439{letter-spacing:0.006400pt;}
.ls1_c00439{letter-spacing:0.025600pt;}
.ws6_c00439{word-spacing:-2.508800pt;}
.ws8_c00439{word-spacing:-2.412800pt;}
.ws7_c00439{word-spacing:-2.387200pt;}
.ws4_c00439{word-spacing:-0.761600pt;}
.ws22_c00439{word-spacing:-0.128000pt;}
.ws23_c00439{word-spacing:-0.121600pt;}
.ws0_c00439{word-spacing:0.000000pt;}
.ws29_c00439{word-spacing:0.115200pt;}
.wse_c00439{word-spacing:0.134400pt;}
.ws21_c00439{word-spacing:0.140800pt;}
.ws1e_c00439{word-spacing:0.147200pt;}
.ws5_c00439{word-spacing:0.153600pt;}
.ws20_c00439{word-spacing:0.160000pt;}
.ws19_c00439{word-spacing:0.166400pt;}
.ws1f_c00439{word-spacing:0.172800pt;}
.ws1b_c00439{word-spacing:0.179200pt;}
.ws28_c00439{word-spacing:0.185600pt;}
.wsd_c00439{word-spacing:0.313600pt;}
.ws17_c00439{word-spacing:0.774400pt;}
.ws3_c00439{word-spacing:0.806400pt;}
.ws16_c00439{word-spacing:0.832000pt;}
.wsc_c00439{word-spacing:2.067200pt;}
.ws27_c00439{word-spacing:2.086400pt;}
.wsb_c00439{word-spacing:2.195200pt;}
.wsa_c00439{word-spacing:2.201600pt;}
.ws1a_c00439{word-spacing:2.400000pt;}
.ws14_c00439{word-spacing:4.307200pt;}
.ws15_c00439{word-spacing:4.320000pt;}
.ws10_c00439{word-spacing:5.318400pt;}
.ws1d_c00439{word-spacing:5.593600pt;}
.ws1c_c00439{word-spacing:5.600000pt;}
.ws11_c00439{word-spacing:7.411200pt;}
.ws12_c00439{word-spacing:7.539200pt;}
.ws1_c00439{word-spacing:8.070400pt;}
.ws2_c00439{word-spacing:8.128000pt;}
.ws18_c00439{word-spacing:8.819200pt;}
.wsf_c00439{word-spacing:11.686400pt;}
.ws13_c00439{word-spacing:11.987200pt;}
.ws25_c00439{word-spacing:13.606400pt;}
.ws9_c00439{word-spacing:13.625600pt;}
.ws26_c00439{word-spacing:13.664000pt;}
.ws24_c00439{word-spacing:19.680000pt;}
._0_c00439{width:0.998400pt;}
.fs0_c00439{font-size:64.000000pt;}
.y0_c00439{bottom:0.000000pt;}
.y2_c00439{bottom:41.627067pt;}
.y1_c00439{bottom:60.027067pt;}
.y28_c00439{bottom:145.627067pt;}
.y27_c00439{bottom:181.227067pt;}
.y26_c00439{bottom:208.827067pt;}
.y25_c00439{bottom:236.427067pt;}
.y24_c00439{bottom:264.027067pt;}
.y23_c00439{bottom:291.627067pt;}
.y22_c00439{bottom:327.147067pt;}
.y21_c00439{bottom:353.547067pt;}
.y20_c00439{bottom:371.947067pt;}
.y1f_c00439{bottom:390.347067pt;}
.y1e_c00439{bottom:408.747067pt;}
.y1d_c00439{bottom:427.147067pt;}
.y1c_c00439{bottom:445.547067pt;}
.y1b_c00439{bottom:463.947067pt;}
.y1a_c00439{bottom:482.347067pt;}
.y19_c00439{bottom:500.747067pt;}
.y18_c00439{bottom:519.147067pt;}
.y17_c00439{bottom:537.547067pt;}
.y16_c00439{bottom:555.947067pt;}
.y15_c00439{bottom:574.347067pt;}
.y14_c00439{bottom:592.747067pt;}
.y13_c00439{bottom:611.147067pt;}
.y12_c00439{bottom:629.547067pt;}
.y11_c00439{bottom:647.947067pt;}
.y10_c00439{bottom:666.347067pt;}
.yf_c00439{bottom:684.747067pt;}
.ye_c00439{bottom:703.147067pt;}
.yd_c00439{bottom:738.747067pt;}
.yc_c00439{bottom:774.347067pt;}
.yb_c00439{bottom:801.947067pt;}
.ya_c00439{bottom:829.547067pt;}
.y9_c00439{bottom:857.147067pt;}
.y8_c00439{bottom:883.547067pt;}
.y7_c00439{bottom:901.947067pt;}
.y6_c00439{bottom:920.347067pt;}
.y5_c00439{bottom:938.747067pt;}
.y4_c00439{bottom:957.147067pt;}
.y3_c00439{bottom:975.547067pt;}
.h1_c00439{height:56.156250pt;}
.h2_c00439{height:57.375000pt;}
.h0_c00439{height:1122.666667pt;}
.w1_c00439{width:793.333333pt;}
.w0_c00439{width:793.626667pt;}
.x0_c00439{left:0.000000pt;}
.x2_c00439{left:113.440000pt;}
.x3_c00439{left:180.400000pt;}
.x1_c00439{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_894502163021d0ff90c5d0f9.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.093262;font-style:normal;font-weight:normal;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_4ff75065335d1496a21607e1.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.106934;font-style:normal;font-weight:normal;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_909427d6d1496731b720a7f1.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls10_c00440{letter-spacing:-0.108000px;}
.ls12_c00440{letter-spacing:-0.093600px;}
.lsa_c00440{letter-spacing:-0.086400px;}
.lsb_c00440{letter-spacing:-0.079200px;}
.lsc_c00440{letter-spacing:-0.064800px;}
.ls7_c00440{letter-spacing:-0.057600px;}
.ls8_c00440{letter-spacing:-0.050400px;}
.ls9_c00440{letter-spacing:-0.043200px;}
.lsd_c00440{letter-spacing:-0.036000px;}
.lse_c00440{letter-spacing:-0.028800px;}
.ls6_c00440{letter-spacing:-0.021600px;}
.lsf_c00440{letter-spacing:-0.014400px;}
.ls5_c00440{letter-spacing:-0.007200px;}
.ls4_c00440{letter-spacing:0.000000px;}
.ls0_c00440{letter-spacing:0.007200px;}
.ls2_c00440{letter-spacing:0.014400px;}
.ls3_c00440{letter-spacing:0.028800px;}
.ls1_c00440{letter-spacing:0.036000px;}
.ls11_c00440{letter-spacing:0.144000px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00440{word-spacing:-20.160000px;}
.ws27_c00440{word-spacing:-4.917600px;}
.ws28_c00440{word-spacing:-4.874400px;}
.ws9_c00440{word-spacing:-3.844800px;}
.wsd_c00440{word-spacing:-3.729600px;}
.wsa_c00440{word-spacing:-3.715200px;}
.ws5_c00440{word-spacing:-1.980000px;}
.ws30_c00440{word-spacing:-1.605600px;}
.wse_c00440{word-spacing:-1.584000px;}
.ws7_c00440{word-spacing:-0.568800px;}
.ws6_c00440{word-spacing:-0.540000px;}
.ws8_c00440{word-spacing:-0.518400px;}
.ws4_c00440{word-spacing:-0.504000px;}
.ws15_c00440{word-spacing:-0.021600px;}
.ws1_c00440{word-spacing:0.000000px;}
.ws29_c00440{word-spacing:0.050400px;}
.ws31_c00440{word-spacing:0.093600px;}
.ws2b_c00440{word-spacing:0.129600px;}
.ws16_c00440{word-spacing:0.151200px;}
.ws19_c00440{word-spacing:0.180000px;}
.ws2f_c00440{word-spacing:0.194400px;}
.ws14_c00440{word-spacing:0.208800px;}
.ws2a_c00440{word-spacing:0.223200px;}
.ws2e_c00440{word-spacing:0.554400px;}
.wsb_c00440{word-spacing:2.332800px;}
.wsc_c00440{word-spacing:2.361600px;}
.ws1b_c00440{word-spacing:3.096000px;}
.ws23_c00440{word-spacing:4.147200px;}
.ws24_c00440{word-spacing:4.176000px;}
.ws26_c00440{word-spacing:4.888800px;}
.ws11_c00440{word-spacing:5.198400px;}
.ws22_c00440{word-spacing:6.631200px;}
.ws21_c00440{word-spacing:6.674400px;}
.ws1d_c00440{word-spacing:7.372800px;}
.ws1c_c00440{word-spacing:7.416000px;}
.ws1e_c00440{word-spacing:7.466400px;}
.ws13_c00440{word-spacing:9.554400px;}
.ws1a_c00440{word-spacing:10.267200px;}
.wsf_c00440{word-spacing:12.780000px;}
.ws12_c00440{word-spacing:15.292800px;}
.ws10_c00440{word-spacing:16.041600px;}
.ws1f_c00440{word-spacing:18.518400px;}
.ws20_c00440{word-spacing:18.568800px;}
.ws18_c00440{word-spacing:18.900000px;}
.ws17_c00440{word-spacing:18.986400px;}
.ws2c_c00440{word-spacing:21.369600px;}
.ws2d_c00440{word-spacing:21.492000px;}
.ws25_c00440{word-spacing:23.205600px;}
.ws3_c00440{word-spacing:31.860000px;}
.ws2_c00440{word-spacing:31.917600px;}
._0_c00440{margin-left:-1.238400px;}
.fc0_c00440{color:rgb(0,0,0);}
.fs0_c00440{font-size:72.000000px;}
.y0_c00440{bottom:0.000000px;}
.y2_c00440{bottom:46.830450px;}
.y1_c00440{bottom:67.530450px;}
.y2c_c00440{bottom:139.080450px;}
.y2b_c00440{bottom:159.780450px;}
.y2a_c00440{bottom:180.480450px;}
.y29_c00440{bottom:201.180450px;}
.y28_c00440{bottom:221.880450px;}
.y27_c00440{bottom:242.580450px;}
.y26_c00440{bottom:263.280450px;}
.y25_c00440{bottom:303.330450px;}
.y24_c00440{bottom:343.380450px;}
.y23_c00440{bottom:374.430450px;}
.y22_c00440{bottom:405.390450px;}
.y21_c00440{bottom:436.440450px;}
.y20_c00440{bottom:467.490450px;}
.y1f_c00440{bottom:498.540450px;}
.y1e_c00440{bottom:529.590450px;}
.y1d_c00440{bottom:559.290450px;}
.y1c_c00440{bottom:579.990450px;}
.y1b_c00440{bottom:600.690450px;}
.y1a_c00440{bottom:621.390450px;}
.y19_c00440{bottom:642.090450px;}
.y18_c00440{bottom:662.790450px;}
.y17_c00440{bottom:683.490450px;}
.y16_c00440{bottom:704.190450px;}
.y15_c00440{bottom:724.890450px;}
.y14_c00440{bottom:745.590450px;}
.y13_c00440{bottom:766.290450px;}
.y12_c00440{bottom:786.990450px;}
.y11_c00440{bottom:807.690450px;}
.y10_c00440{bottom:828.390450px;}
.yf_c00440{bottom:849.090450px;}
.ye_c00440{bottom:869.790450px;}
.yd_c00440{bottom:890.490450px;}
.yc_c00440{bottom:911.190450px;}
.yb_c00440{bottom:931.890450px;}
.ya_c00440{bottom:952.590450px;}
.y9_c00440{bottom:973.290450px;}
.y8_c00440{bottom:993.990450px;}
.y7_c00440{bottom:1014.690450px;}
.y6_c00440{bottom:1035.390450px;}
.y5_c00440{bottom:1056.090450px;}
.y4_c00440{bottom:1076.790450px;}
.y3_c00440{bottom:1097.490450px;}
.h1_c00440{height:63.175781px;}
.h2_c00440{height:64.546875px;}
.h3_c00440{height:75.093750px;}
.h0_c00440{height:1263.000000px;}
.w1_c00440{width:892.500000px;}
.w0_c00440{width:892.830000px;}
.x0_c00440{left:0.000000px;}
.x2_c00440{left:170.100000px;}
.x3_c00440{left:245.430000px;}
.x1_c00440{left:738.360000px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls10_c00440{letter-spacing:-0.096000pt;}
.ls12_c00440{letter-spacing:-0.083200pt;}
.lsa_c00440{letter-spacing:-0.076800pt;}
.lsb_c00440{letter-spacing:-0.070400pt;}
.lsc_c00440{letter-spacing:-0.057600pt;}
.ls7_c00440{letter-spacing:-0.051200pt;}
.ls8_c00440{letter-spacing:-0.044800pt;}
.ls9_c00440{letter-spacing:-0.038400pt;}
.lsd_c00440{letter-spacing:-0.032000pt;}
.lse_c00440{letter-spacing:-0.025600pt;}
.ls6_c00440{letter-spacing:-0.019200pt;}
.lsf_c00440{letter-spacing:-0.012800pt;}
.ls5_c00440{letter-spacing:-0.006400pt;}
.ls4_c00440{letter-spacing:0.000000pt;}
.ls0_c00440{letter-spacing:0.006400pt;}
.ls2_c00440{letter-spacing:0.012800pt;}
.ls3_c00440{letter-spacing:0.025600pt;}
.ls1_c00440{letter-spacing:0.032000pt;}
.ls11_c00440{letter-spacing:0.128000pt;}
.ws0_c00440{word-spacing:-17.920000pt;}
.ws27_c00440{word-spacing:-4.371200pt;}
.ws28_c00440{word-spacing:-4.332800pt;}
.ws9_c00440{word-spacing:-3.417600pt;}
.wsd_c00440{word-spacing:-3.315200pt;}
.wsa_c00440{word-spacing:-3.302400pt;}
.ws5_c00440{word-spacing:-1.760000pt;}
.ws30_c00440{word-spacing:-1.427200pt;}
.wse_c00440{word-spacing:-1.408000pt;}
.ws7_c00440{word-spacing:-0.505600pt;}
.ws6_c00440{word-spacing:-0.480000pt;}
.ws8_c00440{word-spacing:-0.460800pt;}
.ws4_c00440{word-spacing:-0.448000pt;}
.ws15_c00440{word-spacing:-0.019200pt;}
.ws1_c00440{word-spacing:0.000000pt;}
.ws29_c00440{word-spacing:0.044800pt;}
.ws31_c00440{word-spacing:0.083200pt;}
.ws2b_c00440{word-spacing:0.115200pt;}
.ws16_c00440{word-spacing:0.134400pt;}
.ws19_c00440{word-spacing:0.160000pt;}
.ws2f_c00440{word-spacing:0.172800pt;}
.ws14_c00440{word-spacing:0.185600pt;}
.ws2a_c00440{word-spacing:0.198400pt;}
.ws2e_c00440{word-spacing:0.492800pt;}
.wsb_c00440{word-spacing:2.073600pt;}
.wsc_c00440{word-spacing:2.099200pt;}
.ws1b_c00440{word-spacing:2.752000pt;}
.ws23_c00440{word-spacing:3.686400pt;}
.ws24_c00440{word-spacing:3.712000pt;}
.ws26_c00440{word-spacing:4.345600pt;}
.ws11_c00440{word-spacing:4.620800pt;}
.ws22_c00440{word-spacing:5.894400pt;}
.ws21_c00440{word-spacing:5.932800pt;}
.ws1d_c00440{word-spacing:6.553600pt;}
.ws1c_c00440{word-spacing:6.592000pt;}
.ws1e_c00440{word-spacing:6.636800pt;}
.ws13_c00440{word-spacing:8.492800pt;}
.ws1a_c00440{word-spacing:9.126400pt;}
.wsf_c00440{word-spacing:11.360000pt;}
.ws12_c00440{word-spacing:13.593600pt;}
.ws10_c00440{word-spacing:14.259200pt;}
.ws1f_c00440{word-spacing:16.460800pt;}
.ws20_c00440{word-spacing:16.505600pt;}
.ws18_c00440{word-spacing:16.800000pt;}
.ws17_c00440{word-spacing:16.876800pt;}
.ws2c_c00440{word-spacing:18.995200pt;}
.ws2d_c00440{word-spacing:19.104000pt;}
.ws25_c00440{word-spacing:20.627200pt;}
.ws3_c00440{word-spacing:28.320000pt;}
.ws2_c00440{word-spacing:28.371200pt;}
._0_c00440{margin-left:-1.100800pt;}
.fs0_c00440{font-size:64.000000pt;}
.y0_c00440{bottom:0.000000pt;}
.y2_c00440{bottom:41.627067pt;}
.y1_c00440{bottom:60.027067pt;}
.y2c_c00440{bottom:123.627067pt;}
.y2b_c00440{bottom:142.027067pt;}
.y2a_c00440{bottom:160.427067pt;}
.y29_c00440{bottom:178.827067pt;}
.y28_c00440{bottom:197.227067pt;}
.y27_c00440{bottom:215.627067pt;}
.y26_c00440{bottom:234.027067pt;}
.y25_c00440{bottom:269.627067pt;}
.y24_c00440{bottom:305.227067pt;}
.y23_c00440{bottom:332.827067pt;}
.y22_c00440{bottom:360.347067pt;}
.y21_c00440{bottom:387.947067pt;}
.y20_c00440{bottom:415.547067pt;}
.y1f_c00440{bottom:443.147067pt;}
.y1e_c00440{bottom:470.747067pt;}
.y1d_c00440{bottom:497.147067pt;}
.y1c_c00440{bottom:515.547067pt;}
.y1b_c00440{bottom:533.947067pt;}
.y1a_c00440{bottom:552.347067pt;}
.y19_c00440{bottom:570.747067pt;}
.y18_c00440{bottom:589.147067pt;}
.y17_c00440{bottom:607.547067pt;}
.y16_c00440{bottom:625.947067pt;}
.y15_c00440{bottom:644.347067pt;}
.y14_c00440{bottom:662.747067pt;}
.y13_c00440{bottom:681.147067pt;}
.y12_c00440{bottom:699.547067pt;}
.y11_c00440{bottom:717.947067pt;}
.y10_c00440{bottom:736.347067pt;}
.yf_c00440{bottom:754.747067pt;}
.ye_c00440{bottom:773.147067pt;}
.yd_c00440{bottom:791.547067pt;}
.yc_c00440{bottom:809.947067pt;}
.yb_c00440{bottom:828.347067pt;}
.ya_c00440{bottom:846.747067pt;}
.y9_c00440{bottom:865.147067pt;}
.y8_c00440{bottom:883.547067pt;}
.y7_c00440{bottom:901.947067pt;}
.y6_c00440{bottom:920.347067pt;}
.y5_c00440{bottom:938.747067pt;}
.y4_c00440{bottom:957.147067pt;}
.y3_c00440{bottom:975.547067pt;}
.h1_c00440{height:56.156250pt;}
.h2_c00440{height:57.375000pt;}
.h3_c00440{height:66.750000pt;}
.h0_c00440{height:1122.666667pt;}
.w1_c00440{width:793.333333pt;}
.w0_c00440{width:793.626667pt;}
.x0_c00440{left:0.000000pt;}
.x2_c00440{left:151.200000pt;}
.x3_c00440{left:218.160000pt;}
.x1_c00440{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a01e766aac10d2b2ee8daadd.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.093262;font-style:normal;font-weight:normal;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_4f973723bb9ea520d22f15bc.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.106934;font-style:normal;font-weight:normal;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_71e555d6761c71a18b789d74.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00441{letter-spacing:-0.100800px;}
.lsd_c00441{letter-spacing:-0.093600px;}
.lsf_c00441{letter-spacing:-0.086400px;}
.lsb_c00441{letter-spacing:-0.079200px;}
.lsa_c00441{letter-spacing:-0.072000px;}
.ls8_c00441{letter-spacing:-0.064800px;}
.ls9_c00441{letter-spacing:-0.057600px;}
.ls6_c00441{letter-spacing:-0.050400px;}
.ls4_c00441{letter-spacing:-0.043200px;}
.ls7_c00441{letter-spacing:-0.036000px;}
.ls5_c00441{letter-spacing:-0.028800px;}
.ls3_c00441{letter-spacing:-0.021600px;}
.ls1_c00441{letter-spacing:-0.014400px;}
.ls2_c00441{letter-spacing:-0.007200px;}
.ls0_c00441{letter-spacing:0.000000px;}
.lse_c00441{letter-spacing:0.331200px;}
.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;}
}
.ws10_c00441{word-spacing:-3.052800px;}
.wsf_c00441{word-spacing:-3.031200px;}
.ws12_c00441{word-spacing:-2.347200px;}
.ws1d_c00441{word-spacing:-1.296000px;}
.ws1e_c00441{word-spacing:-1.238400px;}
.ws27_c00441{word-spacing:-0.525600px;}
.ws0_c00441{word-spacing:0.000000px;}
.ws2d_c00441{word-spacing:0.115200px;}
.ws13_c00441{word-spacing:0.136800px;}
.ws3_c00441{word-spacing:0.165600px;}
.wse_c00441{word-spacing:0.180000px;}
.ws2e_c00441{word-spacing:0.187200px;}
.wsa_c00441{word-spacing:0.194400px;}
.ws28_c00441{word-spacing:0.216000px;}
.ws29_c00441{word-spacing:0.367200px;}
.ws11_c00441{word-spacing:0.532800px;}
.ws24_c00441{word-spacing:1.252800px;}
.ws23_c00441{word-spacing:1.324800px;}
.ws16_c00441{word-spacing:1.656000px;}
.wsd_c00441{word-spacing:1.670400px;}
.ws17_c00441{word-spacing:1.677600px;}
.wsc_c00441{word-spacing:1.706400px;}
.ws14_c00441{word-spacing:2.008800px;}
.ws15_c00441{word-spacing:2.030400px;}
.ws26_c00441{word-spacing:2.714400px;}
.ws25_c00441{word-spacing:2.764800px;}
.ws1c_c00441{word-spacing:4.068000px;}
.ws1b_c00441{word-spacing:4.168800px;}
.ws18_c00441{word-spacing:5.212800px;}
.ws7_c00441{word-spacing:6.444000px;}
.ws6_c00441{word-spacing:6.573600px;}
.ws2c_c00441{word-spacing:6.674400px;}
.ws1f_c00441{word-spacing:7.372800px;}
.ws20_c00441{word-spacing:7.394400px;}
.ws22_c00441{word-spacing:9.129600px;}
.ws21_c00441{word-spacing:9.208800px;}
.ws2_c00441{word-spacing:12.045600px;}
.ws1_c00441{word-spacing:12.052800px;}
.ws2a_c00441{word-spacing:13.744800px;}
.ws2b_c00441{word-spacing:13.874400px;}
.ws19_c00441{word-spacing:14.198400px;}
.ws1a_c00441{word-spacing:14.227200px;}
.ws4_c00441{word-spacing:23.580000px;}
.ws5_c00441{word-spacing:23.601600px;}
.ws9_c00441{word-spacing:24.674400px;}
.wsb_c00441{word-spacing:26.143200px;}
.ws8_c00441{word-spacing:31.168800px;}
._1_c00441{margin-left:-1.065600px;}
._0_c00441{width:1.152000px;}
.fc0_c00441{color:rgb(0,0,0);}
.fs0_c00441{font-size:72.000000px;}
.y0_c00441{bottom:0.000000px;}
.y2_c00441{bottom:46.830450px;}
.y1_c00441{bottom:67.530450px;}
.y27_c00441{bottom:184.530450px;}
.y26_c00441{bottom:215.580450px;}
.y25_c00441{bottom:246.630450px;}
.y24_c00441{bottom:286.680450px;}
.y23_c00441{bottom:317.730450px;}
.y22_c00441{bottom:348.690450px;}
.y21_c00441{bottom:378.390450px;}
.y20_c00441{bottom:399.090450px;}
.y1f_c00441{bottom:419.790450px;}
.y1e_c00441{bottom:440.490450px;}
.y1d_c00441{bottom:461.190450px;}
.y1c_c00441{bottom:481.890450px;}
.y1b_c00441{bottom:502.590450px;}
.y1a_c00441{bottom:523.290450px;}
.y19_c00441{bottom:543.990450px;}
.y18_c00441{bottom:564.690450px;}
.y17_c00441{bottom:585.390450px;}
.y16_c00441{bottom:606.090450px;}
.y15_c00441{bottom:626.790450px;}
.y14_c00441{bottom:647.490450px;}
.y13_c00441{bottom:668.190450px;}
.y12_c00441{bottom:688.890450px;}
.y11_c00441{bottom:709.590450px;}
.y10_c00441{bottom:730.290450px;}
.yf_c00441{bottom:750.990450px;}
.ye_c00441{bottom:771.690450px;}
.yd_c00441{bottom:811.740450px;}
.yc_c00441{bottom:842.790450px;}
.yb_c00441{bottom:873.840450px;}
.ya_c00441{bottom:913.890450px;}
.y9_c00441{bottom:943.590450px;}
.y8_c00441{bottom:964.290450px;}
.y7_c00441{bottom:984.990450px;}
.y6_c00441{bottom:1005.690450px;}
.y5_c00441{bottom:1026.390450px;}
.y4_c00441{bottom:1066.440450px;}
.y3_c00441{bottom:1097.490450px;}
.h1_c00441{height:63.175781px;}
.h2_c00441{height:64.546875px;}
.h3_c00441{height:75.093750px;}
.h0_c00441{height:1263.000000px;}
.w1_c00441{width:892.500000px;}
.w0_c00441{width:892.830000px;}
.x0_c00441{left:0.000000px;}
.x2_c00441{left:127.620000px;}
.x3_c00441{left:202.950000px;}
.x1_c00441{left:695.880000px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.lsc_c00441{letter-spacing:-0.089600pt;}
.lsd_c00441{letter-spacing:-0.083200pt;}
.lsf_c00441{letter-spacing:-0.076800pt;}
.lsb_c00441{letter-spacing:-0.070400pt;}
.lsa_c00441{letter-spacing:-0.064000pt;}
.ls8_c00441{letter-spacing:-0.057600pt;}
.ls9_c00441{letter-spacing:-0.051200pt;}
.ls6_c00441{letter-spacing:-0.044800pt;}
.ls4_c00441{letter-spacing:-0.038400pt;}
.ls7_c00441{letter-spacing:-0.032000pt;}
.ls5_c00441{letter-spacing:-0.025600pt;}
.ls3_c00441{letter-spacing:-0.019200pt;}
.ls1_c00441{letter-spacing:-0.012800pt;}
.ls2_c00441{letter-spacing:-0.006400pt;}
.ls0_c00441{letter-spacing:0.000000pt;}
.lse_c00441{letter-spacing:0.294400pt;}
.ws10_c00441{word-spacing:-2.713600pt;}
.wsf_c00441{word-spacing:-2.694400pt;}
.ws12_c00441{word-spacing:-2.086400pt;}
.ws1d_c00441{word-spacing:-1.152000pt;}
.ws1e_c00441{word-spacing:-1.100800pt;}
.ws27_c00441{word-spacing:-0.467200pt;}
.ws0_c00441{word-spacing:0.000000pt;}
.ws2d_c00441{word-spacing:0.102400pt;}
.ws13_c00441{word-spacing:0.121600pt;}
.ws3_c00441{word-spacing:0.147200pt;}
.wse_c00441{word-spacing:0.160000pt;}
.ws2e_c00441{word-spacing:0.166400pt;}
.wsa_c00441{word-spacing:0.172800pt;}
.ws28_c00441{word-spacing:0.192000pt;}
.ws29_c00441{word-spacing:0.326400pt;}
.ws11_c00441{word-spacing:0.473600pt;}
.ws24_c00441{word-spacing:1.113600pt;}
.ws23_c00441{word-spacing:1.177600pt;}
.ws16_c00441{word-spacing:1.472000pt;}
.wsd_c00441{word-spacing:1.484800pt;}
.ws17_c00441{word-spacing:1.491200pt;}
.wsc_c00441{word-spacing:1.516800pt;}
.ws14_c00441{word-spacing:1.785600pt;}
.ws15_c00441{word-spacing:1.804800pt;}
.ws26_c00441{word-spacing:2.412800pt;}
.ws25_c00441{word-spacing:2.457600pt;}
.ws1c_c00441{word-spacing:3.616000pt;}
.ws1b_c00441{word-spacing:3.705600pt;}
.ws18_c00441{word-spacing:4.633600pt;}
.ws7_c00441{word-spacing:5.728000pt;}
.ws6_c00441{word-spacing:5.843200pt;}
.ws2c_c00441{word-spacing:5.932800pt;}
.ws1f_c00441{word-spacing:6.553600pt;}
.ws20_c00441{word-spacing:6.572800pt;}
.ws22_c00441{word-spacing:8.115200pt;}
.ws21_c00441{word-spacing:8.185600pt;}
.ws2_c00441{word-spacing:10.707200pt;}
.ws1_c00441{word-spacing:10.713600pt;}
.ws2a_c00441{word-spacing:12.217600pt;}
.ws2b_c00441{word-spacing:12.332800pt;}
.ws19_c00441{word-spacing:12.620800pt;}
.ws1a_c00441{word-spacing:12.646400pt;}
.ws4_c00441{word-spacing:20.960000pt;}
.ws5_c00441{word-spacing:20.979200pt;}
.ws9_c00441{word-spacing:21.932800pt;}
.wsb_c00441{word-spacing:23.238400pt;}
.ws8_c00441{word-spacing:27.705600pt;}
._1_c00441{margin-left:-0.947200pt;}
._0_c00441{width:1.024000pt;}
.fs0_c00441{font-size:64.000000pt;}
.y0_c00441{bottom:0.000000pt;}
.y2_c00441{bottom:41.627067pt;}
.y1_c00441{bottom:60.027067pt;}
.y27_c00441{bottom:164.027067pt;}
.y26_c00441{bottom:191.627067pt;}
.y25_c00441{bottom:219.227067pt;}
.y24_c00441{bottom:254.827067pt;}
.y23_c00441{bottom:282.427067pt;}
.y22_c00441{bottom:309.947067pt;}
.y21_c00441{bottom:336.347067pt;}
.y20_c00441{bottom:354.747067pt;}
.y1f_c00441{bottom:373.147067pt;}
.y1e_c00441{bottom:391.547067pt;}
.y1d_c00441{bottom:409.947067pt;}
.y1c_c00441{bottom:428.347067pt;}
.y1b_c00441{bottom:446.747067pt;}
.y1a_c00441{bottom:465.147067pt;}
.y19_c00441{bottom:483.547067pt;}
.y18_c00441{bottom:501.947067pt;}
.y17_c00441{bottom:520.347067pt;}
.y16_c00441{bottom:538.747067pt;}
.y15_c00441{bottom:557.147067pt;}
.y14_c00441{bottom:575.547067pt;}
.y13_c00441{bottom:593.947067pt;}
.y12_c00441{bottom:612.347067pt;}
.y11_c00441{bottom:630.747067pt;}
.y10_c00441{bottom:649.147067pt;}
.yf_c00441{bottom:667.547067pt;}
.ye_c00441{bottom:685.947067pt;}
.yd_c00441{bottom:721.547067pt;}
.yc_c00441{bottom:749.147067pt;}
.yb_c00441{bottom:776.747067pt;}
.ya_c00441{bottom:812.347067pt;}
.y9_c00441{bottom:838.747067pt;}
.y8_c00441{bottom:857.147067pt;}
.y7_c00441{bottom:875.547067pt;}
.y6_c00441{bottom:893.947067pt;}
.y5_c00441{bottom:912.347067pt;}
.y4_c00441{bottom:947.947067pt;}
.y3_c00441{bottom:975.547067pt;}
.h1_c00441{height:56.156250pt;}
.h2_c00441{height:57.375000pt;}
.h3_c00441{height:66.750000pt;}
.h0_c00441{height:1122.666667pt;}
.w1_c00441{width:793.333333pt;}
.w0_c00441{width:793.626667pt;}
.x0_c00441{left:0.000000pt;}
.x2_c00441{left:113.440000pt;}
.x3_c00441{left:180.400000pt;}
.x1_c00441{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5e1c5f61476dc25a6d2d29f6.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.093262;font-style:normal;font-weight:normal;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_a94e659426246ea1662079dd.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00442{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.ls2_c00442{letter-spacing:-0.079200px;}
.lsb_c00442{letter-spacing:-0.072000px;}
.ls9_c00442{letter-spacing:-0.064800px;}
.ls5_c00442{letter-spacing:-0.057600px;}
.ls1_c00442{letter-spacing:-0.050400px;}
.ls3_c00442{letter-spacing:-0.043200px;}
.ls4_c00442{letter-spacing:-0.036000px;}
.ls6_c00442{letter-spacing:-0.028800px;}
.ls7_c00442{letter-spacing:-0.021600px;}
.ls8_c00442{letter-spacing:-0.014400px;}
.lsa_c00442{letter-spacing:-0.007200px;}
.ls0_c00442{letter-spacing:0.000000px;}
.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;}
}
.ws2a_c00442{word-spacing:-3.909600px;}
.ws2b_c00442{word-spacing:-3.801600px;}
.ws2f_c00442{word-spacing:-3.780000px;}
.ws2e_c00442{word-spacing:-3.765600px;}
.ws30_c00442{word-spacing:-3.391200px;}
.ws31_c00442{word-spacing:-3.362400px;}
.ws1b_c00442{word-spacing:-2.246400px;}
.ws1c_c00442{word-spacing:-2.232000px;}
.wsb_c00442{word-spacing:-1.663200px;}
.wsc_c00442{word-spacing:-1.562400px;}
.wsd_c00442{word-spacing:-0.900000px;}
.wse_c00442{word-spacing:-0.806400px;}
.ws0_c00442{word-spacing:0.000000px;}
.ws14_c00442{word-spacing:0.158400px;}
.ws11_c00442{word-spacing:0.172800px;}
.ws15_c00442{word-spacing:0.180000px;}
.ws24_c00442{word-spacing:0.194400px;}
.ws29_c00442{word-spacing:0.201600px;}
.ws28_c00442{word-spacing:0.288000px;}
.ws22_c00442{word-spacing:1.634400px;}
.ws10_c00442{word-spacing:2.001600px;}
.wsf_c00442{word-spacing:2.102400px;}
.ws7_c00442{word-spacing:3.434400px;}
.ws2c_c00442{word-spacing:3.722400px;}
.ws2d_c00442{word-spacing:3.758400px;}
.ws1e_c00442{word-spacing:4.557600px;}
.ws4_c00442{word-spacing:5.133600px;}
.ws3_c00442{word-spacing:5.241600px;}
.ws20_c00442{word-spacing:5.961600px;}
.ws16_c00442{word-spacing:6.012000px;}
.ws17_c00442{word-spacing:6.019200px;}
.ws21_c00442{word-spacing:6.674400px;}
.ws2_c00442{word-spacing:7.732800px;}
.ws1_c00442{word-spacing:7.768800px;}
.ws1f_c00442{word-spacing:7.776000px;}
.ws34_c00442{word-spacing:9.828000px;}
.ws33_c00442{word-spacing:9.928800px;}
.ws35_c00442{word-spacing:10.108800px;}
.ws1a_c00442{word-spacing:10.245600px;}
.ws13_c00442{word-spacing:10.274400px;}
.ws36_c00442{word-spacing:10.310400px;}
.ws12_c00442{word-spacing:10.317600px;}
.ws19_c00442{word-spacing:10.540800px;}
.ws23_c00442{word-spacing:10.627200px;}
.ws18_c00442{word-spacing:10.641600px;}
.ws25_c00442{word-spacing:11.419200px;}
.ws1d_c00442{word-spacing:12.038400px;}
.ws32_c00442{word-spacing:16.394400px;}
.ws8_c00442{word-spacing:20.023200px;}
.ws5_c00442{word-spacing:23.594400px;}
.ws6_c00442{word-spacing:23.616000px;}
.ws26_c00442{word-spacing:27.540000px;}
.ws27_c00442{word-spacing:27.554400px;}
.ws9_c00442{word-spacing:27.907200px;}
.wsa_c00442{word-spacing:27.972000px;}
._0_c00442{width:1.044000px;}
.fc0_c00442{color:rgb(0,0,0);}
.fs0_c00442{font-size:72.000000px;}
.y0_c00442{bottom:0.000000px;}
.y2_c00442{bottom:46.830450px;}
.y1_c00442{bottom:67.530450px;}
.y29_c00442{bottom:145.830450px;}
.y28_c00442{bottom:166.530450px;}
.y27_c00442{bottom:187.230450px;}
.y26_c00442{bottom:207.930450px;}
.y25_c00442{bottom:228.630450px;}
.y24_c00442{bottom:249.330450px;}
.y23_c00442{bottom:270.030450px;}
.y22_c00442{bottom:290.730450px;}
.y21_c00442{bottom:330.690450px;}
.y20_c00442{bottom:370.740450px;}
.y1f_c00442{bottom:401.790450px;}
.y1e_c00442{bottom:432.840450px;}
.y1d_c00442{bottom:472.890450px;}
.y1c_c00442{bottom:502.590450px;}
.y1b_c00442{bottom:523.290450px;}
.y1a_c00442{bottom:543.990450px;}
.y19_c00442{bottom:564.690450px;}
.y18_c00442{bottom:585.390450px;}
.y17_c00442{bottom:606.090450px;}
.y16_c00442{bottom:626.790450px;}
.y15_c00442{bottom:647.490450px;}
.y14_c00442{bottom:668.190450px;}
.y13_c00442{bottom:688.890450px;}
.y12_c00442{bottom:709.590450px;}
.y11_c00442{bottom:730.290450px;}
.y10_c00442{bottom:770.340450px;}
.yf_c00442{bottom:810.390450px;}
.ye_c00442{bottom:841.440450px;}
.yd_c00442{bottom:881.490450px;}
.yc_c00442{bottom:911.190450px;}
.yb_c00442{bottom:931.890450px;}
.ya_c00442{bottom:952.590450px;}
.y9_c00442{bottom:973.290450px;}
.y8_c00442{bottom:993.990450px;}
.y7_c00442{bottom:1014.690450px;}
.y6_c00442{bottom:1035.390450px;}
.y5_c00442{bottom:1056.090450px;}
.y4_c00442{bottom:1076.790450px;}
.y3_c00442{bottom:1097.490450px;}
.h1_c00442{height:63.175781px;}
.h2_c00442{height:64.546875px;}
.h0_c00442{height:1263.000000px;}
.w1_c00442{width:892.500000px;}
.w0_c00442{width:892.830000px;}
.x0_c00442{left:0.000000px;}
.x2_c00442{left:170.100000px;}
.x3_c00442{left:245.430000px;}
.x1_c00442{left:738.360000px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls2_c00442{letter-spacing:-0.070400pt;}
.lsb_c00442{letter-spacing:-0.064000pt;}
.ls9_c00442{letter-spacing:-0.057600pt;}
.ls5_c00442{letter-spacing:-0.051200pt;}
.ls1_c00442{letter-spacing:-0.044800pt;}
.ls3_c00442{letter-spacing:-0.038400pt;}
.ls4_c00442{letter-spacing:-0.032000pt;}
.ls6_c00442{letter-spacing:-0.025600pt;}
.ls7_c00442{letter-spacing:-0.019200pt;}
.ls8_c00442{letter-spacing:-0.012800pt;}
.lsa_c00442{letter-spacing:-0.006400pt;}
.ls0_c00442{letter-spacing:0.000000pt;}
.ws2a_c00442{word-spacing:-3.475200pt;}
.ws2b_c00442{word-spacing:-3.379200pt;}
.ws2f_c00442{word-spacing:-3.360000pt;}
.ws2e_c00442{word-spacing:-3.347200pt;}
.ws30_c00442{word-spacing:-3.014400pt;}
.ws31_c00442{word-spacing:-2.988800pt;}
.ws1b_c00442{word-spacing:-1.996800pt;}
.ws1c_c00442{word-spacing:-1.984000pt;}
.wsb_c00442{word-spacing:-1.478400pt;}
.wsc_c00442{word-spacing:-1.388800pt;}
.wsd_c00442{word-spacing:-0.800000pt;}
.wse_c00442{word-spacing:-0.716800pt;}
.ws0_c00442{word-spacing:0.000000pt;}
.ws14_c00442{word-spacing:0.140800pt;}
.ws11_c00442{word-spacing:0.153600pt;}
.ws15_c00442{word-spacing:0.160000pt;}
.ws24_c00442{word-spacing:0.172800pt;}
.ws29_c00442{word-spacing:0.179200pt;}
.ws28_c00442{word-spacing:0.256000pt;}
.ws22_c00442{word-spacing:1.452800pt;}
.ws10_c00442{word-spacing:1.779200pt;}
.wsf_c00442{word-spacing:1.868800pt;}
.ws7_c00442{word-spacing:3.052800pt;}
.ws2c_c00442{word-spacing:3.308800pt;}
.ws2d_c00442{word-spacing:3.340800pt;}
.ws1e_c00442{word-spacing:4.051200pt;}
.ws4_c00442{word-spacing:4.563200pt;}
.ws3_c00442{word-spacing:4.659200pt;}
.ws20_c00442{word-spacing:5.299200pt;}
.ws16_c00442{word-spacing:5.344000pt;}
.ws17_c00442{word-spacing:5.350400pt;}
.ws21_c00442{word-spacing:5.932800pt;}
.ws2_c00442{word-spacing:6.873600pt;}
.ws1_c00442{word-spacing:6.905600pt;}
.ws1f_c00442{word-spacing:6.912000pt;}
.ws34_c00442{word-spacing:8.736000pt;}
.ws33_c00442{word-spacing:8.825600pt;}
.ws35_c00442{word-spacing:8.985600pt;}
.ws1a_c00442{word-spacing:9.107200pt;}
.ws13_c00442{word-spacing:9.132800pt;}
.ws36_c00442{word-spacing:9.164800pt;}
.ws12_c00442{word-spacing:9.171200pt;}
.ws19_c00442{word-spacing:9.369600pt;}
.ws23_c00442{word-spacing:9.446400pt;}
.ws18_c00442{word-spacing:9.459200pt;}
.ws25_c00442{word-spacing:10.150400pt;}
.ws1d_c00442{word-spacing:10.700800pt;}
.ws32_c00442{word-spacing:14.572800pt;}
.ws8_c00442{word-spacing:17.798400pt;}
.ws5_c00442{word-spacing:20.972800pt;}
.ws6_c00442{word-spacing:20.992000pt;}
.ws26_c00442{word-spacing:24.480000pt;}
.ws27_c00442{word-spacing:24.492800pt;}
.ws9_c00442{word-spacing:24.806400pt;}
.wsa_c00442{word-spacing:24.864000pt;}
._0_c00442{width:0.928000pt;}
.fs0_c00442{font-size:64.000000pt;}
.y0_c00442{bottom:0.000000pt;}
.y2_c00442{bottom:41.627067pt;}
.y1_c00442{bottom:60.027067pt;}
.y29_c00442{bottom:129.627067pt;}
.y28_c00442{bottom:148.027067pt;}
.y27_c00442{bottom:166.427067pt;}
.y26_c00442{bottom:184.827067pt;}
.y25_c00442{bottom:203.227067pt;}
.y24_c00442{bottom:221.627067pt;}
.y23_c00442{bottom:240.027067pt;}
.y22_c00442{bottom:258.427067pt;}
.y21_c00442{bottom:293.947067pt;}
.y20_c00442{bottom:329.547067pt;}
.y1f_c00442{bottom:357.147067pt;}
.y1e_c00442{bottom:384.747067pt;}
.y1d_c00442{bottom:420.347067pt;}
.y1c_c00442{bottom:446.747067pt;}
.y1b_c00442{bottom:465.147067pt;}
.y1a_c00442{bottom:483.547067pt;}
.y19_c00442{bottom:501.947067pt;}
.y18_c00442{bottom:520.347067pt;}
.y17_c00442{bottom:538.747067pt;}
.y16_c00442{bottom:557.147067pt;}
.y15_c00442{bottom:575.547067pt;}
.y14_c00442{bottom:593.947067pt;}
.y13_c00442{bottom:612.347067pt;}
.y12_c00442{bottom:630.747067pt;}
.y11_c00442{bottom:649.147067pt;}
.y10_c00442{bottom:684.747067pt;}
.yf_c00442{bottom:720.347067pt;}
.ye_c00442{bottom:747.947067pt;}
.yd_c00442{bottom:783.547067pt;}
.yc_c00442{bottom:809.947067pt;}
.yb_c00442{bottom:828.347067pt;}
.ya_c00442{bottom:846.747067pt;}
.y9_c00442{bottom:865.147067pt;}
.y8_c00442{bottom:883.547067pt;}
.y7_c00442{bottom:901.947067pt;}
.y6_c00442{bottom:920.347067pt;}
.y5_c00442{bottom:938.747067pt;}
.y4_c00442{bottom:957.147067pt;}
.y3_c00442{bottom:975.547067pt;}
.h1_c00442{height:56.156250pt;}
.h2_c00442{height:57.375000pt;}
.h0_c00442{height:1122.666667pt;}
.w1_c00442{width:793.333333pt;}
.w0_c00442{width:793.626667pt;}
.x0_c00442{left:0.000000pt;}
.x2_c00442{left:151.200000pt;}
.x3_c00442{left:218.160000pt;}
.x1_c00442{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e88b769613618b7f67d9c81f.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.093262;font-style:normal;font-weight:normal;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_2055bb23a3d06774181c22cd.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00443{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.ls9_c00443{letter-spacing:-0.072000px;}
.lsb_c00443{letter-spacing:-0.064800px;}
.ls8_c00443{letter-spacing:-0.057600px;}
.ls3_c00443{letter-spacing:-0.050400px;}
.ls5_c00443{letter-spacing:-0.043200px;}
.ls6_c00443{letter-spacing:-0.036000px;}
.ls4_c00443{letter-spacing:-0.028800px;}
.ls7_c00443{letter-spacing:-0.021600px;}
.lsa_c00443{letter-spacing:-0.014400px;}
.ls2_c00443{letter-spacing:-0.007200px;}
.ls1_c00443{letter-spacing:0.000000px;}
.ls0_c00443{letter-spacing:0.028800px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00443{word-spacing:-2.800800px;}
.ws2_c00443{word-spacing:-2.671200px;}
.ws12_c00443{word-spacing:-2.347200px;}
.ws11_c00443{word-spacing:-2.340000px;}
.ws25_c00443{word-spacing:-1.202400px;}
.ws1f_c00443{word-spacing:-0.525600px;}
.ws27_c00443{word-spacing:-0.172800px;}
.ws26_c00443{word-spacing:-0.129600px;}
.ws20_c00443{word-spacing:-0.007200px;}
.ws0_c00443{word-spacing:0.000000px;}
.ws5_c00443{word-spacing:0.100800px;}
.wsf_c00443{word-spacing:0.129600px;}
.ws6_c00443{word-spacing:0.180000px;}
.ws3_c00443{word-spacing:0.187200px;}
.ws4_c00443{word-spacing:0.201600px;}
.ws19_c00443{word-spacing:0.252000px;}
.ws14_c00443{word-spacing:1.620000px;}
.ws13_c00443{word-spacing:1.634400px;}
.wsc_c00443{word-spacing:2.541600px;}
.wsb_c00443{word-spacing:2.736000px;}
.ws21_c00443{word-spacing:3.794400px;}
.ws24_c00443{word-spacing:4.147200px;}
.ws23_c00443{word-spacing:4.255200px;}
.ws22_c00443{word-spacing:5.601600px;}
.ws18_c00443{word-spacing:6.674400px;}
.ws16_c00443{word-spacing:6.919200px;}
.ws15_c00443{word-spacing:7.041600px;}
.ws1a_c00443{word-spacing:9.244800px;}
.ws10_c00443{word-spacing:10.296000px;}
.ws1e_c00443{word-spacing:12.441600px;}
.ws1d_c00443{word-spacing:12.520800px;}
.ws8_c00443{word-spacing:15.674400px;}
.ws7_c00443{word-spacing:15.768000px;}
.ws9_c00443{word-spacing:16.020000px;}
.wsa_c00443{word-spacing:16.048800px;}
.ws1b_c00443{word-spacing:16.783200px;}
.ws1c_c00443{word-spacing:16.869600px;}
.ws17_c00443{word-spacing:34.027200px;}
.wse_c00443{word-spacing:38.008800px;}
.wsd_c00443{word-spacing:38.030400px;}
._0_c00443{width:1.094400px;}
.fc0_c00443{color:rgb(0,0,0);}
.fs0_c00443{font-size:72.000000px;}
.y0_c00443{bottom:0.000000px;}
.y2_c00443{bottom:46.830450px;}
.y1_c00443{bottom:67.530450px;}
.y28_c00443{bottom:181.830450px;}
.y27_c00443{bottom:212.880450px;}
.y26_c00443{bottom:243.930450px;}
.y25_c00443{bottom:274.980450px;}
.y24_c00443{bottom:306.030450px;}
.y23_c00443{bottom:337.080450px;}
.y22_c00443{bottom:366.690450px;}
.y21_c00443{bottom:387.390450px;}
.y20_c00443{bottom:408.090450px;}
.y1f_c00443{bottom:428.790450px;}
.y1e_c00443{bottom:449.490450px;}
.y1d_c00443{bottom:470.190450px;}
.y1c_c00443{bottom:490.890450px;}
.y1b_c00443{bottom:511.590450px;}
.y1a_c00443{bottom:532.290450px;}
.y19_c00443{bottom:552.990450px;}
.y18_c00443{bottom:573.690450px;}
.y17_c00443{bottom:594.390450px;}
.y16_c00443{bottom:615.090450px;}
.y15_c00443{bottom:635.790450px;}
.y14_c00443{bottom:656.490450px;}
.y13_c00443{bottom:677.190450px;}
.y12_c00443{bottom:697.890450px;}
.y11_c00443{bottom:718.590450px;}
.y10_c00443{bottom:739.290450px;}
.yf_c00443{bottom:779.340450px;}
.ye_c00443{bottom:819.390450px;}
.yd_c00443{bottom:850.440450px;}
.yc_c00443{bottom:881.490450px;}
.yb_c00443{bottom:912.540450px;}
.ya_c00443{bottom:943.590450px;}
.y9_c00443{bottom:973.290450px;}
.y8_c00443{bottom:993.990450px;}
.y7_c00443{bottom:1014.690450px;}
.y6_c00443{bottom:1035.390450px;}
.y5_c00443{bottom:1056.090450px;}
.y4_c00443{bottom:1076.790450px;}
.y3_c00443{bottom:1097.490450px;}
.h1_c00443{height:63.175781px;}
.h2_c00443{height:64.546875px;}
.h0_c00443{height:1263.000000px;}
.w1_c00443{width:892.500000px;}
.w0_c00443{width:892.830000px;}
.x0_c00443{left:0.000000px;}
.x2_c00443{left:127.620000px;}
.x3_c00443{left:202.950000px;}
.x1_c00443{left:695.880000px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls9_c00443{letter-spacing:-0.064000pt;}
.lsb_c00443{letter-spacing:-0.057600pt;}
.ls8_c00443{letter-spacing:-0.051200pt;}
.ls3_c00443{letter-spacing:-0.044800pt;}
.ls5_c00443{letter-spacing:-0.038400pt;}
.ls6_c00443{letter-spacing:-0.032000pt;}
.ls4_c00443{letter-spacing:-0.025600pt;}
.ls7_c00443{letter-spacing:-0.019200pt;}
.lsa_c00443{letter-spacing:-0.012800pt;}
.ls2_c00443{letter-spacing:-0.006400pt;}
.ls1_c00443{letter-spacing:0.000000pt;}
.ls0_c00443{letter-spacing:0.025600pt;}
.ws1_c00443{word-spacing:-2.489600pt;}
.ws2_c00443{word-spacing:-2.374400pt;}
.ws12_c00443{word-spacing:-2.086400pt;}
.ws11_c00443{word-spacing:-2.080000pt;}
.ws25_c00443{word-spacing:-1.068800pt;}
.ws1f_c00443{word-spacing:-0.467200pt;}
.ws27_c00443{word-spacing:-0.153600pt;}
.ws26_c00443{word-spacing:-0.115200pt;}
.ws20_c00443{word-spacing:-0.006400pt;}
.ws0_c00443{word-spacing:0.000000pt;}
.ws5_c00443{word-spacing:0.089600pt;}
.wsf_c00443{word-spacing:0.115200pt;}
.ws6_c00443{word-spacing:0.160000pt;}
.ws3_c00443{word-spacing:0.166400pt;}
.ws4_c00443{word-spacing:0.179200pt;}
.ws19_c00443{word-spacing:0.224000pt;}
.ws14_c00443{word-spacing:1.440000pt;}
.ws13_c00443{word-spacing:1.452800pt;}
.wsc_c00443{word-spacing:2.259200pt;}
.wsb_c00443{word-spacing:2.432000pt;}
.ws21_c00443{word-spacing:3.372800pt;}
.ws24_c00443{word-spacing:3.686400pt;}
.ws23_c00443{word-spacing:3.782400pt;}
.ws22_c00443{word-spacing:4.979200pt;}
.ws18_c00443{word-spacing:5.932800pt;}
.ws16_c00443{word-spacing:6.150400pt;}
.ws15_c00443{word-spacing:6.259200pt;}
.ws1a_c00443{word-spacing:8.217600pt;}
.ws10_c00443{word-spacing:9.152000pt;}
.ws1e_c00443{word-spacing:11.059200pt;}
.ws1d_c00443{word-spacing:11.129600pt;}
.ws8_c00443{word-spacing:13.932800pt;}
.ws7_c00443{word-spacing:14.016000pt;}
.ws9_c00443{word-spacing:14.240000pt;}
.wsa_c00443{word-spacing:14.265600pt;}
.ws1b_c00443{word-spacing:14.918400pt;}
.ws1c_c00443{word-spacing:14.995200pt;}
.ws17_c00443{word-spacing:30.246400pt;}
.wse_c00443{word-spacing:33.785600pt;}
.wsd_c00443{word-spacing:33.804800pt;}
._0_c00443{width:0.972800pt;}
.fs0_c00443{font-size:64.000000pt;}
.y0_c00443{bottom:0.000000pt;}
.y2_c00443{bottom:41.627067pt;}
.y1_c00443{bottom:60.027067pt;}
.y28_c00443{bottom:161.627067pt;}
.y27_c00443{bottom:189.227067pt;}
.y26_c00443{bottom:216.827067pt;}
.y25_c00443{bottom:244.427067pt;}
.y24_c00443{bottom:272.027067pt;}
.y23_c00443{bottom:299.627067pt;}
.y22_c00443{bottom:325.947067pt;}
.y21_c00443{bottom:344.347067pt;}
.y20_c00443{bottom:362.747067pt;}
.y1f_c00443{bottom:381.147067pt;}
.y1e_c00443{bottom:399.547067pt;}
.y1d_c00443{bottom:417.947067pt;}
.y1c_c00443{bottom:436.347067pt;}
.y1b_c00443{bottom:454.747067pt;}
.y1a_c00443{bottom:473.147067pt;}
.y19_c00443{bottom:491.547067pt;}
.y18_c00443{bottom:509.947067pt;}
.y17_c00443{bottom:528.347067pt;}
.y16_c00443{bottom:546.747067pt;}
.y15_c00443{bottom:565.147067pt;}
.y14_c00443{bottom:583.547067pt;}
.y13_c00443{bottom:601.947067pt;}
.y12_c00443{bottom:620.347067pt;}
.y11_c00443{bottom:638.747067pt;}
.y10_c00443{bottom:657.147067pt;}
.yf_c00443{bottom:692.747067pt;}
.ye_c00443{bottom:728.347067pt;}
.yd_c00443{bottom:755.947067pt;}
.yc_c00443{bottom:783.547067pt;}
.yb_c00443{bottom:811.147067pt;}
.ya_c00443{bottom:838.747067pt;}
.y9_c00443{bottom:865.147067pt;}
.y8_c00443{bottom:883.547067pt;}
.y7_c00443{bottom:901.947067pt;}
.y6_c00443{bottom:920.347067pt;}
.y5_c00443{bottom:938.747067pt;}
.y4_c00443{bottom:957.147067pt;}
.y3_c00443{bottom:975.547067pt;}
.h1_c00443{height:56.156250pt;}
.h2_c00443{height:57.375000pt;}
.h0_c00443{height:1122.666667pt;}
.w1_c00443{width:793.333333pt;}
.w0_c00443{width:793.626667pt;}
.x0_c00443{left:0.000000pt;}
.x2_c00443{left:113.440000pt;}
.x3_c00443{left:180.400000pt;}
.x1_c00443{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_03726848d7821000fb85a7b3.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.093262;font-style:normal;font-weight:normal;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_1a5ed767a19181cb729a80d6.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.106934;font-style:normal;font-weight:normal;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_e4b82f33289a7abee99da48a.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00444{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.lse_c00444{letter-spacing:-0.086400px;}
.lsb_c00444{letter-spacing:-0.079200px;}
.ls6_c00444{letter-spacing:-0.072000px;}
.ls4_c00444{letter-spacing:-0.064800px;}
.ls3_c00444{letter-spacing:-0.057600px;}
.lsc_c00444{letter-spacing:-0.050400px;}
.ls5_c00444{letter-spacing:-0.043200px;}
.ls7_c00444{letter-spacing:-0.036000px;}
.lsa_c00444{letter-spacing:-0.028800px;}
.lsd_c00444{letter-spacing:-0.021600px;}
.ls8_c00444{letter-spacing:-0.014400px;}
.ls9_c00444{letter-spacing:-0.007200px;}
.ls2_c00444{letter-spacing:0.000000px;}
.ls0_c00444{letter-spacing:0.144000px;}
.ls1_c00444{letter-spacing:29.751120px;}
.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;}
}
.ws22_c00444{word-spacing:-4.867200px;}
.ws23_c00444{word-spacing:-4.766400px;}
.ws10_c00444{word-spacing:-3.456000px;}
.wsd_c00444{word-spacing:-0.928800px;}
.wse_c00444{word-spacing:-0.892800px;}
.ws7_c00444{word-spacing:-0.007200px;}
.ws0_c00444{word-spacing:0.000000px;}
.ws28_c00444{word-spacing:0.108000px;}
.ws1e_c00444{word-spacing:0.151200px;}
.ws4_c00444{word-spacing:0.165600px;}
.wsc_c00444{word-spacing:0.172800px;}
.ws1c_c00444{word-spacing:0.180000px;}
.ws8_c00444{word-spacing:0.187200px;}
.ws3_c00444{word-spacing:0.201600px;}
.ws9_c00444{word-spacing:0.223200px;}
.ws1d_c00444{word-spacing:0.532800px;}
.ws1b_c00444{word-spacing:2.361600px;}
.ws1a_c00444{word-spacing:2.383200px;}
.wsf_c00444{word-spacing:2.707200px;}
.ws1_c00444{word-spacing:3.816000px;}
.ws2_c00444{word-spacing:3.823200px;}
.ws5_c00444{word-spacing:7.322400px;}
.ws6_c00444{word-spacing:7.329600px;}
.ws13_c00444{word-spacing:8.762400px;}
.ws14_c00444{word-spacing:8.863200px;}
.ws12_c00444{word-spacing:9.064800px;}
.ws11_c00444{word-spacing:9.122400px;}
.ws25_c00444{word-spacing:23.212800px;}
.ws24_c00444{word-spacing:23.263200px;}
.ws21_c00444{word-spacing:24.688800px;}
.ws16_c00444{word-spacing:26.114400px;}
.ws17_c00444{word-spacing:26.150400px;}
.ws19_c00444{word-spacing:29.700000px;}
.ws18_c00444{word-spacing:29.793600px;}
.ws20_c00444{word-spacing:32.479200px;}
.ws1f_c00444{word-spacing:32.630400px;}
.wsb_c00444{word-spacing:40.514400px;}
.wsa_c00444{word-spacing:40.564800px;}
.ws15_c00444{word-spacing:43.372800px;}
.ws26_c00444{word-spacing:48.052800px;}
.ws27_c00444{word-spacing:48.153600px;}
._0_c00444{width:1.173600px;}
.fc0_c00444{color:rgb(0,0,0);}
.fs1_c00444{font-size:65.880000px;}
.fs0_c00444{font-size:72.000000px;}
.y0_c00444{bottom:0.000000px;}
.y2_c00444{bottom:46.830450px;}
.y1_c00444{bottom:67.530450px;}
.y27_c00444{bottom:224.580600px;}
.y26_c00444{bottom:255.630600px;}
.y25_c00444{bottom:286.680600px;}
.y24_c00444{bottom:316.380600px;}
.y23_c00444{bottom:337.080600px;}
.y22_c00444{bottom:357.690600px;}
.y21_c00444{bottom:378.390600px;}
.y20_c00444{bottom:399.090600px;}
.y1f_c00444{bottom:419.790450px;}
.y1e_c00444{bottom:440.490450px;}
.y1d_c00444{bottom:461.190450px;}
.y1c_c00444{bottom:481.890450px;}
.y1b_c00444{bottom:521.940450px;}
.y1a_c00444{bottom:552.990450px;}
.y19_c00444{bottom:584.040450px;}
.y18_c00444{bottom:615.090450px;}
.y17_c00444{bottom:644.790450px;}
.y16_c00444{bottom:665.490450px;}
.y15_c00444{bottom:686.190450px;}
.y14_c00444{bottom:706.890450px;}
.y13_c00444{bottom:727.590450px;}
.y12_c00444{bottom:748.290450px;}
.y11_c00444{bottom:768.990450px;}
.y10_c00444{bottom:789.690450px;}
.yf_c00444{bottom:810.390450px;}
.ye_c00444{bottom:831.090450px;}
.yd_c00444{bottom:871.140450px;}
.yc_c00444{bottom:902.190450px;}
.yb_c00444{bottom:931.890450px;}
.ya_c00444{bottom:952.590450px;}
.y9_c00444{bottom:973.290450px;}
.y8_c00444{bottom:993.990450px;}
.y7_c00444{bottom:1014.690450px;}
.y6_c00444{bottom:1035.390450px;}
.y5_c00444{bottom:1056.090450px;}
.y4_c00444{bottom:1076.790450px;}
.y3_c00444{bottom:1097.490450px;}
.h1_c00444{height:63.175781px;}
.h2_c00444{height:64.546875px;}
.h3_c00444{height:64.547475px;}
.h0_c00444{height:1263.000000px;}
.w1_c00444{width:892.500000px;}
.w0_c00444{width:892.830000px;}
.x0_c00444{left:0.000000px;}
.x2_c00444{left:170.100000px;}
.x3_c00444{left:245.430000px;}
.x1_c00444{left:738.360000px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.lse_c00444{letter-spacing:-0.076800pt;}
.lsb_c00444{letter-spacing:-0.070400pt;}
.ls6_c00444{letter-spacing:-0.064000pt;}
.ls4_c00444{letter-spacing:-0.057600pt;}
.ls3_c00444{letter-spacing:-0.051200pt;}
.lsc_c00444{letter-spacing:-0.044800pt;}
.ls5_c00444{letter-spacing:-0.038400pt;}
.ls7_c00444{letter-spacing:-0.032000pt;}
.lsa_c00444{letter-spacing:-0.025600pt;}
.lsd_c00444{letter-spacing:-0.019200pt;}
.ls8_c00444{letter-spacing:-0.012800pt;}
.ls9_c00444{letter-spacing:-0.006400pt;}
.ls2_c00444{letter-spacing:0.000000pt;}
.ls0_c00444{letter-spacing:0.128000pt;}
.ls1_c00444{letter-spacing:26.445440pt;}
.ws22_c00444{word-spacing:-4.326400pt;}
.ws23_c00444{word-spacing:-4.236800pt;}
.ws10_c00444{word-spacing:-3.072000pt;}
.wsd_c00444{word-spacing:-0.825600pt;}
.wse_c00444{word-spacing:-0.793600pt;}
.ws7_c00444{word-spacing:-0.006400pt;}
.ws0_c00444{word-spacing:0.000000pt;}
.ws28_c00444{word-spacing:0.096000pt;}
.ws1e_c00444{word-spacing:0.134400pt;}
.ws4_c00444{word-spacing:0.147200pt;}
.wsc_c00444{word-spacing:0.153600pt;}
.ws1c_c00444{word-spacing:0.160000pt;}
.ws8_c00444{word-spacing:0.166400pt;}
.ws3_c00444{word-spacing:0.179200pt;}
.ws9_c00444{word-spacing:0.198400pt;}
.ws1d_c00444{word-spacing:0.473600pt;}
.ws1b_c00444{word-spacing:2.099200pt;}
.ws1a_c00444{word-spacing:2.118400pt;}
.wsf_c00444{word-spacing:2.406400pt;}
.ws1_c00444{word-spacing:3.392000pt;}
.ws2_c00444{word-spacing:3.398400pt;}
.ws5_c00444{word-spacing:6.508800pt;}
.ws6_c00444{word-spacing:6.515200pt;}
.ws13_c00444{word-spacing:7.788800pt;}
.ws14_c00444{word-spacing:7.878400pt;}
.ws12_c00444{word-spacing:8.057600pt;}
.ws11_c00444{word-spacing:8.108800pt;}
.ws25_c00444{word-spacing:20.633600pt;}
.ws24_c00444{word-spacing:20.678400pt;}
.ws21_c00444{word-spacing:21.945600pt;}
.ws16_c00444{word-spacing:23.212800pt;}
.ws17_c00444{word-spacing:23.244800pt;}
.ws19_c00444{word-spacing:26.400000pt;}
.ws18_c00444{word-spacing:26.483200pt;}
.ws20_c00444{word-spacing:28.870400pt;}
.ws1f_c00444{word-spacing:29.004800pt;}
.wsb_c00444{word-spacing:36.012800pt;}
.wsa_c00444{word-spacing:36.057600pt;}
.ws15_c00444{word-spacing:38.553600pt;}
.ws26_c00444{word-spacing:42.713600pt;}
.ws27_c00444{word-spacing:42.803200pt;}
._0_c00444{width:1.043200pt;}
.fs1_c00444{font-size:58.560000pt;}
.fs0_c00444{font-size:64.000000pt;}
.y0_c00444{bottom:0.000000pt;}
.y2_c00444{bottom:41.627067pt;}
.y1_c00444{bottom:60.027067pt;}
.y27_c00444{bottom:199.627200pt;}
.y26_c00444{bottom:227.227200pt;}
.y25_c00444{bottom:254.827200pt;}
.y24_c00444{bottom:281.227200pt;}
.y23_c00444{bottom:299.627200pt;}
.y22_c00444{bottom:317.947200pt;}
.y21_c00444{bottom:336.347200pt;}
.y20_c00444{bottom:354.747200pt;}
.y1f_c00444{bottom:373.147067pt;}
.y1e_c00444{bottom:391.547067pt;}
.y1d_c00444{bottom:409.947067pt;}
.y1c_c00444{bottom:428.347067pt;}
.y1b_c00444{bottom:463.947067pt;}
.y1a_c00444{bottom:491.547067pt;}
.y19_c00444{bottom:519.147067pt;}
.y18_c00444{bottom:546.747067pt;}
.y17_c00444{bottom:573.147067pt;}
.y16_c00444{bottom:591.547067pt;}
.y15_c00444{bottom:609.947067pt;}
.y14_c00444{bottom:628.347067pt;}
.y13_c00444{bottom:646.747067pt;}
.y12_c00444{bottom:665.147067pt;}
.y11_c00444{bottom:683.547067pt;}
.y10_c00444{bottom:701.947067pt;}
.yf_c00444{bottom:720.347067pt;}
.ye_c00444{bottom:738.747067pt;}
.yd_c00444{bottom:774.347067pt;}
.yc_c00444{bottom:801.947067pt;}
.yb_c00444{bottom:828.347067pt;}
.ya_c00444{bottom:846.747067pt;}
.y9_c00444{bottom:865.147067pt;}
.y8_c00444{bottom:883.547067pt;}
.y7_c00444{bottom:901.947067pt;}
.y6_c00444{bottom:920.347067pt;}
.y5_c00444{bottom:938.747067pt;}
.y4_c00444{bottom:957.147067pt;}
.y3_c00444{bottom:975.547067pt;}
.h1_c00444{height:56.156250pt;}
.h2_c00444{height:57.375000pt;}
.h3_c00444{height:57.375533pt;}
.h0_c00444{height:1122.666667pt;}
.w1_c00444{width:793.333333pt;}
.w0_c00444{width:793.626667pt;}
.x0_c00444{left:0.000000pt;}
.x2_c00444{left:151.200000pt;}
.x3_c00444{left:218.160000pt;}
.x1_c00444{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_19423bf568ddc73215ce0ea9.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.093262;font-style:normal;font-weight:normal;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_7b44aca063092a201688b355.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00445;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00445;src:url('chunks/assets/font_4360f7434082d52a3b903cc8.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00445{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.lsd_c00445{letter-spacing:-0.072000px;}
.lsc_c00445{letter-spacing:-0.064800px;}
.ls9_c00445{letter-spacing:-0.057600px;}
.lsb_c00445{letter-spacing:-0.050400px;}
.ls4_c00445{letter-spacing:-0.043200px;}
.ls6_c00445{letter-spacing:-0.036000px;}
.ls8_c00445{letter-spacing:-0.028800px;}
.ls3_c00445{letter-spacing:-0.021600px;}
.ls7_c00445{letter-spacing:-0.014400px;}
.ls5_c00445{letter-spacing:-0.007200px;}
.ls1_c00445{letter-spacing:0.000000px;}
.lsa_c00445{letter-spacing:0.007200px;}
.ls0_c00445{letter-spacing:0.028800px;}
.ls2_c00445{letter-spacing:0.108216px;}
.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;}
}
.ws15_c00445{word-spacing:-3.729600px;}
.ws17_c00445{word-spacing:-2.772000px;}
.ws16_c00445{word-spacing:-2.736000px;}
.ws1_c00445{word-spacing:-0.378756px;}
.ws0_c00445{word-spacing:0.000000px;}
.wsb_c00445{word-spacing:0.079200px;}
.ws14_c00445{word-spacing:0.093600px;}
.ws9_c00445{word-spacing:0.129600px;}
.ws4_c00445{word-spacing:0.165600px;}
.ws8_c00445{word-spacing:0.172800px;}
.ws2_c00445{word-spacing:0.180000px;}
.wsa_c00445{word-spacing:0.187200px;}
.ws5_c00445{word-spacing:0.194400px;}
.ws13_c00445{word-spacing:0.230400px;}
.ws12_c00445{word-spacing:0.259200px;}
.ws11_c00445{word-spacing:0.288000px;}
.wse_c00445{word-spacing:1.591200px;}
.wsd_c00445{word-spacing:1.605600px;}
.wsc_c00445{word-spacing:3.456000px;}
.ws7_c00445{word-spacing:4.816800px;}
.ws6_c00445{word-spacing:4.860000px;}
.wsf_c00445{word-spacing:6.688800px;}
.ws10_c00445{word-spacing:6.703200px;}
.ws3_c00445{word-spacing:20.721600px;}
._0_c00445{margin-left:-1.202400px;}
._1_c00445{width:1.008000px;}
.fc1_c00445{color:rgb(31,73,124);}
.fc0_c00445{color:rgb(0,0,0);}
.fs1_c00445{font-size:60.120000px;}
.fs0_c00445{font-size:72.000000px;}
.y0_c00445{bottom:0.000000px;}
.y2_c00445{bottom:46.830450px;}
.y1_c00445{bottom:67.530450px;}
.y1e_c00445{bottom:170.220450px;}
.y1d_c00445{bottom:190.920450px;}
.y1c_c00445{bottom:211.620450px;}
.y1b_c00445{bottom:232.320450px;}
.y1a_c00445{bottom:253.020450px;}
.y19_c00445{bottom:293.070450px;}
.y18_c00445{bottom:324.120450px;}
.y17_c00445{bottom:355.170450px;}
.y16_c00445{bottom:395.220450px;}
.y15_c00445{bottom:424.920450px;}
.y14_c00445{bottom:445.620450px;}
.y13_c00445{bottom:466.320450px;}
.y12_c00445{bottom:487.020450px;}
.y11_c00445{bottom:527.070450px;}
.y10_c00445{bottom:556.770450px;}
.yf_c00445{bottom:577.470450px;}
.ye_c00445{bottom:598.170450px;}
.yd_c00445{bottom:618.870450px;}
.yc_c00445{bottom:639.570450px;}
.yb_c00445{bottom:660.270450px;}
.ya_c00445{bottom:680.970450px;}
.y9_c00445{bottom:701.670450px;}
.y8_c00445{bottom:722.370450px;}
.y7_c00445{bottom:743.070450px;}
.y6_c00445{bottom:783.120450px;}
.y5_c00445{bottom:823.170450px;}
.y4_c00445{bottom:858.270450px;}
.y3_c00445{bottom:891.480450px;}
.h2_c00445{height:62.703281px;}
.h1_c00445{height:63.175781px;}
.h3_c00445{height:64.546875px;}
.h0_c00445{height:1263.000000px;}
.w1_c00445{width:892.500000px;}
.w0_c00445{width:892.830000px;}
.x0_c00445{left:0.000000px;}
.x2_c00445{left:127.620000px;}
.x4_c00445{left:202.950000px;}
.x1_c00445{left:695.880000px;}
.x3_c00445{left:728.370000px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.lsd_c00445{letter-spacing:-0.064000pt;}
.lsc_c00445{letter-spacing:-0.057600pt;}
.ls9_c00445{letter-spacing:-0.051200pt;}
.lsb_c00445{letter-spacing:-0.044800pt;}
.ls4_c00445{letter-spacing:-0.038400pt;}
.ls6_c00445{letter-spacing:-0.032000pt;}
.ls8_c00445{letter-spacing:-0.025600pt;}
.ls3_c00445{letter-spacing:-0.019200pt;}
.ls7_c00445{letter-spacing:-0.012800pt;}
.ls5_c00445{letter-spacing:-0.006400pt;}
.ls1_c00445{letter-spacing:0.000000pt;}
.lsa_c00445{letter-spacing:0.006400pt;}
.ls0_c00445{letter-spacing:0.025600pt;}
.ls2_c00445{letter-spacing:0.096192pt;}
.ws15_c00445{word-spacing:-3.315200pt;}
.ws17_c00445{word-spacing:-2.464000pt;}
.ws16_c00445{word-spacing:-2.432000pt;}
.ws1_c00445{word-spacing:-0.336672pt;}
.ws0_c00445{word-spacing:0.000000pt;}
.wsb_c00445{word-spacing:0.070400pt;}
.ws14_c00445{word-spacing:0.083200pt;}
.ws9_c00445{word-spacing:0.115200pt;}
.ws4_c00445{word-spacing:0.147200pt;}
.ws8_c00445{word-spacing:0.153600pt;}
.ws2_c00445{word-spacing:0.160000pt;}
.wsa_c00445{word-spacing:0.166400pt;}
.ws5_c00445{word-spacing:0.172800pt;}
.ws13_c00445{word-spacing:0.204800pt;}
.ws12_c00445{word-spacing:0.230400pt;}
.ws11_c00445{word-spacing:0.256000pt;}
.wse_c00445{word-spacing:1.414400pt;}
.wsd_c00445{word-spacing:1.427200pt;}
.wsc_c00445{word-spacing:3.072000pt;}
.ws7_c00445{word-spacing:4.281600pt;}
.ws6_c00445{word-spacing:4.320000pt;}
.wsf_c00445{word-spacing:5.945600pt;}
.ws10_c00445{word-spacing:5.958400pt;}
.ws3_c00445{word-spacing:18.419200pt;}
._0_c00445{margin-left:-1.068800pt;}
._1_c00445{width:0.896000pt;}
.fs1_c00445{font-size:53.440000pt;}
.fs0_c00445{font-size:64.000000pt;}
.y0_c00445{bottom:0.000000pt;}
.y2_c00445{bottom:41.627067pt;}
.y1_c00445{bottom:60.027067pt;}
.y1e_c00445{bottom:151.307067pt;}
.y1d_c00445{bottom:169.707067pt;}
.y1c_c00445{bottom:188.107067pt;}
.y1b_c00445{bottom:206.507067pt;}
.y1a_c00445{bottom:224.907067pt;}
.y19_c00445{bottom:260.507067pt;}
.y18_c00445{bottom:288.107067pt;}
.y17_c00445{bottom:315.707067pt;}
.y16_c00445{bottom:351.307067pt;}
.y15_c00445{bottom:377.707067pt;}
.y14_c00445{bottom:396.107067pt;}
.y13_c00445{bottom:414.507067pt;}
.y12_c00445{bottom:432.907067pt;}
.y11_c00445{bottom:468.507067pt;}
.y10_c00445{bottom:494.907067pt;}
.yf_c00445{bottom:513.307067pt;}
.ye_c00445{bottom:531.707067pt;}
.yd_c00445{bottom:550.107067pt;}
.yc_c00445{bottom:568.507067pt;}
.yb_c00445{bottom:586.907067pt;}
.ya_c00445{bottom:605.307067pt;}
.y9_c00445{bottom:623.707067pt;}
.y8_c00445{bottom:642.107067pt;}
.y7_c00445{bottom:660.507067pt;}
.y6_c00445{bottom:696.107067pt;}
.y5_c00445{bottom:731.707067pt;}
.y4_c00445{bottom:762.907067pt;}
.y3_c00445{bottom:792.427067pt;}
.h2_c00445{height:55.736250pt;}
.h1_c00445{height:56.156250pt;}
.h3_c00445{height:57.375000pt;}
.h0_c00445{height:1122.666667pt;}
.w1_c00445{width:793.333333pt;}
.w0_c00445{width:793.626667pt;}
.x0_c00445{left:0.000000pt;}
.x2_c00445{left:113.440000pt;}
.x4_c00445{left:180.400000pt;}
.x1_c00445{left:618.560000pt;}
.x3_c00445{left:647.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_75b9a51968903c6ef7f8909f.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.093262;font-style:normal;font-weight:normal;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_e084773271088095d6621184.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.106934;font-style:normal;font-weight:normal;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_9f6c506d716acdc8a2e35b8f.woff2')format("woff");}.ff3_c00446{font-family:ff3_c00446;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00446;src:url('chunks/assets/font_2bb5d16ddbde4b5022665bfb.woff2')format("woff");}.ff4_c00446{font-family:ff4_c00446;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00446;src:url('chunks/assets/font_2b66f3bbebccb7d525204342.woff2')format("woff");}.ff5_c00446{font-family:ff5_c00446;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsa_c00446{letter-spacing:-0.086400px;}
.ls2_c00446{letter-spacing:-0.064800px;}
.ls5_c00446{letter-spacing:-0.057600px;}
.lsb_c00446{letter-spacing:-0.050400px;}
.ls3_c00446{letter-spacing:-0.043200px;}
.ls6_c00446{letter-spacing:-0.036000px;}
.ls4_c00446{letter-spacing:-0.028800px;}
.ls9_c00446{letter-spacing:-0.021600px;}
.ls7_c00446{letter-spacing:-0.014400px;}
.ls8_c00446{letter-spacing:-0.007200px;}
.ls1_c00446{letter-spacing:0.000000px;}
.ls0_c00446{letter-spacing:0.058716px;}
.sc__c00446{text-shadow:none;}
.sc0_c00446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00446{-webkit-text-stroke:0px transparent;}
.sc0_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00446{word-spacing:-20.016000px;}
.wse_c00446{word-spacing:-4.874400px;}
.wsc_c00446{word-spacing:-4.852800px;}
.wsd_c00446{word-spacing:-4.744800px;}
.ws1_c00446{word-spacing:0.000000px;}
.ws11_c00446{word-spacing:0.108000px;}
.ws17_c00446{word-spacing:0.136800px;}
.ws16_c00446{word-spacing:0.172800px;}
.ws1e_c00446{word-spacing:0.180000px;}
.ws4_c00446{word-spacing:0.187200px;}
.ws10_c00446{word-spacing:0.194400px;}
.ws12_c00446{word-spacing:0.201600px;}
.ws1c_c00446{word-spacing:0.208800px;}
.ws1d_c00446{word-spacing:0.237600px;}
.ws3_c00446{word-spacing:2.296800px;}
.ws2_c00446{word-spacing:2.383200px;}
.wsb_c00446{word-spacing:3.441600px;}
.wsa_c00446{word-spacing:3.499200px;}
.ws1a_c00446{word-spacing:4.118400px;}
.ws13_c00446{word-spacing:4.132800px;}
.ws1b_c00446{word-spacing:4.140000px;}
.ws18_c00446{word-spacing:5.623200px;}
.ws19_c00446{word-spacing:5.709600px;}
.ws7_c00446{word-spacing:5.954400px;}
.ws6_c00446{word-spacing:5.976000px;}
.ws14_c00446{word-spacing:12.045600px;}
.ws15_c00446{word-spacing:12.096000px;}
.ws8_c00446{word-spacing:14.587200px;}
.ws9_c00446{word-spacing:14.644800px;}
.wsf_c00446{word-spacing:17.064000px;}
.ws5_c00446{word-spacing:187.597620px;}
._0_c00446{margin-left:-187.555680px;}
._2_c00446{margin-left:-1.296000px;}
._1_c00446{width:1.526400px;}
.fc0_c00446{color:rgb(0,0,0);}
.fs0_c00446{font-size:72.000000px;}
.fs1_c00446{font-size:83.880000px;}
.y0_c00446{bottom:0.000000px;}
.y2_c00446{bottom:46.830450px;}
.y1_c00446{bottom:67.530450px;}
.y27_c00446{bottom:156.720450px;}
.y26_c00446{bottom:186.420450px;}
.y25_c00446{bottom:207.120450px;}
.y24_c00446{bottom:227.820450px;}
.y23_c00446{bottom:248.520450px;}
.y22_c00446{bottom:269.220450px;}
.y21_c00446{bottom:289.920450px;}
.y20_c00446{bottom:310.620450px;}
.y1f_c00446{bottom:331.320450px;}
.y1e_c00446{bottom:352.020450px;}
.y1d_c00446{bottom:372.720450px;}
.y1c_c00446{bottom:393.420450px;}
.y1b_c00446{bottom:414.120450px;}
.y1a_c00446{bottom:443.820450px;}
.y19_c00446{bottom:464.520450px;}
.y18_c00446{bottom:485.220450px;}
.y17_c00446{bottom:514.920450px;}
.y16_c00446{bottom:544.620450px;}
.y15_c00446{bottom:565.320450px;}
.y14_c00446{bottom:586.020450px;}
.y13_c00446{bottom:606.720450px;}
.y12_c00446{bottom:627.420450px;}
.y11_c00446{bottom:648.120450px;}
.y10_c00446{bottom:668.820450px;}
.yf_c00446{bottom:708.870450px;}
.ye_c00446{bottom:748.920450px;}
.yd_c00446{bottom:779.970450px;}
.yc_c00446{bottom:811.020450px;}
.yb_c00446{bottom:842.070450px;}
.ya_c00446{bottom:873.120450px;}
.y9_c00446{bottom:904.170450px;}
.y8_c00446{bottom:944.220450px;}
.y7_c00446{bottom:974.370450px;}
.y6_c00446{bottom:1026.390450px;}
.y5_c00446{bottom:1056.090450px;}
.y4_c00446{bottom:1076.790450px;}
.y3_c00446{bottom:1097.490450px;}
.h1_c00446{height:63.175781px;}
.h2_c00446{height:64.546875px;}
.h4_c00446{height:75.093750px;}
.h3_c00446{height:87.484219px;}
.h0_c00446{height:1263.000000px;}
.w1_c00446{width:892.500000px;}
.w0_c00446{width:892.830000px;}
.x0_c00446{left:0.000000px;}
.x2_c00446{left:170.100000px;}
.x4_c00446{left:224.100000px;}
.x3_c00446{left:245.430000px;}
.x1_c00446{left:738.360000px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.lsa_c00446{letter-spacing:-0.076800pt;}
.ls2_c00446{letter-spacing:-0.057600pt;}
.ls5_c00446{letter-spacing:-0.051200pt;}
.lsb_c00446{letter-spacing:-0.044800pt;}
.ls3_c00446{letter-spacing:-0.038400pt;}
.ls6_c00446{letter-spacing:-0.032000pt;}
.ls4_c00446{letter-spacing:-0.025600pt;}
.ls9_c00446{letter-spacing:-0.019200pt;}
.ls7_c00446{letter-spacing:-0.012800pt;}
.ls8_c00446{letter-spacing:-0.006400pt;}
.ls1_c00446{letter-spacing:0.000000pt;}
.ls0_c00446{letter-spacing:0.052192pt;}
.ws0_c00446{word-spacing:-17.792000pt;}
.wse_c00446{word-spacing:-4.332800pt;}
.wsc_c00446{word-spacing:-4.313600pt;}
.wsd_c00446{word-spacing:-4.217600pt;}
.ws1_c00446{word-spacing:0.000000pt;}
.ws11_c00446{word-spacing:0.096000pt;}
.ws17_c00446{word-spacing:0.121600pt;}
.ws16_c00446{word-spacing:0.153600pt;}
.ws1e_c00446{word-spacing:0.160000pt;}
.ws4_c00446{word-spacing:0.166400pt;}
.ws10_c00446{word-spacing:0.172800pt;}
.ws12_c00446{word-spacing:0.179200pt;}
.ws1c_c00446{word-spacing:0.185600pt;}
.ws1d_c00446{word-spacing:0.211200pt;}
.ws3_c00446{word-spacing:2.041600pt;}
.ws2_c00446{word-spacing:2.118400pt;}
.wsb_c00446{word-spacing:3.059200pt;}
.wsa_c00446{word-spacing:3.110400pt;}
.ws1a_c00446{word-spacing:3.660800pt;}
.ws13_c00446{word-spacing:3.673600pt;}
.ws1b_c00446{word-spacing:3.680000pt;}
.ws18_c00446{word-spacing:4.998400pt;}
.ws19_c00446{word-spacing:5.075200pt;}
.ws7_c00446{word-spacing:5.292800pt;}
.ws6_c00446{word-spacing:5.312000pt;}
.ws14_c00446{word-spacing:10.707200pt;}
.ws15_c00446{word-spacing:10.752000pt;}
.ws8_c00446{word-spacing:12.966400pt;}
.ws9_c00446{word-spacing:13.017600pt;}
.wsf_c00446{word-spacing:15.168000pt;}
.ws5_c00446{word-spacing:166.753440pt;}
._0_c00446{margin-left:-166.716160pt;}
._2_c00446{margin-left:-1.152000pt;}
._1_c00446{width:1.356800pt;}
.fs0_c00446{font-size:64.000000pt;}
.fs1_c00446{font-size:74.560000pt;}
.y0_c00446{bottom:0.000000pt;}
.y2_c00446{bottom:41.627067pt;}
.y1_c00446{bottom:60.027067pt;}
.y27_c00446{bottom:139.307067pt;}
.y26_c00446{bottom:165.707067pt;}
.y25_c00446{bottom:184.107067pt;}
.y24_c00446{bottom:202.507067pt;}
.y23_c00446{bottom:220.907067pt;}
.y22_c00446{bottom:239.307067pt;}
.y21_c00446{bottom:257.707067pt;}
.y20_c00446{bottom:276.107067pt;}
.y1f_c00446{bottom:294.507067pt;}
.y1e_c00446{bottom:312.907067pt;}
.y1d_c00446{bottom:331.307067pt;}
.y1c_c00446{bottom:349.707067pt;}
.y1b_c00446{bottom:368.107067pt;}
.y1a_c00446{bottom:394.507067pt;}
.y19_c00446{bottom:412.907067pt;}
.y18_c00446{bottom:431.307067pt;}
.y17_c00446{bottom:457.707067pt;}
.y16_c00446{bottom:484.107067pt;}
.y15_c00446{bottom:502.507067pt;}
.y14_c00446{bottom:520.907067pt;}
.y13_c00446{bottom:539.307067pt;}
.y12_c00446{bottom:557.707067pt;}
.y11_c00446{bottom:576.107067pt;}
.y10_c00446{bottom:594.507067pt;}
.yf_c00446{bottom:630.107067pt;}
.ye_c00446{bottom:665.707067pt;}
.yd_c00446{bottom:693.307067pt;}
.yc_c00446{bottom:720.907067pt;}
.yb_c00446{bottom:748.507067pt;}
.ya_c00446{bottom:776.107067pt;}
.y9_c00446{bottom:803.707067pt;}
.y8_c00446{bottom:839.307067pt;}
.y7_c00446{bottom:866.107067pt;}
.y6_c00446{bottom:912.347067pt;}
.y5_c00446{bottom:938.747067pt;}
.y4_c00446{bottom:957.147067pt;}
.y3_c00446{bottom:975.547067pt;}
.h1_c00446{height:56.156250pt;}
.h2_c00446{height:57.375000pt;}
.h4_c00446{height:66.750000pt;}
.h3_c00446{height:77.763750pt;}
.h0_c00446{height:1122.666667pt;}
.w1_c00446{width:793.333333pt;}
.w0_c00446{width:793.626667pt;}
.x0_c00446{left:0.000000pt;}
.x2_c00446{left:151.200000pt;}
.x4_c00446{left:199.200000pt;}
.x3_c00446{left:218.160000pt;}
.x1_c00446{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_50fc4695d24231334a89b187.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.093262;font-style:normal;font-weight:normal;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_786c4d25acf922f72a3212bf.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.106934;font-style:normal;font-weight:normal;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_dd21c9d5718c2e03639cfd76.woff2')format("woff");}.ff3_c00447{font-family:ff3_c00447;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00447{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00447{vertical-align:0.000000px;}
.lse_c00447{letter-spacing:-0.100800px;}
.lsd_c00447{letter-spacing:-0.079200px;}
.lsc_c00447{letter-spacing:-0.072000px;}
.lsa_c00447{letter-spacing:-0.064800px;}
.ls2_c00447{letter-spacing:-0.057600px;}
.ls3_c00447{letter-spacing:-0.050400px;}
.lsb_c00447{letter-spacing:-0.043200px;}
.ls9_c00447{letter-spacing:-0.036000px;}
.ls4_c00447{letter-spacing:-0.028800px;}
.ls7_c00447{letter-spacing:-0.021600px;}
.ls6_c00447{letter-spacing:-0.014400px;}
.ls8_c00447{letter-spacing:-0.007200px;}
.ls1_c00447{letter-spacing:0.000000px;}
.ls5_c00447{letter-spacing:0.014400px;}
.ls0_c00447{letter-spacing:0.144000px;}
.sc__c00447{text-shadow:none;}
.sc0_c00447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00447{-webkit-text-stroke:0px transparent;}
.sc0_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00447{word-spacing:-20.001600px;}
.ws3_c00447{word-spacing:-4.586400px;}
.ws2_c00447{word-spacing:-4.521600px;}
.ws1f_c00447{word-spacing:-2.764800px;}
.ws1e_c00447{word-spacing:-2.757600px;}
.ws14_c00447{word-spacing:-0.504000px;}
.ws24_c00447{word-spacing:-0.201600px;}
.ws25_c00447{word-spacing:-0.122400px;}
.ws1_c00447{word-spacing:0.000000px;}
.ws11_c00447{word-spacing:0.072000px;}
.ws20_c00447{word-spacing:0.079200px;}
.ws21_c00447{word-spacing:0.122400px;}
.ws17_c00447{word-spacing:0.129600px;}
.wsd_c00447{word-spacing:0.158400px;}
.ws23_c00447{word-spacing:0.172800px;}
.ws12_c00447{word-spacing:0.180000px;}
.wsc_c00447{word-spacing:0.187200px;}
.ws9_c00447{word-spacing:0.194400px;}
.ws18_c00447{word-spacing:0.201600px;}
.ws1b_c00447{word-spacing:0.216000px;}
.ws1c_c00447{word-spacing:0.374400px;}
.ws10_c00447{word-spacing:1.627200px;}
.ws26_c00447{word-spacing:1.656000px;}
.ws27_c00447{word-spacing:1.677600px;}
.ws1d_c00447{word-spacing:4.536000px;}
.ws28_c00447{word-spacing:5.212800px;}
.ws8_c00447{word-spacing:6.645600px;}
.ws6_c00447{word-spacing:6.652800px;}
.ws7_c00447{word-spacing:6.660000px;}
.ws16_c00447{word-spacing:6.919200px;}
.ws15_c00447{word-spacing:7.041600px;}
.ws22_c00447{word-spacing:11.361600px;}
.ws29_c00447{word-spacing:14.198400px;}
.ws2a_c00447{word-spacing:14.227200px;}
.wse_c00447{word-spacing:16.394400px;}
.wsf_c00447{word-spacing:16.509600px;}
.ws5_c00447{word-spacing:29.304000px;}
.ws4_c00447{word-spacing:29.419200px;}
.ws1a_c00447{word-spacing:32.227200px;}
.ws19_c00447{word-spacing:32.263200px;}
.wsa_c00447{word-spacing:39.758400px;}
.wsb_c00447{word-spacing:39.780000px;}
.ws13_c00447{word-spacing:43.387200px;}
._0_c00447{width:1.072800px;}
.fc0_c00447{color:rgb(0,0,0);}
.fs0_c00447{font-size:72.000000px;}
.y0_c00447{bottom:0.000000px;}
.y2_c00447{bottom:46.830450px;}
.y1_c00447{bottom:67.530450px;}
.y2c_c00447{bottom:149.430450px;}
.y2b_c00447{bottom:170.130450px;}
.y2a_c00447{bottom:190.830450px;}
.y29_c00447{bottom:211.530450px;}
.y28_c00447{bottom:232.230450px;}
.y27_c00447{bottom:252.930450px;}
.y26_c00447{bottom:273.630450px;}
.y25_c00447{bottom:294.330450px;}
.y24_c00447{bottom:315.030450px;}
.y23_c00447{bottom:335.730450px;}
.y22_c00447{bottom:356.430450px;}
.y21_c00447{bottom:377.040450px;}
.y20_c00447{bottom:397.740450px;}
.y1f_c00447{bottom:418.440450px;}
.y1e_c00447{bottom:458.490450px;}
.y1d_c00447{bottom:489.540450px;}
.y1c_c00447{bottom:520.590450px;}
.y1b_c00447{bottom:550.290450px;}
.y1a_c00447{bottom:570.990450px;}
.y19_c00447{bottom:591.690450px;}
.y18_c00447{bottom:612.390450px;}
.y17_c00447{bottom:633.090450px;}
.y16_c00447{bottom:653.790450px;}
.y15_c00447{bottom:674.490450px;}
.y14_c00447{bottom:695.190450px;}
.y13_c00447{bottom:715.890450px;}
.y12_c00447{bottom:736.590450px;}
.y11_c00447{bottom:757.290450px;}
.y10_c00447{bottom:777.990450px;}
.yf_c00447{bottom:798.690450px;}
.ye_c00447{bottom:819.390450px;}
.yd_c00447{bottom:840.090450px;}
.yc_c00447{bottom:860.790450px;}
.yb_c00447{bottom:881.490450px;}
.ya_c00447{bottom:902.190450px;}
.y9_c00447{bottom:922.890450px;}
.y8_c00447{bottom:943.590450px;}
.y7_c00447{bottom:964.290450px;}
.y6_c00447{bottom:1004.340450px;}
.y5_c00447{bottom:1035.390450px;}
.y4_c00447{bottom:1066.440450px;}
.y3_c00447{bottom:1097.490450px;}
.h1_c00447{height:63.175781px;}
.h2_c00447{height:64.546875px;}
.h3_c00447{height:75.093750px;}
.h0_c00447{height:1263.000000px;}
.w1_c00447{width:892.500000px;}
.w0_c00447{width:892.830000px;}
.x0_c00447{left:0.000000px;}
.x2_c00447{left:127.620000px;}
.x3_c00447{left:202.950000px;}
.x1_c00447{left:695.880000px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.lse_c00447{letter-spacing:-0.089600pt;}
.lsd_c00447{letter-spacing:-0.070400pt;}
.lsc_c00447{letter-spacing:-0.064000pt;}
.lsa_c00447{letter-spacing:-0.057600pt;}
.ls2_c00447{letter-spacing:-0.051200pt;}
.ls3_c00447{letter-spacing:-0.044800pt;}
.lsb_c00447{letter-spacing:-0.038400pt;}
.ls9_c00447{letter-spacing:-0.032000pt;}
.ls4_c00447{letter-spacing:-0.025600pt;}
.ls7_c00447{letter-spacing:-0.019200pt;}
.ls6_c00447{letter-spacing:-0.012800pt;}
.ls8_c00447{letter-spacing:-0.006400pt;}
.ls1_c00447{letter-spacing:0.000000pt;}
.ls5_c00447{letter-spacing:0.012800pt;}
.ls0_c00447{letter-spacing:0.128000pt;}
.ws0_c00447{word-spacing:-17.779200pt;}
.ws3_c00447{word-spacing:-4.076800pt;}
.ws2_c00447{word-spacing:-4.019200pt;}
.ws1f_c00447{word-spacing:-2.457600pt;}
.ws1e_c00447{word-spacing:-2.451200pt;}
.ws14_c00447{word-spacing:-0.448000pt;}
.ws24_c00447{word-spacing:-0.179200pt;}
.ws25_c00447{word-spacing:-0.108800pt;}
.ws1_c00447{word-spacing:0.000000pt;}
.ws11_c00447{word-spacing:0.064000pt;}
.ws20_c00447{word-spacing:0.070400pt;}
.ws21_c00447{word-spacing:0.108800pt;}
.ws17_c00447{word-spacing:0.115200pt;}
.wsd_c00447{word-spacing:0.140800pt;}
.ws23_c00447{word-spacing:0.153600pt;}
.ws12_c00447{word-spacing:0.160000pt;}
.wsc_c00447{word-spacing:0.166400pt;}
.ws9_c00447{word-spacing:0.172800pt;}
.ws18_c00447{word-spacing:0.179200pt;}
.ws1b_c00447{word-spacing:0.192000pt;}
.ws1c_c00447{word-spacing:0.332800pt;}
.ws10_c00447{word-spacing:1.446400pt;}
.ws26_c00447{word-spacing:1.472000pt;}
.ws27_c00447{word-spacing:1.491200pt;}
.ws1d_c00447{word-spacing:4.032000pt;}
.ws28_c00447{word-spacing:4.633600pt;}
.ws8_c00447{word-spacing:5.907200pt;}
.ws6_c00447{word-spacing:5.913600pt;}
.ws7_c00447{word-spacing:5.920000pt;}
.ws16_c00447{word-spacing:6.150400pt;}
.ws15_c00447{word-spacing:6.259200pt;}
.ws22_c00447{word-spacing:10.099200pt;}
.ws29_c00447{word-spacing:12.620800pt;}
.ws2a_c00447{word-spacing:12.646400pt;}
.wse_c00447{word-spacing:14.572800pt;}
.wsf_c00447{word-spacing:14.675200pt;}
.ws5_c00447{word-spacing:26.048000pt;}
.ws4_c00447{word-spacing:26.150400pt;}
.ws1a_c00447{word-spacing:28.646400pt;}
.ws19_c00447{word-spacing:28.678400pt;}
.wsa_c00447{word-spacing:35.340800pt;}
.wsb_c00447{word-spacing:35.360000pt;}
.ws13_c00447{word-spacing:38.566400pt;}
._0_c00447{width:0.953600pt;}
.fs0_c00447{font-size:64.000000pt;}
.y0_c00447{bottom:0.000000pt;}
.y2_c00447{bottom:41.627067pt;}
.y1_c00447{bottom:60.027067pt;}
.y2c_c00447{bottom:132.827067pt;}
.y2b_c00447{bottom:151.227067pt;}
.y2a_c00447{bottom:169.627067pt;}
.y29_c00447{bottom:188.027067pt;}
.y28_c00447{bottom:206.427067pt;}
.y27_c00447{bottom:224.827067pt;}
.y26_c00447{bottom:243.227067pt;}
.y25_c00447{bottom:261.627067pt;}
.y24_c00447{bottom:280.027067pt;}
.y23_c00447{bottom:298.427067pt;}
.y22_c00447{bottom:316.827067pt;}
.y21_c00447{bottom:335.147067pt;}
.y20_c00447{bottom:353.547067pt;}
.y1f_c00447{bottom:371.947067pt;}
.y1e_c00447{bottom:407.547067pt;}
.y1d_c00447{bottom:435.147067pt;}
.y1c_c00447{bottom:462.747067pt;}
.y1b_c00447{bottom:489.147067pt;}
.y1a_c00447{bottom:507.547067pt;}
.y19_c00447{bottom:525.947067pt;}
.y18_c00447{bottom:544.347067pt;}
.y17_c00447{bottom:562.747067pt;}
.y16_c00447{bottom:581.147067pt;}
.y15_c00447{bottom:599.547067pt;}
.y14_c00447{bottom:617.947067pt;}
.y13_c00447{bottom:636.347067pt;}
.y12_c00447{bottom:654.747067pt;}
.y11_c00447{bottom:673.147067pt;}
.y10_c00447{bottom:691.547067pt;}
.yf_c00447{bottom:709.947067pt;}
.ye_c00447{bottom:728.347067pt;}
.yd_c00447{bottom:746.747067pt;}
.yc_c00447{bottom:765.147067pt;}
.yb_c00447{bottom:783.547067pt;}
.ya_c00447{bottom:801.947067pt;}
.y9_c00447{bottom:820.347067pt;}
.y8_c00447{bottom:838.747067pt;}
.y7_c00447{bottom:857.147067pt;}
.y6_c00447{bottom:892.747067pt;}
.y5_c00447{bottom:920.347067pt;}
.y4_c00447{bottom:947.947067pt;}
.y3_c00447{bottom:975.547067pt;}
.h1_c00447{height:56.156250pt;}
.h2_c00447{height:57.375000pt;}
.h3_c00447{height:66.750000pt;}
.h0_c00447{height:1122.666667pt;}
.w1_c00447{width:793.333333pt;}
.w0_c00447{width:793.626667pt;}
.x0_c00447{left:0.000000pt;}
.x2_c00447{left:113.440000pt;}
.x3_c00447{left:180.400000pt;}
.x1_c00447{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f30e541856731864b0bb57bf.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.093262;font-style:normal;font-weight:normal;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_b70da32cde9bea3ff6400523.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.106934;font-style:normal;font-weight:normal;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_f13c665a52035c921fc08ecf.woff2')format("woff");}.ff3_c00448{font-family:ff3_c00448;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls6_c00448{letter-spacing:-0.086400px;}
.lsb_c00448{letter-spacing:-0.079200px;}
.ls7_c00448{letter-spacing:-0.072000px;}
.lsd_c00448{letter-spacing:-0.064800px;}
.ls9_c00448{letter-spacing:-0.057600px;}
.ls5_c00448{letter-spacing:-0.050400px;}
.ls2_c00448{letter-spacing:-0.043200px;}
.ls4_c00448{letter-spacing:-0.036000px;}
.ls8_c00448{letter-spacing:-0.028800px;}
.ls3_c00448{letter-spacing:-0.021600px;}
.lsc_c00448{letter-spacing:-0.014400px;}
.lsa_c00448{letter-spacing:-0.007200px;}
.ls1_c00448{letter-spacing:0.000000px;}
.ls0_c00448{letter-spacing:0.007200px;}
.lse_c00448{letter-spacing:843.998400px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00448{word-spacing:-20.016000px;}
.ws1a_c00448{word-spacing:-2.772000px;}
.ws1b_c00448{word-spacing:-2.642400px;}
.wsc_c00448{word-spacing:-1.598400px;}
.wsd_c00448{word-spacing:-1.569600px;}
.ws1_c00448{word-spacing:0.000000px;}
.ws11_c00448{word-spacing:0.100800px;}
.ws6_c00448{word-spacing:0.151200px;}
.ws9_c00448{word-spacing:0.158400px;}
.ws1c_c00448{word-spacing:0.172800px;}
.ws10_c00448{word-spacing:0.180000px;}
.ws1e_c00448{word-spacing:0.187200px;}
.ws1d_c00448{word-spacing:0.201600px;}
.ws15_c00448{word-spacing:0.892800px;}
.ws18_c00448{word-spacing:0.943200px;}
.ws16_c00448{word-spacing:1.029600px;}
.ws3_c00448{word-spacing:3.780000px;}
.ws2_c00448{word-spacing:3.801600px;}
.ws19_c00448{word-spacing:7.401600px;}
.ws5_c00448{word-spacing:12.074400px;}
.ws4_c00448{word-spacing:12.124800px;}
.wsa_c00448{word-spacing:16.740000px;}
.wsb_c00448{word-spacing:16.876800px;}
.wse_c00448{word-spacing:20.707200px;}
.wsf_c00448{word-spacing:20.736000px;}
.ws1f_c00448{word-spacing:24.688800px;}
.ws20_c00448{word-spacing:24.717600px;}
.ws12_c00448{word-spacing:26.517600px;}
.ws17_c00448{word-spacing:29.736000px;}
.ws7_c00448{word-spacing:36.568800px;}
.ws13_c00448{word-spacing:38.728800px;}
.ws14_c00448{word-spacing:38.750400px;}
.ws8_c00448{word-spacing:47.340000px;}
._0_c00448{width:26.395200px;}
.fc0_c00448{color:rgb(0,0,0);}
.fs0_c00448{font-size:72.000000px;}
.y0_c00448{bottom:0.000000px;}
.y2_c00448{bottom:46.830450px;}
.y1_c00448{bottom:67.530450px;}
.y1e_c00448{bottom:459.840450px;}
.y1d_c00448{bottom:499.890450px;}
.y1c_c00448{bottom:530.940450px;}
.y1b_c00448{bottom:560.640450px;}
.y1a_c00448{bottom:581.340450px;}
.y19_c00448{bottom:602.040450px;}
.y18_c00448{bottom:622.740450px;}
.y17_c00448{bottom:643.440450px;}
.y16_c00448{bottom:664.140450px;}
.y15_c00448{bottom:684.840450px;}
.y14_c00448{bottom:705.540450px;}
.y13_c00448{bottom:726.240450px;}
.y12_c00448{bottom:746.940450px;}
.y11_c00448{bottom:767.640450px;}
.y10_c00448{bottom:788.340450px;}
.yf_c00448{bottom:809.040450px;}
.ye_c00448{bottom:829.740450px;}
.yd_c00448{bottom:850.440450px;}
.yc_c00448{bottom:871.140450px;}
.yb_c00448{bottom:891.840450px;}
.ya_c00448{bottom:912.540450px;}
.y9_c00448{bottom:933.240450px;}
.y8_c00448{bottom:953.940450px;}
.y7_c00448{bottom:974.640450px;}
.y6_c00448{bottom:995.340450px;}
.y5_c00448{bottom:1035.390450px;}
.y4_c00448{bottom:1066.440450px;}
.y3_c00448{bottom:1097.490450px;}
.h1_c00448{height:63.175781px;}
.h2_c00448{height:64.546875px;}
.h3_c00448{height:75.093750px;}
.h0_c00448{height:1263.000000px;}
.w1_c00448{width:892.500000px;}
.w0_c00448{width:892.830000px;}
.x0_c00448{left:0.000000px;}
.x2_c00448{left:170.100000px;}
.x3_c00448{left:245.430000px;}
.x1_c00448{left:738.360000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls6_c00448{letter-spacing:-0.076800pt;}
.lsb_c00448{letter-spacing:-0.070400pt;}
.ls7_c00448{letter-spacing:-0.064000pt;}
.lsd_c00448{letter-spacing:-0.057600pt;}
.ls9_c00448{letter-spacing:-0.051200pt;}
.ls5_c00448{letter-spacing:-0.044800pt;}
.ls2_c00448{letter-spacing:-0.038400pt;}
.ls4_c00448{letter-spacing:-0.032000pt;}
.ls8_c00448{letter-spacing:-0.025600pt;}
.ls3_c00448{letter-spacing:-0.019200pt;}
.lsc_c00448{letter-spacing:-0.012800pt;}
.lsa_c00448{letter-spacing:-0.006400pt;}
.ls1_c00448{letter-spacing:0.000000pt;}
.ls0_c00448{letter-spacing:0.006400pt;}
.lse_c00448{letter-spacing:750.220800pt;}
.ws0_c00448{word-spacing:-17.792000pt;}
.ws1a_c00448{word-spacing:-2.464000pt;}
.ws1b_c00448{word-spacing:-2.348800pt;}
.wsc_c00448{word-spacing:-1.420800pt;}
.wsd_c00448{word-spacing:-1.395200pt;}
.ws1_c00448{word-spacing:0.000000pt;}
.ws11_c00448{word-spacing:0.089600pt;}
.ws6_c00448{word-spacing:0.134400pt;}
.ws9_c00448{word-spacing:0.140800pt;}
.ws1c_c00448{word-spacing:0.153600pt;}
.ws10_c00448{word-spacing:0.160000pt;}
.ws1e_c00448{word-spacing:0.166400pt;}
.ws1d_c00448{word-spacing:0.179200pt;}
.ws15_c00448{word-spacing:0.793600pt;}
.ws18_c00448{word-spacing:0.838400pt;}
.ws16_c00448{word-spacing:0.915200pt;}
.ws3_c00448{word-spacing:3.360000pt;}
.ws2_c00448{word-spacing:3.379200pt;}
.ws19_c00448{word-spacing:6.579200pt;}
.ws5_c00448{word-spacing:10.732800pt;}
.ws4_c00448{word-spacing:10.777600pt;}
.wsa_c00448{word-spacing:14.880000pt;}
.wsb_c00448{word-spacing:15.001600pt;}
.wse_c00448{word-spacing:18.406400pt;}
.wsf_c00448{word-spacing:18.432000pt;}
.ws1f_c00448{word-spacing:21.945600pt;}
.ws20_c00448{word-spacing:21.971200pt;}
.ws12_c00448{word-spacing:23.571200pt;}
.ws17_c00448{word-spacing:26.432000pt;}
.ws7_c00448{word-spacing:32.505600pt;}
.ws13_c00448{word-spacing:34.425600pt;}
.ws14_c00448{word-spacing:34.444800pt;}
.ws8_c00448{word-spacing:42.080000pt;}
._0_c00448{width:23.462400pt;}
.fs0_c00448{font-size:64.000000pt;}
.y0_c00448{bottom:0.000000pt;}
.y2_c00448{bottom:41.627067pt;}
.y1_c00448{bottom:60.027067pt;}
.y1e_c00448{bottom:408.747067pt;}
.y1d_c00448{bottom:444.347067pt;}
.y1c_c00448{bottom:471.947067pt;}
.y1b_c00448{bottom:498.347067pt;}
.y1a_c00448{bottom:516.747067pt;}
.y19_c00448{bottom:535.147067pt;}
.y18_c00448{bottom:553.547067pt;}
.y17_c00448{bottom:571.947067pt;}
.y16_c00448{bottom:590.347067pt;}
.y15_c00448{bottom:608.747067pt;}
.y14_c00448{bottom:627.147067pt;}
.y13_c00448{bottom:645.547067pt;}
.y12_c00448{bottom:663.947067pt;}
.y11_c00448{bottom:682.347067pt;}
.y10_c00448{bottom:700.747067pt;}
.yf_c00448{bottom:719.147067pt;}
.ye_c00448{bottom:737.547067pt;}
.yd_c00448{bottom:755.947067pt;}
.yc_c00448{bottom:774.347067pt;}
.yb_c00448{bottom:792.747067pt;}
.ya_c00448{bottom:811.147067pt;}
.y9_c00448{bottom:829.547067pt;}
.y8_c00448{bottom:847.947067pt;}
.y7_c00448{bottom:866.347067pt;}
.y6_c00448{bottom:884.747067pt;}
.y5_c00448{bottom:920.347067pt;}
.y4_c00448{bottom:947.947067pt;}
.y3_c00448{bottom:975.547067pt;}
.h1_c00448{height:56.156250pt;}
.h2_c00448{height:57.375000pt;}
.h3_c00448{height:66.750000pt;}
.h0_c00448{height:1122.666667pt;}
.w1_c00448{width:793.333333pt;}
.w0_c00448{width:793.626667pt;}
.x0_c00448{left:0.000000pt;}
.x2_c00448{left:151.200000pt;}
.x3_c00448{left:218.160000pt;}
.x1_c00448{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8ee07646be55889903b88bb1.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00449{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.ls0_c00449{letter-spacing:0.000000px;}
.ls1_c00449{letter-spacing:843.998400px;}
.sc__c00449{text-shadow:none;}
.sc0_c00449{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00449{-webkit-text-stroke:0px transparent;}
.sc0_c00449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00449{word-spacing:0.000000px;}
.fc0_c00449{color:rgb(0,0,0);}
.fs0_c00449{font-size:72.000000px;}
.y0_c00449{bottom:0.000000px;}
.y2_c00449{bottom:46.830450px;}
.y1_c00449{bottom:67.530450px;}
.y5_c00449{bottom:1017.390450px;}
.y4_c00449{bottom:1057.440450px;}
.y3_c00449{bottom:1097.490450px;}
.h1_c00449{height:63.175781px;}
.h2_c00449{height:64.546875px;}
.h0_c00449{height:1263.000000px;}
.w1_c00449{width:892.500000px;}
.w0_c00449{width:892.830000px;}
.x0_c00449{left:0.000000px;}
.x2_c00449{left:127.620000px;}
.x1_c00449{left:695.880000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls0_c00449{letter-spacing:0.000000pt;}
.ls1_c00449{letter-spacing:750.220800pt;}
.ws0_c00449{word-spacing:0.000000pt;}
.fs0_c00449{font-size:64.000000pt;}
.y0_c00449{bottom:0.000000pt;}
.y2_c00449{bottom:41.627067pt;}
.y1_c00449{bottom:60.027067pt;}
.y5_c00449{bottom:904.347067pt;}
.y4_c00449{bottom:939.947067pt;}
.y3_c00449{bottom:975.547067pt;}
.h1_c00449{height:56.156250pt;}
.h2_c00449{height:57.375000pt;}
.h0_c00449{height:1122.666667pt;}
.w1_c00449{width:793.333333pt;}
.w0_c00449{width:793.626667pt;}
.x0_c00449{left:0.000000pt;}
.x2_c00449{left:113.440000pt;}
.x1_c00449{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4281bedd143d11b81549d561.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.093262;font-style:normal;font-weight:normal;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_a7a00048f19db1d53bf95af1.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00450;src:url('chunks/assets/font_e98552df0a375c2281b6fac5.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;line-height:1.106934;font-style:normal;font-weight:normal;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_dd21c9d5718c2e03639cfd76.woff2')format("woff");}.ff4_c00450{font-family:ff4_c00450;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00450{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00450{vertical-align:0.000000px;}
.ls9_c00450{letter-spacing:-0.072000px;}
.lse_c00450{letter-spacing:-0.057600px;}
.lsc_c00450{letter-spacing:-0.050400px;}
.lsa_c00450{letter-spacing:-0.043200px;}
.lsd_c00450{letter-spacing:-0.036000px;}
.lsb_c00450{letter-spacing:-0.028800px;}
.ls8_c00450{letter-spacing:-0.021600px;}
.ls7_c00450{letter-spacing:-0.014400px;}
.ls6_c00450{letter-spacing:-0.007200px;}
.ls4_c00450{letter-spacing:0.000000px;}
.lsf_c00450{letter-spacing:0.007200px;}
.ls3_c00450{letter-spacing:0.014400px;}
.ls0_c00450{letter-spacing:0.016776px;}
.ls1_c00450{letter-spacing:0.033552px;}
.ls5_c00450{letter-spacing:0.075492px;}
.ls2_c00450{letter-spacing:0.144000px;}
.sc__c00450{text-shadow:none;}
.sc0_c00450{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00450{-webkit-text-stroke:0px transparent;}
.sc0_c00450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00450{word-spacing:-20.001600px;}
.ws30_c00450{word-spacing:-2.678400px;}
.ws6_c00450{word-spacing:-2.340000px;}
.ws7_c00450{word-spacing:-2.289600px;}
.wsc_c00450{word-spacing:-1.296000px;}
.wsb_c00450{word-spacing:-1.195200px;}
.ws1_c00450{word-spacing:0.000000px;}
.ws5_c00450{word-spacing:0.050400px;}
.wsf_c00450{word-spacing:0.086400px;}
.ws2_c00450{word-spacing:0.159372px;}
.ws4_c00450{word-spacing:0.165600px;}
.ws10_c00450{word-spacing:0.180000px;}
.ws2f_c00450{word-spacing:0.194400px;}
.ws3_c00450{word-spacing:0.234864px;}
.ws31_c00450{word-spacing:0.309600px;}
.ws23_c00450{word-spacing:2.736000px;}
.ws11_c00450{word-spacing:3.074400px;}
.ws20_c00450{word-spacing:3.441600px;}
.ws22_c00450{word-spacing:4.068000px;}
.ws21_c00450{word-spacing:4.075200px;}
.ws18_c00450{word-spacing:4.176000px;}
.ws1e_c00450{word-spacing:4.867200px;}
.ws1f_c00450{word-spacing:4.881600px;}
.ws2d_c00450{word-spacing:6.624000px;}
.ws16_c00450{word-spacing:6.674400px;}
.ws2e_c00450{word-spacing:6.753600px;}
.ws24_c00450{word-spacing:7.048800px;}
.ws19_c00450{word-spacing:8.488800px;}
.ws1b_c00450{word-spacing:9.892800px;}
.ws1a_c00450{word-spacing:9.936000px;}
.ws14_c00450{word-spacing:10.483200px;}
.ws15_c00450{word-spacing:10.555200px;}
.ws25_c00450{word-spacing:14.587200px;}
.ws13_c00450{word-spacing:17.085600px;}
.ws2a_c00450{word-spacing:17.114400px;}
.ws12_c00450{word-spacing:17.193600px;}
.wse_c00450{word-spacing:17.784000px;}
.wsd_c00450{word-spacing:17.848800px;}
.ws9_c00450{word-spacing:22.147200px;}
.wsa_c00450{word-spacing:22.500000px;}
.ws8_c00450{word-spacing:22.521600px;}
.ws26_c00450{word-spacing:23.198400px;}
.ws27_c00450{word-spacing:23.234400px;}
.ws1c_c00450{word-spacing:26.280000px;}
.ws1d_c00450{word-spacing:26.431200px;}
.ws28_c00450{word-spacing:29.361600px;}
.ws29_c00450{word-spacing:29.426400px;}
.ws17_c00450{word-spacing:38.347200px;}
.ws2c_c00450{word-spacing:50.227200px;}
.ws2b_c00450{word-spacing:50.241600px;}
._1_c00450{width:1.008000px;}
._0_c00450{width:153.248760px;}
.fc0_c00450{color:rgb(0,0,0);}
.fs0_c00450{font-size:72.000000px;}
.fs1_c00450{font-size:83.880000px;}
.y0_c00450{bottom:0.000000px;}
.y2_c00450{bottom:46.830450px;}
.y1_c00450{bottom:67.530450px;}
.y25_c00450{bottom:210.000450px;}
.y24_c00450{bottom:250.050450px;}
.y23_c00450{bottom:281.100450px;}
.y22_c00450{bottom:321.150450px;}
.y21_c00450{bottom:350.850450px;}
.y20_c00450{bottom:371.550450px;}
.y1f_c00450{bottom:392.250450px;}
.y1e_c00450{bottom:412.950450px;}
.y1d_c00450{bottom:433.650450px;}
.y1c_c00450{bottom:454.350450px;}
.y1b_c00450{bottom:475.050450px;}
.y1a_c00450{bottom:495.750450px;}
.y19_c00450{bottom:516.450450px;}
.y18_c00450{bottom:537.150450px;}
.y17_c00450{bottom:557.850450px;}
.y16_c00450{bottom:578.550450px;}
.y15_c00450{bottom:599.250450px;}
.y14_c00450{bottom:619.950450px;}
.y13_c00450{bottom:640.650450px;}
.y12_c00450{bottom:661.350450px;}
.y11_c00450{bottom:682.050450px;}
.y10_c00450{bottom:702.750450px;}
.yf_c00450{bottom:723.360450px;}
.ye_c00450{bottom:744.060450px;}
.yd_c00450{bottom:764.760450px;}
.yc_c00450{bottom:804.810450px;}
.yb_c00450{bottom:844.860450px;}
.ya_c00450{bottom:875.910450px;}
.y9_c00450{bottom:906.960450px;}
.y8_c00450{bottom:938.010450px;}
.y7_c00450{bottom:969.060450px;}
.y6_c00450{bottom:1000.110450px;}
.y5_c00450{bottom:1040.160450px;}
.y4_c00450{bottom:1070.404950px;}
.y3_c00450{bottom:1094.520450px;}
.h1_c00450{height:63.175781px;}
.h3_c00450{height:64.546875px;}
.h4_c00450{height:75.093750px;}
.h2_c00450{height:87.484219px;}
.h0_c00450{height:1263.000000px;}
.w1_c00450{width:892.500000px;}
.w0_c00450{width:892.830000px;}
.x0_c00450{left:0.000000px;}
.x2_c00450{left:170.100000px;}
.x3_c00450{left:197.100000px;}
.x4_c00450{left:229.498650px;}
.x5_c00450{left:245.430000px;}
.x1_c00450{left:738.360000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls9_c00450{letter-spacing:-0.064000pt;}
.lse_c00450{letter-spacing:-0.051200pt;}
.lsc_c00450{letter-spacing:-0.044800pt;}
.lsa_c00450{letter-spacing:-0.038400pt;}
.lsd_c00450{letter-spacing:-0.032000pt;}
.lsb_c00450{letter-spacing:-0.025600pt;}
.ls8_c00450{letter-spacing:-0.019200pt;}
.ls7_c00450{letter-spacing:-0.012800pt;}
.ls6_c00450{letter-spacing:-0.006400pt;}
.ls4_c00450{letter-spacing:0.000000pt;}
.lsf_c00450{letter-spacing:0.006400pt;}
.ls3_c00450{letter-spacing:0.012800pt;}
.ls0_c00450{letter-spacing:0.014912pt;}
.ls1_c00450{letter-spacing:0.029824pt;}
.ls5_c00450{letter-spacing:0.067104pt;}
.ls2_c00450{letter-spacing:0.128000pt;}
.ws0_c00450{word-spacing:-17.779200pt;}
.ws30_c00450{word-spacing:-2.380800pt;}
.ws6_c00450{word-spacing:-2.080000pt;}
.ws7_c00450{word-spacing:-2.035200pt;}
.wsc_c00450{word-spacing:-1.152000pt;}
.wsb_c00450{word-spacing:-1.062400pt;}
.ws1_c00450{word-spacing:0.000000pt;}
.ws5_c00450{word-spacing:0.044800pt;}
.wsf_c00450{word-spacing:0.076800pt;}
.ws2_c00450{word-spacing:0.141664pt;}
.ws4_c00450{word-spacing:0.147200pt;}
.ws10_c00450{word-spacing:0.160000pt;}
.ws2f_c00450{word-spacing:0.172800pt;}
.ws3_c00450{word-spacing:0.208768pt;}
.ws31_c00450{word-spacing:0.275200pt;}
.ws23_c00450{word-spacing:2.432000pt;}
.ws11_c00450{word-spacing:2.732800pt;}
.ws20_c00450{word-spacing:3.059200pt;}
.ws22_c00450{word-spacing:3.616000pt;}
.ws21_c00450{word-spacing:3.622400pt;}
.ws18_c00450{word-spacing:3.712000pt;}
.ws1e_c00450{word-spacing:4.326400pt;}
.ws1f_c00450{word-spacing:4.339200pt;}
.ws2d_c00450{word-spacing:5.888000pt;}
.ws16_c00450{word-spacing:5.932800pt;}
.ws2e_c00450{word-spacing:6.003200pt;}
.ws24_c00450{word-spacing:6.265600pt;}
.ws19_c00450{word-spacing:7.545600pt;}
.ws1b_c00450{word-spacing:8.793600pt;}
.ws1a_c00450{word-spacing:8.832000pt;}
.ws14_c00450{word-spacing:9.318400pt;}
.ws15_c00450{word-spacing:9.382400pt;}
.ws25_c00450{word-spacing:12.966400pt;}
.ws13_c00450{word-spacing:15.187200pt;}
.ws2a_c00450{word-spacing:15.212800pt;}
.ws12_c00450{word-spacing:15.283200pt;}
.wse_c00450{word-spacing:15.808000pt;}
.wsd_c00450{word-spacing:15.865600pt;}
.ws9_c00450{word-spacing:19.686400pt;}
.wsa_c00450{word-spacing:20.000000pt;}
.ws8_c00450{word-spacing:20.019200pt;}
.ws26_c00450{word-spacing:20.620800pt;}
.ws27_c00450{word-spacing:20.652800pt;}
.ws1c_c00450{word-spacing:23.360000pt;}
.ws1d_c00450{word-spacing:23.494400pt;}
.ws28_c00450{word-spacing:26.099200pt;}
.ws29_c00450{word-spacing:26.156800pt;}
.ws17_c00450{word-spacing:34.086400pt;}
.ws2c_c00450{word-spacing:44.646400pt;}
.ws2b_c00450{word-spacing:44.659200pt;}
._1_c00450{width:0.896000pt;}
._0_c00450{width:136.221120pt;}
.fs0_c00450{font-size:64.000000pt;}
.fs1_c00450{font-size:74.560000pt;}
.y0_c00450{bottom:0.000000pt;}
.y2_c00450{bottom:41.627067pt;}
.y1_c00450{bottom:60.027067pt;}
.y25_c00450{bottom:186.667067pt;}
.y24_c00450{bottom:222.267067pt;}
.y23_c00450{bottom:249.867067pt;}
.y22_c00450{bottom:285.467067pt;}
.y21_c00450{bottom:311.867067pt;}
.y20_c00450{bottom:330.267067pt;}
.y1f_c00450{bottom:348.667067pt;}
.y1e_c00450{bottom:367.067067pt;}
.y1d_c00450{bottom:385.467067pt;}
.y1c_c00450{bottom:403.867067pt;}
.y1b_c00450{bottom:422.267067pt;}
.y1a_c00450{bottom:440.667067pt;}
.y19_c00450{bottom:459.067067pt;}
.y18_c00450{bottom:477.467067pt;}
.y17_c00450{bottom:495.867067pt;}
.y16_c00450{bottom:514.267067pt;}
.y15_c00450{bottom:532.667067pt;}
.y14_c00450{bottom:551.067067pt;}
.y13_c00450{bottom:569.467067pt;}
.y12_c00450{bottom:587.867067pt;}
.y11_c00450{bottom:606.267067pt;}
.y10_c00450{bottom:624.667067pt;}
.yf_c00450{bottom:642.987067pt;}
.ye_c00450{bottom:661.387067pt;}
.yd_c00450{bottom:679.787067pt;}
.yc_c00450{bottom:715.387067pt;}
.yb_c00450{bottom:750.987067pt;}
.ya_c00450{bottom:778.587067pt;}
.y9_c00450{bottom:806.187067pt;}
.y8_c00450{bottom:833.787067pt;}
.y7_c00450{bottom:861.387067pt;}
.y6_c00450{bottom:888.987067pt;}
.y5_c00450{bottom:924.587067pt;}
.y4_c00450{bottom:951.471067pt;}
.y3_c00450{bottom:972.907067pt;}
.h1_c00450{height:56.156250pt;}
.h3_c00450{height:57.375000pt;}
.h4_c00450{height:66.750000pt;}
.h2_c00450{height:77.763750pt;}
.h0_c00450{height:1122.666667pt;}
.w1_c00450{width:793.333333pt;}
.w0_c00450{width:793.626667pt;}
.x0_c00450{left:0.000000pt;}
.x2_c00450{left:151.200000pt;}
.x3_c00450{left:175.200000pt;}
.x4_c00450{left:203.998800pt;}
.x5_c00450{left:218.160000pt;}
.x1_c00450{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c7dcfab1c4ccb51c96fb2d40.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.093262;font-style:normal;font-weight:normal;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_9afd83290044915c01cf99b1.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00451;src:url('chunks/assets/font_ad0326510f3db9bc0b44f35e.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;line-height:1.106934;font-style: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;}
.lsa_c00451{letter-spacing:-0.072000px;}
.ls7_c00451{letter-spacing:-0.064800px;}
.ls8_c00451{letter-spacing:-0.057600px;}
.ls3_c00451{letter-spacing:-0.050400px;}
.ls6_c00451{letter-spacing:-0.043200px;}
.ls4_c00451{letter-spacing:-0.036000px;}
.ls9_c00451{letter-spacing:-0.028800px;}
.ls5_c00451{letter-spacing:-0.021600px;}
.lsb_c00451{letter-spacing:-0.014400px;}
.ls2_c00451{letter-spacing:-0.007200px;}
.ls1_c00451{letter-spacing:0.000000px;}
.ls0_c00451{letter-spacing:0.067104px;}
.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;}
}
.ws21_c00451{word-spacing:-3.441600px;}
.ws2e_c00451{word-spacing:-3.038400px;}
.ws2d_c00451{word-spacing:-3.002400px;}
.ws39_c00451{word-spacing:-2.714400px;}
.ws38_c00451{word-spacing:-2.678400px;}
.ws36_c00451{word-spacing:-2.469600px;}
.ws35_c00451{word-spacing:-2.347200px;}
.ws28_c00451{word-spacing:-0.914400px;}
.ws29_c00451{word-spacing:-0.885600px;}
.ws30_c00451{word-spacing:-0.504000px;}
.ws0_c00451{word-spacing:0.000000px;}
.wsa_c00451{word-spacing:0.194400px;}
.ws37_c00451{word-spacing:0.936000px;}
.ws33_c00451{word-spacing:1.648800px;}
.ws34_c00451{word-spacing:1.663200px;}
.ws9_c00451{word-spacing:2.275200px;}
.ws8_c00451{word-spacing:2.296800px;}
.wsf_c00451{word-spacing:3.823200px;}
.ws10_c00451{word-spacing:4.140000px;}
.ws22_c00451{word-spacing:4.176000px;}
.ws24_c00451{word-spacing:4.795200px;}
.ws23_c00451{word-spacing:4.881600px;}
.ws2f_c00451{word-spacing:5.198400px;}
.ws15_c00451{word-spacing:5.234400px;}
.ws14_c00451{word-spacing:5.248800px;}
.ws1b_c00451{word-spacing:7.430400px;}
.ws3a_c00451{word-spacing:7.466400px;}
.ws3b_c00451{word-spacing:7.509600px;}
.ws2_c00451{word-spacing:7.725600px;}
.ws3_c00451{word-spacing:7.826400px;}
.wse_c00451{word-spacing:7.992000px;}
.wsd_c00451{word-spacing:8.121600px;}
.ws32_c00451{word-spacing:8.136000px;}
.ws1c_c00451{word-spacing:8.488800px;}
.ws17_c00451{word-spacing:9.187200px;}
.ws16_c00451{word-spacing:9.194400px;}
.ws2c_c00451{word-spacing:9.230400px;}
.ws11_c00451{word-spacing:11.037600px;}
.ws27_c00451{word-spacing:11.736000px;}
.ws2b_c00451{word-spacing:12.456000px;}
.ws2a_c00451{word-spacing:12.506400px;}
.ws1f_c00451{word-spacing:14.176800px;}
.ws20_c00451{word-spacing:14.277600px;}
.ws31_c00451{word-spacing:14.587200px;}
.wsb_c00451{word-spacing:14.889600px;}
.wsc_c00451{word-spacing:14.983200px;}
.ws1e_c00451{word-spacing:17.467200px;}
.ws1d_c00451{word-spacing:17.560800px;}
.ws12_c00451{word-spacing:17.820000px;}
.ws13_c00451{word-spacing:17.841600px;}
.ws26_c00451{word-spacing:19.994400px;}
.ws1a_c00451{word-spacing:20.340000px;}
.ws4_c00451{word-spacing:22.802400px;}
.ws5_c00451{word-spacing:22.860000px;}
.ws6_c00451{word-spacing:24.192000px;}
.ws7_c00451{word-spacing:24.206400px;}
.ws25_c00451{word-spacing:29.016000px;}
.ws18_c00451{word-spacing:34.322400px;}
.ws19_c00451{word-spacing:34.430400px;}
.ws1_c00451{word-spacing:187.589232px;}
._0_c00451{margin-left:-187.555680px;}
._1_c00451{width:1.202400px;}
.fc0_c00451{color:rgb(0,0,0);}
.fs0_c00451{font-size:72.000000px;}
.fs1_c00451{font-size:83.880000px;}
.y0_c00451{bottom:0.000000px;}
.y2_c00451{bottom:46.830450px;}
.y1_c00451{bottom:67.530450px;}
.y2c_c00451{bottom:136.920450px;}
.y2b_c00451{bottom:157.620450px;}
.y2a_c00451{bottom:178.320450px;}
.y29_c00451{bottom:199.020450px;}
.y28_c00451{bottom:219.720450px;}
.y27_c00451{bottom:240.420450px;}
.y26_c00451{bottom:261.120450px;}
.y25_c00451{bottom:281.820450px;}
.y24_c00451{bottom:302.520450px;}
.y23_c00451{bottom:323.220450px;}
.y22_c00451{bottom:343.920450px;}
.y21_c00451{bottom:364.620450px;}
.y20_c00451{bottom:385.320450px;}
.y1f_c00451{bottom:406.020450px;}
.y1e_c00451{bottom:426.720450px;}
.y1d_c00451{bottom:447.420450px;}
.y1c_c00451{bottom:468.120450px;}
.y1b_c00451{bottom:488.820450px;}
.y1a_c00451{bottom:509.520450px;}
.y19_c00451{bottom:530.220450px;}
.y18_c00451{bottom:550.920450px;}
.y17_c00451{bottom:571.620450px;}
.y16_c00451{bottom:592.320450px;}
.y15_c00451{bottom:613.020450px;}
.y14_c00451{bottom:633.720450px;}
.y13_c00451{bottom:654.420450px;}
.y12_c00451{bottom:675.120450px;}
.y11_c00451{bottom:695.820450px;}
.y10_c00451{bottom:716.520450px;}
.yf_c00451{bottom:737.220450px;}
.ye_c00451{bottom:757.920450px;}
.yd_c00451{bottom:778.620450px;}
.yc_c00451{bottom:799.320450px;}
.yb_c00451{bottom:820.020450px;}
.ya_c00451{bottom:860.070450px;}
.y9_c00451{bottom:900.120450px;}
.y8_c00451{bottom:931.170450px;}
.y7_c00451{bottom:962.220450px;}
.y6_c00451{bottom:993.270450px;}
.y5_c00451{bottom:1024.320450px;}
.y4_c00451{bottom:1064.370450px;}
.y3_c00451{bottom:1094.520450px;}
.h1_c00451{height:63.175781px;}
.h3_c00451{height:64.546875px;}
.h2_c00451{height:87.484219px;}
.h0_c00451{height:1263.000000px;}
.w1_c00451{width:892.500000px;}
.w0_c00451{width:892.830000px;}
.x0_c00451{left:0.000000px;}
.x2_c00451{left:127.620000px;}
.x3_c00451{left:181.620000px;}
.x4_c00451{left:202.950000px;}
.x1_c00451{left:695.880000px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.lsa_c00451{letter-spacing:-0.064000pt;}
.ls7_c00451{letter-spacing:-0.057600pt;}
.ls8_c00451{letter-spacing:-0.051200pt;}
.ls3_c00451{letter-spacing:-0.044800pt;}
.ls6_c00451{letter-spacing:-0.038400pt;}
.ls4_c00451{letter-spacing:-0.032000pt;}
.ls9_c00451{letter-spacing:-0.025600pt;}
.ls5_c00451{letter-spacing:-0.019200pt;}
.lsb_c00451{letter-spacing:-0.012800pt;}
.ls2_c00451{letter-spacing:-0.006400pt;}
.ls1_c00451{letter-spacing:0.000000pt;}
.ls0_c00451{letter-spacing:0.059648pt;}
.ws21_c00451{word-spacing:-3.059200pt;}
.ws2e_c00451{word-spacing:-2.700800pt;}
.ws2d_c00451{word-spacing:-2.668800pt;}
.ws39_c00451{word-spacing:-2.412800pt;}
.ws38_c00451{word-spacing:-2.380800pt;}
.ws36_c00451{word-spacing:-2.195200pt;}
.ws35_c00451{word-spacing:-2.086400pt;}
.ws28_c00451{word-spacing:-0.812800pt;}
.ws29_c00451{word-spacing:-0.787200pt;}
.ws30_c00451{word-spacing:-0.448000pt;}
.ws0_c00451{word-spacing:0.000000pt;}
.wsa_c00451{word-spacing:0.172800pt;}
.ws37_c00451{word-spacing:0.832000pt;}
.ws33_c00451{word-spacing:1.465600pt;}
.ws34_c00451{word-spacing:1.478400pt;}
.ws9_c00451{word-spacing:2.022400pt;}
.ws8_c00451{word-spacing:2.041600pt;}
.wsf_c00451{word-spacing:3.398400pt;}
.ws10_c00451{word-spacing:3.680000pt;}
.ws22_c00451{word-spacing:3.712000pt;}
.ws24_c00451{word-spacing:4.262400pt;}
.ws23_c00451{word-spacing:4.339200pt;}
.ws2f_c00451{word-spacing:4.620800pt;}
.ws15_c00451{word-spacing:4.652800pt;}
.ws14_c00451{word-spacing:4.665600pt;}
.ws1b_c00451{word-spacing:6.604800pt;}
.ws3a_c00451{word-spacing:6.636800pt;}
.ws3b_c00451{word-spacing:6.675200pt;}
.ws2_c00451{word-spacing:6.867200pt;}
.ws3_c00451{word-spacing:6.956800pt;}
.wse_c00451{word-spacing:7.104000pt;}
.wsd_c00451{word-spacing:7.219200pt;}
.ws32_c00451{word-spacing:7.232000pt;}
.ws1c_c00451{word-spacing:7.545600pt;}
.ws17_c00451{word-spacing:8.166400pt;}
.ws16_c00451{word-spacing:8.172800pt;}
.ws2c_c00451{word-spacing:8.204800pt;}
.ws11_c00451{word-spacing:9.811200pt;}
.ws27_c00451{word-spacing:10.432000pt;}
.ws2b_c00451{word-spacing:11.072000pt;}
.ws2a_c00451{word-spacing:11.116800pt;}
.ws1f_c00451{word-spacing:12.601600pt;}
.ws20_c00451{word-spacing:12.691200pt;}
.ws31_c00451{word-spacing:12.966400pt;}
.wsb_c00451{word-spacing:13.235200pt;}
.wsc_c00451{word-spacing:13.318400pt;}
.ws1e_c00451{word-spacing:15.526400pt;}
.ws1d_c00451{word-spacing:15.609600pt;}
.ws12_c00451{word-spacing:15.840000pt;}
.ws13_c00451{word-spacing:15.859200pt;}
.ws26_c00451{word-spacing:17.772800pt;}
.ws1a_c00451{word-spacing:18.080000pt;}
.ws4_c00451{word-spacing:20.268800pt;}
.ws5_c00451{word-spacing:20.320000pt;}
.ws6_c00451{word-spacing:21.504000pt;}
.ws7_c00451{word-spacing:21.516800pt;}
.ws25_c00451{word-spacing:25.792000pt;}
.ws18_c00451{word-spacing:30.508800pt;}
.ws19_c00451{word-spacing:30.604800pt;}
.ws1_c00451{word-spacing:166.745984pt;}
._0_c00451{margin-left:-166.716160pt;}
._1_c00451{width:1.068800pt;}
.fs0_c00451{font-size:64.000000pt;}
.fs1_c00451{font-size:74.560000pt;}
.y0_c00451{bottom:0.000000pt;}
.y2_c00451{bottom:41.627067pt;}
.y1_c00451{bottom:60.027067pt;}
.y2c_c00451{bottom:121.707067pt;}
.y2b_c00451{bottom:140.107067pt;}
.y2a_c00451{bottom:158.507067pt;}
.y29_c00451{bottom:176.907067pt;}
.y28_c00451{bottom:195.307067pt;}
.y27_c00451{bottom:213.707067pt;}
.y26_c00451{bottom:232.107067pt;}
.y25_c00451{bottom:250.507067pt;}
.y24_c00451{bottom:268.907067pt;}
.y23_c00451{bottom:287.307067pt;}
.y22_c00451{bottom:305.707067pt;}
.y21_c00451{bottom:324.107067pt;}
.y20_c00451{bottom:342.507067pt;}
.y1f_c00451{bottom:360.907067pt;}
.y1e_c00451{bottom:379.307067pt;}
.y1d_c00451{bottom:397.707067pt;}
.y1c_c00451{bottom:416.107067pt;}
.y1b_c00451{bottom:434.507067pt;}
.y1a_c00451{bottom:452.907067pt;}
.y19_c00451{bottom:471.307067pt;}
.y18_c00451{bottom:489.707067pt;}
.y17_c00451{bottom:508.107067pt;}
.y16_c00451{bottom:526.507067pt;}
.y15_c00451{bottom:544.907067pt;}
.y14_c00451{bottom:563.307067pt;}
.y13_c00451{bottom:581.707067pt;}
.y12_c00451{bottom:600.107067pt;}
.y11_c00451{bottom:618.507067pt;}
.y10_c00451{bottom:636.907067pt;}
.yf_c00451{bottom:655.307067pt;}
.ye_c00451{bottom:673.707067pt;}
.yd_c00451{bottom:692.107067pt;}
.yc_c00451{bottom:710.507067pt;}
.yb_c00451{bottom:728.907067pt;}
.ya_c00451{bottom:764.507067pt;}
.y9_c00451{bottom:800.107067pt;}
.y8_c00451{bottom:827.707067pt;}
.y7_c00451{bottom:855.307067pt;}
.y6_c00451{bottom:882.907067pt;}
.y5_c00451{bottom:910.507067pt;}
.y4_c00451{bottom:946.107067pt;}
.y3_c00451{bottom:972.907067pt;}
.h1_c00451{height:56.156250pt;}
.h3_c00451{height:57.375000pt;}
.h2_c00451{height:77.763750pt;}
.h0_c00451{height:1122.666667pt;}
.w1_c00451{width:793.333333pt;}
.w0_c00451{width:793.626667pt;}
.x0_c00451{left:0.000000pt;}
.x2_c00451{left:113.440000pt;}
.x3_c00451{left:161.440000pt;}
.x4_c00451{left:180.400000pt;}
.x1_c00451{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1216ac9d09f1d37be329b8d8.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.093262;font-style:normal;font-weight:normal;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_14ae69d6f03a4863b058dcf2.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.106934;font-style:normal;font-weight:normal;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_c9f6b0006f55bc6862b5089d.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lse_c00452{letter-spacing:-0.093600px;}
.lsf_c00452{letter-spacing:-0.086400px;}
.lsd_c00452{letter-spacing:-0.079200px;}
.ls6_c00452{letter-spacing:-0.072000px;}
.ls4_c00452{letter-spacing:-0.064800px;}
.lsa_c00452{letter-spacing:-0.057600px;}
.ls5_c00452{letter-spacing:-0.050400px;}
.ls3_c00452{letter-spacing:-0.043200px;}
.ls8_c00452{letter-spacing:-0.036000px;}
.ls7_c00452{letter-spacing:-0.028800px;}
.ls9_c00452{letter-spacing:-0.021600px;}
.lsc_c00452{letter-spacing:-0.014400px;}
.lsb_c00452{letter-spacing:-0.007200px;}
.ls2_c00452{letter-spacing:0.000000px;}
.ls0_c00452{letter-spacing:0.007200px;}
.ls1_c00452{letter-spacing:0.014400px;}
.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;}
}
.ws1c_c00452{word-spacing:-3.024000px;}
.ws20_c00452{word-spacing:-2.700000px;}
.ws21_c00452{word-spacing:-2.678400px;}
.ws3_c00452{word-spacing:-2.311200px;}
.wsd_c00452{word-spacing:-2.282400px;}
.ws19_c00452{word-spacing:-1.965600px;}
.ws8_c00452{word-spacing:-1.641600px;}
.ws17_c00452{word-spacing:-1.634400px;}
.ws9_c00452{word-spacing:-1.461600px;}
.ws7_c00452{word-spacing:-0.158400px;}
.ws0_c00452{word-spacing:0.000000px;}
.ws1_c00452{word-spacing:0.136800px;}
.ws23_c00452{word-spacing:0.151200px;}
.ws2_c00452{word-spacing:0.158400px;}
.ws27_c00452{word-spacing:0.165600px;}
.ws24_c00452{word-spacing:0.180000px;}
.ws6_c00452{word-spacing:0.187200px;}
.ws22_c00452{word-spacing:0.237600px;}
.ws1e_c00452{word-spacing:0.252000px;}
.wsb_c00452{word-spacing:0.878400px;}
.wsc_c00452{word-spacing:0.907200px;}
.ws4_c00452{word-spacing:0.914400px;}
.wsa_c00452{word-spacing:0.921600px;}
.ws2d_c00452{word-spacing:3.348000px;}
.ws2e_c00452{word-spacing:3.463200px;}
.ws10_c00452{word-spacing:5.508000px;}
.ws15_c00452{word-spacing:5.572800px;}
.ws14_c00452{word-spacing:5.587200px;}
.ws11_c00452{word-spacing:5.616000px;}
.ws1a_c00452{word-spacing:7.077600px;}
.ws1b_c00452{word-spacing:7.092000px;}
.ws2a_c00452{word-spacing:7.401600px;}
.wsf_c00452{word-spacing:9.547200px;}
.ws1f_c00452{word-spacing:9.907200px;}
.ws12_c00452{word-spacing:11.325600px;}
.ws13_c00452{word-spacing:11.354400px;}
.ws28_c00452{word-spacing:13.536000px;}
.ws29_c00452{word-spacing:13.564800px;}
.ws2b_c00452{word-spacing:19.584000px;}
.ws2c_c00452{word-spacing:19.634400px;}
.ws1d_c00452{word-spacing:23.616000px;}
.wse_c00452{word-spacing:23.940000px;}
.ws18_c00452{word-spacing:33.667200px;}
.ws16_c00452{word-spacing:37.648800px;}
.ws25_c00452{word-spacing:39.693600px;}
.ws26_c00452{word-spacing:39.801600px;}
.ws5_c00452{word-spacing:58.183200px;}
._0_c00452{width:1.152000px;}
.fc0_c00452{color:rgb(0,0,0);}
.fs0_c00452{font-size:72.000000px;}
.y0_c00452{bottom:0.000000px;}
.y2_c00452{bottom:46.830450px;}
.y1_c00452{bottom:67.530450px;}
.y29_c00452{bottom:150.780450px;}
.y28_c00452{bottom:190.830450px;}
.y27_c00452{bottom:221.880450px;}
.y26_c00452{bottom:252.930450px;}
.y25_c00452{bottom:283.980450px;}
.y24_c00452{bottom:315.030450px;}
.y23_c00452{bottom:355.080450px;}
.y22_c00452{bottom:395.040450px;}
.y21_c00452{bottom:426.000450px;}
.y20_c00452{bottom:457.050450px;}
.y1f_c00452{bottom:488.190450px;}
.y1e_c00452{bottom:519.240450px;}
.y1d_c00452{bottom:550.290450px;}
.y1c_c00452{bottom:579.990450px;}
.y1b_c00452{bottom:600.690450px;}
.y1a_c00452{bottom:621.390450px;}
.y19_c00452{bottom:642.090450px;}
.y18_c00452{bottom:662.790450px;}
.y17_c00452{bottom:683.490450px;}
.y16_c00452{bottom:704.190450px;}
.y15_c00452{bottom:724.890450px;}
.y14_c00452{bottom:745.590450px;}
.y13_c00452{bottom:766.290450px;}
.y12_c00452{bottom:786.990450px;}
.y11_c00452{bottom:807.690450px;}
.y10_c00452{bottom:828.390450px;}
.yf_c00452{bottom:849.090450px;}
.ye_c00452{bottom:869.790450px;}
.yd_c00452{bottom:890.490450px;}
.yc_c00452{bottom:911.190450px;}
.yb_c00452{bottom:931.890450px;}
.ya_c00452{bottom:952.590450px;}
.y9_c00452{bottom:973.290450px;}
.y8_c00452{bottom:993.990450px;}
.y7_c00452{bottom:1014.690450px;}
.y6_c00452{bottom:1035.390450px;}
.y5_c00452{bottom:1056.090450px;}
.y4_c00452{bottom:1076.790450px;}
.y3_c00452{bottom:1097.490450px;}
.h1_c00452{height:63.175781px;}
.h2_c00452{height:64.546875px;}
.h3_c00452{height:75.093750px;}
.h0_c00452{height:1263.000000px;}
.w1_c00452{width:892.500000px;}
.w0_c00452{width:892.830000px;}
.x0_c00452{left:0.000000px;}
.x2_c00452{left:170.100000px;}
.x3_c00452{left:245.430000px;}
.x1_c00452{left:738.360000px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.lse_c00452{letter-spacing:-0.083200pt;}
.lsf_c00452{letter-spacing:-0.076800pt;}
.lsd_c00452{letter-spacing:-0.070400pt;}
.ls6_c00452{letter-spacing:-0.064000pt;}
.ls4_c00452{letter-spacing:-0.057600pt;}
.lsa_c00452{letter-spacing:-0.051200pt;}
.ls5_c00452{letter-spacing:-0.044800pt;}
.ls3_c00452{letter-spacing:-0.038400pt;}
.ls8_c00452{letter-spacing:-0.032000pt;}
.ls7_c00452{letter-spacing:-0.025600pt;}
.ls9_c00452{letter-spacing:-0.019200pt;}
.lsc_c00452{letter-spacing:-0.012800pt;}
.lsb_c00452{letter-spacing:-0.006400pt;}
.ls2_c00452{letter-spacing:0.000000pt;}
.ls0_c00452{letter-spacing:0.006400pt;}
.ls1_c00452{letter-spacing:0.012800pt;}
.ws1c_c00452{word-spacing:-2.688000pt;}
.ws20_c00452{word-spacing:-2.400000pt;}
.ws21_c00452{word-spacing:-2.380800pt;}
.ws3_c00452{word-spacing:-2.054400pt;}
.wsd_c00452{word-spacing:-2.028800pt;}
.ws19_c00452{word-spacing:-1.747200pt;}
.ws8_c00452{word-spacing:-1.459200pt;}
.ws17_c00452{word-spacing:-1.452800pt;}
.ws9_c00452{word-spacing:-1.299200pt;}
.ws7_c00452{word-spacing:-0.140800pt;}
.ws0_c00452{word-spacing:0.000000pt;}
.ws1_c00452{word-spacing:0.121600pt;}
.ws23_c00452{word-spacing:0.134400pt;}
.ws2_c00452{word-spacing:0.140800pt;}
.ws27_c00452{word-spacing:0.147200pt;}
.ws24_c00452{word-spacing:0.160000pt;}
.ws6_c00452{word-spacing:0.166400pt;}
.ws22_c00452{word-spacing:0.211200pt;}
.ws1e_c00452{word-spacing:0.224000pt;}
.wsb_c00452{word-spacing:0.780800pt;}
.wsc_c00452{word-spacing:0.806400pt;}
.ws4_c00452{word-spacing:0.812800pt;}
.wsa_c00452{word-spacing:0.819200pt;}
.ws2d_c00452{word-spacing:2.976000pt;}
.ws2e_c00452{word-spacing:3.078400pt;}
.ws10_c00452{word-spacing:4.896000pt;}
.ws15_c00452{word-spacing:4.953600pt;}
.ws14_c00452{word-spacing:4.966400pt;}
.ws11_c00452{word-spacing:4.992000pt;}
.ws1a_c00452{word-spacing:6.291200pt;}
.ws1b_c00452{word-spacing:6.304000pt;}
.ws2a_c00452{word-spacing:6.579200pt;}
.wsf_c00452{word-spacing:8.486400pt;}
.ws1f_c00452{word-spacing:8.806400pt;}
.ws12_c00452{word-spacing:10.067200pt;}
.ws13_c00452{word-spacing:10.092800pt;}
.ws28_c00452{word-spacing:12.032000pt;}
.ws29_c00452{word-spacing:12.057600pt;}
.ws2b_c00452{word-spacing:17.408000pt;}
.ws2c_c00452{word-spacing:17.452800pt;}
.ws1d_c00452{word-spacing:20.992000pt;}
.wse_c00452{word-spacing:21.280000pt;}
.ws18_c00452{word-spacing:29.926400pt;}
.ws16_c00452{word-spacing:33.465600pt;}
.ws25_c00452{word-spacing:35.283200pt;}
.ws26_c00452{word-spacing:35.379200pt;}
.ws5_c00452{word-spacing:51.718400pt;}
._0_c00452{width:1.024000pt;}
.fs0_c00452{font-size:64.000000pt;}
.y0_c00452{bottom:0.000000pt;}
.y2_c00452{bottom:41.627067pt;}
.y1_c00452{bottom:60.027067pt;}
.y29_c00452{bottom:134.027067pt;}
.y28_c00452{bottom:169.627067pt;}
.y27_c00452{bottom:197.227067pt;}
.y26_c00452{bottom:224.827067pt;}
.y25_c00452{bottom:252.427067pt;}
.y24_c00452{bottom:280.027067pt;}
.y23_c00452{bottom:315.627067pt;}
.y22_c00452{bottom:351.147067pt;}
.y21_c00452{bottom:378.667067pt;}
.y20_c00452{bottom:406.267067pt;}
.y1f_c00452{bottom:433.947067pt;}
.y1e_c00452{bottom:461.547067pt;}
.y1d_c00452{bottom:489.147067pt;}
.y1c_c00452{bottom:515.547067pt;}
.y1b_c00452{bottom:533.947067pt;}
.y1a_c00452{bottom:552.347067pt;}
.y19_c00452{bottom:570.747067pt;}
.y18_c00452{bottom:589.147067pt;}
.y17_c00452{bottom:607.547067pt;}
.y16_c00452{bottom:625.947067pt;}
.y15_c00452{bottom:644.347067pt;}
.y14_c00452{bottom:662.747067pt;}
.y13_c00452{bottom:681.147067pt;}
.y12_c00452{bottom:699.547067pt;}
.y11_c00452{bottom:717.947067pt;}
.y10_c00452{bottom:736.347067pt;}
.yf_c00452{bottom:754.747067pt;}
.ye_c00452{bottom:773.147067pt;}
.yd_c00452{bottom:791.547067pt;}
.yc_c00452{bottom:809.947067pt;}
.yb_c00452{bottom:828.347067pt;}
.ya_c00452{bottom:846.747067pt;}
.y9_c00452{bottom:865.147067pt;}
.y8_c00452{bottom:883.547067pt;}
.y7_c00452{bottom:901.947067pt;}
.y6_c00452{bottom:920.347067pt;}
.y5_c00452{bottom:938.747067pt;}
.y4_c00452{bottom:957.147067pt;}
.y3_c00452{bottom:975.547067pt;}
.h1_c00452{height:56.156250pt;}
.h2_c00452{height:57.375000pt;}
.h3_c00452{height:66.750000pt;}
.h0_c00452{height:1122.666667pt;}
.w1_c00452{width:793.333333pt;}
.w0_c00452{width:793.626667pt;}
.x0_c00452{left:0.000000pt;}
.x2_c00452{left:151.200000pt;}
.x3_c00452{left:218.160000pt;}
.x1_c00452{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_03726848d7821000fb85a7b3.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.093262;font-style:normal;font-weight:normal;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_f2330c525ebfd4f2c4832042.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.106934;font-style: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;}
.ls4_c00453{letter-spacing:-0.072000px;}
.ls6_c00453{letter-spacing:-0.064800px;}
.ls9_c00453{letter-spacing:-0.057600px;}
.ls1_c00453{letter-spacing:-0.050400px;}
.ls5_c00453{letter-spacing:-0.043200px;}
.ls7_c00453{letter-spacing:-0.036000px;}
.ls8_c00453{letter-spacing:-0.028800px;}
.ls3_c00453{letter-spacing:-0.021600px;}
.lsb_c00453{letter-spacing:-0.014400px;}
.lsa_c00453{letter-spacing:-0.007200px;}
.ls0_c00453{letter-spacing:0.000000px;}
.ls2_c00453{letter-spacing:0.021600px;}
.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;}
}
.ws34_c00453{word-spacing:-3.384000px;}
.ws33_c00453{word-spacing:-3.348000px;}
.ws3f_c00453{word-spacing:-1.972800px;}
.ws20_c00453{word-spacing:-1.267200px;}
.ws17_c00453{word-spacing:-1.260000px;}
.ws21_c00453{word-spacing:-1.245600px;}
.ws16_c00453{word-spacing:-1.180800px;}
.ws4_c00453{word-spacing:-0.158400px;}
.ws3b_c00453{word-spacing:-0.136800px;}
.ws0_c00453{word-spacing:0.000000px;}
.ws27_c00453{word-spacing:0.151200px;}
.ws32_c00453{word-spacing:0.165600px;}
.ws38_c00453{word-spacing:0.187200px;}
.ws28_c00453{word-spacing:0.194400px;}
.ws13_c00453{word-spacing:0.799200px;}
.ws14_c00453{word-spacing:0.950400px;}
.ws11_c00453{word-spacing:1.296000px;}
.ws12_c00453{word-spacing:1.339200px;}
.ws2a_c00453{word-spacing:1.641600px;}
.ws9_c00453{word-spacing:1.648800px;}
.ws1a_c00453{word-spacing:1.677600px;}
.ws31_c00453{word-spacing:2.023200px;}
.ws25_c00453{word-spacing:2.325600px;}
.ws26_c00453{word-spacing:2.347200px;}
.ws29_c00453{word-spacing:3.420000px;}
.ws1d_c00453{word-spacing:4.132800px;}
.ws1c_c00453{word-spacing:4.147200px;}
.ws2e_c00453{word-spacing:4.363200px;}
.wsb_c00453{word-spacing:4.478400px;}
.wsa_c00453{word-spacing:4.500000px;}
.ws2d_c00453{word-spacing:4.514400px;}
.ws5_c00453{word-spacing:5.868000px;}
.ws8_c00453{word-spacing:5.882400px;}
.ws6_c00453{word-spacing:5.918400px;}
.ws7_c00453{word-spacing:5.983200px;}
.wsf_c00453{word-spacing:6.912000px;}
.ws10_c00453{word-spacing:7.063200px;}
.ws3c_c00453{word-spacing:7.423200px;}
.ws1b_c00453{word-spacing:8.481600px;}
.ws23_c00453{word-spacing:8.776800px;}
.ws22_c00453{word-spacing:8.820000px;}
.wse_c00453{word-spacing:12.088800px;}
.ws15_c00453{word-spacing:13.881600px;}
.ws3d_c00453{word-spacing:13.910400px;}
.ws30_c00453{word-spacing:14.248800px;}
.ws2f_c00453{word-spacing:14.270400px;}
.ws39_c00453{word-spacing:19.252800px;}
.ws3a_c00453{word-spacing:19.274400px;}
.ws35_c00453{word-spacing:21.031200px;}
.ws36_c00453{word-spacing:21.060000px;}
.ws37_c00453{word-spacing:21.283200px;}
.ws1e_c00453{word-spacing:21.693600px;}
.ws1f_c00453{word-spacing:21.794400px;}
.ws3e_c00453{word-spacing:21.816000px;}
.wsd_c00453{word-spacing:23.947200px;}
.wsc_c00453{word-spacing:24.055200px;}
.ws2_c00453{word-spacing:26.056800px;}
.ws1_c00453{word-spacing:26.186400px;}
.ws3_c00453{word-spacing:26.460000px;}
.ws24_c00453{word-spacing:27.223200px;}
.ws2b_c00453{word-spacing:27.900000px;}
.ws2c_c00453{word-spacing:27.914400px;}
.ws19_c00453{word-spacing:29.376000px;}
.ws18_c00453{word-spacing:29.440800px;}
._0_c00453{width:1.368000px;}
.fc0_c00453{color:rgb(0,0,0);}
.fs0_c00453{font-size:72.000000px;}
.y0_c00453{bottom:0.000000px;}
.y2_c00453{bottom:46.830450px;}
.y1_c00453{bottom:67.530450px;}
.y2e_c00453{bottom:139.080450px;}
.y2d_c00453{bottom:159.780450px;}
.y2c_c00453{bottom:180.480450px;}
.y2b_c00453{bottom:201.180450px;}
.y2a_c00453{bottom:221.880450px;}
.y29_c00453{bottom:242.580450px;}
.y28_c00453{bottom:263.280450px;}
.y27_c00453{bottom:283.980450px;}
.y26_c00453{bottom:304.680450px;}
.y25_c00453{bottom:344.730450px;}
.y24_c00453{bottom:375.690450px;}
.y23_c00453{bottom:406.740450px;}
.y22_c00453{bottom:446.790450px;}
.y21_c00453{bottom:476.490450px;}
.y20_c00453{bottom:497.190450px;}
.y1f_c00453{bottom:517.890450px;}
.y1e_c00453{bottom:538.590450px;}
.y1d_c00453{bottom:559.290450px;}
.y1c_c00453{bottom:579.990450px;}
.y1b_c00453{bottom:600.690450px;}
.y1a_c00453{bottom:621.390450px;}
.y19_c00453{bottom:642.090450px;}
.y18_c00453{bottom:662.790450px;}
.y17_c00453{bottom:683.490450px;}
.y16_c00453{bottom:704.190450px;}
.y15_c00453{bottom:724.890450px;}
.y14_c00453{bottom:745.590450px;}
.y13_c00453{bottom:766.290450px;}
.y12_c00453{bottom:786.990450px;}
.y11_c00453{bottom:807.690450px;}
.y10_c00453{bottom:828.390450px;}
.yf_c00453{bottom:849.090450px;}
.ye_c00453{bottom:869.790450px;}
.yd_c00453{bottom:890.490450px;}
.yc_c00453{bottom:911.190450px;}
.yb_c00453{bottom:931.890450px;}
.ya_c00453{bottom:952.590450px;}
.y9_c00453{bottom:973.290450px;}
.y8_c00453{bottom:993.990450px;}
.y7_c00453{bottom:1014.690450px;}
.y6_c00453{bottom:1035.390450px;}
.y5_c00453{bottom:1056.090450px;}
.y4_c00453{bottom:1076.790450px;}
.y3_c00453{bottom:1097.490450px;}
.h1_c00453{height:63.175781px;}
.h2_c00453{height:64.546875px;}
.h0_c00453{height:1263.000000px;}
.w1_c00453{width:892.500000px;}
.w0_c00453{width:892.830000px;}
.x0_c00453{left:0.000000px;}
.x2_c00453{left:127.620000px;}
.x3_c00453{left:202.950000px;}
.x1_c00453{left:695.880000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls4_c00453{letter-spacing:-0.064000pt;}
.ls6_c00453{letter-spacing:-0.057600pt;}
.ls9_c00453{letter-spacing:-0.051200pt;}
.ls1_c00453{letter-spacing:-0.044800pt;}
.ls5_c00453{letter-spacing:-0.038400pt;}
.ls7_c00453{letter-spacing:-0.032000pt;}
.ls8_c00453{letter-spacing:-0.025600pt;}
.ls3_c00453{letter-spacing:-0.019200pt;}
.lsb_c00453{letter-spacing:-0.012800pt;}
.lsa_c00453{letter-spacing:-0.006400pt;}
.ls0_c00453{letter-spacing:0.000000pt;}
.ls2_c00453{letter-spacing:0.019200pt;}
.ws34_c00453{word-spacing:-3.008000pt;}
.ws33_c00453{word-spacing:-2.976000pt;}
.ws3f_c00453{word-spacing:-1.753600pt;}
.ws20_c00453{word-spacing:-1.126400pt;}
.ws17_c00453{word-spacing:-1.120000pt;}
.ws21_c00453{word-spacing:-1.107200pt;}
.ws16_c00453{word-spacing:-1.049600pt;}
.ws4_c00453{word-spacing:-0.140800pt;}
.ws3b_c00453{word-spacing:-0.121600pt;}
.ws0_c00453{word-spacing:0.000000pt;}
.ws27_c00453{word-spacing:0.134400pt;}
.ws32_c00453{word-spacing:0.147200pt;}
.ws38_c00453{word-spacing:0.166400pt;}
.ws28_c00453{word-spacing:0.172800pt;}
.ws13_c00453{word-spacing:0.710400pt;}
.ws14_c00453{word-spacing:0.844800pt;}
.ws11_c00453{word-spacing:1.152000pt;}
.ws12_c00453{word-spacing:1.190400pt;}
.ws2a_c00453{word-spacing:1.459200pt;}
.ws9_c00453{word-spacing:1.465600pt;}
.ws1a_c00453{word-spacing:1.491200pt;}
.ws31_c00453{word-spacing:1.798400pt;}
.ws25_c00453{word-spacing:2.067200pt;}
.ws26_c00453{word-spacing:2.086400pt;}
.ws29_c00453{word-spacing:3.040000pt;}
.ws1d_c00453{word-spacing:3.673600pt;}
.ws1c_c00453{word-spacing:3.686400pt;}
.ws2e_c00453{word-spacing:3.878400pt;}
.wsb_c00453{word-spacing:3.980800pt;}
.wsa_c00453{word-spacing:4.000000pt;}
.ws2d_c00453{word-spacing:4.012800pt;}
.ws5_c00453{word-spacing:5.216000pt;}
.ws8_c00453{word-spacing:5.228800pt;}
.ws6_c00453{word-spacing:5.260800pt;}
.ws7_c00453{word-spacing:5.318400pt;}
.wsf_c00453{word-spacing:6.144000pt;}
.ws10_c00453{word-spacing:6.278400pt;}
.ws3c_c00453{word-spacing:6.598400pt;}
.ws1b_c00453{word-spacing:7.539200pt;}
.ws23_c00453{word-spacing:7.801600pt;}
.ws22_c00453{word-spacing:7.840000pt;}
.wse_c00453{word-spacing:10.745600pt;}
.ws15_c00453{word-spacing:12.339200pt;}
.ws3d_c00453{word-spacing:12.364800pt;}
.ws30_c00453{word-spacing:12.665600pt;}
.ws2f_c00453{word-spacing:12.684800pt;}
.ws39_c00453{word-spacing:17.113600pt;}
.ws3a_c00453{word-spacing:17.132800pt;}
.ws35_c00453{word-spacing:18.694400pt;}
.ws36_c00453{word-spacing:18.720000pt;}
.ws37_c00453{word-spacing:18.918400pt;}
.ws1e_c00453{word-spacing:19.283200pt;}
.ws1f_c00453{word-spacing:19.372800pt;}
.ws3e_c00453{word-spacing:19.392000pt;}
.wsd_c00453{word-spacing:21.286400pt;}
.wsc_c00453{word-spacing:21.382400pt;}
.ws2_c00453{word-spacing:23.161600pt;}
.ws1_c00453{word-spacing:23.276800pt;}
.ws3_c00453{word-spacing:23.520000pt;}
.ws24_c00453{word-spacing:24.198400pt;}
.ws2b_c00453{word-spacing:24.800000pt;}
.ws2c_c00453{word-spacing:24.812800pt;}
.ws19_c00453{word-spacing:26.112000pt;}
.ws18_c00453{word-spacing:26.169600pt;}
._0_c00453{width:1.216000pt;}
.fs0_c00453{font-size:64.000000pt;}
.y0_c00453{bottom:0.000000pt;}
.y2_c00453{bottom:41.627067pt;}
.y1_c00453{bottom:60.027067pt;}
.y2e_c00453{bottom:123.627067pt;}
.y2d_c00453{bottom:142.027067pt;}
.y2c_c00453{bottom:160.427067pt;}
.y2b_c00453{bottom:178.827067pt;}
.y2a_c00453{bottom:197.227067pt;}
.y29_c00453{bottom:215.627067pt;}
.y28_c00453{bottom:234.027067pt;}
.y27_c00453{bottom:252.427067pt;}
.y26_c00453{bottom:270.827067pt;}
.y25_c00453{bottom:306.427067pt;}
.y24_c00453{bottom:333.947067pt;}
.y23_c00453{bottom:361.547067pt;}
.y22_c00453{bottom:397.147067pt;}
.y21_c00453{bottom:423.547067pt;}
.y20_c00453{bottom:441.947067pt;}
.y1f_c00453{bottom:460.347067pt;}
.y1e_c00453{bottom:478.747067pt;}
.y1d_c00453{bottom:497.147067pt;}
.y1c_c00453{bottom:515.547067pt;}
.y1b_c00453{bottom:533.947067pt;}
.y1a_c00453{bottom:552.347067pt;}
.y19_c00453{bottom:570.747067pt;}
.y18_c00453{bottom:589.147067pt;}
.y17_c00453{bottom:607.547067pt;}
.y16_c00453{bottom:625.947067pt;}
.y15_c00453{bottom:644.347067pt;}
.y14_c00453{bottom:662.747067pt;}
.y13_c00453{bottom:681.147067pt;}
.y12_c00453{bottom:699.547067pt;}
.y11_c00453{bottom:717.947067pt;}
.y10_c00453{bottom:736.347067pt;}
.yf_c00453{bottom:754.747067pt;}
.ye_c00453{bottom:773.147067pt;}
.yd_c00453{bottom:791.547067pt;}
.yc_c00453{bottom:809.947067pt;}
.yb_c00453{bottom:828.347067pt;}
.ya_c00453{bottom:846.747067pt;}
.y9_c00453{bottom:865.147067pt;}
.y8_c00453{bottom:883.547067pt;}
.y7_c00453{bottom:901.947067pt;}
.y6_c00453{bottom:920.347067pt;}
.y5_c00453{bottom:938.747067pt;}
.y4_c00453{bottom:957.147067pt;}
.y3_c00453{bottom:975.547067pt;}
.h1_c00453{height:56.156250pt;}
.h2_c00453{height:57.375000pt;}
.h0_c00453{height:1122.666667pt;}
.w1_c00453{width:793.333333pt;}
.w0_c00453{width:793.626667pt;}
.x0_c00453{left:0.000000pt;}
.x2_c00453{left:113.440000pt;}
.x3_c00453{left:180.400000pt;}
.x1_c00453{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_03726848d7821000fb85a7b3.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.093262;font-style:normal;font-weight:normal;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_7ba3ffe04ca0475ac536a8b6.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.106934;font-style:normal;font-weight:normal;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_fac646739ecfe4946f118980.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls3_c00454{letter-spacing:-0.093600px;}
.lsa_c00454{letter-spacing:-0.086400px;}
.ls8_c00454{letter-spacing:-0.072000px;}
.lsc_c00454{letter-spacing:-0.064800px;}
.ls7_c00454{letter-spacing:-0.057600px;}
.ls5_c00454{letter-spacing:-0.050400px;}
.ls6_c00454{letter-spacing:-0.043200px;}
.ls2_c00454{letter-spacing:-0.036000px;}
.ls9_c00454{letter-spacing:-0.028800px;}
.lsb_c00454{letter-spacing:-0.021600px;}
.ls4_c00454{letter-spacing:-0.014400px;}
.lsd_c00454{letter-spacing:-0.007200px;}
.ls1_c00454{letter-spacing:0.000000px;}
.ls0_c00454{letter-spacing:0.041940px;}
.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;}
}
.wsa_c00454{word-spacing:-3.513600px;}
.wsb_c00454{word-spacing:-3.369600px;}
.ws15_c00454{word-spacing:-3.060000px;}
.ws14_c00454{word-spacing:-3.045600px;}
.ws24_c00454{word-spacing:-2.340000px;}
.ws2c_c00454{word-spacing:-2.080800px;}
.ws2d_c00454{word-spacing:-1.965600px;}
.ws8_c00454{word-spacing:-1.612800px;}
.ws1_c00454{word-spacing:-0.972000px;}
.ws10_c00454{word-spacing:-0.885600px;}
.ws2_c00454{word-spacing:-0.828000px;}
.ws11_c00454{word-spacing:-0.684000px;}
.ws0_c00454{word-spacing:0.000000px;}
.ws21_c00454{word-spacing:0.050328px;}
.ws18_c00454{word-spacing:0.158400px;}
.ws25_c00454{word-spacing:0.165600px;}
.wsf_c00454{word-spacing:0.194400px;}
.ws1e_c00454{word-spacing:0.482400px;}
.ws1d_c00454{word-spacing:0.576000px;}
.ws29_c00454{word-spacing:1.972800px;}
.ws6_c00454{word-spacing:3.052800px;}
.ws5_c00454{word-spacing:3.088800px;}
.ws2a_c00454{word-spacing:3.751200px;}
.ws1c_c00454{word-spacing:3.801600px;}
.ws1b_c00454{word-spacing:3.808800px;}
.ws32_c00454{word-spacing:4.500000px;}
.ws33_c00454{word-spacing:4.543200px;}
.ws1f_c00454{word-spacing:4.888800px;}
.ws20_c00454{word-spacing:4.975200px;}
.ws26_c00454{word-spacing:5.947200px;}
.ws13_c00454{word-spacing:6.242400px;}
.ws28_c00454{word-spacing:6.249600px;}
.ws27_c00454{word-spacing:6.278400px;}
.wse_c00454{word-spacing:6.328800px;}
.wsd_c00454{word-spacing:6.336000px;}
.ws12_c00454{word-spacing:6.364800px;}
.ws2f_c00454{word-spacing:7.322400px;}
.ws2e_c00454{word-spacing:7.401600px;}
.ws9_c00454{word-spacing:8.078400px;}
.wsc_c00454{word-spacing:8.467200px;}
.ws2b_c00454{word-spacing:12.081600px;}
.ws7_c00454{word-spacing:14.601600px;}
.ws34_c00454{word-spacing:15.213600px;}
.ws35_c00454{word-spacing:15.343200px;}
.ws31_c00454{word-spacing:21.391200px;}
.ws30_c00454{word-spacing:21.427200px;}
.ws3_c00454{word-spacing:21.722400px;}
.ws4_c00454{word-spacing:21.772800px;}
.ws19_c00454{word-spacing:25.740000px;}
.ws1a_c00454{word-spacing:25.776000px;}
.ws16_c00454{word-spacing:28.591200px;}
.ws17_c00454{word-spacing:28.648800px;}
.ws23_c00454{word-spacing:53.121600px;}
.ws22_c00454{word-spacing:53.136000px;}
._0_c00454{width:1.317600px;}
._1_c00454{width:187.555680px;}
.fc0_c00454{color:rgb(0,0,0);}
.fs0_c00454{font-size:72.000000px;}
.fs1_c00454{font-size:83.880000px;}
.y0_c00454{bottom:0.000000px;}
.y2_c00454{bottom:46.830450px;}
.y1_c00454{bottom:67.530450px;}
.y28_c00454{bottom:142.320450px;}
.y27_c00454{bottom:163.020450px;}
.y26_c00454{bottom:183.720450px;}
.y25_c00454{bottom:204.420450px;}
.y24_c00454{bottom:225.120450px;}
.y23_c00454{bottom:245.820450px;}
.y22_c00454{bottom:266.520450px;}
.y21_c00454{bottom:287.220450px;}
.y20_c00454{bottom:307.920450px;}
.y1f_c00454{bottom:328.620450px;}
.y1e_c00454{bottom:368.670450px;}
.y1d_c00454{bottom:399.720450px;}
.y1c_c00454{bottom:430.770450px;}
.y1b_c00454{bottom:470.820450px;}
.y1a_c00454{bottom:500.970450px;}
.y19_c00454{bottom:552.990450px;}
.y18_c00454{bottom:593.040450px;}
.y17_c00454{bottom:624.090450px;}
.y16_c00454{bottom:655.140450px;}
.y15_c00454{bottom:686.190450px;}
.y14_c00454{bottom:717.240450px;}
.y13_c00454{bottom:757.290450px;}
.y12_c00454{bottom:786.990450px;}
.y11_c00454{bottom:807.690450px;}
.y10_c00454{bottom:828.390450px;}
.yf_c00454{bottom:849.090450px;}
.ye_c00454{bottom:869.790450px;}
.yd_c00454{bottom:890.490450px;}
.yc_c00454{bottom:911.190450px;}
.yb_c00454{bottom:931.890450px;}
.ya_c00454{bottom:952.590450px;}
.y9_c00454{bottom:973.290450px;}
.y8_c00454{bottom:993.990450px;}
.y7_c00454{bottom:1014.690450px;}
.y6_c00454{bottom:1035.390450px;}
.y5_c00454{bottom:1056.090450px;}
.y4_c00454{bottom:1076.790450px;}
.y3_c00454{bottom:1097.490450px;}
.h1_c00454{height:63.175781px;}
.h2_c00454{height:64.546875px;}
.h3_c00454{height:87.484219px;}
.h0_c00454{height:1263.000000px;}
.w1_c00454{width:892.500000px;}
.w0_c00454{width:892.830000px;}
.x0_c00454{left:0.000000px;}
.x2_c00454{left:170.100000px;}
.x4_c00454{left:224.100000px;}
.x3_c00454{left:245.430000px;}
.x1_c00454{left:738.360000px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls3_c00454{letter-spacing:-0.083200pt;}
.lsa_c00454{letter-spacing:-0.076800pt;}
.ls8_c00454{letter-spacing:-0.064000pt;}
.lsc_c00454{letter-spacing:-0.057600pt;}
.ls7_c00454{letter-spacing:-0.051200pt;}
.ls5_c00454{letter-spacing:-0.044800pt;}
.ls6_c00454{letter-spacing:-0.038400pt;}
.ls2_c00454{letter-spacing:-0.032000pt;}
.ls9_c00454{letter-spacing:-0.025600pt;}
.lsb_c00454{letter-spacing:-0.019200pt;}
.ls4_c00454{letter-spacing:-0.012800pt;}
.lsd_c00454{letter-spacing:-0.006400pt;}
.ls1_c00454{letter-spacing:0.000000pt;}
.ls0_c00454{letter-spacing:0.037280pt;}
.wsa_c00454{word-spacing:-3.123200pt;}
.wsb_c00454{word-spacing:-2.995200pt;}
.ws15_c00454{word-spacing:-2.720000pt;}
.ws14_c00454{word-spacing:-2.707200pt;}
.ws24_c00454{word-spacing:-2.080000pt;}
.ws2c_c00454{word-spacing:-1.849600pt;}
.ws2d_c00454{word-spacing:-1.747200pt;}
.ws8_c00454{word-spacing:-1.433600pt;}
.ws1_c00454{word-spacing:-0.864000pt;}
.ws10_c00454{word-spacing:-0.787200pt;}
.ws2_c00454{word-spacing:-0.736000pt;}
.ws11_c00454{word-spacing:-0.608000pt;}
.ws0_c00454{word-spacing:0.000000pt;}
.ws21_c00454{word-spacing:0.044736pt;}
.ws18_c00454{word-spacing:0.140800pt;}
.ws25_c00454{word-spacing:0.147200pt;}
.wsf_c00454{word-spacing:0.172800pt;}
.ws1e_c00454{word-spacing:0.428800pt;}
.ws1d_c00454{word-spacing:0.512000pt;}
.ws29_c00454{word-spacing:1.753600pt;}
.ws6_c00454{word-spacing:2.713600pt;}
.ws5_c00454{word-spacing:2.745600pt;}
.ws2a_c00454{word-spacing:3.334400pt;}
.ws1c_c00454{word-spacing:3.379200pt;}
.ws1b_c00454{word-spacing:3.385600pt;}
.ws32_c00454{word-spacing:4.000000pt;}
.ws33_c00454{word-spacing:4.038400pt;}
.ws1f_c00454{word-spacing:4.345600pt;}
.ws20_c00454{word-spacing:4.422400pt;}
.ws26_c00454{word-spacing:5.286400pt;}
.ws13_c00454{word-spacing:5.548800pt;}
.ws28_c00454{word-spacing:5.555200pt;}
.ws27_c00454{word-spacing:5.580800pt;}
.wse_c00454{word-spacing:5.625600pt;}
.wsd_c00454{word-spacing:5.632000pt;}
.ws12_c00454{word-spacing:5.657600pt;}
.ws2f_c00454{word-spacing:6.508800pt;}
.ws2e_c00454{word-spacing:6.579200pt;}
.ws9_c00454{word-spacing:7.180800pt;}
.wsc_c00454{word-spacing:7.526400pt;}
.ws2b_c00454{word-spacing:10.739200pt;}
.ws7_c00454{word-spacing:12.979200pt;}
.ws34_c00454{word-spacing:13.523200pt;}
.ws35_c00454{word-spacing:13.638400pt;}
.ws31_c00454{word-spacing:19.014400pt;}
.ws30_c00454{word-spacing:19.046400pt;}
.ws3_c00454{word-spacing:19.308800pt;}
.ws4_c00454{word-spacing:19.353600pt;}
.ws19_c00454{word-spacing:22.880000pt;}
.ws1a_c00454{word-spacing:22.912000pt;}
.ws16_c00454{word-spacing:25.414400pt;}
.ws17_c00454{word-spacing:25.465600pt;}
.ws23_c00454{word-spacing:47.219200pt;}
.ws22_c00454{word-spacing:47.232000pt;}
._0_c00454{width:1.171200pt;}
._1_c00454{width:166.716160pt;}
.fs0_c00454{font-size:64.000000pt;}
.fs1_c00454{font-size:74.560000pt;}
.y0_c00454{bottom:0.000000pt;}
.y2_c00454{bottom:41.627067pt;}
.y1_c00454{bottom:60.027067pt;}
.y28_c00454{bottom:126.507067pt;}
.y27_c00454{bottom:144.907067pt;}
.y26_c00454{bottom:163.307067pt;}
.y25_c00454{bottom:181.707067pt;}
.y24_c00454{bottom:200.107067pt;}
.y23_c00454{bottom:218.507067pt;}
.y22_c00454{bottom:236.907067pt;}
.y21_c00454{bottom:255.307067pt;}
.y20_c00454{bottom:273.707067pt;}
.y1f_c00454{bottom:292.107067pt;}
.y1e_c00454{bottom:327.707067pt;}
.y1d_c00454{bottom:355.307067pt;}
.y1c_c00454{bottom:382.907067pt;}
.y1b_c00454{bottom:418.507067pt;}
.y1a_c00454{bottom:445.307067pt;}
.y19_c00454{bottom:491.547067pt;}
.y18_c00454{bottom:527.147067pt;}
.y17_c00454{bottom:554.747067pt;}
.y16_c00454{bottom:582.347067pt;}
.y15_c00454{bottom:609.947067pt;}
.y14_c00454{bottom:637.547067pt;}
.y13_c00454{bottom:673.147067pt;}
.y12_c00454{bottom:699.547067pt;}
.y11_c00454{bottom:717.947067pt;}
.y10_c00454{bottom:736.347067pt;}
.yf_c00454{bottom:754.747067pt;}
.ye_c00454{bottom:773.147067pt;}
.yd_c00454{bottom:791.547067pt;}
.yc_c00454{bottom:809.947067pt;}
.yb_c00454{bottom:828.347067pt;}
.ya_c00454{bottom:846.747067pt;}
.y9_c00454{bottom:865.147067pt;}
.y8_c00454{bottom:883.547067pt;}
.y7_c00454{bottom:901.947067pt;}
.y6_c00454{bottom:920.347067pt;}
.y5_c00454{bottom:938.747067pt;}
.y4_c00454{bottom:957.147067pt;}
.y3_c00454{bottom:975.547067pt;}
.h1_c00454{height:56.156250pt;}
.h2_c00454{height:57.375000pt;}
.h3_c00454{height:77.763750pt;}
.h0_c00454{height:1122.666667pt;}
.w1_c00454{width:793.333333pt;}
.w0_c00454{width:793.626667pt;}
.x0_c00454{left:0.000000pt;}
.x2_c00454{left:151.200000pt;}
.x4_c00454{left:199.200000pt;}
.x3_c00454{left:218.160000pt;}
.x1_c00454{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6055ad9561d2a90b0594fed7.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.093262;font-style:normal;font-weight:normal;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_50c4d391d6bc845357002be3.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.106934;font-style:normal;font-weight:normal;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_dd21c9d5718c2e03639cfd76.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00455{letter-spacing:-0.086400px;}
.lsc_c00455{letter-spacing:-0.079200px;}
.ls2_c00455{letter-spacing:-0.064800px;}
.ls8_c00455{letter-spacing:-0.057600px;}
.lsa_c00455{letter-spacing:-0.050400px;}
.ls1_c00455{letter-spacing:-0.043200px;}
.ls3_c00455{letter-spacing:-0.036000px;}
.ls9_c00455{letter-spacing:-0.028800px;}
.ls4_c00455{letter-spacing:-0.021600px;}
.ls5_c00455{letter-spacing:-0.014400px;}
.ls6_c00455{letter-spacing:-0.007200px;}
.ls0_c00455{letter-spacing:0.000000px;}
.ls7_c00455{letter-spacing:0.007200px;}
.sc__c00455{text-shadow:none;}
.sc0_c00455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00455{-webkit-text-stroke:0px transparent;}
.sc0_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00455{word-spacing:-20.001600px;}
.ws2_c00455{word-spacing:-3.038400px;}
.ws3_c00455{word-spacing:-3.016800px;}
.ws1c_c00455{word-spacing:-0.540000px;}
.ws1_c00455{word-spacing:0.000000px;}
.wsd_c00455{word-spacing:0.108000px;}
.ws14_c00455{word-spacing:0.165600px;}
.wsb_c00455{word-spacing:0.172800px;}
.wsa_c00455{word-spacing:0.180000px;}
.ws19_c00455{word-spacing:0.187200px;}
.ws2f_c00455{word-spacing:0.216000px;}
.wsc_c00455{word-spacing:0.266400px;}
.ws29_c00455{word-spacing:0.547200px;}
.ws28_c00455{word-spacing:0.604800px;}
.ws11_c00455{word-spacing:1.850400px;}
.ws12_c00455{word-spacing:2.102400px;}
.ws7_c00455{word-spacing:2.692800px;}
.ws6_c00455{word-spacing:2.750400px;}
.ws26_c00455{word-spacing:3.700800px;}
.ws27_c00455{word-spacing:3.837600px;}
.ws25_c00455{word-spacing:7.322400px;}
.ws24_c00455{word-spacing:7.394400px;}
.ws22_c00455{word-spacing:8.020800px;}
.ws21_c00455{word-spacing:8.100000px;}
.ws2c_c00455{word-spacing:8.121600px;}
.ws23_c00455{word-spacing:8.164800px;}
.ws5_c00455{word-spacing:10.620000px;}
.ws4_c00455{word-spacing:10.720800px;}
.ws2b_c00455{word-spacing:11.376000px;}
.ws8_c00455{word-spacing:11.952000px;}
.ws9_c00455{word-spacing:12.031200px;}
.ws2e_c00455{word-spacing:13.507200px;}
.ws2d_c00455{word-spacing:13.514400px;}
.ws10_c00455{word-spacing:14.976000px;}
.wsf_c00455{word-spacing:15.026400px;}
.ws1f_c00455{word-spacing:15.566400px;}
.ws20_c00455{word-spacing:15.703200px;}
.ws1d_c00455{word-spacing:16.473600px;}
.ws1e_c00455{word-spacing:16.531200px;}
.ws2a_c00455{word-spacing:23.580000px;}
.ws15_c00455{word-spacing:28.274400px;}
.ws16_c00455{word-spacing:28.281600px;}
.wse_c00455{word-spacing:29.325600px;}
.ws17_c00455{word-spacing:31.816800px;}
.ws18_c00455{word-spacing:31.896000px;}
.ws1a_c00455{word-spacing:35.460000px;}
.ws13_c00455{word-spacing:42.660000px;}
.ws1b_c00455{word-spacing:44.128800px;}
._0_c00455{width:1.080000px;}
.fc0_c00455{color:rgb(0,0,0);}
.fs0_c00455{font-size:72.000000px;}
.y0_c00455{bottom:0.000000px;}
.y2_c00455{bottom:46.830450px;}
.y1_c00455{bottom:67.530450px;}
.y2a_c00455{bottom:174.180450px;}
.y29_c00455{bottom:214.230450px;}
.y28_c00455{bottom:254.280450px;}
.y27_c00455{bottom:283.980450px;}
.y26_c00455{bottom:304.680450px;}
.y25_c00455{bottom:325.380450px;}
.y24_c00455{bottom:346.080450px;}
.y23_c00455{bottom:366.690450px;}
.y22_c00455{bottom:387.390450px;}
.y21_c00455{bottom:408.090450px;}
.y20_c00455{bottom:428.790450px;}
.y1f_c00455{bottom:449.490450px;}
.y1e_c00455{bottom:470.190450px;}
.y1d_c00455{bottom:490.890450px;}
.y1c_c00455{bottom:511.590450px;}
.y1b_c00455{bottom:532.290450px;}
.y1a_c00455{bottom:552.990450px;}
.y19_c00455{bottom:593.040450px;}
.y18_c00455{bottom:624.090450px;}
.y17_c00455{bottom:655.140450px;}
.y16_c00455{bottom:695.190450px;}
.y15_c00455{bottom:724.890450px;}
.y14_c00455{bottom:745.590450px;}
.y13_c00455{bottom:766.290450px;}
.y12_c00455{bottom:786.990450px;}
.y11_c00455{bottom:807.690450px;}
.y10_c00455{bottom:828.390450px;}
.yf_c00455{bottom:849.090450px;}
.ye_c00455{bottom:869.790450px;}
.yd_c00455{bottom:890.490450px;}
.yc_c00455{bottom:911.190450px;}
.yb_c00455{bottom:931.890450px;}
.ya_c00455{bottom:952.590450px;}
.y9_c00455{bottom:973.290450px;}
.y8_c00455{bottom:993.990450px;}
.y7_c00455{bottom:1014.690450px;}
.y6_c00455{bottom:1035.390450px;}
.y5_c00455{bottom:1056.090450px;}
.y4_c00455{bottom:1076.790450px;}
.y3_c00455{bottom:1097.490450px;}
.h1_c00455{height:63.175781px;}
.h2_c00455{height:64.546875px;}
.h3_c00455{height:75.093750px;}
.h0_c00455{height:1263.000000px;}
.w1_c00455{width:892.500000px;}
.w0_c00455{width:892.830000px;}
.x0_c00455{left:0.000000px;}
.x2_c00455{left:127.620000px;}
.x3_c00455{left:202.950000px;}
.x1_c00455{left:695.880000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.lsb_c00455{letter-spacing:-0.076800pt;}
.lsc_c00455{letter-spacing:-0.070400pt;}
.ls2_c00455{letter-spacing:-0.057600pt;}
.ls8_c00455{letter-spacing:-0.051200pt;}
.lsa_c00455{letter-spacing:-0.044800pt;}
.ls1_c00455{letter-spacing:-0.038400pt;}
.ls3_c00455{letter-spacing:-0.032000pt;}
.ls9_c00455{letter-spacing:-0.025600pt;}
.ls4_c00455{letter-spacing:-0.019200pt;}
.ls5_c00455{letter-spacing:-0.012800pt;}
.ls6_c00455{letter-spacing:-0.006400pt;}
.ls0_c00455{letter-spacing:0.000000pt;}
.ls7_c00455{letter-spacing:0.006400pt;}
.ws0_c00455{word-spacing:-17.779200pt;}
.ws2_c00455{word-spacing:-2.700800pt;}
.ws3_c00455{word-spacing:-2.681600pt;}
.ws1c_c00455{word-spacing:-0.480000pt;}
.ws1_c00455{word-spacing:0.000000pt;}
.wsd_c00455{word-spacing:0.096000pt;}
.ws14_c00455{word-spacing:0.147200pt;}
.wsb_c00455{word-spacing:0.153600pt;}
.wsa_c00455{word-spacing:0.160000pt;}
.ws19_c00455{word-spacing:0.166400pt;}
.ws2f_c00455{word-spacing:0.192000pt;}
.wsc_c00455{word-spacing:0.236800pt;}
.ws29_c00455{word-spacing:0.486400pt;}
.ws28_c00455{word-spacing:0.537600pt;}
.ws11_c00455{word-spacing:1.644800pt;}
.ws12_c00455{word-spacing:1.868800pt;}
.ws7_c00455{word-spacing:2.393600pt;}
.ws6_c00455{word-spacing:2.444800pt;}
.ws26_c00455{word-spacing:3.289600pt;}
.ws27_c00455{word-spacing:3.411200pt;}
.ws25_c00455{word-spacing:6.508800pt;}
.ws24_c00455{word-spacing:6.572800pt;}
.ws22_c00455{word-spacing:7.129600pt;}
.ws21_c00455{word-spacing:7.200000pt;}
.ws2c_c00455{word-spacing:7.219200pt;}
.ws23_c00455{word-spacing:7.257600pt;}
.ws5_c00455{word-spacing:9.440000pt;}
.ws4_c00455{word-spacing:9.529600pt;}
.ws2b_c00455{word-spacing:10.112000pt;}
.ws8_c00455{word-spacing:10.624000pt;}
.ws9_c00455{word-spacing:10.694400pt;}
.ws2e_c00455{word-spacing:12.006400pt;}
.ws2d_c00455{word-spacing:12.012800pt;}
.ws10_c00455{word-spacing:13.312000pt;}
.wsf_c00455{word-spacing:13.356800pt;}
.ws1f_c00455{word-spacing:13.836800pt;}
.ws20_c00455{word-spacing:13.958400pt;}
.ws1d_c00455{word-spacing:14.643200pt;}
.ws1e_c00455{word-spacing:14.694400pt;}
.ws2a_c00455{word-spacing:20.960000pt;}
.ws15_c00455{word-spacing:25.132800pt;}
.ws16_c00455{word-spacing:25.139200pt;}
.wse_c00455{word-spacing:26.067200pt;}
.ws17_c00455{word-spacing:28.281600pt;}
.ws18_c00455{word-spacing:28.352000pt;}
.ws1a_c00455{word-spacing:31.520000pt;}
.ws13_c00455{word-spacing:37.920000pt;}
.ws1b_c00455{word-spacing:39.225600pt;}
._0_c00455{width:0.960000pt;}
.fs0_c00455{font-size:64.000000pt;}
.y0_c00455{bottom:0.000000pt;}
.y2_c00455{bottom:41.627067pt;}
.y1_c00455{bottom:60.027067pt;}
.y2a_c00455{bottom:154.827067pt;}
.y29_c00455{bottom:190.427067pt;}
.y28_c00455{bottom:226.027067pt;}
.y27_c00455{bottom:252.427067pt;}
.y26_c00455{bottom:270.827067pt;}
.y25_c00455{bottom:289.227067pt;}
.y24_c00455{bottom:307.627067pt;}
.y23_c00455{bottom:325.947067pt;}
.y22_c00455{bottom:344.347067pt;}
.y21_c00455{bottom:362.747067pt;}
.y20_c00455{bottom:381.147067pt;}
.y1f_c00455{bottom:399.547067pt;}
.y1e_c00455{bottom:417.947067pt;}
.y1d_c00455{bottom:436.347067pt;}
.y1c_c00455{bottom:454.747067pt;}
.y1b_c00455{bottom:473.147067pt;}
.y1a_c00455{bottom:491.547067pt;}
.y19_c00455{bottom:527.147067pt;}
.y18_c00455{bottom:554.747067pt;}
.y17_c00455{bottom:582.347067pt;}
.y16_c00455{bottom:617.947067pt;}
.y15_c00455{bottom:644.347067pt;}
.y14_c00455{bottom:662.747067pt;}
.y13_c00455{bottom:681.147067pt;}
.y12_c00455{bottom:699.547067pt;}
.y11_c00455{bottom:717.947067pt;}
.y10_c00455{bottom:736.347067pt;}
.yf_c00455{bottom:754.747067pt;}
.ye_c00455{bottom:773.147067pt;}
.yd_c00455{bottom:791.547067pt;}
.yc_c00455{bottom:809.947067pt;}
.yb_c00455{bottom:828.347067pt;}
.ya_c00455{bottom:846.747067pt;}
.y9_c00455{bottom:865.147067pt;}
.y8_c00455{bottom:883.547067pt;}
.y7_c00455{bottom:901.947067pt;}
.y6_c00455{bottom:920.347067pt;}
.y5_c00455{bottom:938.747067pt;}
.y4_c00455{bottom:957.147067pt;}
.y3_c00455{bottom:975.547067pt;}
.h1_c00455{height:56.156250pt;}
.h2_c00455{height:57.375000pt;}
.h3_c00455{height:66.750000pt;}
.h0_c00455{height:1122.666667pt;}
.w1_c00455{width:793.333333pt;}
.w0_c00455{width:793.626667pt;}
.x0_c00455{left:0.000000pt;}
.x2_c00455{left:113.440000pt;}
.x3_c00455{left:180.400000pt;}
.x1_c00455{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b809bc84c04eccd153474301.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.093262;font-style:normal;font-weight:normal;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_f8bcdd8dfc5bc97b408dd347.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00456{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.ls7_c00456{letter-spacing:-0.086400px;}
.lsc_c00456{letter-spacing:-0.072000px;}
.lsb_c00456{letter-spacing:-0.064800px;}
.ls2_c00456{letter-spacing:-0.057600px;}
.ls9_c00456{letter-spacing:-0.050400px;}
.ls5_c00456{letter-spacing:-0.043200px;}
.ls8_c00456{letter-spacing:-0.036000px;}
.ls6_c00456{letter-spacing:-0.028800px;}
.ls3_c00456{letter-spacing:-0.021600px;}
.lsa_c00456{letter-spacing:-0.014400px;}
.ls4_c00456{letter-spacing:-0.007200px;}
.ls1_c00456{letter-spacing:0.000000px;}
.ls0_c00456{letter-spacing:0.007200px;}
.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;}
}
.ws23_c00456{word-spacing:-3.729600px;}
.ws2c_c00456{word-spacing:-3.052800px;}
.ws26_c00456{word-spacing:-3.038400px;}
.ws22_c00456{word-spacing:-2.995200px;}
.ws25_c00456{word-spacing:-2.959200px;}
.wsb_c00456{word-spacing:-1.620000px;}
.wsc_c00456{word-spacing:-1.598400px;}
.ws21_c00456{word-spacing:-1.267200px;}
.ws2b_c00456{word-spacing:-1.231200px;}
.ws1a_c00456{word-spacing:-0.914400px;}
.ws1_c00456{word-spacing:-0.504000px;}
.ws0_c00456{word-spacing:0.000000px;}
.ws1d_c00456{word-spacing:0.129600px;}
.ws13_c00456{word-spacing:0.172800px;}
.ws6_c00456{word-spacing:0.180000px;}
.ws18_c00456{word-spacing:0.187200px;}
.ws1e_c00456{word-spacing:0.194400px;}
.ws19_c00456{word-spacing:0.252000px;}
.ws28_c00456{word-spacing:0.532800px;}
.ws27_c00456{word-spacing:0.640800px;}
.wsd_c00456{word-spacing:1.987200px;}
.wse_c00456{word-spacing:2.044800px;}
.ws7_c00456{word-spacing:3.045600px;}
.ws9_c00456{word-spacing:3.621600px;}
.ws8_c00456{word-spacing:3.816000px;}
.ws15_c00456{word-spacing:4.147200px;}
.ws14_c00456{word-spacing:4.161600px;}
.ws10_c00456{word-spacing:4.867200px;}
.wsf_c00456{word-spacing:4.874400px;}
.ws24_c00456{word-spacing:6.300000px;}
.ws1c_c00456{word-spacing:6.343200px;}
.ws2a_c00456{word-spacing:8.121600px;}
.ws12_c00456{word-spacing:8.928000px;}
.ws29_c00456{word-spacing:9.568800px;}
.ws2_c00456{word-spacing:10.231200px;}
.ws3_c00456{word-spacing:10.332000px;}
.ws17_c00456{word-spacing:12.081600px;}
.ws16_c00456{word-spacing:12.117600px;}
.wsa_c00456{word-spacing:13.089600px;}
.ws2d_c00456{word-spacing:16.034400px;}
.ws11_c00456{word-spacing:22.096800px;}
.ws5_c00456{word-spacing:23.126400px;}
.ws4_c00456{word-spacing:23.227200px;}
.ws20_c00456{word-spacing:23.522400px;}
.ws1f_c00456{word-spacing:23.572800px;}
.ws1b_c00456{word-spacing:26.856000px;}
._0_c00456{width:1.152000px;}
.fc0_c00456{color:rgb(0,0,0);}
.fs0_c00456{font-size:72.000000px;}
.y0_c00456{bottom:0.000000px;}
.y2_c00456{bottom:46.830450px;}
.y1_c00456{bottom:67.530450px;}
.y27_c00456{bottom:224.580450px;}
.y26_c00456{bottom:254.280450px;}
.y25_c00456{bottom:274.980450px;}
.y24_c00456{bottom:295.680450px;}
.y23_c00456{bottom:316.380450px;}
.y22_c00456{bottom:337.080450px;}
.y21_c00456{bottom:357.690450px;}
.y20_c00456{bottom:378.390450px;}
.y1f_c00456{bottom:399.090450px;}
.y1e_c00456{bottom:419.790450px;}
.y1d_c00456{bottom:440.490450px;}
.y1c_c00456{bottom:461.190450px;}
.y1b_c00456{bottom:481.890450px;}
.y1a_c00456{bottom:502.590450px;}
.y19_c00456{bottom:523.290450px;}
.y18_c00456{bottom:543.990450px;}
.y17_c00456{bottom:564.690450px;}
.y16_c00456{bottom:585.390450px;}
.y15_c00456{bottom:606.090450px;}
.y14_c00456{bottom:626.790450px;}
.y13_c00456{bottom:666.840450px;}
.y12_c00456{bottom:697.890450px;}
.y11_c00456{bottom:728.940450px;}
.y10_c00456{bottom:768.990450px;}
.yf_c00456{bottom:798.690450px;}
.ye_c00456{bottom:819.390450px;}
.yd_c00456{bottom:840.090450px;}
.yc_c00456{bottom:860.790450px;}
.yb_c00456{bottom:881.490450px;}
.ya_c00456{bottom:902.190450px;}
.y9_c00456{bottom:922.890450px;}
.y8_c00456{bottom:943.590450px;}
.y7_c00456{bottom:964.290450px;}
.y6_c00456{bottom:1004.340450px;}
.y5_c00456{bottom:1035.390450px;}
.y4_c00456{bottom:1066.440450px;}
.y3_c00456{bottom:1097.490450px;}
.h1_c00456{height:63.175781px;}
.h2_c00456{height:64.546875px;}
.h0_c00456{height:1263.000000px;}
.w1_c00456{width:892.500000px;}
.w0_c00456{width:892.830000px;}
.x0_c00456{left:0.000000px;}
.x2_c00456{left:170.100000px;}
.x3_c00456{left:245.430000px;}
.x1_c00456{left:738.360000px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls7_c00456{letter-spacing:-0.076800pt;}
.lsc_c00456{letter-spacing:-0.064000pt;}
.lsb_c00456{letter-spacing:-0.057600pt;}
.ls2_c00456{letter-spacing:-0.051200pt;}
.ls9_c00456{letter-spacing:-0.044800pt;}
.ls5_c00456{letter-spacing:-0.038400pt;}
.ls8_c00456{letter-spacing:-0.032000pt;}
.ls6_c00456{letter-spacing:-0.025600pt;}
.ls3_c00456{letter-spacing:-0.019200pt;}
.lsa_c00456{letter-spacing:-0.012800pt;}
.ls4_c00456{letter-spacing:-0.006400pt;}
.ls1_c00456{letter-spacing:0.000000pt;}
.ls0_c00456{letter-spacing:0.006400pt;}
.ws23_c00456{word-spacing:-3.315200pt;}
.ws2c_c00456{word-spacing:-2.713600pt;}
.ws26_c00456{word-spacing:-2.700800pt;}
.ws22_c00456{word-spacing:-2.662400pt;}
.ws25_c00456{word-spacing:-2.630400pt;}
.wsb_c00456{word-spacing:-1.440000pt;}
.wsc_c00456{word-spacing:-1.420800pt;}
.ws21_c00456{word-spacing:-1.126400pt;}
.ws2b_c00456{word-spacing:-1.094400pt;}
.ws1a_c00456{word-spacing:-0.812800pt;}
.ws1_c00456{word-spacing:-0.448000pt;}
.ws0_c00456{word-spacing:0.000000pt;}
.ws1d_c00456{word-spacing:0.115200pt;}
.ws13_c00456{word-spacing:0.153600pt;}
.ws6_c00456{word-spacing:0.160000pt;}
.ws18_c00456{word-spacing:0.166400pt;}
.ws1e_c00456{word-spacing:0.172800pt;}
.ws19_c00456{word-spacing:0.224000pt;}
.ws28_c00456{word-spacing:0.473600pt;}
.ws27_c00456{word-spacing:0.569600pt;}
.wsd_c00456{word-spacing:1.766400pt;}
.wse_c00456{word-spacing:1.817600pt;}
.ws7_c00456{word-spacing:2.707200pt;}
.ws9_c00456{word-spacing:3.219200pt;}
.ws8_c00456{word-spacing:3.392000pt;}
.ws15_c00456{word-spacing:3.686400pt;}
.ws14_c00456{word-spacing:3.699200pt;}
.ws10_c00456{word-spacing:4.326400pt;}
.wsf_c00456{word-spacing:4.332800pt;}
.ws24_c00456{word-spacing:5.600000pt;}
.ws1c_c00456{word-spacing:5.638400pt;}
.ws2a_c00456{word-spacing:7.219200pt;}
.ws12_c00456{word-spacing:7.936000pt;}
.ws29_c00456{word-spacing:8.505600pt;}
.ws2_c00456{word-spacing:9.094400pt;}
.ws3_c00456{word-spacing:9.184000pt;}
.ws17_c00456{word-spacing:10.739200pt;}
.ws16_c00456{word-spacing:10.771200pt;}
.wsa_c00456{word-spacing:11.635200pt;}
.ws2d_c00456{word-spacing:14.252800pt;}
.ws11_c00456{word-spacing:19.641600pt;}
.ws5_c00456{word-spacing:20.556800pt;}
.ws4_c00456{word-spacing:20.646400pt;}
.ws20_c00456{word-spacing:20.908800pt;}
.ws1f_c00456{word-spacing:20.953600pt;}
.ws1b_c00456{word-spacing:23.872000pt;}
._0_c00456{width:1.024000pt;}
.fs0_c00456{font-size:64.000000pt;}
.y0_c00456{bottom:0.000000pt;}
.y2_c00456{bottom:41.627067pt;}
.y1_c00456{bottom:60.027067pt;}
.y27_c00456{bottom:199.627067pt;}
.y26_c00456{bottom:226.027067pt;}
.y25_c00456{bottom:244.427067pt;}
.y24_c00456{bottom:262.827067pt;}
.y23_c00456{bottom:281.227067pt;}
.y22_c00456{bottom:299.627067pt;}
.y21_c00456{bottom:317.947067pt;}
.y20_c00456{bottom:336.347067pt;}
.y1f_c00456{bottom:354.747067pt;}
.y1e_c00456{bottom:373.147067pt;}
.y1d_c00456{bottom:391.547067pt;}
.y1c_c00456{bottom:409.947067pt;}
.y1b_c00456{bottom:428.347067pt;}
.y1a_c00456{bottom:446.747067pt;}
.y19_c00456{bottom:465.147067pt;}
.y18_c00456{bottom:483.547067pt;}
.y17_c00456{bottom:501.947067pt;}
.y16_c00456{bottom:520.347067pt;}
.y15_c00456{bottom:538.747067pt;}
.y14_c00456{bottom:557.147067pt;}
.y13_c00456{bottom:592.747067pt;}
.y12_c00456{bottom:620.347067pt;}
.y11_c00456{bottom:647.947067pt;}
.y10_c00456{bottom:683.547067pt;}
.yf_c00456{bottom:709.947067pt;}
.ye_c00456{bottom:728.347067pt;}
.yd_c00456{bottom:746.747067pt;}
.yc_c00456{bottom:765.147067pt;}
.yb_c00456{bottom:783.547067pt;}
.ya_c00456{bottom:801.947067pt;}
.y9_c00456{bottom:820.347067pt;}
.y8_c00456{bottom:838.747067pt;}
.y7_c00456{bottom:857.147067pt;}
.y6_c00456{bottom:892.747067pt;}
.y5_c00456{bottom:920.347067pt;}
.y4_c00456{bottom:947.947067pt;}
.y3_c00456{bottom:975.547067pt;}
.h1_c00456{height:56.156250pt;}
.h2_c00456{height:57.375000pt;}
.h0_c00456{height:1122.666667pt;}
.w1_c00456{width:793.333333pt;}
.w0_c00456{width:793.626667pt;}
.x0_c00456{left:0.000000pt;}
.x2_c00456{left:151.200000pt;}
.x3_c00456{left:218.160000pt;}
.x1_c00456{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_39903d4c13b77590ac8d7e44.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.093262;font-style:normal;font-weight:normal;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_4d9bb6de34c03f34b3d52a78.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.106934;font-style: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;}
.ls4_c00457{letter-spacing:-0.093600px;}
.lsb_c00457{letter-spacing:-0.086400px;}
.ls6_c00457{letter-spacing:-0.079200px;}
.lse_c00457{letter-spacing:-0.072000px;}
.ls7_c00457{letter-spacing:-0.064800px;}
.ls3_c00457{letter-spacing:-0.057600px;}
.lsa_c00457{letter-spacing:-0.050400px;}
.ls8_c00457{letter-spacing:-0.043200px;}
.ls9_c00457{letter-spacing:-0.036000px;}
.lsc_c00457{letter-spacing:-0.028800px;}
.ls2_c00457{letter-spacing:-0.021600px;}
.lsd_c00457{letter-spacing:-0.014400px;}
.ls5_c00457{letter-spacing:-0.007200px;}
.ls1_c00457{letter-spacing:0.000000px;}
.ls0_c00457{letter-spacing:0.007200px;}
.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;}
}
.ws11_c00457{word-spacing:-3.751200px;}
.ws12_c00457{word-spacing:-3.715200px;}
.ws3a_c00457{word-spacing:-3.384000px;}
.ws39_c00457{word-spacing:-3.369600px;}
.ws9_c00457{word-spacing:-3.081600px;}
.wsa_c00457{word-spacing:-3.002400px;}
.ws2e_c00457{word-spacing:-2.289600px;}
.ws2a_c00457{word-spacing:-1.936800px;}
.ws21_c00457{word-spacing:-1.252800px;}
.wsd_c00457{word-spacing:-1.231200px;}
.ws4_c00457{word-spacing:-0.180000px;}
.ws5_c00457{word-spacing:-0.108000px;}
.ws0_c00457{word-spacing:0.000000px;}
.ws18_c00457{word-spacing:0.093600px;}
.ws29_c00457{word-spacing:0.194400px;}
.ws2c_c00457{word-spacing:1.274400px;}
.ws2b_c00457{word-spacing:1.533600px;}
.ws1b_c00457{word-spacing:2.376000px;}
.ws19_c00457{word-spacing:4.464000px;}
.ws1a_c00457{word-spacing:4.500000px;}
.ws2f_c00457{word-spacing:4.838400px;}
.ws1f_c00457{word-spacing:4.852800px;}
.ws20_c00457{word-spacing:4.881600px;}
.ws1_c00457{word-spacing:5.580000px;}
.ws35_c00457{word-spacing:5.587200px;}
.ws34_c00457{word-spacing:5.961600px;}
.ws33_c00457{word-spacing:5.983200px;}
.ws25_c00457{word-spacing:6.235200px;}
.ws26_c00457{word-spacing:6.350400px;}
.ws27_c00457{word-spacing:6.631200px;}
.ws28_c00457{word-spacing:6.652800px;}
.ws2d_c00457{word-spacing:6.660000px;}
.ws10_c00457{word-spacing:7.048800px;}
.wse_c00457{word-spacing:7.336800px;}
.ws15_c00457{word-spacing:7.387200px;}
.wsf_c00457{word-spacing:7.416000px;}
.ws8_c00457{word-spacing:8.136000px;}
.ws7_c00457{word-spacing:8.143200px;}
.ws32_c00457{word-spacing:11.340000px;}
.ws31_c00457{word-spacing:11.354400px;}
.wsb_c00457{word-spacing:11.721600px;}
.wsc_c00457{word-spacing:11.858400px;}
.ws16_c00457{word-spacing:12.052800px;}
.ws17_c00457{word-spacing:12.067200px;}
.ws1e_c00457{word-spacing:17.877600px;}
.ws13_c00457{word-spacing:18.187200px;}
.ws14_c00457{word-spacing:18.223200px;}
.ws38_c00457{word-spacing:18.532800px;}
.ws37_c00457{word-spacing:18.568800px;}
.ws1d_c00457{word-spacing:20.001600px;}
.ws1c_c00457{word-spacing:20.037600px;}
.ws2_c00457{word-spacing:20.311200px;}
.ws6_c00457{word-spacing:20.325600px;}
.ws3_c00457{word-spacing:20.412000px;}
.ws36_c00457{word-spacing:23.954400px;}
.ws30_c00457{word-spacing:27.892800px;}
.ws23_c00457{word-spacing:32.925600px;}
.ws24_c00457{word-spacing:32.947200px;}
.ws22_c00457{word-spacing:55.627200px;}
._0_c00457{margin-left:-5.400000px;}
._1_c00457{width:1.152000px;}
.fc0_c00457{color:rgb(0,0,0);}
.fs0_c00457{font-size:72.000000px;}
.y0_c00457{bottom:0.000000px;}
.y2_c00457{bottom:46.830450px;}
.y1_c00457{bottom:67.530450px;}
.y2c_c00457{bottom:139.080450px;}
.y2b_c00457{bottom:159.780450px;}
.y2a_c00457{bottom:180.480450px;}
.y29_c00457{bottom:201.180450px;}
.y28_c00457{bottom:221.880450px;}
.y27_c00457{bottom:242.580450px;}
.y26_c00457{bottom:263.280450px;}
.y25_c00457{bottom:283.980450px;}
.y24_c00457{bottom:304.680450px;}
.y23_c00457{bottom:325.380450px;}
.y22_c00457{bottom:346.080450px;}
.y21_c00457{bottom:366.690450px;}
.y20_c00457{bottom:406.740450px;}
.y1f_c00457{bottom:437.790450px;}
.y1e_c00457{bottom:468.840450px;}
.y1d_c00457{bottom:499.890450px;}
.y1c_c00457{bottom:530.940450px;}
.y1b_c00457{bottom:560.640450px;}
.y1a_c00457{bottom:581.340450px;}
.y19_c00457{bottom:602.040450px;}
.y18_c00457{bottom:622.740450px;}
.y17_c00457{bottom:643.440450px;}
.y16_c00457{bottom:664.140450px;}
.y15_c00457{bottom:684.840450px;}
.y14_c00457{bottom:705.540450px;}
.y13_c00457{bottom:726.240450px;}
.y12_c00457{bottom:746.940450px;}
.y11_c00457{bottom:767.640450px;}
.y10_c00457{bottom:788.340450px;}
.yf_c00457{bottom:809.040450px;}
.ye_c00457{bottom:829.740450px;}
.yd_c00457{bottom:850.440450px;}
.yc_c00457{bottom:871.140450px;}
.yb_c00457{bottom:891.840450px;}
.ya_c00457{bottom:912.540450px;}
.y9_c00457{bottom:933.240450px;}
.y8_c00457{bottom:953.940450px;}
.y7_c00457{bottom:974.640450px;}
.y6_c00457{bottom:995.340450px;}
.y5_c00457{bottom:1035.390450px;}
.y4_c00457{bottom:1066.440450px;}
.y3_c00457{bottom:1097.490450px;}
.h1_c00457{height:63.175781px;}
.h2_c00457{height:64.546875px;}
.h0_c00457{height:1263.000000px;}
.w1_c00457{width:892.500000px;}
.w0_c00457{width:892.830000px;}
.x0_c00457{left:0.000000px;}
.x2_c00457{left:127.620000px;}
.x3_c00457{left:202.950000px;}
.x1_c00457{left:695.880000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls4_c00457{letter-spacing:-0.083200pt;}
.lsb_c00457{letter-spacing:-0.076800pt;}
.ls6_c00457{letter-spacing:-0.070400pt;}
.lse_c00457{letter-spacing:-0.064000pt;}
.ls7_c00457{letter-spacing:-0.057600pt;}
.ls3_c00457{letter-spacing:-0.051200pt;}
.lsa_c00457{letter-spacing:-0.044800pt;}
.ls8_c00457{letter-spacing:-0.038400pt;}
.ls9_c00457{letter-spacing:-0.032000pt;}
.lsc_c00457{letter-spacing:-0.025600pt;}
.ls2_c00457{letter-spacing:-0.019200pt;}
.lsd_c00457{letter-spacing:-0.012800pt;}
.ls5_c00457{letter-spacing:-0.006400pt;}
.ls1_c00457{letter-spacing:0.000000pt;}
.ls0_c00457{letter-spacing:0.006400pt;}
.ws11_c00457{word-spacing:-3.334400pt;}
.ws12_c00457{word-spacing:-3.302400pt;}
.ws3a_c00457{word-spacing:-3.008000pt;}
.ws39_c00457{word-spacing:-2.995200pt;}
.ws9_c00457{word-spacing:-2.739200pt;}
.wsa_c00457{word-spacing:-2.668800pt;}
.ws2e_c00457{word-spacing:-2.035200pt;}
.ws2a_c00457{word-spacing:-1.721600pt;}
.ws21_c00457{word-spacing:-1.113600pt;}
.wsd_c00457{word-spacing:-1.094400pt;}
.ws4_c00457{word-spacing:-0.160000pt;}
.ws5_c00457{word-spacing:-0.096000pt;}
.ws0_c00457{word-spacing:0.000000pt;}
.ws18_c00457{word-spacing:0.083200pt;}
.ws29_c00457{word-spacing:0.172800pt;}
.ws2c_c00457{word-spacing:1.132800pt;}
.ws2b_c00457{word-spacing:1.363200pt;}
.ws1b_c00457{word-spacing:2.112000pt;}
.ws19_c00457{word-spacing:3.968000pt;}
.ws1a_c00457{word-spacing:4.000000pt;}
.ws2f_c00457{word-spacing:4.300800pt;}
.ws1f_c00457{word-spacing:4.313600pt;}
.ws20_c00457{word-spacing:4.339200pt;}
.ws1_c00457{word-spacing:4.960000pt;}
.ws35_c00457{word-spacing:4.966400pt;}
.ws34_c00457{word-spacing:5.299200pt;}
.ws33_c00457{word-spacing:5.318400pt;}
.ws25_c00457{word-spacing:5.542400pt;}
.ws26_c00457{word-spacing:5.644800pt;}
.ws27_c00457{word-spacing:5.894400pt;}
.ws28_c00457{word-spacing:5.913600pt;}
.ws2d_c00457{word-spacing:5.920000pt;}
.ws10_c00457{word-spacing:6.265600pt;}
.wse_c00457{word-spacing:6.521600pt;}
.ws15_c00457{word-spacing:6.566400pt;}
.wsf_c00457{word-spacing:6.592000pt;}
.ws8_c00457{word-spacing:7.232000pt;}
.ws7_c00457{word-spacing:7.238400pt;}
.ws32_c00457{word-spacing:10.080000pt;}
.ws31_c00457{word-spacing:10.092800pt;}
.wsb_c00457{word-spacing:10.419200pt;}
.wsc_c00457{word-spacing:10.540800pt;}
.ws16_c00457{word-spacing:10.713600pt;}
.ws17_c00457{word-spacing:10.726400pt;}
.ws1e_c00457{word-spacing:15.891200pt;}
.ws13_c00457{word-spacing:16.166400pt;}
.ws14_c00457{word-spacing:16.198400pt;}
.ws38_c00457{word-spacing:16.473600pt;}
.ws37_c00457{word-spacing:16.505600pt;}
.ws1d_c00457{word-spacing:17.779200pt;}
.ws1c_c00457{word-spacing:17.811200pt;}
.ws2_c00457{word-spacing:18.054400pt;}
.ws6_c00457{word-spacing:18.067200pt;}
.ws3_c00457{word-spacing:18.144000pt;}
.ws36_c00457{word-spacing:21.292800pt;}
.ws30_c00457{word-spacing:24.793600pt;}
.ws23_c00457{word-spacing:29.267200pt;}
.ws24_c00457{word-spacing:29.286400pt;}
.ws22_c00457{word-spacing:49.446400pt;}
._0_c00457{margin-left:-4.800000pt;}
._1_c00457{width:1.024000pt;}
.fs0_c00457{font-size:64.000000pt;}
.y0_c00457{bottom:0.000000pt;}
.y2_c00457{bottom:41.627067pt;}
.y1_c00457{bottom:60.027067pt;}
.y2c_c00457{bottom:123.627067pt;}
.y2b_c00457{bottom:142.027067pt;}
.y2a_c00457{bottom:160.427067pt;}
.y29_c00457{bottom:178.827067pt;}
.y28_c00457{bottom:197.227067pt;}
.y27_c00457{bottom:215.627067pt;}
.y26_c00457{bottom:234.027067pt;}
.y25_c00457{bottom:252.427067pt;}
.y24_c00457{bottom:270.827067pt;}
.y23_c00457{bottom:289.227067pt;}
.y22_c00457{bottom:307.627067pt;}
.y21_c00457{bottom:325.947067pt;}
.y20_c00457{bottom:361.547067pt;}
.y1f_c00457{bottom:389.147067pt;}
.y1e_c00457{bottom:416.747067pt;}
.y1d_c00457{bottom:444.347067pt;}
.y1c_c00457{bottom:471.947067pt;}
.y1b_c00457{bottom:498.347067pt;}
.y1a_c00457{bottom:516.747067pt;}
.y19_c00457{bottom:535.147067pt;}
.y18_c00457{bottom:553.547067pt;}
.y17_c00457{bottom:571.947067pt;}
.y16_c00457{bottom:590.347067pt;}
.y15_c00457{bottom:608.747067pt;}
.y14_c00457{bottom:627.147067pt;}
.y13_c00457{bottom:645.547067pt;}
.y12_c00457{bottom:663.947067pt;}
.y11_c00457{bottom:682.347067pt;}
.y10_c00457{bottom:700.747067pt;}
.yf_c00457{bottom:719.147067pt;}
.ye_c00457{bottom:737.547067pt;}
.yd_c00457{bottom:755.947067pt;}
.yc_c00457{bottom:774.347067pt;}
.yb_c00457{bottom:792.747067pt;}
.ya_c00457{bottom:811.147067pt;}
.y9_c00457{bottom:829.547067pt;}
.y8_c00457{bottom:847.947067pt;}
.y7_c00457{bottom:866.347067pt;}
.y6_c00457{bottom:884.747067pt;}
.y5_c00457{bottom:920.347067pt;}
.y4_c00457{bottom:947.947067pt;}
.y3_c00457{bottom:975.547067pt;}
.h1_c00457{height:56.156250pt;}
.h2_c00457{height:57.375000pt;}
.h0_c00457{height:1122.666667pt;}
.w1_c00457{width:793.333333pt;}
.w0_c00457{width:793.626667pt;}
.x0_c00457{left:0.000000pt;}
.x2_c00457{left:113.440000pt;}
.x3_c00457{left:180.400000pt;}
.x1_c00457{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3c74b44af70b165d409c9982.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.093262;font-style:normal;font-weight:normal;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_0af2588a219447da5379b5e7.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.106934;font-style:normal;font-weight:normal;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_104d59d101d088bb1f2d839d.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls8_c00458{letter-spacing:-0.079200px;}
.lsd_c00458{letter-spacing:-0.072000px;}
.ls5_c00458{letter-spacing:-0.064800px;}
.lsb_c00458{letter-spacing:-0.057600px;}
.lsc_c00458{letter-spacing:-0.050400px;}
.lsa_c00458{letter-spacing:-0.043200px;}
.ls3_c00458{letter-spacing:-0.036000px;}
.ls4_c00458{letter-spacing:-0.028800px;}
.ls9_c00458{letter-spacing:-0.021600px;}
.ls6_c00458{letter-spacing:-0.014400px;}
.ls7_c00458{letter-spacing:-0.007200px;}
.ls2_c00458{letter-spacing:0.000000px;}
.ls0_c00458{letter-spacing:0.014400px;}
.ls1_c00458{letter-spacing:0.050400px;}
.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;}
}
.ws10_c00458{word-spacing:-3.780000px;}
.ws11_c00458{word-spacing:-3.679200px;}
.ws5_c00458{word-spacing:-3.434400px;}
.ws6_c00458{word-spacing:-3.405600px;}
.ws4_c00458{word-spacing:-3.333600px;}
.ws13_c00458{word-spacing:-3.067200px;}
.ws12_c00458{word-spacing:-3.038400px;}
.ws24_c00458{word-spacing:-2.347200px;}
.ws23_c00458{word-spacing:-2.246400px;}
.wsb_c00458{word-spacing:-1.620000px;}
.ws26_c00458{word-spacing:-0.921600px;}
.ws25_c00458{word-spacing:-0.892800px;}
.ws16_c00458{word-spacing:-0.540000px;}
.ws0_c00458{word-spacing:0.000000px;}
.ws2a_c00458{word-spacing:0.165600px;}
.ws2b_c00458{word-spacing:0.172800px;}
.ws22_c00458{word-spacing:0.201600px;}
.wse_c00458{word-spacing:0.237600px;}
.wsa_c00458{word-spacing:0.892800px;}
.ws9_c00458{word-spacing:0.914400px;}
.ws2c_c00458{word-spacing:1.569600px;}
.ws2d_c00458{word-spacing:1.627200px;}
.ws1f_c00458{word-spacing:2.347200px;}
.ws18_c00458{word-spacing:2.368800px;}
.ws1e_c00458{word-spacing:2.462400px;}
.ws20_c00458{word-spacing:2.736000px;}
.ws1b_c00458{word-spacing:3.045600px;}
.ws2_c00458{word-spacing:5.155200px;}
.ws3_c00458{word-spacing:5.198400px;}
.wsc_c00458{word-spacing:5.536800px;}
.wsd_c00458{word-spacing:5.616000px;}
.ws17_c00458{word-spacing:6.278400px;}
.ws7_c00458{word-spacing:6.544800px;}
.ws8_c00458{word-spacing:6.717600px;}
.wsf_c00458{word-spacing:8.488800px;}
.ws19_c00458{word-spacing:9.561600px;}
.ws1a_c00458{word-spacing:9.576000px;}
.ws1_c00458{word-spacing:9.914400px;}
.ws14_c00458{word-spacing:14.529600px;}
.ws21_c00458{word-spacing:14.572800px;}
.ws15_c00458{word-spacing:14.616000px;}
.ws34_c00458{word-spacing:16.372800px;}
.ws35_c00458{word-spacing:16.473600px;}
.ws1c_c00458{word-spacing:17.424000px;}
.ws1d_c00458{word-spacing:17.452800px;}
.ws2e_c00458{word-spacing:17.474400px;}
.ws2f_c00458{word-spacing:17.488800px;}
.ws32_c00458{word-spacing:29.620800px;}
.ws33_c00458{word-spacing:29.829600px;}
.ws30_c00458{word-spacing:42.300000px;}
.ws31_c00458{word-spacing:42.350400px;}
.ws28_c00458{word-spacing:42.948000px;}
.ws29_c00458{word-spacing:42.976800px;}
.ws27_c00458{word-spacing:42.984000px;}
._1_c00458{margin-left:-1.137600px;}
._0_c00458{width:1.267200px;}
.fc0_c00458{color:rgb(0,0,0);}
.fs0_c00458{font-size:72.000000px;}
.y0_c00458{bottom:0.000000px;}
.y2_c00458{bottom:46.830450px;}
.y1_c00458{bottom:67.530450px;}
.y29_c00458{bottom:132.780450px;}
.y28_c00458{bottom:153.480450px;}
.y27_c00458{bottom:174.180450px;}
.y26_c00458{bottom:194.880450px;}
.y25_c00458{bottom:215.580450px;}
.y24_c00458{bottom:236.280450px;}
.y23_c00458{bottom:276.330450px;}
.y22_c00458{bottom:316.380450px;}
.y21_c00458{bottom:347.430450px;}
.y20_c00458{bottom:378.390450px;}
.y1f_c00458{bottom:409.440450px;}
.y1e_c00458{bottom:449.490450px;}
.y1d_c00458{bottom:479.190450px;}
.y1c_c00458{bottom:499.890450px;}
.y1b_c00458{bottom:539.940450px;}
.y1a_c00458{bottom:570.990450px;}
.y19_c00458{bottom:602.040450px;}
.y18_c00458{bottom:633.090450px;}
.y17_c00458{bottom:664.140450px;}
.y16_c00458{bottom:695.190450px;}
.y15_c00458{bottom:724.890450px;}
.y14_c00458{bottom:745.590450px;}
.y13_c00458{bottom:766.290450px;}
.y12_c00458{bottom:786.990450px;}
.y11_c00458{bottom:807.690450px;}
.y10_c00458{bottom:828.390450px;}
.yf_c00458{bottom:849.090450px;}
.ye_c00458{bottom:869.790450px;}
.yd_c00458{bottom:890.490450px;}
.yc_c00458{bottom:911.190450px;}
.yb_c00458{bottom:931.890450px;}
.ya_c00458{bottom:952.590450px;}
.y9_c00458{bottom:973.290450px;}
.y8_c00458{bottom:993.990450px;}
.y7_c00458{bottom:1014.690450px;}
.y6_c00458{bottom:1035.390450px;}
.y5_c00458{bottom:1056.090450px;}
.y4_c00458{bottom:1076.790450px;}
.y3_c00458{bottom:1097.490450px;}
.h1_c00458{height:63.175781px;}
.h2_c00458{height:64.546875px;}
.h3_c00458{height:75.093750px;}
.h0_c00458{height:1263.000000px;}
.w1_c00458{width:892.500000px;}
.w0_c00458{width:892.830000px;}
.x0_c00458{left:0.000000px;}
.x2_c00458{left:170.100000px;}
.x3_c00458{left:245.430000px;}
.x1_c00458{left:738.360000px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls8_c00458{letter-spacing:-0.070400pt;}
.lsd_c00458{letter-spacing:-0.064000pt;}
.ls5_c00458{letter-spacing:-0.057600pt;}
.lsb_c00458{letter-spacing:-0.051200pt;}
.lsc_c00458{letter-spacing:-0.044800pt;}
.lsa_c00458{letter-spacing:-0.038400pt;}
.ls3_c00458{letter-spacing:-0.032000pt;}
.ls4_c00458{letter-spacing:-0.025600pt;}
.ls9_c00458{letter-spacing:-0.019200pt;}
.ls6_c00458{letter-spacing:-0.012800pt;}
.ls7_c00458{letter-spacing:-0.006400pt;}
.ls2_c00458{letter-spacing:0.000000pt;}
.ls0_c00458{letter-spacing:0.012800pt;}
.ls1_c00458{letter-spacing:0.044800pt;}
.ws10_c00458{word-spacing:-3.360000pt;}
.ws11_c00458{word-spacing:-3.270400pt;}
.ws5_c00458{word-spacing:-3.052800pt;}
.ws6_c00458{word-spacing:-3.027200pt;}
.ws4_c00458{word-spacing:-2.963200pt;}
.ws13_c00458{word-spacing:-2.726400pt;}
.ws12_c00458{word-spacing:-2.700800pt;}
.ws24_c00458{word-spacing:-2.086400pt;}
.ws23_c00458{word-spacing:-1.996800pt;}
.wsb_c00458{word-spacing:-1.440000pt;}
.ws26_c00458{word-spacing:-0.819200pt;}
.ws25_c00458{word-spacing:-0.793600pt;}
.ws16_c00458{word-spacing:-0.480000pt;}
.ws0_c00458{word-spacing:0.000000pt;}
.ws2a_c00458{word-spacing:0.147200pt;}
.ws2b_c00458{word-spacing:0.153600pt;}
.ws22_c00458{word-spacing:0.179200pt;}
.wse_c00458{word-spacing:0.211200pt;}
.wsa_c00458{word-spacing:0.793600pt;}
.ws9_c00458{word-spacing:0.812800pt;}
.ws2c_c00458{word-spacing:1.395200pt;}
.ws2d_c00458{word-spacing:1.446400pt;}
.ws1f_c00458{word-spacing:2.086400pt;}
.ws18_c00458{word-spacing:2.105600pt;}
.ws1e_c00458{word-spacing:2.188800pt;}
.ws20_c00458{word-spacing:2.432000pt;}
.ws1b_c00458{word-spacing:2.707200pt;}
.ws2_c00458{word-spacing:4.582400pt;}
.ws3_c00458{word-spacing:4.620800pt;}
.wsc_c00458{word-spacing:4.921600pt;}
.wsd_c00458{word-spacing:4.992000pt;}
.ws17_c00458{word-spacing:5.580800pt;}
.ws7_c00458{word-spacing:5.817600pt;}
.ws8_c00458{word-spacing:5.971200pt;}
.wsf_c00458{word-spacing:7.545600pt;}
.ws19_c00458{word-spacing:8.499200pt;}
.ws1a_c00458{word-spacing:8.512000pt;}
.ws1_c00458{word-spacing:8.812800pt;}
.ws14_c00458{word-spacing:12.915200pt;}
.ws21_c00458{word-spacing:12.953600pt;}
.ws15_c00458{word-spacing:12.992000pt;}
.ws34_c00458{word-spacing:14.553600pt;}
.ws35_c00458{word-spacing:14.643200pt;}
.ws1c_c00458{word-spacing:15.488000pt;}
.ws1d_c00458{word-spacing:15.513600pt;}
.ws2e_c00458{word-spacing:15.532800pt;}
.ws2f_c00458{word-spacing:15.545600pt;}
.ws32_c00458{word-spacing:26.329600pt;}
.ws33_c00458{word-spacing:26.515200pt;}
.ws30_c00458{word-spacing:37.600000pt;}
.ws31_c00458{word-spacing:37.644800pt;}
.ws28_c00458{word-spacing:38.176000pt;}
.ws29_c00458{word-spacing:38.201600pt;}
.ws27_c00458{word-spacing:38.208000pt;}
._1_c00458{margin-left:-1.011200pt;}
._0_c00458{width:1.126400pt;}
.fs0_c00458{font-size:64.000000pt;}
.y0_c00458{bottom:0.000000pt;}
.y2_c00458{bottom:41.627067pt;}
.y1_c00458{bottom:60.027067pt;}
.y29_c00458{bottom:118.027067pt;}
.y28_c00458{bottom:136.427067pt;}
.y27_c00458{bottom:154.827067pt;}
.y26_c00458{bottom:173.227067pt;}
.y25_c00458{bottom:191.627067pt;}
.y24_c00458{bottom:210.027067pt;}
.y23_c00458{bottom:245.627067pt;}
.y22_c00458{bottom:281.227067pt;}
.y21_c00458{bottom:308.827067pt;}
.y20_c00458{bottom:336.347067pt;}
.y1f_c00458{bottom:363.947067pt;}
.y1e_c00458{bottom:399.547067pt;}
.y1d_c00458{bottom:425.947067pt;}
.y1c_c00458{bottom:444.347067pt;}
.y1b_c00458{bottom:479.947067pt;}
.y1a_c00458{bottom:507.547067pt;}
.y19_c00458{bottom:535.147067pt;}
.y18_c00458{bottom:562.747067pt;}
.y17_c00458{bottom:590.347067pt;}
.y16_c00458{bottom:617.947067pt;}
.y15_c00458{bottom:644.347067pt;}
.y14_c00458{bottom:662.747067pt;}
.y13_c00458{bottom:681.147067pt;}
.y12_c00458{bottom:699.547067pt;}
.y11_c00458{bottom:717.947067pt;}
.y10_c00458{bottom:736.347067pt;}
.yf_c00458{bottom:754.747067pt;}
.ye_c00458{bottom:773.147067pt;}
.yd_c00458{bottom:791.547067pt;}
.yc_c00458{bottom:809.947067pt;}
.yb_c00458{bottom:828.347067pt;}
.ya_c00458{bottom:846.747067pt;}
.y9_c00458{bottom:865.147067pt;}
.y8_c00458{bottom:883.547067pt;}
.y7_c00458{bottom:901.947067pt;}
.y6_c00458{bottom:920.347067pt;}
.y5_c00458{bottom:938.747067pt;}
.y4_c00458{bottom:957.147067pt;}
.y3_c00458{bottom:975.547067pt;}
.h1_c00458{height:56.156250pt;}
.h2_c00458{height:57.375000pt;}
.h3_c00458{height:66.750000pt;}
.h0_c00458{height:1122.666667pt;}
.w1_c00458{width:793.333333pt;}
.w0_c00458{width:793.626667pt;}
.x0_c00458{left:0.000000pt;}
.x2_c00458{left:151.200000pt;}
.x3_c00458{left:218.160000pt;}
.x1_c00458{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_97d6d7c0384c386bb3b96ebd.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.093262;font-style:normal;font-weight:normal;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_943d226c31dbae47873a8b6e.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00459{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.ls2_c00459{letter-spacing:-0.086400px;}
.ls9_c00459{letter-spacing:-0.079200px;}
.lsb_c00459{letter-spacing:-0.072000px;}
.ls7_c00459{letter-spacing:-0.064800px;}
.ls3_c00459{letter-spacing:-0.057600px;}
.ls6_c00459{letter-spacing:-0.050400px;}
.ls1_c00459{letter-spacing:-0.043200px;}
.ls8_c00459{letter-spacing:-0.036000px;}
.lsa_c00459{letter-spacing:-0.028800px;}
.ls5_c00459{letter-spacing:-0.021600px;}
.ls4_c00459{letter-spacing:-0.014400px;}
.lsc_c00459{letter-spacing:-0.007200px;}
.ls0_c00459{letter-spacing:0.000000px;}
.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;}
}
.ws16_c00459{word-spacing:-4.089600px;}
.ws1d_c00459{word-spacing:-2.692800px;}
.ws19_c00459{word-spacing:-2.671200px;}
.ws34_c00459{word-spacing:-0.921600px;}
.ws33_c00459{word-spacing:-0.892800px;}
.ws7_c00459{word-spacing:-0.540000px;}
.ws1e_c00459{word-spacing:-0.151200px;}
.ws0_c00459{word-spacing:0.000000px;}
.ws2c_c00459{word-spacing:0.086400px;}
.ws4_c00459{word-spacing:0.172800px;}
.ws18_c00459{word-spacing:0.180000px;}
.ws25_c00459{word-spacing:0.439200px;}
.ws13_c00459{word-spacing:0.547200px;}
.ws24_c00459{word-spacing:0.583200px;}
.ws12_c00459{word-spacing:0.604800px;}
.ws37_c00459{word-spacing:0.892800px;}
.ws30_c00459{word-spacing:0.907200px;}
.ws31_c00459{word-spacing:0.936000px;}
.ws1a_c00459{word-spacing:2.016000px;}
.ws38_c00459{word-spacing:2.376000px;}
.ws2a_c00459{word-spacing:3.405600px;}
.ws2d_c00459{word-spacing:3.441600px;}
.ws10_c00459{word-spacing:3.700800px;}
.ws11_c00459{word-spacing:3.837600px;}
.ws28_c00459{word-spacing:6.292800px;}
.ws29_c00459{word-spacing:6.300000px;}
.ws17_c00459{word-spacing:6.321600px;}
.ws2f_c00459{word-spacing:6.357600px;}
.ws2e_c00459{word-spacing:6.422400px;}
.ws32_c00459{word-spacing:7.020000px;}
.wsf_c00459{word-spacing:7.322400px;}
.wse_c00459{word-spacing:7.394400px;}
.ws3_c00459{word-spacing:7.776000px;}
.wsd_c00459{word-spacing:8.020800px;}
.wsc_c00459{word-spacing:8.100000px;}
.ws1_c00459{word-spacing:8.121600px;}
.ws2_c00459{word-spacing:8.164800px;}
.ws23_c00459{word-spacing:8.834400px;}
.ws2b_c00459{word-spacing:10.245600px;}
.ws15_c00459{word-spacing:11.376000px;}
.ws20_c00459{word-spacing:13.075200px;}
.ws1f_c00459{word-spacing:13.154400px;}
.ws27_c00459{word-spacing:13.168800px;}
.ws26_c00459{word-spacing:13.176000px;}
.ws3a_c00459{word-spacing:14.544000px;}
.ws39_c00459{word-spacing:14.608800px;}
.wsa_c00459{word-spacing:15.566400px;}
.wsb_c00459{word-spacing:15.703200px;}
.ws8_c00459{word-spacing:16.473600px;}
.ws9_c00459{word-spacing:16.531200px;}
.ws14_c00459{word-spacing:23.580000px;}
.ws22_c00459{word-spacing:28.987200px;}
.ws21_c00459{word-spacing:28.994400px;}
.ws5_c00459{word-spacing:35.460000px;}
.ws1b_c00459{word-spacing:36.417600px;}
.ws1c_c00459{word-spacing:36.568800px;}
.ws35_c00459{word-spacing:43.466400px;}
.ws36_c00459{word-spacing:43.516800px;}
.ws6_c00459{word-spacing:44.128800px;}
.fc0_c00459{color:rgb(0,0,0);}
.fs0_c00459{font-size:72.000000px;}
.y0_c00459{bottom:0.000000px;}
.y2_c00459{bottom:46.830450px;}
.y1_c00459{bottom:67.530450px;}
.y2f_c00459{bottom:137.730450px;}
.y2e_c00459{bottom:158.430450px;}
.y2d_c00459{bottom:179.130450px;}
.y2c_c00459{bottom:199.830450px;}
.y2b_c00459{bottom:220.530450px;}
.y2a_c00459{bottom:241.230450px;}
.y29_c00459{bottom:261.930450px;}
.y28_c00459{bottom:301.980450px;}
.y27_c00459{bottom:333.030450px;}
.y26_c00459{bottom:364.080450px;}
.y25_c00459{bottom:393.690450px;}
.y24_c00459{bottom:414.390450px;}
.y23_c00459{bottom:435.090450px;}
.y22_c00459{bottom:455.790450px;}
.y21_c00459{bottom:476.490450px;}
.y20_c00459{bottom:497.190450px;}
.y1f_c00459{bottom:517.890450px;}
.y1e_c00459{bottom:538.590450px;}
.y1d_c00459{bottom:559.290450px;}
.y1c_c00459{bottom:579.990450px;}
.y1b_c00459{bottom:600.690450px;}
.y1a_c00459{bottom:621.390450px;}
.y19_c00459{bottom:642.090450px;}
.y18_c00459{bottom:662.790450px;}
.y17_c00459{bottom:683.490450px;}
.y16_c00459{bottom:704.190450px;}
.y15_c00459{bottom:724.890450px;}
.y14_c00459{bottom:745.590450px;}
.y13_c00459{bottom:766.290450px;}
.y12_c00459{bottom:786.990450px;}
.y11_c00459{bottom:807.690450px;}
.y10_c00459{bottom:828.390450px;}
.yf_c00459{bottom:849.090450px;}
.ye_c00459{bottom:869.790450px;}
.yd_c00459{bottom:890.490450px;}
.yc_c00459{bottom:911.190450px;}
.yb_c00459{bottom:931.890450px;}
.ya_c00459{bottom:952.590450px;}
.y9_c00459{bottom:973.290450px;}
.y8_c00459{bottom:993.990450px;}
.y7_c00459{bottom:1014.690450px;}
.y6_c00459{bottom:1035.390450px;}
.y5_c00459{bottom:1056.090450px;}
.y4_c00459{bottom:1076.790450px;}
.y3_c00459{bottom:1097.490450px;}
.h1_c00459{height:63.175781px;}
.h2_c00459{height:64.546875px;}
.h0_c00459{height:1263.000000px;}
.w1_c00459{width:892.500000px;}
.w0_c00459{width:892.830000px;}
.x0_c00459{left:0.000000px;}
.x2_c00459{left:127.620000px;}
.x3_c00459{left:202.950000px;}
.x1_c00459{left:695.880000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls2_c00459{letter-spacing:-0.076800pt;}
.ls9_c00459{letter-spacing:-0.070400pt;}
.lsb_c00459{letter-spacing:-0.064000pt;}
.ls7_c00459{letter-spacing:-0.057600pt;}
.ls3_c00459{letter-spacing:-0.051200pt;}
.ls6_c00459{letter-spacing:-0.044800pt;}
.ls1_c00459{letter-spacing:-0.038400pt;}
.ls8_c00459{letter-spacing:-0.032000pt;}
.lsa_c00459{letter-spacing:-0.025600pt;}
.ls5_c00459{letter-spacing:-0.019200pt;}
.ls4_c00459{letter-spacing:-0.012800pt;}
.lsc_c00459{letter-spacing:-0.006400pt;}
.ls0_c00459{letter-spacing:0.000000pt;}
.ws16_c00459{word-spacing:-3.635200pt;}
.ws1d_c00459{word-spacing:-2.393600pt;}
.ws19_c00459{word-spacing:-2.374400pt;}
.ws34_c00459{word-spacing:-0.819200pt;}
.ws33_c00459{word-spacing:-0.793600pt;}
.ws7_c00459{word-spacing:-0.480000pt;}
.ws1e_c00459{word-spacing:-0.134400pt;}
.ws0_c00459{word-spacing:0.000000pt;}
.ws2c_c00459{word-spacing:0.076800pt;}
.ws4_c00459{word-spacing:0.153600pt;}
.ws18_c00459{word-spacing:0.160000pt;}
.ws25_c00459{word-spacing:0.390400pt;}
.ws13_c00459{word-spacing:0.486400pt;}
.ws24_c00459{word-spacing:0.518400pt;}
.ws12_c00459{word-spacing:0.537600pt;}
.ws37_c00459{word-spacing:0.793600pt;}
.ws30_c00459{word-spacing:0.806400pt;}
.ws31_c00459{word-spacing:0.832000pt;}
.ws1a_c00459{word-spacing:1.792000pt;}
.ws38_c00459{word-spacing:2.112000pt;}
.ws2a_c00459{word-spacing:3.027200pt;}
.ws2d_c00459{word-spacing:3.059200pt;}
.ws10_c00459{word-spacing:3.289600pt;}
.ws11_c00459{word-spacing:3.411200pt;}
.ws28_c00459{word-spacing:5.593600pt;}
.ws29_c00459{word-spacing:5.600000pt;}
.ws17_c00459{word-spacing:5.619200pt;}
.ws2f_c00459{word-spacing:5.651200pt;}
.ws2e_c00459{word-spacing:5.708800pt;}
.ws32_c00459{word-spacing:6.240000pt;}
.wsf_c00459{word-spacing:6.508800pt;}
.wse_c00459{word-spacing:6.572800pt;}
.ws3_c00459{word-spacing:6.912000pt;}
.wsd_c00459{word-spacing:7.129600pt;}
.wsc_c00459{word-spacing:7.200000pt;}
.ws1_c00459{word-spacing:7.219200pt;}
.ws2_c00459{word-spacing:7.257600pt;}
.ws23_c00459{word-spacing:7.852800pt;}
.ws2b_c00459{word-spacing:9.107200pt;}
.ws15_c00459{word-spacing:10.112000pt;}
.ws20_c00459{word-spacing:11.622400pt;}
.ws1f_c00459{word-spacing:11.692800pt;}
.ws27_c00459{word-spacing:11.705600pt;}
.ws26_c00459{word-spacing:11.712000pt;}
.ws3a_c00459{word-spacing:12.928000pt;}
.ws39_c00459{word-spacing:12.985600pt;}
.wsa_c00459{word-spacing:13.836800pt;}
.wsb_c00459{word-spacing:13.958400pt;}
.ws8_c00459{word-spacing:14.643200pt;}
.ws9_c00459{word-spacing:14.694400pt;}
.ws14_c00459{word-spacing:20.960000pt;}
.ws22_c00459{word-spacing:25.766400pt;}
.ws21_c00459{word-spacing:25.772800pt;}
.ws5_c00459{word-spacing:31.520000pt;}
.ws1b_c00459{word-spacing:32.371200pt;}
.ws1c_c00459{word-spacing:32.505600pt;}
.ws35_c00459{word-spacing:38.636800pt;}
.ws36_c00459{word-spacing:38.681600pt;}
.ws6_c00459{word-spacing:39.225600pt;}
.fs0_c00459{font-size:64.000000pt;}
.y0_c00459{bottom:0.000000pt;}
.y2_c00459{bottom:41.627067pt;}
.y1_c00459{bottom:60.027067pt;}
.y2f_c00459{bottom:122.427067pt;}
.y2e_c00459{bottom:140.827067pt;}
.y2d_c00459{bottom:159.227067pt;}
.y2c_c00459{bottom:177.627067pt;}
.y2b_c00459{bottom:196.027067pt;}
.y2a_c00459{bottom:214.427067pt;}
.y29_c00459{bottom:232.827067pt;}
.y28_c00459{bottom:268.427067pt;}
.y27_c00459{bottom:296.027067pt;}
.y26_c00459{bottom:323.627067pt;}
.y25_c00459{bottom:349.947067pt;}
.y24_c00459{bottom:368.347067pt;}
.y23_c00459{bottom:386.747067pt;}
.y22_c00459{bottom:405.147067pt;}
.y21_c00459{bottom:423.547067pt;}
.y20_c00459{bottom:441.947067pt;}
.y1f_c00459{bottom:460.347067pt;}
.y1e_c00459{bottom:478.747067pt;}
.y1d_c00459{bottom:497.147067pt;}
.y1c_c00459{bottom:515.547067pt;}
.y1b_c00459{bottom:533.947067pt;}
.y1a_c00459{bottom:552.347067pt;}
.y19_c00459{bottom:570.747067pt;}
.y18_c00459{bottom:589.147067pt;}
.y17_c00459{bottom:607.547067pt;}
.y16_c00459{bottom:625.947067pt;}
.y15_c00459{bottom:644.347067pt;}
.y14_c00459{bottom:662.747067pt;}
.y13_c00459{bottom:681.147067pt;}
.y12_c00459{bottom:699.547067pt;}
.y11_c00459{bottom:717.947067pt;}
.y10_c00459{bottom:736.347067pt;}
.yf_c00459{bottom:754.747067pt;}
.ye_c00459{bottom:773.147067pt;}
.yd_c00459{bottom:791.547067pt;}
.yc_c00459{bottom:809.947067pt;}
.yb_c00459{bottom:828.347067pt;}
.ya_c00459{bottom:846.747067pt;}
.y9_c00459{bottom:865.147067pt;}
.y8_c00459{bottom:883.547067pt;}
.y7_c00459{bottom:901.947067pt;}
.y6_c00459{bottom:920.347067pt;}
.y5_c00459{bottom:938.747067pt;}
.y4_c00459{bottom:957.147067pt;}
.y3_c00459{bottom:975.547067pt;}
.h1_c00459{height:56.156250pt;}
.h2_c00459{height:57.375000pt;}
.h0_c00459{height:1122.666667pt;}
.w1_c00459{width:793.333333pt;}
.w0_c00459{width:793.626667pt;}
.x0_c00459{left:0.000000pt;}
.x2_c00459{left:113.440000pt;}
.x3_c00459{left:180.400000pt;}
.x1_c00459{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0857182981ebe5a4d597ccc9.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.093262;font-style:normal;font-weight:normal;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_deb9968b0a6b7a6c8e2f0e53.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00460{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.ls6_c00460{letter-spacing:-0.079200px;}
.ls3_c00460{letter-spacing:-0.072000px;}
.ls2_c00460{letter-spacing:-0.064800px;}
.lsa_c00460{letter-spacing:-0.057600px;}
.ls1_c00460{letter-spacing:-0.050400px;}
.ls9_c00460{letter-spacing:-0.043200px;}
.ls7_c00460{letter-spacing:-0.036000px;}
.ls4_c00460{letter-spacing:-0.028800px;}
.lsb_c00460{letter-spacing:-0.021600px;}
.ls8_c00460{letter-spacing:-0.014400px;}
.ls5_c00460{letter-spacing:-0.007200px;}
.ls0_c00460{letter-spacing:0.000000px;}
.lsc_c00460{letter-spacing:0.007200px;}
.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;}
}
.wse_c00460{word-spacing:-3.117600px;}
.wsd_c00460{word-spacing:-3.002400px;}
.ws29_c00460{word-spacing:-2.649600px;}
.ws1b_c00460{word-spacing:-1.584000px;}
.ws1a_c00460{word-spacing:-1.231200px;}
.ws28_c00460{word-spacing:-1.188000px;}
.ws33_c00460{word-spacing:-0.864000px;}
.ws2_c00460{word-spacing:-0.280800px;}
.ws1_c00460{word-spacing:-0.208800px;}
.wsa_c00460{word-spacing:-0.165600px;}
.ws9_c00460{word-spacing:-0.122400px;}
.ws0_c00460{word-spacing:0.000000px;}
.ws8_c00460{word-spacing:0.093600px;}
.ws17_c00460{word-spacing:0.122400px;}
.ws21_c00460{word-spacing:0.172800px;}
.ws13_c00460{word-spacing:0.288000px;}
.ws27_c00460{word-spacing:0.921600px;}
.ws11_c00460{word-spacing:1.195200px;}
.ws10_c00460{word-spacing:1.245600px;}
.ws12_c00460{word-spacing:1.317600px;}
.ws14_c00460{word-spacing:1.641600px;}
.ws2c_c00460{word-spacing:1.987200px;}
.ws1c_c00460{word-spacing:2.340000px;}
.ws1d_c00460{word-spacing:2.354400px;}
.ws20_c00460{word-spacing:2.361600px;}
.ws4_c00460{word-spacing:3.463200px;}
.ws3_c00460{word-spacing:3.470400px;}
.ws1e_c00460{word-spacing:4.118400px;}
.ws30_c00460{word-spacing:4.406400px;}
.ws2f_c00460{word-spacing:4.449600px;}
.ws31_c00460{word-spacing:5.191200px;}
.ws32_c00460{word-spacing:5.371200px;}
.ws2b_c00460{word-spacing:5.594400px;}
.ws34_c00460{word-spacing:6.328800px;}
.ws5_c00460{word-spacing:7.027200px;}
.ws18_c00460{word-spacing:7.056000px;}
.ws7_c00460{word-spacing:9.453600px;}
.ws6_c00460{word-spacing:9.496800px;}
.ws23_c00460{word-spacing:13.492800px;}
.ws22_c00460{word-spacing:13.500000px;}
.ws26_c00460{word-spacing:13.557600px;}
.ws1f_c00460{word-spacing:14.234400px;}
.ws16_c00460{word-spacing:14.565600px;}
.ws15_c00460{word-spacing:14.594400px;}
.wsf_c00460{word-spacing:16.070400px;}
.ws19_c00460{word-spacing:17.100000px;}
.ws25_c00460{word-spacing:17.798400px;}
.ws24_c00460{word-spacing:17.820000px;}
.ws2a_c00460{word-spacing:19.994400px;}
.wsc_c00460{word-spacing:30.772800px;}
.wsb_c00460{word-spacing:30.866400px;}
.ws2d_c00460{word-spacing:45.828000px;}
.ws2e_c00460{word-spacing:45.907200px;}
._0_c00460{width:1.080000px;}
.fc0_c00460{color:rgb(0,0,0);}
.fs0_c00460{font-size:72.000000px;}
.y0_c00460{bottom:0.000000px;}
.y2_c00460{bottom:46.830450px;}
.y1_c00460{bottom:67.530450px;}
.y2b_c00460{bottom:152.130450px;}
.y2a_c00460{bottom:172.830450px;}
.y29_c00460{bottom:193.530450px;}
.y28_c00460{bottom:214.230450px;}
.y27_c00460{bottom:234.930450px;}
.y26_c00460{bottom:255.630450px;}
.y25_c00460{bottom:276.330450px;}
.y24_c00460{bottom:297.030450px;}
.y23_c00460{bottom:317.730450px;}
.y22_c00460{bottom:338.430450px;}
.y21_c00460{bottom:359.040450px;}
.y20_c00460{bottom:379.740450px;}
.y1f_c00460{bottom:400.440450px;}
.y1e_c00460{bottom:421.140450px;}
.y1d_c00460{bottom:441.840450px;}
.y1c_c00460{bottom:462.540450px;}
.y1b_c00460{bottom:483.240450px;}
.y1a_c00460{bottom:503.940450px;}
.y19_c00460{bottom:524.640450px;}
.y18_c00460{bottom:545.340450px;}
.y17_c00460{bottom:566.040450px;}
.y16_c00460{bottom:586.740450px;}
.y15_c00460{bottom:607.440450px;}
.y14_c00460{bottom:628.140450px;}
.y13_c00460{bottom:668.190450px;}
.y12_c00460{bottom:699.240450px;}
.y11_c00460{bottom:730.290450px;}
.y10_c00460{bottom:770.340450px;}
.yf_c00460{bottom:800.040450px;}
.ye_c00460{bottom:820.740450px;}
.yd_c00460{bottom:841.440450px;}
.yc_c00460{bottom:862.140450px;}
.yb_c00460{bottom:902.190450px;}
.ya_c00460{bottom:933.240450px;}
.y9_c00460{bottom:964.290450px;}
.y8_c00460{bottom:993.990450px;}
.y7_c00460{bottom:1014.690450px;}
.y6_c00460{bottom:1035.390450px;}
.y5_c00460{bottom:1056.090450px;}
.y4_c00460{bottom:1076.790450px;}
.y3_c00460{bottom:1097.490450px;}
.h1_c00460{height:63.175781px;}
.h2_c00460{height:64.546875px;}
.h0_c00460{height:1263.000000px;}
.w1_c00460{width:892.500000px;}
.w0_c00460{width:892.830000px;}
.x0_c00460{left:0.000000px;}
.x2_c00460{left:170.100000px;}
.x3_c00460{left:245.430000px;}
.x1_c00460{left:738.360000px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls6_c00460{letter-spacing:-0.070400pt;}
.ls3_c00460{letter-spacing:-0.064000pt;}
.ls2_c00460{letter-spacing:-0.057600pt;}
.lsa_c00460{letter-spacing:-0.051200pt;}
.ls1_c00460{letter-spacing:-0.044800pt;}
.ls9_c00460{letter-spacing:-0.038400pt;}
.ls7_c00460{letter-spacing:-0.032000pt;}
.ls4_c00460{letter-spacing:-0.025600pt;}
.lsb_c00460{letter-spacing:-0.019200pt;}
.ls8_c00460{letter-spacing:-0.012800pt;}
.ls5_c00460{letter-spacing:-0.006400pt;}
.ls0_c00460{letter-spacing:0.000000pt;}
.lsc_c00460{letter-spacing:0.006400pt;}
.wse_c00460{word-spacing:-2.771200pt;}
.wsd_c00460{word-spacing:-2.668800pt;}
.ws29_c00460{word-spacing:-2.355200pt;}
.ws1b_c00460{word-spacing:-1.408000pt;}
.ws1a_c00460{word-spacing:-1.094400pt;}
.ws28_c00460{word-spacing:-1.056000pt;}
.ws33_c00460{word-spacing:-0.768000pt;}
.ws2_c00460{word-spacing:-0.249600pt;}
.ws1_c00460{word-spacing:-0.185600pt;}
.wsa_c00460{word-spacing:-0.147200pt;}
.ws9_c00460{word-spacing:-0.108800pt;}
.ws0_c00460{word-spacing:0.000000pt;}
.ws8_c00460{word-spacing:0.083200pt;}
.ws17_c00460{word-spacing:0.108800pt;}
.ws21_c00460{word-spacing:0.153600pt;}
.ws13_c00460{word-spacing:0.256000pt;}
.ws27_c00460{word-spacing:0.819200pt;}
.ws11_c00460{word-spacing:1.062400pt;}
.ws10_c00460{word-spacing:1.107200pt;}
.ws12_c00460{word-spacing:1.171200pt;}
.ws14_c00460{word-spacing:1.459200pt;}
.ws2c_c00460{word-spacing:1.766400pt;}
.ws1c_c00460{word-spacing:2.080000pt;}
.ws1d_c00460{word-spacing:2.092800pt;}
.ws20_c00460{word-spacing:2.099200pt;}
.ws4_c00460{word-spacing:3.078400pt;}
.ws3_c00460{word-spacing:3.084800pt;}
.ws1e_c00460{word-spacing:3.660800pt;}
.ws30_c00460{word-spacing:3.916800pt;}
.ws2f_c00460{word-spacing:3.955200pt;}
.ws31_c00460{word-spacing:4.614400pt;}
.ws32_c00460{word-spacing:4.774400pt;}
.ws2b_c00460{word-spacing:4.972800pt;}
.ws34_c00460{word-spacing:5.625600pt;}
.ws5_c00460{word-spacing:6.246400pt;}
.ws18_c00460{word-spacing:6.272000pt;}
.ws7_c00460{word-spacing:8.403200pt;}
.ws6_c00460{word-spacing:8.441600pt;}
.ws23_c00460{word-spacing:11.993600pt;}
.ws22_c00460{word-spacing:12.000000pt;}
.ws26_c00460{word-spacing:12.051200pt;}
.ws1f_c00460{word-spacing:12.652800pt;}
.ws16_c00460{word-spacing:12.947200pt;}
.ws15_c00460{word-spacing:12.972800pt;}
.wsf_c00460{word-spacing:14.284800pt;}
.ws19_c00460{word-spacing:15.200000pt;}
.ws25_c00460{word-spacing:15.820800pt;}
.ws24_c00460{word-spacing:15.840000pt;}
.ws2a_c00460{word-spacing:17.772800pt;}
.wsc_c00460{word-spacing:27.353600pt;}
.wsb_c00460{word-spacing:27.436800pt;}
.ws2d_c00460{word-spacing:40.736000pt;}
.ws2e_c00460{word-spacing:40.806400pt;}
._0_c00460{width:0.960000pt;}
.fs0_c00460{font-size:64.000000pt;}
.y0_c00460{bottom:0.000000pt;}
.y2_c00460{bottom:41.627067pt;}
.y1_c00460{bottom:60.027067pt;}
.y2b_c00460{bottom:135.227067pt;}
.y2a_c00460{bottom:153.627067pt;}
.y29_c00460{bottom:172.027067pt;}
.y28_c00460{bottom:190.427067pt;}
.y27_c00460{bottom:208.827067pt;}
.y26_c00460{bottom:227.227067pt;}
.y25_c00460{bottom:245.627067pt;}
.y24_c00460{bottom:264.027067pt;}
.y23_c00460{bottom:282.427067pt;}
.y22_c00460{bottom:300.827067pt;}
.y21_c00460{bottom:319.147067pt;}
.y20_c00460{bottom:337.547067pt;}
.y1f_c00460{bottom:355.947067pt;}
.y1e_c00460{bottom:374.347067pt;}
.y1d_c00460{bottom:392.747067pt;}
.y1c_c00460{bottom:411.147067pt;}
.y1b_c00460{bottom:429.547067pt;}
.y1a_c00460{bottom:447.947067pt;}
.y19_c00460{bottom:466.347067pt;}
.y18_c00460{bottom:484.747067pt;}
.y17_c00460{bottom:503.147067pt;}
.y16_c00460{bottom:521.547067pt;}
.y15_c00460{bottom:539.947067pt;}
.y14_c00460{bottom:558.347067pt;}
.y13_c00460{bottom:593.947067pt;}
.y12_c00460{bottom:621.547067pt;}
.y11_c00460{bottom:649.147067pt;}
.y10_c00460{bottom:684.747067pt;}
.yf_c00460{bottom:711.147067pt;}
.ye_c00460{bottom:729.547067pt;}
.yd_c00460{bottom:747.947067pt;}
.yc_c00460{bottom:766.347067pt;}
.yb_c00460{bottom:801.947067pt;}
.ya_c00460{bottom:829.547067pt;}
.y9_c00460{bottom:857.147067pt;}
.y8_c00460{bottom:883.547067pt;}
.y7_c00460{bottom:901.947067pt;}
.y6_c00460{bottom:920.347067pt;}
.y5_c00460{bottom:938.747067pt;}
.y4_c00460{bottom:957.147067pt;}
.y3_c00460{bottom:975.547067pt;}
.h1_c00460{height:56.156250pt;}
.h2_c00460{height:57.375000pt;}
.h0_c00460{height:1122.666667pt;}
.w1_c00460{width:793.333333pt;}
.w0_c00460{width:793.626667pt;}
.x0_c00460{left:0.000000pt;}
.x2_c00460{left:151.200000pt;}
.x3_c00460{left:218.160000pt;}
.x1_c00460{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c5ff0f7fc33a3623741df946.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.093262;font-style:normal;font-weight:normal;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_e01f805ce143d1a35bddac45.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.106934;font-style: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;}
.lsb_c00461{letter-spacing:-0.086400px;}
.lsa_c00461{letter-spacing:-0.072000px;}
.ls2_c00461{letter-spacing:-0.064800px;}
.ls1_c00461{letter-spacing:-0.057600px;}
.ls6_c00461{letter-spacing:-0.050400px;}
.ls3_c00461{letter-spacing:-0.043200px;}
.ls5_c00461{letter-spacing:-0.036000px;}
.ls8_c00461{letter-spacing:-0.028800px;}
.ls9_c00461{letter-spacing:-0.021600px;}
.ls4_c00461{letter-spacing:-0.014400px;}
.ls7_c00461{letter-spacing:-0.007200px;}
.ls0_c00461{letter-spacing:0.000000px;}
.lsc_c00461{letter-spacing:0.007200px;}
.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;}
}
.ws1b_c00461{word-spacing:-3.772800px;}
.ws1c_c00461{word-spacing:-3.751200px;}
.ws1f_c00461{word-spacing:-3.038400px;}
.ws27_c00461{word-spacing:-3.031200px;}
.ws20_c00461{word-spacing:-3.016800px;}
.ws21_c00461{word-spacing:-3.009600px;}
.ws2d_c00461{word-spacing:-2.772000px;}
.ws2f_c00461{word-spacing:-2.728800px;}
.ws2e_c00461{word-spacing:-2.692800px;}
.wsc_c00461{word-spacing:-1.706400px;}
.ws6_c00461{word-spacing:-1.627200px;}
.ws7_c00461{word-spacing:-1.598400px;}
.ws18_c00461{word-spacing:-1.591200px;}
.wsd_c00461{word-spacing:-1.584000px;}
.ws34_c00461{word-spacing:-0.180000px;}
.ws9_c00461{word-spacing:-0.144000px;}
.ws8_c00461{word-spacing:-0.136800px;}
.ws0_c00461{word-spacing:0.000000px;}
.ws13_c00461{word-spacing:0.093600px;}
.ws23_c00461{word-spacing:0.165600px;}
.ws17_c00461{word-spacing:0.180000px;}
.ws14_c00461{word-spacing:0.187200px;}
.ws22_c00461{word-spacing:0.208800px;}
.ws11_c00461{word-spacing:1.238400px;}
.ws12_c00461{word-spacing:1.267200px;}
.ws32_c00461{word-spacing:1.627200px;}
.wse_c00461{word-spacing:4.852800px;}
.ws1a_c00461{word-spacing:5.580000px;}
.ws19_c00461{word-spacing:5.724000px;}
.ws26_c00461{word-spacing:5.925600px;}
.ws24_c00461{word-spacing:5.947200px;}
.ws2b_c00461{word-spacing:7.027200px;}
.ws2c_c00461{word-spacing:7.279200px;}
.ws35_c00461{word-spacing:7.761600px;}
.ws36_c00461{word-spacing:7.790400px;}
.ws5_c00461{word-spacing:9.115200px;}
.ws28_c00461{word-spacing:9.583200px;}
.ws1e_c00461{word-spacing:9.885600px;}
.ws1d_c00461{word-spacing:9.914400px;}
.wsb_c00461{word-spacing:12.412800px;}
.wsa_c00461{word-spacing:12.434400px;}
.ws37_c00461{word-spacing:14.234400px;}
.ws2_c00461{word-spacing:15.264000px;}
.ws2a_c00461{word-spacing:15.300000px;}
.ws1_c00461{word-spacing:15.336000px;}
.ws29_c00461{word-spacing:15.372000px;}
.wsf_c00461{word-spacing:15.912000px;}
.ws10_c00461{word-spacing:16.034400px;}
.ws4_c00461{word-spacing:16.761600px;}
.ws3_c00461{word-spacing:16.783200px;}
.ws33_c00461{word-spacing:19.260000px;}
.ws16_c00461{word-spacing:26.092800px;}
.ws15_c00461{word-spacing:26.164800px;}
.ws30_c00461{word-spacing:26.841600px;}
.ws31_c00461{word-spacing:26.856000px;}
.ws25_c00461{word-spacing:32.961600px;}
._1_c00461{margin-left:-26.467200px;}
._0_c00461{width:1.087200px;}
.fc0_c00461{color:rgb(0,0,0);}
.fs0_c00461{font-size:72.000000px;}
.y0_c00461{bottom:0.000000px;}
.y2_c00461{bottom:46.830450px;}
.y1_c00461{bottom:67.530450px;}
.y2b_c00461{bottom:140.430450px;}
.y2a_c00461{bottom:161.130450px;}
.y29_c00461{bottom:201.180450px;}
.y28_c00461{bottom:232.230450px;}
.y27_c00461{bottom:263.280450px;}
.y26_c00461{bottom:294.330450px;}
.y25_c00461{bottom:324.030450px;}
.y24_c00461{bottom:344.730450px;}
.y23_c00461{bottom:365.430450px;}
.y22_c00461{bottom:386.040450px;}
.y21_c00461{bottom:406.740450px;}
.y20_c00461{bottom:427.440450px;}
.y1f_c00461{bottom:448.140450px;}
.y1e_c00461{bottom:468.840450px;}
.y1d_c00461{bottom:489.540450px;}
.y1c_c00461{bottom:510.240450px;}
.y1b_c00461{bottom:530.940450px;}
.y1a_c00461{bottom:551.640450px;}
.y19_c00461{bottom:572.340450px;}
.y18_c00461{bottom:593.040450px;}
.y17_c00461{bottom:613.740450px;}
.y16_c00461{bottom:634.440450px;}
.y15_c00461{bottom:674.490450px;}
.y14_c00461{bottom:705.540450px;}
.y13_c00461{bottom:736.590450px;}
.y12_c00461{bottom:767.640450px;}
.y11_c00461{bottom:798.690450px;}
.y10_c00461{bottom:828.390450px;}
.yf_c00461{bottom:849.090450px;}
.ye_c00461{bottom:869.790450px;}
.yd_c00461{bottom:890.490450px;}
.yc_c00461{bottom:911.190450px;}
.yb_c00461{bottom:931.890450px;}
.ya_c00461{bottom:952.590450px;}
.y9_c00461{bottom:973.290450px;}
.y8_c00461{bottom:993.990450px;}
.y7_c00461{bottom:1014.690450px;}
.y6_c00461{bottom:1035.390450px;}
.y5_c00461{bottom:1056.090450px;}
.y4_c00461{bottom:1076.790450px;}
.y3_c00461{bottom:1097.490450px;}
.h1_c00461{height:63.175781px;}
.h2_c00461{height:64.546875px;}
.h0_c00461{height:1263.000000px;}
.w1_c00461{width:892.500000px;}
.w0_c00461{width:892.830000px;}
.x0_c00461{left:0.000000px;}
.x2_c00461{left:127.620000px;}
.x3_c00461{left:202.950000px;}
.x1_c00461{left:695.880000px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.lsb_c00461{letter-spacing:-0.076800pt;}
.lsa_c00461{letter-spacing:-0.064000pt;}
.ls2_c00461{letter-spacing:-0.057600pt;}
.ls1_c00461{letter-spacing:-0.051200pt;}
.ls6_c00461{letter-spacing:-0.044800pt;}
.ls3_c00461{letter-spacing:-0.038400pt;}
.ls5_c00461{letter-spacing:-0.032000pt;}
.ls8_c00461{letter-spacing:-0.025600pt;}
.ls9_c00461{letter-spacing:-0.019200pt;}
.ls4_c00461{letter-spacing:-0.012800pt;}
.ls7_c00461{letter-spacing:-0.006400pt;}
.ls0_c00461{letter-spacing:0.000000pt;}
.lsc_c00461{letter-spacing:0.006400pt;}
.ws1b_c00461{word-spacing:-3.353600pt;}
.ws1c_c00461{word-spacing:-3.334400pt;}
.ws1f_c00461{word-spacing:-2.700800pt;}
.ws27_c00461{word-spacing:-2.694400pt;}
.ws20_c00461{word-spacing:-2.681600pt;}
.ws21_c00461{word-spacing:-2.675200pt;}
.ws2d_c00461{word-spacing:-2.464000pt;}
.ws2f_c00461{word-spacing:-2.425600pt;}
.ws2e_c00461{word-spacing:-2.393600pt;}
.wsc_c00461{word-spacing:-1.516800pt;}
.ws6_c00461{word-spacing:-1.446400pt;}
.ws7_c00461{word-spacing:-1.420800pt;}
.ws18_c00461{word-spacing:-1.414400pt;}
.wsd_c00461{word-spacing:-1.408000pt;}
.ws34_c00461{word-spacing:-0.160000pt;}
.ws9_c00461{word-spacing:-0.128000pt;}
.ws8_c00461{word-spacing:-0.121600pt;}
.ws0_c00461{word-spacing:0.000000pt;}
.ws13_c00461{word-spacing:0.083200pt;}
.ws23_c00461{word-spacing:0.147200pt;}
.ws17_c00461{word-spacing:0.160000pt;}
.ws14_c00461{word-spacing:0.166400pt;}
.ws22_c00461{word-spacing:0.185600pt;}
.ws11_c00461{word-spacing:1.100800pt;}
.ws12_c00461{word-spacing:1.126400pt;}
.ws32_c00461{word-spacing:1.446400pt;}
.wse_c00461{word-spacing:4.313600pt;}
.ws1a_c00461{word-spacing:4.960000pt;}
.ws19_c00461{word-spacing:5.088000pt;}
.ws26_c00461{word-spacing:5.267200pt;}
.ws24_c00461{word-spacing:5.286400pt;}
.ws2b_c00461{word-spacing:6.246400pt;}
.ws2c_c00461{word-spacing:6.470400pt;}
.ws35_c00461{word-spacing:6.899200pt;}
.ws36_c00461{word-spacing:6.924800pt;}
.ws5_c00461{word-spacing:8.102400pt;}
.ws28_c00461{word-spacing:8.518400pt;}
.ws1e_c00461{word-spacing:8.787200pt;}
.ws1d_c00461{word-spacing:8.812800pt;}
.wsb_c00461{word-spacing:11.033600pt;}
.wsa_c00461{word-spacing:11.052800pt;}
.ws37_c00461{word-spacing:12.652800pt;}
.ws2_c00461{word-spacing:13.568000pt;}
.ws2a_c00461{word-spacing:13.600000pt;}
.ws1_c00461{word-spacing:13.632000pt;}
.ws29_c00461{word-spacing:13.664000pt;}
.wsf_c00461{word-spacing:14.144000pt;}
.ws10_c00461{word-spacing:14.252800pt;}
.ws4_c00461{word-spacing:14.899200pt;}
.ws3_c00461{word-spacing:14.918400pt;}
.ws33_c00461{word-spacing:17.120000pt;}
.ws16_c00461{word-spacing:23.193600pt;}
.ws15_c00461{word-spacing:23.257600pt;}
.ws30_c00461{word-spacing:23.859200pt;}
.ws31_c00461{word-spacing:23.872000pt;}
.ws25_c00461{word-spacing:29.299200pt;}
._1_c00461{margin-left:-23.526400pt;}
._0_c00461{width:0.966400pt;}
.fs0_c00461{font-size:64.000000pt;}
.y0_c00461{bottom:0.000000pt;}
.y2_c00461{bottom:41.627067pt;}
.y1_c00461{bottom:60.027067pt;}
.y2b_c00461{bottom:124.827067pt;}
.y2a_c00461{bottom:143.227067pt;}
.y29_c00461{bottom:178.827067pt;}
.y28_c00461{bottom:206.427067pt;}
.y27_c00461{bottom:234.027067pt;}
.y26_c00461{bottom:261.627067pt;}
.y25_c00461{bottom:288.027067pt;}
.y24_c00461{bottom:306.427067pt;}
.y23_c00461{bottom:324.827067pt;}
.y22_c00461{bottom:343.147067pt;}
.y21_c00461{bottom:361.547067pt;}
.y20_c00461{bottom:379.947067pt;}
.y1f_c00461{bottom:398.347067pt;}
.y1e_c00461{bottom:416.747067pt;}
.y1d_c00461{bottom:435.147067pt;}
.y1c_c00461{bottom:453.547067pt;}
.y1b_c00461{bottom:471.947067pt;}
.y1a_c00461{bottom:490.347067pt;}
.y19_c00461{bottom:508.747067pt;}
.y18_c00461{bottom:527.147067pt;}
.y17_c00461{bottom:545.547067pt;}
.y16_c00461{bottom:563.947067pt;}
.y15_c00461{bottom:599.547067pt;}
.y14_c00461{bottom:627.147067pt;}
.y13_c00461{bottom:654.747067pt;}
.y12_c00461{bottom:682.347067pt;}
.y11_c00461{bottom:709.947067pt;}
.y10_c00461{bottom:736.347067pt;}
.yf_c00461{bottom:754.747067pt;}
.ye_c00461{bottom:773.147067pt;}
.yd_c00461{bottom:791.547067pt;}
.yc_c00461{bottom:809.947067pt;}
.yb_c00461{bottom:828.347067pt;}
.ya_c00461{bottom:846.747067pt;}
.y9_c00461{bottom:865.147067pt;}
.y8_c00461{bottom:883.547067pt;}
.y7_c00461{bottom:901.947067pt;}
.y6_c00461{bottom:920.347067pt;}
.y5_c00461{bottom:938.747067pt;}
.y4_c00461{bottom:957.147067pt;}
.y3_c00461{bottom:975.547067pt;}
.h1_c00461{height:56.156250pt;}
.h2_c00461{height:57.375000pt;}
.h0_c00461{height:1122.666667pt;}
.w1_c00461{width:793.333333pt;}
.w0_c00461{width:793.626667pt;}
.x0_c00461{left:0.000000pt;}
.x2_c00461{left:113.440000pt;}
.x3_c00461{left:180.400000pt;}
.x1_c00461{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7dfd1003c6f55c63a4989e3a.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.093262;font-style:normal;font-weight:normal;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_6b8de1ea45d4757f81d45536.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00462{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.lsb_c00462{letter-spacing:-0.086400px;}
.ls4_c00462{letter-spacing:-0.079200px;}
.ls3_c00462{letter-spacing:-0.072000px;}
.lsa_c00462{letter-spacing:-0.064800px;}
.ls8_c00462{letter-spacing:-0.057600px;}
.ls2_c00462{letter-spacing:-0.050400px;}
.ls5_c00462{letter-spacing:-0.043200px;}
.ls1_c00462{letter-spacing:-0.036000px;}
.ls9_c00462{letter-spacing:-0.028800px;}
.ls6_c00462{letter-spacing:-0.021600px;}
.lsc_c00462{letter-spacing:-0.014400px;}
.ls0_c00462{letter-spacing:0.000000px;}
.ls7_c00462{letter-spacing:0.036000px;}
.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;}
}
.ws2d_c00462{word-spacing:-4.860000px;}
.ws1e_c00462{word-spacing:-4.852800px;}
.ws1d_c00462{word-spacing:-4.752000px;}
.ws3_c00462{word-spacing:-3.844800px;}
.ws2_c00462{word-spacing:-3.808800px;}
.ws10_c00462{word-spacing:-3.405600px;}
.ws24_c00462{word-spacing:-3.398400px;}
.ws30_c00462{word-spacing:-2.289600px;}
.ws28_c00462{word-spacing:-1.612800px;}
.ws27_c00462{word-spacing:-1.576800px;}
.ws1_c00462{word-spacing:-1.245600px;}
.ws0_c00462{word-spacing:0.000000px;}
.ws20_c00462{word-spacing:0.136800px;}
.ws1f_c00462{word-spacing:0.172800px;}
.wsb_c00462{word-spacing:0.187200px;}
.ws19_c00462{word-spacing:0.194400px;}
.ws6_c00462{word-spacing:0.201600px;}
.ws15_c00462{word-spacing:0.237600px;}
.ws33_c00462{word-spacing:1.260000px;}
.ws32_c00462{word-spacing:1.296000px;}
.ws34_c00462{word-spacing:1.627200px;}
.ws25_c00462{word-spacing:1.634400px;}
.ws26_c00462{word-spacing:1.670400px;}
.ws1b_c00462{word-spacing:1.972800px;}
.ws1c_c00462{word-spacing:2.016000px;}
.ws36_c00462{word-spacing:2.620800px;}
.ws35_c00462{word-spacing:2.707200px;}
.wsf_c00462{word-spacing:3.376800px;}
.wse_c00462{word-spacing:3.391200px;}
.wsc_c00462{word-spacing:4.478400px;}
.ws11_c00462{word-spacing:4.492800px;}
.ws12_c00462{word-spacing:4.550400px;}
.wsd_c00462{word-spacing:4.557600px;}
.ws5_c00462{word-spacing:5.212800px;}
.ws14_c00462{word-spacing:5.220000px;}
.ws13_c00462{word-spacing:5.227200px;}
.ws4_c00462{word-spacing:5.234400px;}
.ws2a_c00462{word-spacing:5.306400px;}
.ws23_c00462{word-spacing:5.947200px;}
.wsa_c00462{word-spacing:6.300000px;}
.ws18_c00462{word-spacing:6.321600px;}
.ws1a_c00462{word-spacing:8.071200px;}
.ws2e_c00462{word-spacing:8.812800px;}
.ws2f_c00462{word-spacing:8.827200px;}
.ws17_c00462{word-spacing:9.532800px;}
.ws16_c00462{word-spacing:9.547200px;}
.ws2c_c00462{word-spacing:9.878400px;}
.ws7_c00462{word-spacing:10.980000px;}
.ws9_c00462{word-spacing:10.994400px;}
.ws8_c00462{word-spacing:11.102400px;}
.ws22_c00462{word-spacing:21.088800px;}
.ws21_c00462{word-spacing:21.103200px;}
.ws29_c00462{word-spacing:23.241600px;}
.ws2b_c00462{word-spacing:26.863200px;}
.ws31_c00462{word-spacing:29.008800px;}
._0_c00462{width:1.152000px;}
.fc0_c00462{color:rgb(0,0,0);}
.fs0_c00462{font-size:72.000000px;}
.y0_c00462{bottom:0.000000px;}
.y2_c00462{bottom:46.830450px;}
.y1_c00462{bottom:67.530450px;}
.y2c_c00462{bottom:141.780450px;}
.y2b_c00462{bottom:171.480450px;}
.y2a_c00462{bottom:192.180450px;}
.y29_c00462{bottom:212.880450px;}
.y28_c00462{bottom:233.580450px;}
.y27_c00462{bottom:254.280450px;}
.y26_c00462{bottom:274.980450px;}
.y25_c00462{bottom:295.680450px;}
.y24_c00462{bottom:316.380450px;}
.y23_c00462{bottom:337.080450px;}
.y22_c00462{bottom:357.690450px;}
.y21_c00462{bottom:378.390450px;}
.y20_c00462{bottom:399.090450px;}
.y1f_c00462{bottom:419.790450px;}
.y1e_c00462{bottom:440.490450px;}
.y1d_c00462{bottom:461.190450px;}
.y1c_c00462{bottom:481.890450px;}
.y1b_c00462{bottom:502.590450px;}
.y1a_c00462{bottom:523.290450px;}
.y19_c00462{bottom:543.990450px;}
.y18_c00462{bottom:564.690450px;}
.y17_c00462{bottom:585.390450px;}
.y16_c00462{bottom:625.440450px;}
.y15_c00462{bottom:656.490450px;}
.y14_c00462{bottom:687.540450px;}
.y13_c00462{bottom:717.240450px;}
.y12_c00462{bottom:737.940450px;}
.y11_c00462{bottom:758.640450px;}
.y10_c00462{bottom:779.340450px;}
.yf_c00462{bottom:800.040450px;}
.ye_c00462{bottom:820.740450px;}
.yd_c00462{bottom:841.440450px;}
.yc_c00462{bottom:862.140450px;}
.yb_c00462{bottom:902.190450px;}
.ya_c00462{bottom:933.240450px;}
.y9_c00462{bottom:964.290450px;}
.y8_c00462{bottom:993.990450px;}
.y7_c00462{bottom:1014.690450px;}
.y6_c00462{bottom:1035.390450px;}
.y5_c00462{bottom:1056.090450px;}
.y4_c00462{bottom:1076.790450px;}
.y3_c00462{bottom:1097.490450px;}
.h1_c00462{height:63.175781px;}
.h2_c00462{height:64.546875px;}
.h0_c00462{height:1263.000000px;}
.w1_c00462{width:892.500000px;}
.w0_c00462{width:892.830000px;}
.x0_c00462{left:0.000000px;}
.x2_c00462{left:170.100000px;}
.x3_c00462{left:245.430000px;}
.x1_c00462{left:738.360000px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.lsb_c00462{letter-spacing:-0.076800pt;}
.ls4_c00462{letter-spacing:-0.070400pt;}
.ls3_c00462{letter-spacing:-0.064000pt;}
.lsa_c00462{letter-spacing:-0.057600pt;}
.ls8_c00462{letter-spacing:-0.051200pt;}
.ls2_c00462{letter-spacing:-0.044800pt;}
.ls5_c00462{letter-spacing:-0.038400pt;}
.ls1_c00462{letter-spacing:-0.032000pt;}
.ls9_c00462{letter-spacing:-0.025600pt;}
.ls6_c00462{letter-spacing:-0.019200pt;}
.lsc_c00462{letter-spacing:-0.012800pt;}
.ls0_c00462{letter-spacing:0.000000pt;}
.ls7_c00462{letter-spacing:0.032000pt;}
.ws2d_c00462{word-spacing:-4.320000pt;}
.ws1e_c00462{word-spacing:-4.313600pt;}
.ws1d_c00462{word-spacing:-4.224000pt;}
.ws3_c00462{word-spacing:-3.417600pt;}
.ws2_c00462{word-spacing:-3.385600pt;}
.ws10_c00462{word-spacing:-3.027200pt;}
.ws24_c00462{word-spacing:-3.020800pt;}
.ws30_c00462{word-spacing:-2.035200pt;}
.ws28_c00462{word-spacing:-1.433600pt;}
.ws27_c00462{word-spacing:-1.401600pt;}
.ws1_c00462{word-spacing:-1.107200pt;}
.ws0_c00462{word-spacing:0.000000pt;}
.ws20_c00462{word-spacing:0.121600pt;}
.ws1f_c00462{word-spacing:0.153600pt;}
.wsb_c00462{word-spacing:0.166400pt;}
.ws19_c00462{word-spacing:0.172800pt;}
.ws6_c00462{word-spacing:0.179200pt;}
.ws15_c00462{word-spacing:0.211200pt;}
.ws33_c00462{word-spacing:1.120000pt;}
.ws32_c00462{word-spacing:1.152000pt;}
.ws34_c00462{word-spacing:1.446400pt;}
.ws25_c00462{word-spacing:1.452800pt;}
.ws26_c00462{word-spacing:1.484800pt;}
.ws1b_c00462{word-spacing:1.753600pt;}
.ws1c_c00462{word-spacing:1.792000pt;}
.ws36_c00462{word-spacing:2.329600pt;}
.ws35_c00462{word-spacing:2.406400pt;}
.wsf_c00462{word-spacing:3.001600pt;}
.wse_c00462{word-spacing:3.014400pt;}
.wsc_c00462{word-spacing:3.980800pt;}
.ws11_c00462{word-spacing:3.993600pt;}
.ws12_c00462{word-spacing:4.044800pt;}
.wsd_c00462{word-spacing:4.051200pt;}
.ws5_c00462{word-spacing:4.633600pt;}
.ws14_c00462{word-spacing:4.640000pt;}
.ws13_c00462{word-spacing:4.646400pt;}
.ws4_c00462{word-spacing:4.652800pt;}
.ws2a_c00462{word-spacing:4.716800pt;}
.ws23_c00462{word-spacing:5.286400pt;}
.wsa_c00462{word-spacing:5.600000pt;}
.ws18_c00462{word-spacing:5.619200pt;}
.ws1a_c00462{word-spacing:7.174400pt;}
.ws2e_c00462{word-spacing:7.833600pt;}
.ws2f_c00462{word-spacing:7.846400pt;}
.ws17_c00462{word-spacing:8.473600pt;}
.ws16_c00462{word-spacing:8.486400pt;}
.ws2c_c00462{word-spacing:8.780800pt;}
.ws7_c00462{word-spacing:9.760000pt;}
.ws9_c00462{word-spacing:9.772800pt;}
.ws8_c00462{word-spacing:9.868800pt;}
.ws22_c00462{word-spacing:18.745600pt;}
.ws21_c00462{word-spacing:18.758400pt;}
.ws29_c00462{word-spacing:20.659200pt;}
.ws2b_c00462{word-spacing:23.878400pt;}
.ws31_c00462{word-spacing:25.785600pt;}
._0_c00462{width:1.024000pt;}
.fs0_c00462{font-size:64.000000pt;}
.y0_c00462{bottom:0.000000pt;}
.y2_c00462{bottom:41.627067pt;}
.y1_c00462{bottom:60.027067pt;}
.y2c_c00462{bottom:126.027067pt;}
.y2b_c00462{bottom:152.427067pt;}
.y2a_c00462{bottom:170.827067pt;}
.y29_c00462{bottom:189.227067pt;}
.y28_c00462{bottom:207.627067pt;}
.y27_c00462{bottom:226.027067pt;}
.y26_c00462{bottom:244.427067pt;}
.y25_c00462{bottom:262.827067pt;}
.y24_c00462{bottom:281.227067pt;}
.y23_c00462{bottom:299.627067pt;}
.y22_c00462{bottom:317.947067pt;}
.y21_c00462{bottom:336.347067pt;}
.y20_c00462{bottom:354.747067pt;}
.y1f_c00462{bottom:373.147067pt;}
.y1e_c00462{bottom:391.547067pt;}
.y1d_c00462{bottom:409.947067pt;}
.y1c_c00462{bottom:428.347067pt;}
.y1b_c00462{bottom:446.747067pt;}
.y1a_c00462{bottom:465.147067pt;}
.y19_c00462{bottom:483.547067pt;}
.y18_c00462{bottom:501.947067pt;}
.y17_c00462{bottom:520.347067pt;}
.y16_c00462{bottom:555.947067pt;}
.y15_c00462{bottom:583.547067pt;}
.y14_c00462{bottom:611.147067pt;}
.y13_c00462{bottom:637.547067pt;}
.y12_c00462{bottom:655.947067pt;}
.y11_c00462{bottom:674.347067pt;}
.y10_c00462{bottom:692.747067pt;}
.yf_c00462{bottom:711.147067pt;}
.ye_c00462{bottom:729.547067pt;}
.yd_c00462{bottom:747.947067pt;}
.yc_c00462{bottom:766.347067pt;}
.yb_c00462{bottom:801.947067pt;}
.ya_c00462{bottom:829.547067pt;}
.y9_c00462{bottom:857.147067pt;}
.y8_c00462{bottom:883.547067pt;}
.y7_c00462{bottom:901.947067pt;}
.y6_c00462{bottom:920.347067pt;}
.y5_c00462{bottom:938.747067pt;}
.y4_c00462{bottom:957.147067pt;}
.y3_c00462{bottom:975.547067pt;}
.h1_c00462{height:56.156250pt;}
.h2_c00462{height:57.375000pt;}
.h0_c00462{height:1122.666667pt;}
.w1_c00462{width:793.333333pt;}
.w0_c00462{width:793.626667pt;}
.x0_c00462{left:0.000000pt;}
.x2_c00462{left:151.200000pt;}
.x3_c00462{left:218.160000pt;}
.x1_c00462{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_19423bf568ddc73215ce0ea9.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.093262;font-style:normal;font-weight:normal;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_27ded446c32b99d52c173ca7.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.106934;font-style:normal;font-weight:normal;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_7a5b1e699626eae10349ea23.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls8_c00463{letter-spacing:-0.079200px;}
.lsc_c00463{letter-spacing:-0.072000px;}
.ls6_c00463{letter-spacing:-0.064800px;}
.ls7_c00463{letter-spacing:-0.057600px;}
.lsa_c00463{letter-spacing:-0.050400px;}
.ls1_c00463{letter-spacing:-0.043200px;}
.ls4_c00463{letter-spacing:-0.036000px;}
.ls2_c00463{letter-spacing:-0.028800px;}
.ls3_c00463{letter-spacing:-0.021600px;}
.lsb_c00463{letter-spacing:-0.014400px;}
.ls5_c00463{letter-spacing:-0.007200px;}
.ls0_c00463{letter-spacing:0.000000px;}
.ls9_c00463{letter-spacing:0.007200px;}
.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;}
}
.ws6_c00463{word-spacing:-4.874400px;}
.ws7_c00463{word-spacing:-4.852800px;}
.ws8_c00463{word-spacing:-4.456800px;}
.ws12_c00463{word-spacing:-3.808800px;}
.ws13_c00463{word-spacing:-3.722400px;}
.ws10_c00463{word-spacing:-2.728800px;}
.ws11_c00463{word-spacing:-2.692800px;}
.ws1b_c00463{word-spacing:-2.419200px;}
.wsb_c00463{word-spacing:-2.368800px;}
.ws1c_c00463{word-spacing:-2.325600px;}
.ws1a_c00463{word-spacing:-2.296800px;}
.ws9_c00463{word-spacing:-2.210400px;}
.wsa_c00463{word-spacing:-2.188800px;}
.ws16_c00463{word-spacing:-1.958400px;}
.ws17_c00463{word-spacing:-1.857600px;}
.ws14_c00463{word-spacing:-0.151200px;}
.ws15_c00463{word-spacing:-0.122400px;}
.ws0_c00463{word-spacing:0.000000px;}
.ws21_c00463{word-spacing:0.079200px;}
.wsc_c00463{word-spacing:0.151200px;}
.ws2f_c00463{word-spacing:0.172800px;}
.ws4_c00463{word-spacing:0.180000px;}
.ws5_c00463{word-spacing:0.194400px;}
.ws2e_c00463{word-spacing:0.201600px;}
.ws22_c00463{word-spacing:0.223200px;}
.ws32_c00463{word-spacing:4.536000px;}
.wsf_c00463{word-spacing:5.212800px;}
.ws1e_c00463{word-spacing:5.940000px;}
.ws1d_c00463{word-spacing:5.954400px;}
.ws18_c00463{word-spacing:6.336000px;}
.ws19_c00463{word-spacing:6.350400px;}
.ws28_c00463{word-spacing:7.617600px;}
.ws27_c00463{word-spacing:7.761600px;}
.ws26_c00463{word-spacing:8.827200px;}
.ws25_c00463{word-spacing:8.848800px;}
.ws30_c00463{word-spacing:9.540000px;}
.ws31_c00463{word-spacing:9.583200px;}
.ws24_c00463{word-spacing:10.598400px;}
.ws2b_c00463{word-spacing:10.627200px;}
.ws23_c00463{word-spacing:10.634400px;}
.ws20_c00463{word-spacing:12.081600px;}
.wse_c00463{word-spacing:13.528800px;}
.ws29_c00463{word-spacing:16.754400px;}
.ws2a_c00463{word-spacing:16.790400px;}
.wsd_c00463{word-spacing:17.064000px;}
.ws2c_c00463{word-spacing:17.373600px;}
.ws2d_c00463{word-spacing:17.488800px;}
.ws2_c00463{word-spacing:24.933600px;}
.ws3_c00463{word-spacing:24.998400px;}
.ws1f_c00463{word-spacing:29.700000px;}
.ws1_c00463{word-spacing:33.681600px;}
._0_c00463{width:1.353600px;}
.fc0_c00463{color:rgb(0,0,0);}
.fs0_c00463{font-size:72.000000px;}
.y0_c00463{bottom:0.000000px;}
.y2_c00463{bottom:46.830450px;}
.y1_c00463{bottom:67.530450px;}
.y29_c00463{bottom:132.780450px;}
.y28_c00463{bottom:153.480450px;}
.y27_c00463{bottom:174.180450px;}
.y26_c00463{bottom:194.880450px;}
.y25_c00463{bottom:215.580450px;}
.y24_c00463{bottom:236.280450px;}
.y23_c00463{bottom:256.980450px;}
.y22_c00463{bottom:277.680450px;}
.y21_c00463{bottom:298.380450px;}
.y20_c00463{bottom:319.080450px;}
.y1f_c00463{bottom:339.690450px;}
.y1e_c00463{bottom:360.390450px;}
.y1d_c00463{bottom:381.090450px;}
.y1c_c00463{bottom:401.790450px;}
.y1b_c00463{bottom:422.490450px;}
.y1a_c00463{bottom:443.190450px;}
.y19_c00463{bottom:463.890450px;}
.y18_c00463{bottom:484.590450px;}
.y17_c00463{bottom:524.640450px;}
.y16_c00463{bottom:555.690450px;}
.y15_c00463{bottom:586.740450px;}
.y14_c00463{bottom:617.790450px;}
.y13_c00463{bottom:648.840450px;}
.y12_c00463{bottom:688.890450px;}
.y11_c00463{bottom:718.590450px;}
.y10_c00463{bottom:739.290450px;}
.yf_c00463{bottom:759.990450px;}
.ye_c00463{bottom:780.690450px;}
.yd_c00463{bottom:801.390450px;}
.yc_c00463{bottom:822.090450px;}
.yb_c00463{bottom:842.790450px;}
.ya_c00463{bottom:882.840450px;}
.y9_c00463{bottom:913.890450px;}
.y8_c00463{bottom:944.940450px;}
.y7_c00463{bottom:974.640450px;}
.y6_c00463{bottom:995.340450px;}
.y5_c00463{bottom:1035.390450px;}
.y4_c00463{bottom:1066.440450px;}
.y3_c00463{bottom:1097.490450px;}
.h1_c00463{height:63.175781px;}
.h2_c00463{height:64.546875px;}
.h3_c00463{height:75.093750px;}
.h0_c00463{height:1263.000000px;}
.w1_c00463{width:892.500000px;}
.w0_c00463{width:892.830000px;}
.x0_c00463{left:0.000000px;}
.x2_c00463{left:127.620000px;}
.x3_c00463{left:202.950000px;}
.x1_c00463{left:695.880000px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls8_c00463{letter-spacing:-0.070400pt;}
.lsc_c00463{letter-spacing:-0.064000pt;}
.ls6_c00463{letter-spacing:-0.057600pt;}
.ls7_c00463{letter-spacing:-0.051200pt;}
.lsa_c00463{letter-spacing:-0.044800pt;}
.ls1_c00463{letter-spacing:-0.038400pt;}
.ls4_c00463{letter-spacing:-0.032000pt;}
.ls2_c00463{letter-spacing:-0.025600pt;}
.ls3_c00463{letter-spacing:-0.019200pt;}
.lsb_c00463{letter-spacing:-0.012800pt;}
.ls5_c00463{letter-spacing:-0.006400pt;}
.ls0_c00463{letter-spacing:0.000000pt;}
.ls9_c00463{letter-spacing:0.006400pt;}
.ws6_c00463{word-spacing:-4.332800pt;}
.ws7_c00463{word-spacing:-4.313600pt;}
.ws8_c00463{word-spacing:-3.961600pt;}
.ws12_c00463{word-spacing:-3.385600pt;}
.ws13_c00463{word-spacing:-3.308800pt;}
.ws10_c00463{word-spacing:-2.425600pt;}
.ws11_c00463{word-spacing:-2.393600pt;}
.ws1b_c00463{word-spacing:-2.150400pt;}
.wsb_c00463{word-spacing:-2.105600pt;}
.ws1c_c00463{word-spacing:-2.067200pt;}
.ws1a_c00463{word-spacing:-2.041600pt;}
.ws9_c00463{word-spacing:-1.964800pt;}
.wsa_c00463{word-spacing:-1.945600pt;}
.ws16_c00463{word-spacing:-1.740800pt;}
.ws17_c00463{word-spacing:-1.651200pt;}
.ws14_c00463{word-spacing:-0.134400pt;}
.ws15_c00463{word-spacing:-0.108800pt;}
.ws0_c00463{word-spacing:0.000000pt;}
.ws21_c00463{word-spacing:0.070400pt;}
.wsc_c00463{word-spacing:0.134400pt;}
.ws2f_c00463{word-spacing:0.153600pt;}
.ws4_c00463{word-spacing:0.160000pt;}
.ws5_c00463{word-spacing:0.172800pt;}
.ws2e_c00463{word-spacing:0.179200pt;}
.ws22_c00463{word-spacing:0.198400pt;}
.ws32_c00463{word-spacing:4.032000pt;}
.wsf_c00463{word-spacing:4.633600pt;}
.ws1e_c00463{word-spacing:5.280000pt;}
.ws1d_c00463{word-spacing:5.292800pt;}
.ws18_c00463{word-spacing:5.632000pt;}
.ws19_c00463{word-spacing:5.644800pt;}
.ws28_c00463{word-spacing:6.771200pt;}
.ws27_c00463{word-spacing:6.899200pt;}
.ws26_c00463{word-spacing:7.846400pt;}
.ws25_c00463{word-spacing:7.865600pt;}
.ws30_c00463{word-spacing:8.480000pt;}
.ws31_c00463{word-spacing:8.518400pt;}
.ws24_c00463{word-spacing:9.420800pt;}
.ws2b_c00463{word-spacing:9.446400pt;}
.ws23_c00463{word-spacing:9.452800pt;}
.ws20_c00463{word-spacing:10.739200pt;}
.wse_c00463{word-spacing:12.025600pt;}
.ws29_c00463{word-spacing:14.892800pt;}
.ws2a_c00463{word-spacing:14.924800pt;}
.wsd_c00463{word-spacing:15.168000pt;}
.ws2c_c00463{word-spacing:15.443200pt;}
.ws2d_c00463{word-spacing:15.545600pt;}
.ws2_c00463{word-spacing:22.163200pt;}
.ws3_c00463{word-spacing:22.220800pt;}
.ws1f_c00463{word-spacing:26.400000pt;}
.ws1_c00463{word-spacing:29.939200pt;}
._0_c00463{width:1.203200pt;}
.fs0_c00463{font-size:64.000000pt;}
.y0_c00463{bottom:0.000000pt;}
.y2_c00463{bottom:41.627067pt;}
.y1_c00463{bottom:60.027067pt;}
.y29_c00463{bottom:118.027067pt;}
.y28_c00463{bottom:136.427067pt;}
.y27_c00463{bottom:154.827067pt;}
.y26_c00463{bottom:173.227067pt;}
.y25_c00463{bottom:191.627067pt;}
.y24_c00463{bottom:210.027067pt;}
.y23_c00463{bottom:228.427067pt;}
.y22_c00463{bottom:246.827067pt;}
.y21_c00463{bottom:265.227067pt;}
.y20_c00463{bottom:283.627067pt;}
.y1f_c00463{bottom:301.947067pt;}
.y1e_c00463{bottom:320.347067pt;}
.y1d_c00463{bottom:338.747067pt;}
.y1c_c00463{bottom:357.147067pt;}
.y1b_c00463{bottom:375.547067pt;}
.y1a_c00463{bottom:393.947067pt;}
.y19_c00463{bottom:412.347067pt;}
.y18_c00463{bottom:430.747067pt;}
.y17_c00463{bottom:466.347067pt;}
.y16_c00463{bottom:493.947067pt;}
.y15_c00463{bottom:521.547067pt;}
.y14_c00463{bottom:549.147067pt;}
.y13_c00463{bottom:576.747067pt;}
.y12_c00463{bottom:612.347067pt;}
.y11_c00463{bottom:638.747067pt;}
.y10_c00463{bottom:657.147067pt;}
.yf_c00463{bottom:675.547067pt;}
.ye_c00463{bottom:693.947067pt;}
.yd_c00463{bottom:712.347067pt;}
.yc_c00463{bottom:730.747067pt;}
.yb_c00463{bottom:749.147067pt;}
.ya_c00463{bottom:784.747067pt;}
.y9_c00463{bottom:812.347067pt;}
.y8_c00463{bottom:839.947067pt;}
.y7_c00463{bottom:866.347067pt;}
.y6_c00463{bottom:884.747067pt;}
.y5_c00463{bottom:920.347067pt;}
.y4_c00463{bottom:947.947067pt;}
.y3_c00463{bottom:975.547067pt;}
.h1_c00463{height:56.156250pt;}
.h2_c00463{height:57.375000pt;}
.h3_c00463{height:66.750000pt;}
.h0_c00463{height:1122.666667pt;}
.w1_c00463{width:793.333333pt;}
.w0_c00463{width:793.626667pt;}
.x0_c00463{left:0.000000pt;}
.x2_c00463{left:113.440000pt;}
.x3_c00463{left:180.400000pt;}
.x1_c00463{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6055ad9561d2a90b0594fed7.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.093262;font-style:normal;font-weight:normal;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_e0250332a17f7bdbf8a445b5.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.106934;font-style:normal;font-weight:normal;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_2b66f3bbebccb7d525204342.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00464{letter-spacing:-0.108000px;}
.ls8_c00464{letter-spacing:-0.079200px;}
.lsd_c00464{letter-spacing:-0.072000px;}
.lsc_c00464{letter-spacing:-0.064800px;}
.ls7_c00464{letter-spacing:-0.057600px;}
.ls3_c00464{letter-spacing:-0.050400px;}
.ls9_c00464{letter-spacing:-0.043200px;}
.ls2_c00464{letter-spacing:-0.036000px;}
.ls4_c00464{letter-spacing:-0.028800px;}
.ls5_c00464{letter-spacing:-0.021600px;}
.ls1_c00464{letter-spacing:-0.014400px;}
.ls6_c00464{letter-spacing:-0.007200px;}
.ls0_c00464{letter-spacing:0.000000px;}
.lsa_c00464{letter-spacing:0.007200px;}
.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:-20.016000px;}
.wsd_c00464{word-spacing:-4.860000px;}
.wse_c00464{word-spacing:-4.788000px;}
.ws15_c00464{word-spacing:-4.147200px;}
.ws1c_c00464{word-spacing:-1.965600px;}
.ws17_c00464{word-spacing:-1.584000px;}
.ws16_c00464{word-spacing:-1.519200px;}
.ws13_c00464{word-spacing:-1.281600px;}
.ws12_c00464{word-spacing:-1.260000px;}
.ws1_c00464{word-spacing:0.000000px;}
.ws2a_c00464{word-spacing:0.165600px;}
.wsb_c00464{word-spacing:0.172800px;}
.wsc_c00464{word-spacing:0.187200px;}
.ws2b_c00464{word-spacing:0.194400px;}
.ws30_c00464{word-spacing:0.201600px;}
.ws23_c00464{word-spacing:1.677600px;}
.ws1d_c00464{word-spacing:2.311200px;}
.ws1f_c00464{word-spacing:3.412800px;}
.ws18_c00464{word-spacing:4.168800px;}
.ws19_c00464{word-spacing:4.197600px;}
.ws29_c00464{word-spacing:5.918400px;}
.ws28_c00464{word-spacing:5.968800px;}
.ws21_c00464{word-spacing:9.417600px;}
.ws20_c00464{word-spacing:9.540000px;}
.ws4_c00464{word-spacing:9.878400px;}
.ws5_c00464{word-spacing:9.928800px;}
.ws24_c00464{word-spacing:10.274400px;}
.ws25_c00464{word-spacing:10.346400px;}
.wsf_c00464{word-spacing:11.613600px;}
.ws10_c00464{word-spacing:11.707200px;}
.ws6_c00464{word-spacing:14.241600px;}
.ws9_c00464{word-spacing:14.580000px;}
.wsa_c00464{word-spacing:14.644800px;}
.ws2d_c00464{word-spacing:15.595200px;}
.ws2c_c00464{word-spacing:15.688800px;}
.ws2f_c00464{word-spacing:16.358400px;}
.ws2e_c00464{word-spacing:16.380000px;}
.ws1b_c00464{word-spacing:16.840800px;}
.ws1a_c00464{word-spacing:16.848000px;}
.ws14_c00464{word-spacing:19.648800px;}
.ws1e_c00464{word-spacing:23.241600px;}
.ws11_c00464{word-spacing:23.925600px;}
.ws27_c00464{word-spacing:24.602400px;}
.ws26_c00464{word-spacing:24.631200px;}
.ws2_c00464{word-spacing:26.812800px;}
.ws3_c00464{word-spacing:26.834400px;}
.ws22_c00464{word-spacing:33.350400px;}
.ws7_c00464{word-spacing:34.747200px;}
.ws8_c00464{word-spacing:34.826400px;}
._1_c00464{margin-left:-1.296000px;}
._0_c00464{width:1.152000px;}
.fc0_c00464{color:rgb(0,0,0);}
.fs0_c00464{font-size:72.000000px;}
.y0_c00464{bottom:0.000000px;}
.y2_c00464{bottom:46.830450px;}
.y1_c00464{bottom:67.530450px;}
.y2a_c00464{bottom:171.480450px;}
.y29_c00464{bottom:192.180450px;}
.y28_c00464{bottom:212.880450px;}
.y27_c00464{bottom:233.580450px;}
.y26_c00464{bottom:254.280450px;}
.y25_c00464{bottom:274.980450px;}
.y24_c00464{bottom:295.680450px;}
.y23_c00464{bottom:316.380450px;}
.y22_c00464{bottom:337.080450px;}
.y21_c00464{bottom:357.690450px;}
.y20_c00464{bottom:378.390450px;}
.y1f_c00464{bottom:399.090450px;}
.y1e_c00464{bottom:419.790450px;}
.y1d_c00464{bottom:440.490450px;}
.y1c_c00464{bottom:461.190450px;}
.y1b_c00464{bottom:481.890450px;}
.y1a_c00464{bottom:502.590450px;}
.y19_c00464{bottom:523.290450px;}
.y18_c00464{bottom:543.990450px;}
.y17_c00464{bottom:564.690450px;}
.y16_c00464{bottom:585.390450px;}
.y15_c00464{bottom:606.090450px;}
.y14_c00464{bottom:626.790450px;}
.y13_c00464{bottom:666.840450px;}
.y12_c00464{bottom:697.890450px;}
.y11_c00464{bottom:727.590450px;}
.y10_c00464{bottom:757.290450px;}
.yf_c00464{bottom:777.990450px;}
.ye_c00464{bottom:798.690450px;}
.yd_c00464{bottom:819.390450px;}
.yc_c00464{bottom:840.090450px;}
.yb_c00464{bottom:860.790450px;}
.ya_c00464{bottom:881.490450px;}
.y9_c00464{bottom:902.190450px;}
.y8_c00464{bottom:942.240450px;}
.y7_c00464{bottom:973.290450px;}
.y6_c00464{bottom:1004.340450px;}
.y5_c00464{bottom:1035.390450px;}
.y4_c00464{bottom:1066.440450px;}
.y3_c00464{bottom:1097.490450px;}
.h1_c00464{height:63.175781px;}
.h2_c00464{height:64.546875px;}
.h3_c00464{height:75.093750px;}
.h0_c00464{height:1263.000000px;}
.w1_c00464{width:892.500000px;}
.w0_c00464{width:892.830000px;}
.x0_c00464{left:0.000000px;}
.x2_c00464{left:170.100000px;}
.x3_c00464{left:245.430000px;}
.x1_c00464{left:738.360000px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.lsb_c00464{letter-spacing:-0.096000pt;}
.ls8_c00464{letter-spacing:-0.070400pt;}
.lsd_c00464{letter-spacing:-0.064000pt;}
.lsc_c00464{letter-spacing:-0.057600pt;}
.ls7_c00464{letter-spacing:-0.051200pt;}
.ls3_c00464{letter-spacing:-0.044800pt;}
.ls9_c00464{letter-spacing:-0.038400pt;}
.ls2_c00464{letter-spacing:-0.032000pt;}
.ls4_c00464{letter-spacing:-0.025600pt;}
.ls5_c00464{letter-spacing:-0.019200pt;}
.ls1_c00464{letter-spacing:-0.012800pt;}
.ls6_c00464{letter-spacing:-0.006400pt;}
.ls0_c00464{letter-spacing:0.000000pt;}
.lsa_c00464{letter-spacing:0.006400pt;}
.ws0_c00464{word-spacing:-17.792000pt;}
.wsd_c00464{word-spacing:-4.320000pt;}
.wse_c00464{word-spacing:-4.256000pt;}
.ws15_c00464{word-spacing:-3.686400pt;}
.ws1c_c00464{word-spacing:-1.747200pt;}
.ws17_c00464{word-spacing:-1.408000pt;}
.ws16_c00464{word-spacing:-1.350400pt;}
.ws13_c00464{word-spacing:-1.139200pt;}
.ws12_c00464{word-spacing:-1.120000pt;}
.ws1_c00464{word-spacing:0.000000pt;}
.ws2a_c00464{word-spacing:0.147200pt;}
.wsb_c00464{word-spacing:0.153600pt;}
.wsc_c00464{word-spacing:0.166400pt;}
.ws2b_c00464{word-spacing:0.172800pt;}
.ws30_c00464{word-spacing:0.179200pt;}
.ws23_c00464{word-spacing:1.491200pt;}
.ws1d_c00464{word-spacing:2.054400pt;}
.ws1f_c00464{word-spacing:3.033600pt;}
.ws18_c00464{word-spacing:3.705600pt;}
.ws19_c00464{word-spacing:3.731200pt;}
.ws29_c00464{word-spacing:5.260800pt;}
.ws28_c00464{word-spacing:5.305600pt;}
.ws21_c00464{word-spacing:8.371200pt;}
.ws20_c00464{word-spacing:8.480000pt;}
.ws4_c00464{word-spacing:8.780800pt;}
.ws5_c00464{word-spacing:8.825600pt;}
.ws24_c00464{word-spacing:9.132800pt;}
.ws25_c00464{word-spacing:9.196800pt;}
.wsf_c00464{word-spacing:10.323200pt;}
.ws10_c00464{word-spacing:10.406400pt;}
.ws6_c00464{word-spacing:12.659200pt;}
.ws9_c00464{word-spacing:12.960000pt;}
.wsa_c00464{word-spacing:13.017600pt;}
.ws2d_c00464{word-spacing:13.862400pt;}
.ws2c_c00464{word-spacing:13.945600pt;}
.ws2f_c00464{word-spacing:14.540800pt;}
.ws2e_c00464{word-spacing:14.560000pt;}
.ws1b_c00464{word-spacing:14.969600pt;}
.ws1a_c00464{word-spacing:14.976000pt;}
.ws14_c00464{word-spacing:17.465600pt;}
.ws1e_c00464{word-spacing:20.659200pt;}
.ws11_c00464{word-spacing:21.267200pt;}
.ws27_c00464{word-spacing:21.868800pt;}
.ws26_c00464{word-spacing:21.894400pt;}
.ws2_c00464{word-spacing:23.833600pt;}
.ws3_c00464{word-spacing:23.852800pt;}
.ws22_c00464{word-spacing:29.644800pt;}
.ws7_c00464{word-spacing:30.886400pt;}
.ws8_c00464{word-spacing:30.956800pt;}
._1_c00464{margin-left:-1.152000pt;}
._0_c00464{width:1.024000pt;}
.fs0_c00464{font-size:64.000000pt;}
.y0_c00464{bottom:0.000000pt;}
.y2_c00464{bottom:41.627067pt;}
.y1_c00464{bottom:60.027067pt;}
.y2a_c00464{bottom:152.427067pt;}
.y29_c00464{bottom:170.827067pt;}
.y28_c00464{bottom:189.227067pt;}
.y27_c00464{bottom:207.627067pt;}
.y26_c00464{bottom:226.027067pt;}
.y25_c00464{bottom:244.427067pt;}
.y24_c00464{bottom:262.827067pt;}
.y23_c00464{bottom:281.227067pt;}
.y22_c00464{bottom:299.627067pt;}
.y21_c00464{bottom:317.947067pt;}
.y20_c00464{bottom:336.347067pt;}
.y1f_c00464{bottom:354.747067pt;}
.y1e_c00464{bottom:373.147067pt;}
.y1d_c00464{bottom:391.547067pt;}
.y1c_c00464{bottom:409.947067pt;}
.y1b_c00464{bottom:428.347067pt;}
.y1a_c00464{bottom:446.747067pt;}
.y19_c00464{bottom:465.147067pt;}
.y18_c00464{bottom:483.547067pt;}
.y17_c00464{bottom:501.947067pt;}
.y16_c00464{bottom:520.347067pt;}
.y15_c00464{bottom:538.747067pt;}
.y14_c00464{bottom:557.147067pt;}
.y13_c00464{bottom:592.747067pt;}
.y12_c00464{bottom:620.347067pt;}
.y11_c00464{bottom:646.747067pt;}
.y10_c00464{bottom:673.147067pt;}
.yf_c00464{bottom:691.547067pt;}
.ye_c00464{bottom:709.947067pt;}
.yd_c00464{bottom:728.347067pt;}
.yc_c00464{bottom:746.747067pt;}
.yb_c00464{bottom:765.147067pt;}
.ya_c00464{bottom:783.547067pt;}
.y9_c00464{bottom:801.947067pt;}
.y8_c00464{bottom:837.547067pt;}
.y7_c00464{bottom:865.147067pt;}
.y6_c00464{bottom:892.747067pt;}
.y5_c00464{bottom:920.347067pt;}
.y4_c00464{bottom:947.947067pt;}
.y3_c00464{bottom:975.547067pt;}
.h1_c00464{height:56.156250pt;}
.h2_c00464{height:57.375000pt;}
.h3_c00464{height:66.750000pt;}
.h0_c00464{height:1122.666667pt;}
.w1_c00464{width:793.333333pt;}
.w0_c00464{width:793.626667pt;}
.x0_c00464{left:0.000000pt;}
.x2_c00464{left:151.200000pt;}
.x3_c00464{left:218.160000pt;}
.x1_c00464{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_19423bf568ddc73215ce0ea9.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.093262;font-style:normal;font-weight:normal;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_a93a341211c1da3d64f56291.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.ls9_c00465{letter-spacing:-0.079200px;}
.ls2_c00465{letter-spacing:-0.072000px;}
.ls1_c00465{letter-spacing:-0.050400px;}
.ls6_c00465{letter-spacing:-0.043200px;}
.ls3_c00465{letter-spacing:-0.036000px;}
.ls8_c00465{letter-spacing:-0.028800px;}
.ls4_c00465{letter-spacing:-0.021600px;}
.ls5_c00465{letter-spacing:-0.014400px;}
.ls0_c00465{letter-spacing:0.000000px;}
.ls7_c00465{letter-spacing:0.021600px;}
.lsa_c00465{letter-spacing:843.998400px;}
.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;}
}
.ws18_c00465{word-spacing:-0.216000px;}
.ws17_c00465{word-spacing:-0.122400px;}
.ws0_c00465{word-spacing:0.000000px;}
.ws6_c00465{word-spacing:0.180000px;}
.ws12_c00465{word-spacing:0.194400px;}
.ws1f_c00465{word-spacing:0.950400px;}
.ws1e_c00465{word-spacing:1.015200px;}
.ws10_c00465{word-spacing:2.347200px;}
.ws1b_c00465{word-spacing:2.354400px;}
.ws11_c00465{word-spacing:2.368800px;}
.ws4_c00465{word-spacing:4.118400px;}
.ws3_c00465{word-spacing:4.168800px;}
.wsd_c00465{word-spacing:4.384800px;}
.wsc_c00465{word-spacing:4.514400px;}
.wse_c00465{word-spacing:5.522400px;}
.wsf_c00465{word-spacing:5.594400px;}
.ws5_c00465{word-spacing:7.394400px;}
.ws15_c00465{word-spacing:9.050400px;}
.ws16_c00465{word-spacing:9.194400px;}
.ws1_c00465{word-spacing:10.612800px;}
.ws19_c00465{word-spacing:11.656800px;}
.ws1a_c00465{word-spacing:11.707200px;}
.ws1c_c00465{word-spacing:12.060000px;}
.ws1d_c00465{word-spacing:12.081600px;}
.ws8_c00465{word-spacing:16.012800px;}
.ws7_c00465{word-spacing:16.092000px;}
.ws9_c00465{word-spacing:19.598400px;}
.wsa_c00465{word-spacing:19.612800px;}
.wsb_c00465{word-spacing:19.728000px;}
.ws14_c00465{word-spacing:30.420000px;}
.ws13_c00465{word-spacing:30.492000px;}
.ws2_c00465{word-spacing:36.561600px;}
._0_c00465{width:1.080000px;}
.fc0_c00465{color:rgb(0,0,0);}
.fs0_c00465{font-size:72.000000px;}
.y0_c00465{bottom:0.000000px;}
.y2_c00465{bottom:46.830450px;}
.y1_c00465{bottom:67.530450px;}
.y18_c00465{bottom:452.190450px;}
.y17_c00465{bottom:492.240450px;}
.y16_c00465{bottom:532.290450px;}
.y15_c00465{bottom:563.340450px;}
.y14_c00465{bottom:594.390450px;}
.y13_c00465{bottom:625.440450px;}
.y12_c00465{bottom:656.490450px;}
.y11_c00465{bottom:687.540450px;}
.y10_c00465{bottom:718.590450px;}
.yf_c00465{bottom:749.640450px;}
.ye_c00465{bottom:789.690450px;}
.yd_c00465{bottom:820.740450px;}
.yc_c00465{bottom:851.790450px;}
.yb_c00465{bottom:882.840450px;}
.ya_c00465{bottom:913.890450px;}
.y9_c00465{bottom:944.940450px;}
.y8_c00465{bottom:984.990450px;}
.y7_c00465{bottom:1014.690450px;}
.y6_c00465{bottom:1035.390450px;}
.y5_c00465{bottom:1056.090450px;}
.y4_c00465{bottom:1076.790450px;}
.y3_c00465{bottom:1097.490450px;}
.h1_c00465{height:63.175781px;}
.h2_c00465{height:64.546875px;}
.h0_c00465{height:1263.000000px;}
.w1_c00465{width:892.500000px;}
.w0_c00465{width:892.830000px;}
.x0_c00465{left:0.000000px;}
.x2_c00465{left:127.620000px;}
.x3_c00465{left:202.950000px;}
.x1_c00465{left:695.880000px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls9_c00465{letter-spacing:-0.070400pt;}
.ls2_c00465{letter-spacing:-0.064000pt;}
.ls1_c00465{letter-spacing:-0.044800pt;}
.ls6_c00465{letter-spacing:-0.038400pt;}
.ls3_c00465{letter-spacing:-0.032000pt;}
.ls8_c00465{letter-spacing:-0.025600pt;}
.ls4_c00465{letter-spacing:-0.019200pt;}
.ls5_c00465{letter-spacing:-0.012800pt;}
.ls0_c00465{letter-spacing:0.000000pt;}
.ls7_c00465{letter-spacing:0.019200pt;}
.lsa_c00465{letter-spacing:750.220800pt;}
.ws18_c00465{word-spacing:-0.192000pt;}
.ws17_c00465{word-spacing:-0.108800pt;}
.ws0_c00465{word-spacing:0.000000pt;}
.ws6_c00465{word-spacing:0.160000pt;}
.ws12_c00465{word-spacing:0.172800pt;}
.ws1f_c00465{word-spacing:0.844800pt;}
.ws1e_c00465{word-spacing:0.902400pt;}
.ws10_c00465{word-spacing:2.086400pt;}
.ws1b_c00465{word-spacing:2.092800pt;}
.ws11_c00465{word-spacing:2.105600pt;}
.ws4_c00465{word-spacing:3.660800pt;}
.ws3_c00465{word-spacing:3.705600pt;}
.wsd_c00465{word-spacing:3.897600pt;}
.wsc_c00465{word-spacing:4.012800pt;}
.wse_c00465{word-spacing:4.908800pt;}
.wsf_c00465{word-spacing:4.972800pt;}
.ws5_c00465{word-spacing:6.572800pt;}
.ws15_c00465{word-spacing:8.044800pt;}
.ws16_c00465{word-spacing:8.172800pt;}
.ws1_c00465{word-spacing:9.433600pt;}
.ws19_c00465{word-spacing:10.361600pt;}
.ws1a_c00465{word-spacing:10.406400pt;}
.ws1c_c00465{word-spacing:10.720000pt;}
.ws1d_c00465{word-spacing:10.739200pt;}
.ws8_c00465{word-spacing:14.233600pt;}
.ws7_c00465{word-spacing:14.304000pt;}
.ws9_c00465{word-spacing:17.420800pt;}
.wsa_c00465{word-spacing:17.433600pt;}
.wsb_c00465{word-spacing:17.536000pt;}
.ws14_c00465{word-spacing:27.040000pt;}
.ws13_c00465{word-spacing:27.104000pt;}
.ws2_c00465{word-spacing:32.499200pt;}
._0_c00465{width:0.960000pt;}
.fs0_c00465{font-size:64.000000pt;}
.y0_c00465{bottom:0.000000pt;}
.y2_c00465{bottom:41.627067pt;}
.y1_c00465{bottom:60.027067pt;}
.y18_c00465{bottom:401.947067pt;}
.y17_c00465{bottom:437.547067pt;}
.y16_c00465{bottom:473.147067pt;}
.y15_c00465{bottom:500.747067pt;}
.y14_c00465{bottom:528.347067pt;}
.y13_c00465{bottom:555.947067pt;}
.y12_c00465{bottom:583.547067pt;}
.y11_c00465{bottom:611.147067pt;}
.y10_c00465{bottom:638.747067pt;}
.yf_c00465{bottom:666.347067pt;}
.ye_c00465{bottom:701.947067pt;}
.yd_c00465{bottom:729.547067pt;}
.yc_c00465{bottom:757.147067pt;}
.yb_c00465{bottom:784.747067pt;}
.ya_c00465{bottom:812.347067pt;}
.y9_c00465{bottom:839.947067pt;}
.y8_c00465{bottom:875.547067pt;}
.y7_c00465{bottom:901.947067pt;}
.y6_c00465{bottom:920.347067pt;}
.y5_c00465{bottom:938.747067pt;}
.y4_c00465{bottom:957.147067pt;}
.y3_c00465{bottom:975.547067pt;}
.h1_c00465{height:56.156250pt;}
.h2_c00465{height:57.375000pt;}
.h0_c00465{height:1122.666667pt;}
.w1_c00465{width:793.333333pt;}
.w0_c00465{width:793.626667pt;}
.x0_c00465{left:0.000000pt;}
.x2_c00465{left:113.440000pt;}
.x3_c00465{left:180.400000pt;}
.x1_c00465{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_97be22ca4f972d8e596a724a.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.093262;font-style:normal;font-weight:normal;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_48030d4ea2f17b7fb5708221.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00466;src:url('chunks/assets/font_28db4b06925d9f7d1e77783a.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:1.106934;font-style:normal;font-weight:normal;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_35c9c58edc00b69ca7cc329c.woff2')format("woff");}.ff4_c00466{font-family:ff4_c00466;line-height:0.765625;font-style:normal;font-weight:normal;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_7c17db3f0fac8a0614ad55cd.woff2')format("woff");}.ff5_c00466{font-family:ff5_c00466;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00466{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.ls7_c00466{letter-spacing:-0.064800px;}
.lsa_c00466{letter-spacing:-0.057600px;}
.ls6_c00466{letter-spacing:-0.050400px;}
.lsc_c00466{letter-spacing:-0.043200px;}
.ls5_c00466{letter-spacing:-0.036000px;}
.ls8_c00466{letter-spacing:-0.028800px;}
.lsb_c00466{letter-spacing:-0.021600px;}
.ls4_c00466{letter-spacing:-0.014400px;}
.ls9_c00466{letter-spacing:-0.007200px;}
.ls3_c00466{letter-spacing:0.000000px;}
.ls2_c00466{letter-spacing:0.007200px;}
.ls0_c00466{letter-spacing:0.058716px;}
.ls1_c00466{letter-spacing:0.072000px;}
.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;}
}
.ws22_c00466{word-spacing:-4.219200px;}
.ws21_c00466{word-spacing:-4.183200px;}
.ws12_c00466{word-spacing:-3.420000px;}
.ws11_c00466{word-spacing:-3.405600px;}
.ws20_c00466{word-spacing:-3.045600px;}
.ws1f_c00466{word-spacing:-3.031200px;}
.wsa_c00466{word-spacing:-1.267200px;}
.ws9_c00466{word-spacing:-1.166400px;}
.ws0_c00466{word-spacing:0.000000px;}
.ws1_c00466{word-spacing:0.033552px;}
.ws2_c00466{word-spacing:0.115200px;}
.ws15_c00466{word-spacing:0.165600px;}
.ws1c_c00466{word-spacing:0.180000px;}
.ws19_c00466{word-spacing:0.309600px;}
.ws13_c00466{word-spacing:0.561600px;}
.ws14_c00466{word-spacing:0.640800px;}
.ws8_c00466{word-spacing:3.801600px;}
.ws7_c00466{word-spacing:3.866400px;}
.wsb_c00466{word-spacing:4.147200px;}
.ws28_c00466{word-spacing:4.874400px;}
.ws25_c00466{word-spacing:6.300000px;}
.ws16_c00466{word-spacing:12.074400px;}
.ws3_c00466{word-spacing:12.794400px;}
.ws4_c00466{word-spacing:12.808800px;}
.ws17_c00466{word-spacing:13.154400px;}
.wse_c00466{word-spacing:14.205600px;}
.wsd_c00466{word-spacing:14.256000px;}
.ws24_c00466{word-spacing:15.307200px;}
.ws23_c00466{word-spacing:15.328800px;}
.ws1e_c00466{word-spacing:19.634400px;}
.ws18_c00466{word-spacing:22.543200px;}
.ws1d_c00466{word-spacing:23.227200px;}
.wsc_c00466{word-spacing:32.608800px;}
.ws6_c00466{word-spacing:34.768800px;}
.ws5_c00466{word-spacing:35.460000px;}
.ws10_c00466{word-spacing:41.954400px;}
.wsf_c00466{word-spacing:42.134400px;}
.ws1a_c00466{word-spacing:51.991200px;}
.ws1b_c00466{word-spacing:59.608800px;}
.ws26_c00466{word-spacing:61.380000px;}
.ws27_c00466{word-spacing:61.394400px;}
._4_c00466{margin-left:-7.200000px;}
._2_c00466{width:1.173600px;}
._5_c00466{width:7.560000px;}
._3_c00466{width:16.560000px;}
._1_c00466{width:18.000000px;}
._0_c00466{width:153.332640px;}
.fc0_c00466{color:rgb(0,0,0);}
.fs0_c00466{font-size:72.000000px;}
.fs1_c00466{font-size:83.880000px;}
.y0_c00466{bottom:0.000000px;}
.y2_c00466{bottom:46.830450px;}
.y1_c00466{bottom:67.530450px;}
.y21_c00466{bottom:145.920450px;}
.y20_c00466{bottom:176.970450px;}
.y1f_c00466{bottom:208.020450px;}
.y1e_c00466{bottom:239.070450px;}
.y1d_c00466{bottom:270.120450px;}
.y1c_c00466{bottom:301.170450px;}
.y1b_c00466{bottom:332.220450px;}
.y1a_c00466{bottom:363.270450px;}
.y19_c00466{bottom:394.320450px;}
.y18_c00466{bottom:425.370450px;}
.y17_c00466{bottom:456.420450px;}
.y16_c00466{bottom:487.470450px;}
.y15_c00466{bottom:518.520450px;}
.y14_c00466{bottom:549.570450px;}
.y13_c00466{bottom:580.620450px;}
.y12_c00466{bottom:611.670450px;}
.y11_c00466{bottom:642.720450px;}
.y10_c00466{bottom:673.770450px;}
.yf_c00466{bottom:704.820450px;}
.ye_c00466{bottom:735.870450px;}
.yd_c00466{bottom:766.920450px;}
.yc_c00466{bottom:797.970450px;}
.yb_c00466{bottom:829.020450px;}
.ya_c00466{bottom:860.070450px;}
.y9_c00466{bottom:891.120450px;}
.y8_c00466{bottom:922.170450px;}
.y7_c00466{bottom:953.220450px;}
.y6_c00466{bottom:984.270450px;}
.y5_c00466{bottom:1024.320450px;}
.y4_c00466{bottom:1064.370450px;}
.y3_c00466{bottom:1094.520450px;}
.h1_c00466{height:63.175781px;}
.h3_c00466{height:64.546875px;}
.h4_c00466{height:70.628906px;}
.h2_c00466{height:87.484219px;}
.h0_c00466{height:1263.000000px;}
.w1_c00466{width:892.500000px;}
.w0_c00466{width:892.830000px;}
.x0_c00466{left:0.000000px;}
.x2_c00466{left:170.100000px;}
.x3_c00466{left:197.100000px;}
.x4_c00466{left:224.100000px;}
.x5_c00466{left:251.100000px;}
.x6_c00466{left:278.100000px;}
.x1_c00466{left:738.360000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls7_c00466{letter-spacing:-0.057600pt;}
.lsa_c00466{letter-spacing:-0.051200pt;}
.ls6_c00466{letter-spacing:-0.044800pt;}
.lsc_c00466{letter-spacing:-0.038400pt;}
.ls5_c00466{letter-spacing:-0.032000pt;}
.ls8_c00466{letter-spacing:-0.025600pt;}
.lsb_c00466{letter-spacing:-0.019200pt;}
.ls4_c00466{letter-spacing:-0.012800pt;}
.ls9_c00466{letter-spacing:-0.006400pt;}
.ls3_c00466{letter-spacing:0.000000pt;}
.ls2_c00466{letter-spacing:0.006400pt;}
.ls0_c00466{letter-spacing:0.052192pt;}
.ls1_c00466{letter-spacing:0.064000pt;}
.ws22_c00466{word-spacing:-3.750400pt;}
.ws21_c00466{word-spacing:-3.718400pt;}
.ws12_c00466{word-spacing:-3.040000pt;}
.ws11_c00466{word-spacing:-3.027200pt;}
.ws20_c00466{word-spacing:-2.707200pt;}
.ws1f_c00466{word-spacing:-2.694400pt;}
.wsa_c00466{word-spacing:-1.126400pt;}
.ws9_c00466{word-spacing:-1.036800pt;}
.ws0_c00466{word-spacing:0.000000pt;}
.ws1_c00466{word-spacing:0.029824pt;}
.ws2_c00466{word-spacing:0.102400pt;}
.ws15_c00466{word-spacing:0.147200pt;}
.ws1c_c00466{word-spacing:0.160000pt;}
.ws19_c00466{word-spacing:0.275200pt;}
.ws13_c00466{word-spacing:0.499200pt;}
.ws14_c00466{word-spacing:0.569600pt;}
.ws8_c00466{word-spacing:3.379200pt;}
.ws7_c00466{word-spacing:3.436800pt;}
.wsb_c00466{word-spacing:3.686400pt;}
.ws28_c00466{word-spacing:4.332800pt;}
.ws25_c00466{word-spacing:5.600000pt;}
.ws16_c00466{word-spacing:10.732800pt;}
.ws3_c00466{word-spacing:11.372800pt;}
.ws4_c00466{word-spacing:11.385600pt;}
.ws17_c00466{word-spacing:11.692800pt;}
.wse_c00466{word-spacing:12.627200pt;}
.wsd_c00466{word-spacing:12.672000pt;}
.ws24_c00466{word-spacing:13.606400pt;}
.ws23_c00466{word-spacing:13.625600pt;}
.ws1e_c00466{word-spacing:17.452800pt;}
.ws18_c00466{word-spacing:20.038400pt;}
.ws1d_c00466{word-spacing:20.646400pt;}
.wsc_c00466{word-spacing:28.985600pt;}
.ws6_c00466{word-spacing:30.905600pt;}
.ws5_c00466{word-spacing:31.520000pt;}
.ws10_c00466{word-spacing:37.292800pt;}
.wsf_c00466{word-spacing:37.452800pt;}
.ws1a_c00466{word-spacing:46.214400pt;}
.ws1b_c00466{word-spacing:52.985600pt;}
.ws26_c00466{word-spacing:54.560000pt;}
.ws27_c00466{word-spacing:54.572800pt;}
._4_c00466{margin-left:-6.400000pt;}
._2_c00466{width:1.043200pt;}
._5_c00466{width:6.720000pt;}
._3_c00466{width:14.720000pt;}
._1_c00466{width:16.000000pt;}
._0_c00466{width:136.295680pt;}
.fs0_c00466{font-size:64.000000pt;}
.fs1_c00466{font-size:74.560000pt;}
.y0_c00466{bottom:0.000000pt;}
.y2_c00466{bottom:41.627067pt;}
.y1_c00466{bottom:60.027067pt;}
.y21_c00466{bottom:129.707067pt;}
.y20_c00466{bottom:157.307067pt;}
.y1f_c00466{bottom:184.907067pt;}
.y1e_c00466{bottom:212.507067pt;}
.y1d_c00466{bottom:240.107067pt;}
.y1c_c00466{bottom:267.707067pt;}
.y1b_c00466{bottom:295.307067pt;}
.y1a_c00466{bottom:322.907067pt;}
.y19_c00466{bottom:350.507067pt;}
.y18_c00466{bottom:378.107067pt;}
.y17_c00466{bottom:405.707067pt;}
.y16_c00466{bottom:433.307067pt;}
.y15_c00466{bottom:460.907067pt;}
.y14_c00466{bottom:488.507067pt;}
.y13_c00466{bottom:516.107067pt;}
.y12_c00466{bottom:543.707067pt;}
.y11_c00466{bottom:571.307067pt;}
.y10_c00466{bottom:598.907067pt;}
.yf_c00466{bottom:626.507067pt;}
.ye_c00466{bottom:654.107067pt;}
.yd_c00466{bottom:681.707067pt;}
.yc_c00466{bottom:709.307067pt;}
.yb_c00466{bottom:736.907067pt;}
.ya_c00466{bottom:764.507067pt;}
.y9_c00466{bottom:792.107067pt;}
.y8_c00466{bottom:819.707067pt;}
.y7_c00466{bottom:847.307067pt;}
.y6_c00466{bottom:874.907067pt;}
.y5_c00466{bottom:910.507067pt;}
.y4_c00466{bottom:946.107067pt;}
.y3_c00466{bottom:972.907067pt;}
.h1_c00466{height:56.156250pt;}
.h3_c00466{height:57.375000pt;}
.h4_c00466{height:62.781250pt;}
.h2_c00466{height:77.763750pt;}
.h0_c00466{height:1122.666667pt;}
.w1_c00466{width:793.333333pt;}
.w0_c00466{width:793.626667pt;}
.x0_c00466{left:0.000000pt;}
.x2_c00466{left:151.200000pt;}
.x3_c00466{left:175.200000pt;}
.x4_c00466{left:199.200000pt;}
.x5_c00466{left:223.200000pt;}
.x6_c00466{left:247.200000pt;}
.x1_c00466{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_395f000efce38367a6df5aaa.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.093262;font-style:normal;font-weight:normal;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_a89d01524c76d85cf4e31636.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.106934;font-style:normal;font-weight:normal;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_222602fa4285ccd4cad65f5b.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:0.765625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00467{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.ls9_c00467{letter-spacing:-0.057600px;}
.ls7_c00467{letter-spacing:-0.050400px;}
.ls4_c00467{letter-spacing:-0.043200px;}
.ls6_c00467{letter-spacing:-0.036000px;}
.ls5_c00467{letter-spacing:-0.028800px;}
.ls3_c00467{letter-spacing:-0.021600px;}
.ls8_c00467{letter-spacing:-0.014400px;}
.lsa_c00467{letter-spacing:-0.007200px;}
.ls2_c00467{letter-spacing:0.000000px;}
.lsb_c00467{letter-spacing:0.007200px;}
.ls1_c00467{letter-spacing:0.021600px;}
.ls0_c00467{letter-spacing:0.072000px;}
.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;}
}
.wsa_c00467{word-spacing:-1.951200px;}
.wsc_c00467{word-spacing:-0.151200px;}
.ws0_c00467{word-spacing:0.000000px;}
.ws28_c00467{word-spacing:0.158400px;}
.ws13_c00467{word-spacing:0.165600px;}
.wsb_c00467{word-spacing:0.172800px;}
.wsf_c00467{word-spacing:0.194400px;}
.ws8_c00467{word-spacing:1.562400px;}
.ws7_c00467{word-spacing:1.641600px;}
.ws26_c00467{word-spacing:2.707200px;}
.ws27_c00467{word-spacing:2.728800px;}
.ws1f_c00467{word-spacing:2.916000px;}
.ws20_c00467{word-spacing:3.067200px;}
.ws17_c00467{word-spacing:5.212800px;}
.ws16_c00467{word-spacing:5.234400px;}
.ws1_c00467{word-spacing:6.177600px;}
.ws2_c00467{word-spacing:6.264000px;}
.ws18_c00467{word-spacing:6.336000px;}
.ws19_c00467{word-spacing:6.372000px;}
.ws1d_c00467{word-spacing:7.012800px;}
.ws1e_c00467{word-spacing:7.084800px;}
.ws15_c00467{word-spacing:8.820000px;}
.ws14_c00467{word-spacing:8.892000px;}
.ws9_c00467{word-spacing:9.900000px;}
.ws1a_c00467{word-spacing:12.074400px;}
.ws3_c00467{word-spacing:12.427200px;}
.ws4_c00467{word-spacing:12.506400px;}
.ws24_c00467{word-spacing:15.904800px;}
.ws23_c00467{word-spacing:16.005600px;}
.ws21_c00467{word-spacing:16.034400px;}
.ws25_c00467{word-spacing:16.092000px;}
.ws22_c00467{word-spacing:16.164000px;}
.ws1c_c00467{word-spacing:21.765600px;}
.ws1b_c00467{word-spacing:21.780000px;}
.ws11_c00467{word-spacing:29.685600px;}
.ws10_c00467{word-spacing:29.736000px;}
.ws12_c00467{word-spacing:36.187200px;}
.ws5_c00467{word-spacing:38.613600px;}
.ws6_c00467{word-spacing:38.700000px;}
.wsd_c00467{word-spacing:46.267200px;}
.wse_c00467{word-spacing:46.296000px;}
._0_c00467{width:1.080000px;}
._5_c00467{width:14.832000px;}
._4_c00467{width:18.720000px;}
._2_c00467{width:21.888000px;}
._3_c00467{width:24.480000px;}
._1_c00467{width:30.960000px;}
.fc0_c00467{color:rgb(0,0,0);}
.fs0_c00467{font-size:72.000000px;}
.y0_c00467{bottom:0.000000px;}
.y2_c00467{bottom:46.830450px;}
.y1_c00467{bottom:67.530450px;}
.y1f_c00467{bottom:210.180450px;}
.y1e_c00467{bottom:250.230450px;}
.y1d_c00467{bottom:290.280450px;}
.y1c_c00467{bottom:321.330450px;}
.y1b_c00467{bottom:352.380450px;}
.y1a_c00467{bottom:383.430450px;}
.y19_c00467{bottom:414.390450px;}
.y18_c00467{bottom:445.440450px;}
.y17_c00467{bottom:476.490450px;}
.y16_c00467{bottom:507.540450px;}
.y15_c00467{bottom:538.590450px;}
.y14_c00467{bottom:569.640450px;}
.y13_c00467{bottom:600.690450px;}
.y12_c00467{bottom:631.740450px;}
.y11_c00467{bottom:662.790450px;}
.y10_c00467{bottom:693.840450px;}
.yf_c00467{bottom:724.890450px;}
.ye_c00467{bottom:755.940450px;}
.yd_c00467{bottom:786.990450px;}
.yc_c00467{bottom:818.040450px;}
.yb_c00467{bottom:849.090450px;}
.ya_c00467{bottom:880.140450px;}
.y9_c00467{bottom:911.190450px;}
.y8_c00467{bottom:942.240450px;}
.y7_c00467{bottom:973.290450px;}
.y6_c00467{bottom:1004.340450px;}
.y5_c00467{bottom:1035.390450px;}
.y4_c00467{bottom:1066.440450px;}
.y3_c00467{bottom:1097.490450px;}
.h1_c00467{height:63.175781px;}
.h2_c00467{height:64.546875px;}
.h0_c00467{height:1263.000000px;}
.w1_c00467{width:892.500000px;}
.w0_c00467{width:892.830000px;}
.x0_c00467{left:0.000000px;}
.x2_c00467{left:127.620000px;}
.x4_c00467{left:154.620000px;}
.x3_c00467{left:181.620000px;}
.x1_c00467{left:695.880000px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls9_c00467{letter-spacing:-0.051200pt;}
.ls7_c00467{letter-spacing:-0.044800pt;}
.ls4_c00467{letter-spacing:-0.038400pt;}
.ls6_c00467{letter-spacing:-0.032000pt;}
.ls5_c00467{letter-spacing:-0.025600pt;}
.ls3_c00467{letter-spacing:-0.019200pt;}
.ls8_c00467{letter-spacing:-0.012800pt;}
.lsa_c00467{letter-spacing:-0.006400pt;}
.ls2_c00467{letter-spacing:0.000000pt;}
.lsb_c00467{letter-spacing:0.006400pt;}
.ls1_c00467{letter-spacing:0.019200pt;}
.ls0_c00467{letter-spacing:0.064000pt;}
.wsa_c00467{word-spacing:-1.734400pt;}
.wsc_c00467{word-spacing:-0.134400pt;}
.ws0_c00467{word-spacing:0.000000pt;}
.ws28_c00467{word-spacing:0.140800pt;}
.ws13_c00467{word-spacing:0.147200pt;}
.wsb_c00467{word-spacing:0.153600pt;}
.wsf_c00467{word-spacing:0.172800pt;}
.ws8_c00467{word-spacing:1.388800pt;}
.ws7_c00467{word-spacing:1.459200pt;}
.ws26_c00467{word-spacing:2.406400pt;}
.ws27_c00467{word-spacing:2.425600pt;}
.ws1f_c00467{word-spacing:2.592000pt;}
.ws20_c00467{word-spacing:2.726400pt;}
.ws17_c00467{word-spacing:4.633600pt;}
.ws16_c00467{word-spacing:4.652800pt;}
.ws1_c00467{word-spacing:5.491200pt;}
.ws2_c00467{word-spacing:5.568000pt;}
.ws18_c00467{word-spacing:5.632000pt;}
.ws19_c00467{word-spacing:5.664000pt;}
.ws1d_c00467{word-spacing:6.233600pt;}
.ws1e_c00467{word-spacing:6.297600pt;}
.ws15_c00467{word-spacing:7.840000pt;}
.ws14_c00467{word-spacing:7.904000pt;}
.ws9_c00467{word-spacing:8.800000pt;}
.ws1a_c00467{word-spacing:10.732800pt;}
.ws3_c00467{word-spacing:11.046400pt;}
.ws4_c00467{word-spacing:11.116800pt;}
.ws24_c00467{word-spacing:14.137600pt;}
.ws23_c00467{word-spacing:14.227200pt;}
.ws21_c00467{word-spacing:14.252800pt;}
.ws25_c00467{word-spacing:14.304000pt;}
.ws22_c00467{word-spacing:14.368000pt;}
.ws1c_c00467{word-spacing:19.347200pt;}
.ws1b_c00467{word-spacing:19.360000pt;}
.ws11_c00467{word-spacing:26.387200pt;}
.ws10_c00467{word-spacing:26.432000pt;}
.ws12_c00467{word-spacing:32.166400pt;}
.ws5_c00467{word-spacing:34.323200pt;}
.ws6_c00467{word-spacing:34.400000pt;}
.wsd_c00467{word-spacing:41.126400pt;}
.wse_c00467{word-spacing:41.152000pt;}
._0_c00467{width:0.960000pt;}
._5_c00467{width:13.184000pt;}
._4_c00467{width:16.640000pt;}
._2_c00467{width:19.456000pt;}
._3_c00467{width:21.760000pt;}
._1_c00467{width:27.520000pt;}
.fs0_c00467{font-size:64.000000pt;}
.y0_c00467{bottom:0.000000pt;}
.y2_c00467{bottom:41.627067pt;}
.y1_c00467{bottom:60.027067pt;}
.y1f_c00467{bottom:186.827067pt;}
.y1e_c00467{bottom:222.427067pt;}
.y1d_c00467{bottom:258.027067pt;}
.y1c_c00467{bottom:285.627067pt;}
.y1b_c00467{bottom:313.227067pt;}
.y1a_c00467{bottom:340.827067pt;}
.y19_c00467{bottom:368.347067pt;}
.y18_c00467{bottom:395.947067pt;}
.y17_c00467{bottom:423.547067pt;}
.y16_c00467{bottom:451.147067pt;}
.y15_c00467{bottom:478.747067pt;}
.y14_c00467{bottom:506.347067pt;}
.y13_c00467{bottom:533.947067pt;}
.y12_c00467{bottom:561.547067pt;}
.y11_c00467{bottom:589.147067pt;}
.y10_c00467{bottom:616.747067pt;}
.yf_c00467{bottom:644.347067pt;}
.ye_c00467{bottom:671.947067pt;}
.yd_c00467{bottom:699.547067pt;}
.yc_c00467{bottom:727.147067pt;}
.yb_c00467{bottom:754.747067pt;}
.ya_c00467{bottom:782.347067pt;}
.y9_c00467{bottom:809.947067pt;}
.y8_c00467{bottom:837.547067pt;}
.y7_c00467{bottom:865.147067pt;}
.y6_c00467{bottom:892.747067pt;}
.y5_c00467{bottom:920.347067pt;}
.y4_c00467{bottom:947.947067pt;}
.y3_c00467{bottom:975.547067pt;}
.h1_c00467{height:56.156250pt;}
.h2_c00467{height:57.375000pt;}
.h0_c00467{height:1122.666667pt;}
.w1_c00467{width:793.333333pt;}
.w0_c00467{width:793.626667pt;}
.x0_c00467{left:0.000000pt;}
.x2_c00467{left:113.440000pt;}
.x4_c00467{left:137.440000pt;}
.x3_c00467{left:161.440000pt;}
.x1_c00467{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bba3cbbd469be31264ba1abb.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.093262;font-style:normal;font-weight:normal;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_92f449b0ff8527c40c7a379a.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00468;src:url('chunks/assets/font_76a9a4e8bfc5c244677f6103.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00468{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.ls4_c00468{letter-spacing:-0.072000px;}
.ls9_c00468{letter-spacing:-0.057600px;}
.ls3_c00468{letter-spacing:-0.050400px;}
.ls6_c00468{letter-spacing:-0.043200px;}
.ls5_c00468{letter-spacing:-0.036000px;}
.lsa_c00468{letter-spacing:-0.028800px;}
.ls8_c00468{letter-spacing:-0.021600px;}
.ls7_c00468{letter-spacing:-0.014400px;}
.lsb_c00468{letter-spacing:-0.007200px;}
.ls1_c00468{letter-spacing:0.000000px;}
.ls0_c00468{letter-spacing:0.014400px;}
.ls2_c00468{letter-spacing:0.067104px;}
.sc__c00468{text-shadow:none;}
.sc0_c00468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00468{-webkit-text-stroke:0px transparent;}
.sc0_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00468{word-spacing:-4.111200px;}
.ws0_c00468{word-spacing:0.000000px;}
.ws2a_c00468{word-spacing:0.064800px;}
.ws2b_c00468{word-spacing:0.144000px;}
.ws21_c00468{word-spacing:0.165600px;}
.ws9_c00468{word-spacing:0.172800px;}
.ws1a_c00468{word-spacing:0.180000px;}
.ws22_c00468{word-spacing:0.540000px;}
.ws23_c00468{word-spacing:0.554400px;}
.wsa_c00468{word-spacing:0.914400px;}
.wsb_c00468{word-spacing:0.950400px;}
.ws1c_c00468{word-spacing:1.274400px;}
.ws1d_c00468{word-spacing:1.288800px;}
.ws26_c00468{word-spacing:1.922400px;}
.ws27_c00468{word-spacing:2.030400px;}
.ws25_c00468{word-spacing:2.707200px;}
.ws24_c00468{word-spacing:2.714400px;}
.ws1f_c00468{word-spacing:3.830400px;}
.ws1e_c00468{word-spacing:3.888000px;}
.ws15_c00468{word-spacing:4.132800px;}
.ws14_c00468{word-spacing:4.168800px;}
.ws10_c00468{word-spacing:4.226400px;}
.wsf_c00468{word-spacing:4.233600px;}
.ws8_c00468{word-spacing:4.910400px;}
.ws7_c00468{word-spacing:5.061600px;}
.ws11_c00468{word-spacing:5.220000px;}
.wsd_c00468{word-spacing:6.386400px;}
.wse_c00468{word-spacing:6.393600px;}
.ws18_c00468{word-spacing:8.524800px;}
.ws17_c00468{word-spacing:8.568000px;}
.wsc_c00468{word-spacing:9.540000px;}
.ws13_c00468{word-spacing:10.893600px;}
.ws12_c00468{word-spacing:11.016000px;}
.ws1b_c00468{word-spacing:12.808800px;}
.ws20_c00468{word-spacing:14.954400px;}
.ws19_c00468{word-spacing:17.481600px;}
.ws3_c00468{word-spacing:21.758400px;}
.ws4_c00468{word-spacing:21.830400px;}
.ws6_c00468{word-spacing:34.358400px;}
.ws5_c00468{word-spacing:34.394400px;}
.ws28_c00468{word-spacing:37.584000px;}
.ws29_c00468{word-spacing:37.742400px;}
.ws16_c00468{word-spacing:61.452000px;}
.ws1_c00468{word-spacing:187.589232px;}
._0_c00468{width:1.008000px;}
.fc0_c00468{color:rgb(0,0,0);}
.fs0_c00468{font-size:72.000000px;}
.fs1_c00468{font-size:83.880000px;}
.y0_c00468{bottom:0.000000px;}
.y2_c00468{bottom:46.830450px;}
.y1_c00468{bottom:67.530450px;}
.y20_c00468{bottom:140.970450px;}
.y1f_c00468{bottom:172.020450px;}
.y1e_c00468{bottom:203.070450px;}
.y1d_c00468{bottom:243.120450px;}
.y1c_c00468{bottom:274.170450px;}
.y1b_c00468{bottom:305.220450px;}
.y1a_c00468{bottom:345.270450px;}
.y19_c00468{bottom:376.320450px;}
.y18_c00468{bottom:407.370450px;}
.y17_c00468{bottom:447.420450px;}
.y16_c00468{bottom:478.470450px;}
.y15_c00468{bottom:509.520450px;}
.y14_c00468{bottom:549.570450px;}
.y13_c00468{bottom:580.620450px;}
.y12_c00468{bottom:611.670450px;}
.y11_c00468{bottom:642.720450px;}
.y10_c00468{bottom:673.770450px;}
.yf_c00468{bottom:704.820450px;}
.ye_c00468{bottom:735.870450px;}
.yd_c00468{bottom:766.920450px;}
.yc_c00468{bottom:797.970450px;}
.yb_c00468{bottom:829.020450px;}
.ya_c00468{bottom:860.070450px;}
.y9_c00468{bottom:900.120450px;}
.y8_c00468{bottom:931.170450px;}
.y7_c00468{bottom:962.220450px;}
.y6_c00468{bottom:993.270450px;}
.y5_c00468{bottom:1024.320450px;}
.y4_c00468{bottom:1064.370450px;}
.y3_c00468{bottom:1094.520450px;}
.h1_c00468{height:63.175781px;}
.h3_c00468{height:64.546875px;}
.h2_c00468{height:87.484219px;}
.h0_c00468{height:1263.000000px;}
.w1_c00468{width:892.500000px;}
.w0_c00468{width:892.830000px;}
.x0_c00468{left:0.000000px;}
.x2_c00468{left:170.100000px;}
.x3_c00468{left:224.100000px;}
.x1_c00468{left:738.360000px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls4_c00468{letter-spacing:-0.064000pt;}
.ls9_c00468{letter-spacing:-0.051200pt;}
.ls3_c00468{letter-spacing:-0.044800pt;}
.ls6_c00468{letter-spacing:-0.038400pt;}
.ls5_c00468{letter-spacing:-0.032000pt;}
.lsa_c00468{letter-spacing:-0.025600pt;}
.ls8_c00468{letter-spacing:-0.019200pt;}
.ls7_c00468{letter-spacing:-0.012800pt;}
.lsb_c00468{letter-spacing:-0.006400pt;}
.ls1_c00468{letter-spacing:0.000000pt;}
.ls0_c00468{letter-spacing:0.012800pt;}
.ls2_c00468{letter-spacing:0.059648pt;}
.ws2_c00468{word-spacing:-3.654400pt;}
.ws0_c00468{word-spacing:0.000000pt;}
.ws2a_c00468{word-spacing:0.057600pt;}
.ws2b_c00468{word-spacing:0.128000pt;}
.ws21_c00468{word-spacing:0.147200pt;}
.ws9_c00468{word-spacing:0.153600pt;}
.ws1a_c00468{word-spacing:0.160000pt;}
.ws22_c00468{word-spacing:0.480000pt;}
.ws23_c00468{word-spacing:0.492800pt;}
.wsa_c00468{word-spacing:0.812800pt;}
.wsb_c00468{word-spacing:0.844800pt;}
.ws1c_c00468{word-spacing:1.132800pt;}
.ws1d_c00468{word-spacing:1.145600pt;}
.ws26_c00468{word-spacing:1.708800pt;}
.ws27_c00468{word-spacing:1.804800pt;}
.ws25_c00468{word-spacing:2.406400pt;}
.ws24_c00468{word-spacing:2.412800pt;}
.ws1f_c00468{word-spacing:3.404800pt;}
.ws1e_c00468{word-spacing:3.456000pt;}
.ws15_c00468{word-spacing:3.673600pt;}
.ws14_c00468{word-spacing:3.705600pt;}
.ws10_c00468{word-spacing:3.756800pt;}
.wsf_c00468{word-spacing:3.763200pt;}
.ws8_c00468{word-spacing:4.364800pt;}
.ws7_c00468{word-spacing:4.499200pt;}
.ws11_c00468{word-spacing:4.640000pt;}
.wsd_c00468{word-spacing:5.676800pt;}
.wse_c00468{word-spacing:5.683200pt;}
.ws18_c00468{word-spacing:7.577600pt;}
.ws17_c00468{word-spacing:7.616000pt;}
.wsc_c00468{word-spacing:8.480000pt;}
.ws13_c00468{word-spacing:9.683200pt;}
.ws12_c00468{word-spacing:9.792000pt;}
.ws1b_c00468{word-spacing:11.385600pt;}
.ws20_c00468{word-spacing:13.292800pt;}
.ws19_c00468{word-spacing:15.539200pt;}
.ws3_c00468{word-spacing:19.340800pt;}
.ws4_c00468{word-spacing:19.404800pt;}
.ws6_c00468{word-spacing:30.540800pt;}
.ws5_c00468{word-spacing:30.572800pt;}
.ws28_c00468{word-spacing:33.408000pt;}
.ws29_c00468{word-spacing:33.548800pt;}
.ws16_c00468{word-spacing:54.624000pt;}
.ws1_c00468{word-spacing:166.745984pt;}
._0_c00468{width:0.896000pt;}
.fs0_c00468{font-size:64.000000pt;}
.fs1_c00468{font-size:74.560000pt;}
.y0_c00468{bottom:0.000000pt;}
.y2_c00468{bottom:41.627067pt;}
.y1_c00468{bottom:60.027067pt;}
.y20_c00468{bottom:125.307067pt;}
.y1f_c00468{bottom:152.907067pt;}
.y1e_c00468{bottom:180.507067pt;}
.y1d_c00468{bottom:216.107067pt;}
.y1c_c00468{bottom:243.707067pt;}
.y1b_c00468{bottom:271.307067pt;}
.y1a_c00468{bottom:306.907067pt;}
.y19_c00468{bottom:334.507067pt;}
.y18_c00468{bottom:362.107067pt;}
.y17_c00468{bottom:397.707067pt;}
.y16_c00468{bottom:425.307067pt;}
.y15_c00468{bottom:452.907067pt;}
.y14_c00468{bottom:488.507067pt;}
.y13_c00468{bottom:516.107067pt;}
.y12_c00468{bottom:543.707067pt;}
.y11_c00468{bottom:571.307067pt;}
.y10_c00468{bottom:598.907067pt;}
.yf_c00468{bottom:626.507067pt;}
.ye_c00468{bottom:654.107067pt;}
.yd_c00468{bottom:681.707067pt;}
.yc_c00468{bottom:709.307067pt;}
.yb_c00468{bottom:736.907067pt;}
.ya_c00468{bottom:764.507067pt;}
.y9_c00468{bottom:800.107067pt;}
.y8_c00468{bottom:827.707067pt;}
.y7_c00468{bottom:855.307067pt;}
.y6_c00468{bottom:882.907067pt;}
.y5_c00468{bottom:910.507067pt;}
.y4_c00468{bottom:946.107067pt;}
.y3_c00468{bottom:972.907067pt;}
.h1_c00468{height:56.156250pt;}
.h3_c00468{height:57.375000pt;}
.h2_c00468{height:77.763750pt;}
.h0_c00468{height:1122.666667pt;}
.w1_c00468{width:793.333333pt;}
.w0_c00468{width:793.626667pt;}
.x0_c00468{left:0.000000pt;}
.x2_c00468{left:151.200000pt;}
.x3_c00468{left:199.200000pt;}
.x1_c00468{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_50b913b803023f9f42119825.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00469{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls0_c00469{letter-spacing:0.000000px;}
.ls1_c00469{letter-spacing:843.998400px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00469{word-spacing:0.000000px;}
.fc0_c00469{color:rgb(0,0,0);}
.fs0_c00469{font-size:72.000000px;}
.y0_c00469{bottom:0.000000px;}
.y2_c00469{bottom:46.830450px;}
.y1_c00469{bottom:67.530450px;}
.y3_c00469{bottom:1097.490450px;}
.h1_c00469{height:63.175781px;}
.h2_c00469{height:64.546875px;}
.h0_c00469{height:1263.000000px;}
.w1_c00469{width:892.500000px;}
.w0_c00469{width:892.830000px;}
.x0_c00469{left:0.000000px;}
.x2_c00469{left:127.620000px;}
.x1_c00469{left:695.880000px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls0_c00469{letter-spacing:0.000000pt;}
.ls1_c00469{letter-spacing:750.220800pt;}
.ws0_c00469{word-spacing:0.000000pt;}
.fs0_c00469{font-size:64.000000pt;}
.y0_c00469{bottom:0.000000pt;}
.y2_c00469{bottom:41.627067pt;}
.y1_c00469{bottom:60.027067pt;}
.y3_c00469{bottom:975.547067pt;}
.h1_c00469{height:56.156250pt;}
.h2_c00469{height:57.375000pt;}
.h0_c00469{height:1122.666667pt;}
.w1_c00469{width:793.333333pt;}
.w0_c00469{width:793.626667pt;}
.x0_c00469{left:0.000000pt;}
.x2_c00469{left:113.440000pt;}
.x1_c00469{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_53a7a6b65b356a0cda8e352d.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.093262;font-style:normal;font-weight:normal;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_89160228d7762050d71ce14a.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.106934;font-style:normal;font-weight:normal;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_81c8ff0d49059cbc7eacb600.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;line-height:0.938965;font-style:normal;font-weight:normal;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_40f994ffe422ad5e2b7f8f10.woff2')format("woff");}.ff4_c00470{font-family:ff4_c00470;line-height:0.666504;font-style:normal;font-weight:normal;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_6a70f1640217387790f9ad54.woff2')format("woff");}.ff5_c00470{font-family:ff5_c00470;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00470{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.ls14_c00470{letter-spacing:-0.561600px;}
.ls16_c00470{letter-spacing:-0.079200px;}
.lse_c00470{letter-spacing:-0.064800px;}
.ls12_c00470{letter-spacing:-0.050400px;}
.lsf_c00470{letter-spacing:-0.036000px;}
.ls13_c00470{letter-spacing:-0.028800px;}
.ls10_c00470{letter-spacing:-0.021600px;}
.ls15_c00470{letter-spacing:-0.014400px;}
.ls11_c00470{letter-spacing:-0.007200px;}
.lsd_c00470{letter-spacing:0.000000px;}
.ls3_c00470{letter-spacing:0.007200px;}
.ls5_c00470{letter-spacing:0.014400px;}
.ls0_c00470{letter-spacing:0.016776px;}
.ls9_c00470{letter-spacing:0.021600px;}
.ls2_c00470{letter-spacing:0.028800px;}
.ls6_c00470{letter-spacing:0.036000px;}
.ls7_c00470{letter-spacing:0.043200px;}
.ls4_c00470{letter-spacing:0.050400px;}
.ls8_c00470{letter-spacing:0.057600px;}
.lsa_c00470{letter-spacing:0.064800px;}
.ls1_c00470{letter-spacing:0.072000px;}
.lsc_c00470{letter-spacing:0.079200px;}
.lsb_c00470{letter-spacing:0.086400px;}
.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;}
}
.ws4_c00470{word-spacing:-18.086400px;}
.ws3_c00470{word-spacing:-18.072000px;}
.ws2_c00470{word-spacing:-18.028800px;}
.ws6_c00470{word-spacing:-18.021600px;}
.ws5_c00470{word-spacing:-18.000000px;}
.ws1_c00470{word-spacing:-17.978400px;}
.ws3d_c00470{word-spacing:-4.730400px;}
.ws3c_c00470{word-spacing:-4.327200px;}
.ws3e_c00470{word-spacing:-4.320000px;}
.ws28_c00470{word-spacing:-3.247200px;}
.ws29_c00470{word-spacing:-3.232800px;}
.ws2a_c00470{word-spacing:-3.204000px;}
.ws9_c00470{word-spacing:-3.132000px;}
.ws2d_c00470{word-spacing:-2.995200px;}
.ws2c_c00470{word-spacing:-2.973600px;}
.ws8_c00470{word-spacing:-2.880000px;}
.wsa_c00470{word-spacing:-2.815200px;}
.ws1a_c00470{word-spacing:-2.188800px;}
.ws1b_c00470{word-spacing:-2.174400px;}
.ws2e_c00470{word-spacing:-2.167200px;}
.ws18_c00470{word-spacing:-1.555200px;}
.ws16_c00470{word-spacing:-1.490400px;}
.ws17_c00470{word-spacing:-1.454400px;}
.ws35_c00470{word-spacing:-0.417600px;}
.ws39_c00470{word-spacing:-0.360000px;}
.ws19_c00470{word-spacing:-0.194400px;}
.ws33_c00470{word-spacing:-0.151200px;}
.ws0_c00470{word-spacing:-0.100656px;}
.ws36_c00470{word-spacing:-0.072000px;}
.ws2b_c00470{word-spacing:-0.064800px;}
.ws22_c00470{word-spacing:-0.028800px;}
.ws2f_c00470{word-spacing:-0.021600px;}
.ws12_c00470{word-spacing:-0.014400px;}
.wsf_c00470{word-spacing:-0.007200px;}
.ws7_c00470{word-spacing:0.000000px;}
.ws10_c00470{word-spacing:0.007200px;}
.ws34_c00470{word-spacing:0.014400px;}
.ws11_c00470{word-spacing:0.036000px;}
.ws13_c00470{word-spacing:0.050400px;}
.ws37_c00470{word-spacing:1.058400px;}
.ws38_c00470{word-spacing:1.072800px;}
.ws45_c00470{word-spacing:1.389600px;}
.ws46_c00470{word-spacing:1.418400px;}
.wse_c00470{word-spacing:1.771200px;}
.wsd_c00470{word-spacing:1.792800px;}
.ws40_c00470{word-spacing:2.469600px;}
.ws3f_c00470{word-spacing:2.498400px;}
.ws41_c00470{word-spacing:2.548800px;}
.ws32_c00470{word-spacing:3.585600px;}
.ws30_c00470{word-spacing:3.592800px;}
.ws31_c00470{word-spacing:3.600000px;}
.ws43_c00470{word-spacing:4.809600px;}
.ws44_c00470{word-spacing:4.989600px;}
.ws1f_c00470{word-spacing:9.662400px;}
.ws14_c00470{word-spacing:11.808000px;}
.ws26_c00470{word-spacing:11.858400px;}
.ws15_c00470{word-spacing:11.908800px;}
.ws25_c00470{word-spacing:12.211200px;}
.ws23_c00470{word-spacing:15.840000px;}
.ws24_c00470{word-spacing:15.861600px;}
.ws1e_c00470{word-spacing:17.193600px;}
.ws1d_c00470{word-spacing:17.287200px;}
.ws3a_c00470{word-spacing:21.434400px;}
.ws3b_c00470{word-spacing:21.578400px;}
.ws21_c00470{word-spacing:25.876800px;}
.ws20_c00470{word-spacing:25.934400px;}
.ws27_c00470{word-spacing:27.338400px;}
.wsc_c00470{word-spacing:79.192800px;}
.wsb_c00470{word-spacing:79.236000px;}
.ws42_c00470{word-spacing:206.640000px;}
.ws1c_c00470{word-spacing:263.548800px;}
.ws47_c00470{word-spacing:488.534400px;}
._0_c00470{margin-left:-1.296000px;}
._1_c00470{width:1.080000px;}
._2_c00470{width:9.244800px;}
.fc1_c00470{color:rgb(54,95,145);}
.fc0_c00470{color:rgb(0,0,0);}
.fs0_c00470{font-size:72.000000px;}
.fs1_c00470{font-size:83.880000px;}
.y0_c00470{bottom:0.000000px;}
.y2_c00470{bottom:46.830450px;}
.y1_c00470{bottom:67.530450px;}
.y2f_c00470{bottom:132.870450px;}
.y2e_c00470{bottom:153.570450px;}
.y2d_c00470{bottom:174.270450px;}
.y2c_c00470{bottom:194.970450px;}
.y2b_c00470{bottom:215.670450px;}
.y2a_c00470{bottom:236.370450px;}
.y29_c00470{bottom:257.070450px;}
.y28_c00470{bottom:277.770450px;}
.y27_c00470{bottom:298.470450px;}
.y26_c00470{bottom:319.170450px;}
.y25_c00470{bottom:339.870450px;}
.y24_c00470{bottom:360.570450px;}
.y23_c00470{bottom:381.270450px;}
.y22_c00470{bottom:401.970450px;}
.y21_c00470{bottom:422.670450px;}
.y20_c00470{bottom:443.370450px;}
.y1f_c00470{bottom:464.070450px;}
.y1e_c00470{bottom:484.770450px;}
.y1d_c00470{bottom:505.470450px;}
.y1c_c00470{bottom:526.170450px;}
.y1b_c00470{bottom:546.870450px;}
.y1a_c00470{bottom:567.570450px;}
.y19_c00470{bottom:588.270450px;}
.y18_c00470{bottom:608.970450px;}
.y17_c00470{bottom:629.670450px;}
.y16_c00470{bottom:650.370450px;}
.y15_c00470{bottom:671.070450px;}
.y14_c00470{bottom:691.770450px;}
.y13_c00470{bottom:712.470450px;}
.y12_c00470{bottom:733.170450px;}
.y11_c00470{bottom:753.870450px;}
.y10_c00470{bottom:774.480450px;}
.yf_c00470{bottom:795.180450px;}
.ye_c00470{bottom:815.880450px;}
.yd_c00470{bottom:836.580450px;}
.yc_c00470{bottom:857.280450px;}
.yb_c00470{bottom:877.980450px;}
.ya_c00470{bottom:898.680450px;}
.y9_c00470{bottom:919.380450px;}
.y8_c00470{bottom:940.080450px;}
.y7_c00470{bottom:960.780450px;}
.y6_c00470{bottom:981.480450px;}
.y5_c00470{bottom:1002.180450px;}
.y4_c00470{bottom:1027.200450px;}
.y3_c00470{bottom:1097.490450px;}
.h3_c00470{height:60.411621px;}
.h1_c00470{height:63.175781px;}
.h2_c00470{height:64.546875px;}
.h4_c00470{height:70.628906px;}
.h0_c00470{height:1263.000000px;}
.w1_c00470{width:892.500000px;}
.w0_c00470{width:892.830000px;}
.x0_c00470{left:0.000000px;}
.x2_c00470{left:170.100000px;}
.x3_c00470{left:224.100000px;}
.x1_c00470{left:738.360000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls14_c00470{letter-spacing:-0.499200pt;}
.ls16_c00470{letter-spacing:-0.070400pt;}
.lse_c00470{letter-spacing:-0.057600pt;}
.ls12_c00470{letter-spacing:-0.044800pt;}
.lsf_c00470{letter-spacing:-0.032000pt;}
.ls13_c00470{letter-spacing:-0.025600pt;}
.ls10_c00470{letter-spacing:-0.019200pt;}
.ls15_c00470{letter-spacing:-0.012800pt;}
.ls11_c00470{letter-spacing:-0.006400pt;}
.lsd_c00470{letter-spacing:0.000000pt;}
.ls3_c00470{letter-spacing:0.006400pt;}
.ls5_c00470{letter-spacing:0.012800pt;}
.ls0_c00470{letter-spacing:0.014912pt;}
.ls9_c00470{letter-spacing:0.019200pt;}
.ls2_c00470{letter-spacing:0.025600pt;}
.ls6_c00470{letter-spacing:0.032000pt;}
.ls7_c00470{letter-spacing:0.038400pt;}
.ls4_c00470{letter-spacing:0.044800pt;}
.ls8_c00470{letter-spacing:0.051200pt;}
.lsa_c00470{letter-spacing:0.057600pt;}
.ls1_c00470{letter-spacing:0.064000pt;}
.lsc_c00470{letter-spacing:0.070400pt;}
.lsb_c00470{letter-spacing:0.076800pt;}
.ws4_c00470{word-spacing:-16.076800pt;}
.ws3_c00470{word-spacing:-16.064000pt;}
.ws2_c00470{word-spacing:-16.025600pt;}
.ws6_c00470{word-spacing:-16.019200pt;}
.ws5_c00470{word-spacing:-16.000000pt;}
.ws1_c00470{word-spacing:-15.980800pt;}
.ws3d_c00470{word-spacing:-4.204800pt;}
.ws3c_c00470{word-spacing:-3.846400pt;}
.ws3e_c00470{word-spacing:-3.840000pt;}
.ws28_c00470{word-spacing:-2.886400pt;}
.ws29_c00470{word-spacing:-2.873600pt;}
.ws2a_c00470{word-spacing:-2.848000pt;}
.ws9_c00470{word-spacing:-2.784000pt;}
.ws2d_c00470{word-spacing:-2.662400pt;}
.ws2c_c00470{word-spacing:-2.643200pt;}
.ws8_c00470{word-spacing:-2.560000pt;}
.wsa_c00470{word-spacing:-2.502400pt;}
.ws1a_c00470{word-spacing:-1.945600pt;}
.ws1b_c00470{word-spacing:-1.932800pt;}
.ws2e_c00470{word-spacing:-1.926400pt;}
.ws18_c00470{word-spacing:-1.382400pt;}
.ws16_c00470{word-spacing:-1.324800pt;}
.ws17_c00470{word-spacing:-1.292800pt;}
.ws35_c00470{word-spacing:-0.371200pt;}
.ws39_c00470{word-spacing:-0.320000pt;}
.ws19_c00470{word-spacing:-0.172800pt;}
.ws33_c00470{word-spacing:-0.134400pt;}
.ws0_c00470{word-spacing:-0.089472pt;}
.ws36_c00470{word-spacing:-0.064000pt;}
.ws2b_c00470{word-spacing:-0.057600pt;}
.ws22_c00470{word-spacing:-0.025600pt;}
.ws2f_c00470{word-spacing:-0.019200pt;}
.ws12_c00470{word-spacing:-0.012800pt;}
.wsf_c00470{word-spacing:-0.006400pt;}
.ws7_c00470{word-spacing:0.000000pt;}
.ws10_c00470{word-spacing:0.006400pt;}
.ws34_c00470{word-spacing:0.012800pt;}
.ws11_c00470{word-spacing:0.032000pt;}
.ws13_c00470{word-spacing:0.044800pt;}
.ws37_c00470{word-spacing:0.940800pt;}
.ws38_c00470{word-spacing:0.953600pt;}
.ws45_c00470{word-spacing:1.235200pt;}
.ws46_c00470{word-spacing:1.260800pt;}
.wse_c00470{word-spacing:1.574400pt;}
.wsd_c00470{word-spacing:1.593600pt;}
.ws40_c00470{word-spacing:2.195200pt;}
.ws3f_c00470{word-spacing:2.220800pt;}
.ws41_c00470{word-spacing:2.265600pt;}
.ws32_c00470{word-spacing:3.187200pt;}
.ws30_c00470{word-spacing:3.193600pt;}
.ws31_c00470{word-spacing:3.200000pt;}
.ws43_c00470{word-spacing:4.275200pt;}
.ws44_c00470{word-spacing:4.435200pt;}
.ws1f_c00470{word-spacing:8.588800pt;}
.ws14_c00470{word-spacing:10.496000pt;}
.ws26_c00470{word-spacing:10.540800pt;}
.ws15_c00470{word-spacing:10.585600pt;}
.ws25_c00470{word-spacing:10.854400pt;}
.ws23_c00470{word-spacing:14.080000pt;}
.ws24_c00470{word-spacing:14.099200pt;}
.ws1e_c00470{word-spacing:15.283200pt;}
.ws1d_c00470{word-spacing:15.366400pt;}
.ws3a_c00470{word-spacing:19.052800pt;}
.ws3b_c00470{word-spacing:19.180800pt;}
.ws21_c00470{word-spacing:23.001600pt;}
.ws20_c00470{word-spacing:23.052800pt;}
.ws27_c00470{word-spacing:24.300800pt;}
.wsc_c00470{word-spacing:70.393600pt;}
.wsb_c00470{word-spacing:70.432000pt;}
.ws42_c00470{word-spacing:183.680000pt;}
.ws1c_c00470{word-spacing:234.265600pt;}
.ws47_c00470{word-spacing:434.252800pt;}
._0_c00470{margin-left:-1.152000pt;}
._1_c00470{width:0.960000pt;}
._2_c00470{width:8.217600pt;}
.fs0_c00470{font-size:64.000000pt;}
.fs1_c00470{font-size:74.560000pt;}
.y0_c00470{bottom:0.000000pt;}
.y2_c00470{bottom:41.627067pt;}
.y1_c00470{bottom:60.027067pt;}
.y2f_c00470{bottom:118.107067pt;}
.y2e_c00470{bottom:136.507067pt;}
.y2d_c00470{bottom:154.907067pt;}
.y2c_c00470{bottom:173.307067pt;}
.y2b_c00470{bottom:191.707067pt;}
.y2a_c00470{bottom:210.107067pt;}
.y29_c00470{bottom:228.507067pt;}
.y28_c00470{bottom:246.907067pt;}
.y27_c00470{bottom:265.307067pt;}
.y26_c00470{bottom:283.707067pt;}
.y25_c00470{bottom:302.107067pt;}
.y24_c00470{bottom:320.507067pt;}
.y23_c00470{bottom:338.907067pt;}
.y22_c00470{bottom:357.307067pt;}
.y21_c00470{bottom:375.707067pt;}
.y20_c00470{bottom:394.107067pt;}
.y1f_c00470{bottom:412.507067pt;}
.y1e_c00470{bottom:430.907067pt;}
.y1d_c00470{bottom:449.307067pt;}
.y1c_c00470{bottom:467.707067pt;}
.y1b_c00470{bottom:486.107067pt;}
.y1a_c00470{bottom:504.507067pt;}
.y19_c00470{bottom:522.907067pt;}
.y18_c00470{bottom:541.307067pt;}
.y17_c00470{bottom:559.707067pt;}
.y16_c00470{bottom:578.107067pt;}
.y15_c00470{bottom:596.507067pt;}
.y14_c00470{bottom:614.907067pt;}
.y13_c00470{bottom:633.307067pt;}
.y12_c00470{bottom:651.707067pt;}
.y11_c00470{bottom:670.107067pt;}
.y10_c00470{bottom:688.427067pt;}
.yf_c00470{bottom:706.827067pt;}
.ye_c00470{bottom:725.227067pt;}
.yd_c00470{bottom:743.627067pt;}
.yc_c00470{bottom:762.027067pt;}
.yb_c00470{bottom:780.427067pt;}
.ya_c00470{bottom:798.827067pt;}
.y9_c00470{bottom:817.227067pt;}
.y8_c00470{bottom:835.627067pt;}
.y7_c00470{bottom:854.027067pt;}
.y6_c00470{bottom:872.427067pt;}
.y5_c00470{bottom:890.827067pt;}
.y4_c00470{bottom:913.067067pt;}
.y3_c00470{bottom:975.547067pt;}
.h3_c00470{height:53.699219pt;}
.h1_c00470{height:56.156250pt;}
.h2_c00470{height:57.375000pt;}
.h4_c00470{height:62.781250pt;}
.h0_c00470{height:1122.666667pt;}
.w1_c00470{width:793.333333pt;}
.w0_c00470{width:793.626667pt;}
.x0_c00470{left:0.000000pt;}
.x2_c00470{left:151.200000pt;}
.x3_c00470{left:199.200000pt;}
.x1_c00470{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ef38da6170dc5649d5c97220.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.093262;font-style:normal;font-weight:normal;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_9629e0a026ac29a41bcb8341.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls13_c00471{letter-spacing:-0.108000px;}
.lsf_c00471{letter-spacing:-0.072000px;}
.ls10_c00471{letter-spacing:-0.057600px;}
.ls14_c00471{letter-spacing:-0.050400px;}
.ls11_c00471{letter-spacing:-0.036000px;}
.ls15_c00471{letter-spacing:-0.028800px;}
.lse_c00471{letter-spacing:-0.021600px;}
.ls12_c00471{letter-spacing:-0.014400px;}
.lsd_c00471{letter-spacing:-0.007200px;}
.lsc_c00471{letter-spacing:0.000000px;}
.ls7_c00471{letter-spacing:0.007200px;}
.ls0_c00471{letter-spacing:0.014400px;}
.ls1_c00471{letter-spacing:0.021600px;}
.ls4_c00471{letter-spacing:0.028800px;}
.ls3_c00471{letter-spacing:0.036000px;}
.ls8_c00471{letter-spacing:0.043200px;}
.lsa_c00471{letter-spacing:0.050400px;}
.ls2_c00471{letter-spacing:0.057600px;}
.ls5_c00471{letter-spacing:0.064800px;}
.lsb_c00471{letter-spacing:0.072000px;}
.ls6_c00471{letter-spacing:0.093600px;}
.ls9_c00471{letter-spacing:0.108000px;}
.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;}
}
.ws0_c00471{word-spacing:-18.057600px;}
.ws1_c00471{word-spacing:-18.021600px;}
.ws2_c00471{word-spacing:-18.014400px;}
.ws46_c00471{word-spacing:-2.908800px;}
.ws45_c00471{word-spacing:-2.880000px;}
.ws13_c00471{word-spacing:-1.944000px;}
.ws12_c00471{word-spacing:-1.692000px;}
.ws1a_c00471{word-spacing:-0.396000px;}
.ws4b_c00471{word-spacing:-0.288000px;}
.ws3e_c00471{word-spacing:-0.223200px;}
.ws2b_c00471{word-spacing:-0.201600px;}
.ws18_c00471{word-spacing:-0.194400px;}
.ws49_c00471{word-spacing:-0.187200px;}
.ws3f_c00471{word-spacing:-0.129600px;}
.ws48_c00471{word-spacing:-0.072000px;}
.wse_c00471{word-spacing:-0.064800px;}
.ws34_c00471{word-spacing:-0.057600px;}
.ws43_c00471{word-spacing:-0.050400px;}
.ws3d_c00471{word-spacing:-0.043200px;}
.ws8_c00471{word-spacing:-0.036000px;}
.ws9_c00471{word-spacing:-0.028800px;}
.ws47_c00471{word-spacing:-0.021600px;}
.wsd_c00471{word-spacing:-0.014400px;}
.ws19_c00471{word-spacing:-0.007200px;}
.ws3_c00471{word-spacing:0.000000px;}
.ws2c_c00471{word-spacing:0.007200px;}
.ws4a_c00471{word-spacing:0.014400px;}
.wsa_c00471{word-spacing:0.021600px;}
.ws3a_c00471{word-spacing:0.028800px;}
.ws44_c00471{word-spacing:0.093600px;}
.ws24_c00471{word-spacing:0.108000px;}
.ws28_c00471{word-spacing:0.324000px;}
.ws29_c00471{word-spacing:0.352800px;}
.ws1b_c00471{word-spacing:0.993600px;}
.ws4e_c00471{word-spacing:1.036800px;}
.ws1c_c00471{word-spacing:1.051200px;}
.ws4d_c00471{word-spacing:1.317600px;}
.ws4c_c00471{word-spacing:1.483200px;}
.wsb_c00471{word-spacing:2.426400px;}
.wsc_c00471{word-spacing:2.520000px;}
.ws3b_c00471{word-spacing:3.888000px;}
.ws21_c00471{word-spacing:3.938400px;}
.ws3c_c00471{word-spacing:3.952800px;}
.ws22_c00471{word-spacing:3.960000px;}
.ws5_c00471{word-spacing:4.291200px;}
.ws4_c00471{word-spacing:4.305600px;}
.ws26_c00471{word-spacing:4.824000px;}
.ws37_c00471{word-spacing:4.989600px;}
.ws25_c00471{word-spacing:5.018400px;}
.ws27_c00471{word-spacing:5.112000px;}
.ws30_c00471{word-spacing:5.220000px;}
.ws32_c00471{word-spacing:5.400000px;}
.ws31_c00471{word-spacing:5.436000px;}
.ws33_c00471{word-spacing:5.450400px;}
.ws38_c00471{word-spacing:6.026400px;}
.ws39_c00471{word-spacing:6.033600px;}
.ws1f_c00471{word-spacing:6.091200px;}
.ws20_c00471{word-spacing:6.134400px;}
.ws42_c00471{word-spacing:7.754400px;}
.ws41_c00471{word-spacing:7.848000px;}
.ws40_c00471{word-spacing:7.905600px;}
.ws2d_c00471{word-spacing:9.158400px;}
.ws2e_c00471{word-spacing:9.302400px;}
.ws14_c00471{word-spacing:10.425600px;}
.ws15_c00471{word-spacing:10.461600px;}
.ws1e_c00471{word-spacing:11.757600px;}
.ws1d_c00471{word-spacing:11.887200px;}
.ws23_c00471{word-spacing:13.636800px;}
.wsf_c00471{word-spacing:16.200000px;}
.ws7_c00471{word-spacing:25.502400px;}
.ws6_c00471{word-spacing:25.567200px;}
.ws36_c00471{word-spacing:34.545600px;}
.ws35_c00471{word-spacing:34.639200px;}
.ws17_c00471{word-spacing:35.546400px;}
.ws16_c00471{word-spacing:35.676000px;}
.ws11_c00471{word-spacing:53.517600px;}
.ws10_c00471{word-spacing:53.712000px;}
.ws2a_c00471{word-spacing:251.236800px;}
.ws2f_c00471{word-spacing:706.694400px;}
._0_c00471{margin-left:-1.000800px;}
._1_c00471{width:1.224000px;}
.fc0_c00471{color:rgb(0,0,0);}
.fs0_c00471{font-size:72.000000px;}
.y0_c00471{bottom:0.000000px;}
.y2_c00471{bottom:46.830450px;}
.y1_c00471{bottom:67.530450px;}
.y31_c00471{bottom:145.470450px;}
.y30_c00471{bottom:166.170450px;}
.y2f_c00471{bottom:186.870450px;}
.y2e_c00471{bottom:207.570450px;}
.y2d_c00471{bottom:228.270450px;}
.y2c_c00471{bottom:248.970450px;}
.y2b_c00471{bottom:269.670450px;}
.y2a_c00471{bottom:290.370450px;}
.y29_c00471{bottom:311.070450px;}
.y28_c00471{bottom:331.770450px;}
.y27_c00471{bottom:352.470450px;}
.y26_c00471{bottom:373.170450px;}
.y25_c00471{bottom:393.780450px;}
.y24_c00471{bottom:414.480450px;}
.y23_c00471{bottom:435.180450px;}
.y22_c00471{bottom:455.880450px;}
.y21_c00471{bottom:476.580450px;}
.y20_c00471{bottom:497.280450px;}
.y1f_c00471{bottom:517.980450px;}
.y1e_c00471{bottom:538.680450px;}
.y1d_c00471{bottom:559.380450px;}
.y1c_c00471{bottom:580.080450px;}
.y1b_c00471{bottom:600.780450px;}
.y1a_c00471{bottom:621.480450px;}
.y19_c00471{bottom:642.180450px;}
.y18_c00471{bottom:662.880450px;}
.y17_c00471{bottom:683.580450px;}
.y16_c00471{bottom:704.280450px;}
.y15_c00471{bottom:724.980450px;}
.y14_c00471{bottom:745.680450px;}
.y13_c00471{bottom:766.380450px;}
.y12_c00471{bottom:787.080450px;}
.y11_c00471{bottom:807.780450px;}
.y10_c00471{bottom:828.480450px;}
.yf_c00471{bottom:849.180450px;}
.ye_c00471{bottom:869.880450px;}
.yd_c00471{bottom:890.580450px;}
.yc_c00471{bottom:911.280450px;}
.yb_c00471{bottom:931.980450px;}
.ya_c00471{bottom:952.680450px;}
.y9_c00471{bottom:973.380450px;}
.y8_c00471{bottom:994.080450px;}
.y7_c00471{bottom:1014.780450px;}
.y6_c00471{bottom:1035.480450px;}
.y5_c00471{bottom:1056.180450px;}
.y4_c00471{bottom:1076.880450px;}
.y3_c00471{bottom:1097.580450px;}
.h1_c00471{height:63.175781px;}
.h2_c00471{height:70.628906px;}
.h0_c00471{height:1263.000000px;}
.w1_c00471{width:892.500000px;}
.w0_c00471{width:892.830000px;}
.x0_c00471{left:0.000000px;}
.x2_c00471{left:127.620000px;}
.x3_c00471{left:181.620000px;}
.x1_c00471{left:695.880000px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls13_c00471{letter-spacing:-0.096000pt;}
.lsf_c00471{letter-spacing:-0.064000pt;}
.ls10_c00471{letter-spacing:-0.051200pt;}
.ls14_c00471{letter-spacing:-0.044800pt;}
.ls11_c00471{letter-spacing:-0.032000pt;}
.ls15_c00471{letter-spacing:-0.025600pt;}
.lse_c00471{letter-spacing:-0.019200pt;}
.ls12_c00471{letter-spacing:-0.012800pt;}
.lsd_c00471{letter-spacing:-0.006400pt;}
.lsc_c00471{letter-spacing:0.000000pt;}
.ls7_c00471{letter-spacing:0.006400pt;}
.ls0_c00471{letter-spacing:0.012800pt;}
.ls1_c00471{letter-spacing:0.019200pt;}
.ls4_c00471{letter-spacing:0.025600pt;}
.ls3_c00471{letter-spacing:0.032000pt;}
.ls8_c00471{letter-spacing:0.038400pt;}
.lsa_c00471{letter-spacing:0.044800pt;}
.ls2_c00471{letter-spacing:0.051200pt;}
.ls5_c00471{letter-spacing:0.057600pt;}
.lsb_c00471{letter-spacing:0.064000pt;}
.ls6_c00471{letter-spacing:0.083200pt;}
.ls9_c00471{letter-spacing:0.096000pt;}
.ws0_c00471{word-spacing:-16.051200pt;}
.ws1_c00471{word-spacing:-16.019200pt;}
.ws2_c00471{word-spacing:-16.012800pt;}
.ws46_c00471{word-spacing:-2.585600pt;}
.ws45_c00471{word-spacing:-2.560000pt;}
.ws13_c00471{word-spacing:-1.728000pt;}
.ws12_c00471{word-spacing:-1.504000pt;}
.ws1a_c00471{word-spacing:-0.352000pt;}
.ws4b_c00471{word-spacing:-0.256000pt;}
.ws3e_c00471{word-spacing:-0.198400pt;}
.ws2b_c00471{word-spacing:-0.179200pt;}
.ws18_c00471{word-spacing:-0.172800pt;}
.ws49_c00471{word-spacing:-0.166400pt;}
.ws3f_c00471{word-spacing:-0.115200pt;}
.ws48_c00471{word-spacing:-0.064000pt;}
.wse_c00471{word-spacing:-0.057600pt;}
.ws34_c00471{word-spacing:-0.051200pt;}
.ws43_c00471{word-spacing:-0.044800pt;}
.ws3d_c00471{word-spacing:-0.038400pt;}
.ws8_c00471{word-spacing:-0.032000pt;}
.ws9_c00471{word-spacing:-0.025600pt;}
.ws47_c00471{word-spacing:-0.019200pt;}
.wsd_c00471{word-spacing:-0.012800pt;}
.ws19_c00471{word-spacing:-0.006400pt;}
.ws3_c00471{word-spacing:0.000000pt;}
.ws2c_c00471{word-spacing:0.006400pt;}
.ws4a_c00471{word-spacing:0.012800pt;}
.wsa_c00471{word-spacing:0.019200pt;}
.ws3a_c00471{word-spacing:0.025600pt;}
.ws44_c00471{word-spacing:0.083200pt;}
.ws24_c00471{word-spacing:0.096000pt;}
.ws28_c00471{word-spacing:0.288000pt;}
.ws29_c00471{word-spacing:0.313600pt;}
.ws1b_c00471{word-spacing:0.883200pt;}
.ws4e_c00471{word-spacing:0.921600pt;}
.ws1c_c00471{word-spacing:0.934400pt;}
.ws4d_c00471{word-spacing:1.171200pt;}
.ws4c_c00471{word-spacing:1.318400pt;}
.wsb_c00471{word-spacing:2.156800pt;}
.wsc_c00471{word-spacing:2.240000pt;}
.ws3b_c00471{word-spacing:3.456000pt;}
.ws21_c00471{word-spacing:3.500800pt;}
.ws3c_c00471{word-spacing:3.513600pt;}
.ws22_c00471{word-spacing:3.520000pt;}
.ws5_c00471{word-spacing:3.814400pt;}
.ws4_c00471{word-spacing:3.827200pt;}
.ws26_c00471{word-spacing:4.288000pt;}
.ws37_c00471{word-spacing:4.435200pt;}
.ws25_c00471{word-spacing:4.460800pt;}
.ws27_c00471{word-spacing:4.544000pt;}
.ws30_c00471{word-spacing:4.640000pt;}
.ws32_c00471{word-spacing:4.800000pt;}
.ws31_c00471{word-spacing:4.832000pt;}
.ws33_c00471{word-spacing:4.844800pt;}
.ws38_c00471{word-spacing:5.356800pt;}
.ws39_c00471{word-spacing:5.363200pt;}
.ws1f_c00471{word-spacing:5.414400pt;}
.ws20_c00471{word-spacing:5.452800pt;}
.ws42_c00471{word-spacing:6.892800pt;}
.ws41_c00471{word-spacing:6.976000pt;}
.ws40_c00471{word-spacing:7.027200pt;}
.ws2d_c00471{word-spacing:8.140800pt;}
.ws2e_c00471{word-spacing:8.268800pt;}
.ws14_c00471{word-spacing:9.267200pt;}
.ws15_c00471{word-spacing:9.299200pt;}
.ws1e_c00471{word-spacing:10.451200pt;}
.ws1d_c00471{word-spacing:10.566400pt;}
.ws23_c00471{word-spacing:12.121600pt;}
.wsf_c00471{word-spacing:14.400000pt;}
.ws7_c00471{word-spacing:22.668800pt;}
.ws6_c00471{word-spacing:22.726400pt;}
.ws36_c00471{word-spacing:30.707200pt;}
.ws35_c00471{word-spacing:30.790400pt;}
.ws17_c00471{word-spacing:31.596800pt;}
.ws16_c00471{word-spacing:31.712000pt;}
.ws11_c00471{word-spacing:47.571200pt;}
.ws10_c00471{word-spacing:47.744000pt;}
.ws2a_c00471{word-spacing:223.321600pt;}
.ws2f_c00471{word-spacing:628.172800pt;}
._0_c00471{margin-left:-0.889600pt;}
._1_c00471{width:1.088000pt;}
.fs0_c00471{font-size:64.000000pt;}
.y0_c00471{bottom:0.000000pt;}
.y2_c00471{bottom:41.627067pt;}
.y1_c00471{bottom:60.027067pt;}
.y31_c00471{bottom:129.307067pt;}
.y30_c00471{bottom:147.707067pt;}
.y2f_c00471{bottom:166.107067pt;}
.y2e_c00471{bottom:184.507067pt;}
.y2d_c00471{bottom:202.907067pt;}
.y2c_c00471{bottom:221.307067pt;}
.y2b_c00471{bottom:239.707067pt;}
.y2a_c00471{bottom:258.107067pt;}
.y29_c00471{bottom:276.507067pt;}
.y28_c00471{bottom:294.907067pt;}
.y27_c00471{bottom:313.307067pt;}
.y26_c00471{bottom:331.707067pt;}
.y25_c00471{bottom:350.027067pt;}
.y24_c00471{bottom:368.427067pt;}
.y23_c00471{bottom:386.827067pt;}
.y22_c00471{bottom:405.227067pt;}
.y21_c00471{bottom:423.627067pt;}
.y20_c00471{bottom:442.027067pt;}
.y1f_c00471{bottom:460.427067pt;}
.y1e_c00471{bottom:478.827067pt;}
.y1d_c00471{bottom:497.227067pt;}
.y1c_c00471{bottom:515.627067pt;}
.y1b_c00471{bottom:534.027067pt;}
.y1a_c00471{bottom:552.427067pt;}
.y19_c00471{bottom:570.827067pt;}
.y18_c00471{bottom:589.227067pt;}
.y17_c00471{bottom:607.627067pt;}
.y16_c00471{bottom:626.027067pt;}
.y15_c00471{bottom:644.427067pt;}
.y14_c00471{bottom:662.827067pt;}
.y13_c00471{bottom:681.227067pt;}
.y12_c00471{bottom:699.627067pt;}
.y11_c00471{bottom:718.027067pt;}
.y10_c00471{bottom:736.427067pt;}
.yf_c00471{bottom:754.827067pt;}
.ye_c00471{bottom:773.227067pt;}
.yd_c00471{bottom:791.627067pt;}
.yc_c00471{bottom:810.027067pt;}
.yb_c00471{bottom:828.427067pt;}
.ya_c00471{bottom:846.827067pt;}
.y9_c00471{bottom:865.227067pt;}
.y8_c00471{bottom:883.627067pt;}
.y7_c00471{bottom:902.027067pt;}
.y6_c00471{bottom:920.427067pt;}
.y5_c00471{bottom:938.827067pt;}
.y4_c00471{bottom:957.227067pt;}
.y3_c00471{bottom:975.627067pt;}
.h1_c00471{height:56.156250pt;}
.h2_c00471{height:62.781250pt;}
.h0_c00471{height:1122.666667pt;}
.w1_c00471{width:793.333333pt;}
.w0_c00471{width:793.626667pt;}
.x0_c00471{left:0.000000pt;}
.x2_c00471{left:113.440000pt;}
.x3_c00471{left:161.440000pt;}
.x1_c00471{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8dfcebef1dd6545793624b82.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.093262;font-style:normal;font-weight:normal;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_7dea4d7064e8440064e68c34.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00472{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls14_c00472{letter-spacing:-0.360000px;}
.ls13_c00472{letter-spacing:-0.100800px;}
.ls11_c00472{letter-spacing:-0.072000px;}
.ls12_c00472{letter-spacing:-0.036000px;}
.lse_c00472{letter-spacing:-0.028800px;}
.lsd_c00472{letter-spacing:-0.021600px;}
.lsf_c00472{letter-spacing:-0.014400px;}
.ls10_c00472{letter-spacing:-0.007200px;}
.lsc_c00472{letter-spacing:0.000000px;}
.ls7_c00472{letter-spacing:0.007200px;}
.ls0_c00472{letter-spacing:0.014400px;}
.ls2_c00472{letter-spacing:0.021600px;}
.ls3_c00472{letter-spacing:0.028800px;}
.ls1_c00472{letter-spacing:0.036000px;}
.ls6_c00472{letter-spacing:0.043200px;}
.lsa_c00472{letter-spacing:0.050400px;}
.ls9_c00472{letter-spacing:0.057600px;}
.ls5_c00472{letter-spacing:0.064800px;}
.ls4_c00472{letter-spacing:0.072000px;}
.ls8_c00472{letter-spacing:0.086400px;}
.lsb_c00472{letter-spacing:0.100800px;}
.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:-18.072000px;}
.ws2_c00472{word-spacing:-18.057600px;}
.ws1_c00472{word-spacing:-18.043200px;}
.ws2f_c00472{word-spacing:-4.017600px;}
.ws30_c00472{word-spacing:-3.988800px;}
.ws31_c00472{word-spacing:-3.960000px;}
.ws51_c00472{word-spacing:-3.240000px;}
.ws50_c00472{word-spacing:-3.225600px;}
.ws5_c00472{word-spacing:-2.318400px;}
.ws6_c00472{word-spacing:-2.188800px;}
.ws4_c00472{word-spacing:-2.174400px;}
.wsb_c00472{word-spacing:-1.468800px;}
.ws48_c00472{word-spacing:-0.417600px;}
.ws44_c00472{word-spacing:-0.381600px;}
.ws49_c00472{word-spacing:-0.374400px;}
.ws47_c00472{word-spacing:-0.352800px;}
.ws3b_c00472{word-spacing:-0.230400px;}
.wsa_c00472{word-spacing:-0.216000px;}
.ws3c_c00472{word-spacing:-0.201600px;}
.ws41_c00472{word-spacing:-0.194400px;}
.ws27_c00472{word-spacing:-0.129600px;}
.ws33_c00472{word-spacing:-0.115200px;}
.wsf_c00472{word-spacing:-0.072000px;}
.ws4c_c00472{word-spacing:-0.064800px;}
.ws14_c00472{word-spacing:-0.043200px;}
.ws46_c00472{word-spacing:-0.028800px;}
.ws2b_c00472{word-spacing:-0.021600px;}
.ws22_c00472{word-spacing:-0.014400px;}
.ws20_c00472{word-spacing:-0.007200px;}
.ws3_c00472{word-spacing:0.000000px;}
.ws34_c00472{word-spacing:0.014400px;}
.wse_c00472{word-spacing:0.021600px;}
.ws45_c00472{word-spacing:0.036000px;}
.ws21_c00472{word-spacing:0.072000px;}
.ws38_c00472{word-spacing:0.100800px;}
.ws32_c00472{word-spacing:0.108000px;}
.ws42_c00472{word-spacing:0.684000px;}
.ws43_c00472{word-spacing:0.720000px;}
.ws15_c00472{word-spacing:2.044800px;}
.ws16_c00472{word-spacing:2.152800px;}
.ws2a_c00472{word-spacing:2.808000px;}
.ws29_c00472{word-spacing:2.844000px;}
.ws28_c00472{word-spacing:2.865600px;}
.ws4b_c00472{word-spacing:4.226400px;}
.ws4a_c00472{word-spacing:4.305600px;}
.ws19_c00472{word-spacing:4.824000px;}
.ws18_c00472{word-spacing:5.025600px;}
.ws1a_c00472{word-spacing:5.068800px;}
.ws3a_c00472{word-spacing:5.407200px;}
.ws39_c00472{word-spacing:5.464800px;}
.ws7_c00472{word-spacing:5.990400px;}
.ws8_c00472{word-spacing:6.098400px;}
.ws9_c00472{word-spacing:6.141600px;}
.ws3f_c00472{word-spacing:6.379200px;}
.ws40_c00472{word-spacing:6.472800px;}
.ws23_c00472{word-spacing:7.012800px;}
.ws25_c00472{word-spacing:7.113600px;}
.ws26_c00472{word-spacing:7.214400px;}
.ws24_c00472{word-spacing:7.228800px;}
.ws4d_c00472{word-spacing:9.259200px;}
.ws4f_c00472{word-spacing:9.360000px;}
.ws4e_c00472{word-spacing:9.367200px;}
.ws10_c00472{word-spacing:10.058400px;}
.ws11_c00472{word-spacing:10.072800px;}
.ws12_c00472{word-spacing:15.292800px;}
.ws13_c00472{word-spacing:15.386400px;}
.ws3e_c00472{word-spacing:18.021600px;}
.ws3d_c00472{word-spacing:18.036000px;}
.ws35_c00472{word-spacing:20.088000px;}
.ws36_c00472{word-spacing:20.131200px;}
.ws37_c00472{word-spacing:20.174400px;}
.ws17_c00472{word-spacing:21.600000px;}
.ws1c_c00472{word-spacing:22.255200px;}
.ws1d_c00472{word-spacing:22.298400px;}
.wsd_c00472{word-spacing:23.702400px;}
.wsc_c00472{word-spacing:23.745600px;}
.ws52_c00472{word-spacing:25.804800px;}
.ws53_c00472{word-spacing:25.891200px;}
.ws1e_c00472{word-spacing:31.953600px;}
.ws1f_c00472{word-spacing:32.047200px;}
.ws2e_c00472{word-spacing:32.349600px;}
.ws2d_c00472{word-spacing:32.364000px;}
.ws2c_c00472{word-spacing:32.428800px;}
.ws1b_c00472{word-spacing:267.400800px;}
._0_c00472{margin-left:-1.152000px;}
._1_c00472{width:1.188000px;}
.fc0_c00472{color:rgb(0,0,0);}
.fs0_c00472{font-size:72.000000px;}
.y0_c00472{bottom:0.000000px;}
.y2_c00472{bottom:46.830450px;}
.y1_c00472{bottom:67.530450px;}
.y31_c00472{bottom:145.470450px;}
.y30_c00472{bottom:166.170450px;}
.y2f_c00472{bottom:186.870450px;}
.y2e_c00472{bottom:207.570450px;}
.y2d_c00472{bottom:228.270450px;}
.y2c_c00472{bottom:248.970450px;}
.y2b_c00472{bottom:269.670450px;}
.y2a_c00472{bottom:290.370450px;}
.y29_c00472{bottom:311.070450px;}
.y28_c00472{bottom:331.770450px;}
.y27_c00472{bottom:352.470450px;}
.y26_c00472{bottom:373.170450px;}
.y25_c00472{bottom:393.780450px;}
.y24_c00472{bottom:414.480450px;}
.y23_c00472{bottom:435.180450px;}
.y22_c00472{bottom:455.880450px;}
.y21_c00472{bottom:476.580450px;}
.y20_c00472{bottom:497.280450px;}
.y1f_c00472{bottom:517.980450px;}
.y1e_c00472{bottom:538.680450px;}
.y1d_c00472{bottom:559.380450px;}
.y1c_c00472{bottom:580.080450px;}
.y1b_c00472{bottom:600.780450px;}
.y1a_c00472{bottom:621.480450px;}
.y19_c00472{bottom:642.180450px;}
.y18_c00472{bottom:662.880450px;}
.y17_c00472{bottom:683.580450px;}
.y16_c00472{bottom:704.280450px;}
.y15_c00472{bottom:724.980450px;}
.y14_c00472{bottom:745.680450px;}
.y13_c00472{bottom:766.380450px;}
.y12_c00472{bottom:787.080450px;}
.y11_c00472{bottom:807.780450px;}
.y10_c00472{bottom:828.480450px;}
.yf_c00472{bottom:849.180450px;}
.ye_c00472{bottom:869.880450px;}
.yd_c00472{bottom:890.580450px;}
.yc_c00472{bottom:911.280450px;}
.yb_c00472{bottom:931.980450px;}
.ya_c00472{bottom:952.680450px;}
.y9_c00472{bottom:973.380450px;}
.y8_c00472{bottom:994.080450px;}
.y7_c00472{bottom:1014.780450px;}
.y6_c00472{bottom:1035.480450px;}
.y5_c00472{bottom:1056.180450px;}
.y4_c00472{bottom:1076.880450px;}
.y3_c00472{bottom:1097.580450px;}
.h1_c00472{height:63.175781px;}
.h2_c00472{height:70.628906px;}
.h0_c00472{height:1263.000000px;}
.w1_c00472{width:892.500000px;}
.w0_c00472{width:892.830000px;}
.x0_c00472{left:0.000000px;}
.x2_c00472{left:170.100000px;}
.x3_c00472{left:224.100000px;}
.x1_c00472{left:738.360000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls14_c00472{letter-spacing:-0.320000pt;}
.ls13_c00472{letter-spacing:-0.089600pt;}
.ls11_c00472{letter-spacing:-0.064000pt;}
.ls12_c00472{letter-spacing:-0.032000pt;}
.lse_c00472{letter-spacing:-0.025600pt;}
.lsd_c00472{letter-spacing:-0.019200pt;}
.lsf_c00472{letter-spacing:-0.012800pt;}
.ls10_c00472{letter-spacing:-0.006400pt;}
.lsc_c00472{letter-spacing:0.000000pt;}
.ls7_c00472{letter-spacing:0.006400pt;}
.ls0_c00472{letter-spacing:0.012800pt;}
.ls2_c00472{letter-spacing:0.019200pt;}
.ls3_c00472{letter-spacing:0.025600pt;}
.ls1_c00472{letter-spacing:0.032000pt;}
.ls6_c00472{letter-spacing:0.038400pt;}
.lsa_c00472{letter-spacing:0.044800pt;}
.ls9_c00472{letter-spacing:0.051200pt;}
.ls5_c00472{letter-spacing:0.057600pt;}
.ls4_c00472{letter-spacing:0.064000pt;}
.ls8_c00472{letter-spacing:0.076800pt;}
.lsb_c00472{letter-spacing:0.089600pt;}
.ws0_c00472{word-spacing:-16.064000pt;}
.ws2_c00472{word-spacing:-16.051200pt;}
.ws1_c00472{word-spacing:-16.038400pt;}
.ws2f_c00472{word-spacing:-3.571200pt;}
.ws30_c00472{word-spacing:-3.545600pt;}
.ws31_c00472{word-spacing:-3.520000pt;}
.ws51_c00472{word-spacing:-2.880000pt;}
.ws50_c00472{word-spacing:-2.867200pt;}
.ws5_c00472{word-spacing:-2.060800pt;}
.ws6_c00472{word-spacing:-1.945600pt;}
.ws4_c00472{word-spacing:-1.932800pt;}
.wsb_c00472{word-spacing:-1.305600pt;}
.ws48_c00472{word-spacing:-0.371200pt;}
.ws44_c00472{word-spacing:-0.339200pt;}
.ws49_c00472{word-spacing:-0.332800pt;}
.ws47_c00472{word-spacing:-0.313600pt;}
.ws3b_c00472{word-spacing:-0.204800pt;}
.wsa_c00472{word-spacing:-0.192000pt;}
.ws3c_c00472{word-spacing:-0.179200pt;}
.ws41_c00472{word-spacing:-0.172800pt;}
.ws27_c00472{word-spacing:-0.115200pt;}
.ws33_c00472{word-spacing:-0.102400pt;}
.wsf_c00472{word-spacing:-0.064000pt;}
.ws4c_c00472{word-spacing:-0.057600pt;}
.ws14_c00472{word-spacing:-0.038400pt;}
.ws46_c00472{word-spacing:-0.025600pt;}
.ws2b_c00472{word-spacing:-0.019200pt;}
.ws22_c00472{word-spacing:-0.012800pt;}
.ws20_c00472{word-spacing:-0.006400pt;}
.ws3_c00472{word-spacing:0.000000pt;}
.ws34_c00472{word-spacing:0.012800pt;}
.wse_c00472{word-spacing:0.019200pt;}
.ws45_c00472{word-spacing:0.032000pt;}
.ws21_c00472{word-spacing:0.064000pt;}
.ws38_c00472{word-spacing:0.089600pt;}
.ws32_c00472{word-spacing:0.096000pt;}
.ws42_c00472{word-spacing:0.608000pt;}
.ws43_c00472{word-spacing:0.640000pt;}
.ws15_c00472{word-spacing:1.817600pt;}
.ws16_c00472{word-spacing:1.913600pt;}
.ws2a_c00472{word-spacing:2.496000pt;}
.ws29_c00472{word-spacing:2.528000pt;}
.ws28_c00472{word-spacing:2.547200pt;}
.ws4b_c00472{word-spacing:3.756800pt;}
.ws4a_c00472{word-spacing:3.827200pt;}
.ws19_c00472{word-spacing:4.288000pt;}
.ws18_c00472{word-spacing:4.467200pt;}
.ws1a_c00472{word-spacing:4.505600pt;}
.ws3a_c00472{word-spacing:4.806400pt;}
.ws39_c00472{word-spacing:4.857600pt;}
.ws7_c00472{word-spacing:5.324800pt;}
.ws8_c00472{word-spacing:5.420800pt;}
.ws9_c00472{word-spacing:5.459200pt;}
.ws3f_c00472{word-spacing:5.670400pt;}
.ws40_c00472{word-spacing:5.753600pt;}
.ws23_c00472{word-spacing:6.233600pt;}
.ws25_c00472{word-spacing:6.323200pt;}
.ws26_c00472{word-spacing:6.412800pt;}
.ws24_c00472{word-spacing:6.425600pt;}
.ws4d_c00472{word-spacing:8.230400pt;}
.ws4f_c00472{word-spacing:8.320000pt;}
.ws4e_c00472{word-spacing:8.326400pt;}
.ws10_c00472{word-spacing:8.940800pt;}
.ws11_c00472{word-spacing:8.953600pt;}
.ws12_c00472{word-spacing:13.593600pt;}
.ws13_c00472{word-spacing:13.676800pt;}
.ws3e_c00472{word-spacing:16.019200pt;}
.ws3d_c00472{word-spacing:16.032000pt;}
.ws35_c00472{word-spacing:17.856000pt;}
.ws36_c00472{word-spacing:17.894400pt;}
.ws37_c00472{word-spacing:17.932800pt;}
.ws17_c00472{word-spacing:19.200000pt;}
.ws1c_c00472{word-spacing:19.782400pt;}
.ws1d_c00472{word-spacing:19.820800pt;}
.wsd_c00472{word-spacing:21.068800pt;}
.wsc_c00472{word-spacing:21.107200pt;}
.ws52_c00472{word-spacing:22.937600pt;}
.ws53_c00472{word-spacing:23.014400pt;}
.ws1e_c00472{word-spacing:28.403200pt;}
.ws1f_c00472{word-spacing:28.486400pt;}
.ws2e_c00472{word-spacing:28.755200pt;}
.ws2d_c00472{word-spacing:28.768000pt;}
.ws2c_c00472{word-spacing:28.825600pt;}
.ws1b_c00472{word-spacing:237.689600pt;}
._0_c00472{margin-left:-1.024000pt;}
._1_c00472{width:1.056000pt;}
.fs0_c00472{font-size:64.000000pt;}
.y0_c00472{bottom:0.000000pt;}
.y2_c00472{bottom:41.627067pt;}
.y1_c00472{bottom:60.027067pt;}
.y31_c00472{bottom:129.307067pt;}
.y30_c00472{bottom:147.707067pt;}
.y2f_c00472{bottom:166.107067pt;}
.y2e_c00472{bottom:184.507067pt;}
.y2d_c00472{bottom:202.907067pt;}
.y2c_c00472{bottom:221.307067pt;}
.y2b_c00472{bottom:239.707067pt;}
.y2a_c00472{bottom:258.107067pt;}
.y29_c00472{bottom:276.507067pt;}
.y28_c00472{bottom:294.907067pt;}
.y27_c00472{bottom:313.307067pt;}
.y26_c00472{bottom:331.707067pt;}
.y25_c00472{bottom:350.027067pt;}
.y24_c00472{bottom:368.427067pt;}
.y23_c00472{bottom:386.827067pt;}
.y22_c00472{bottom:405.227067pt;}
.y21_c00472{bottom:423.627067pt;}
.y20_c00472{bottom:442.027067pt;}
.y1f_c00472{bottom:460.427067pt;}
.y1e_c00472{bottom:478.827067pt;}
.y1d_c00472{bottom:497.227067pt;}
.y1c_c00472{bottom:515.627067pt;}
.y1b_c00472{bottom:534.027067pt;}
.y1a_c00472{bottom:552.427067pt;}
.y19_c00472{bottom:570.827067pt;}
.y18_c00472{bottom:589.227067pt;}
.y17_c00472{bottom:607.627067pt;}
.y16_c00472{bottom:626.027067pt;}
.y15_c00472{bottom:644.427067pt;}
.y14_c00472{bottom:662.827067pt;}
.y13_c00472{bottom:681.227067pt;}
.y12_c00472{bottom:699.627067pt;}
.y11_c00472{bottom:718.027067pt;}
.y10_c00472{bottom:736.427067pt;}
.yf_c00472{bottom:754.827067pt;}
.ye_c00472{bottom:773.227067pt;}
.yd_c00472{bottom:791.627067pt;}
.yc_c00472{bottom:810.027067pt;}
.yb_c00472{bottom:828.427067pt;}
.ya_c00472{bottom:846.827067pt;}
.y9_c00472{bottom:865.227067pt;}
.y8_c00472{bottom:883.627067pt;}
.y7_c00472{bottom:902.027067pt;}
.y6_c00472{bottom:920.427067pt;}
.y5_c00472{bottom:938.827067pt;}
.y4_c00472{bottom:957.227067pt;}
.y3_c00472{bottom:975.627067pt;}
.h1_c00472{height:56.156250pt;}
.h2_c00472{height:62.781250pt;}
.h0_c00472{height:1122.666667pt;}
.w1_c00472{width:793.333333pt;}
.w0_c00472{width:793.626667pt;}
.x0_c00472{left:0.000000pt;}
.x2_c00472{left:151.200000pt;}
.x3_c00472{left:199.200000pt;}
.x1_c00472{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d877be8b03f765550ef22c53.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.093262;font-style:normal;font-weight:normal;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_d5f206d028e393e7ad30a5f1.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls11_c00473{letter-spacing:-0.057600px;}
.lsd_c00473{letter-spacing:-0.050400px;}
.ls12_c00473{letter-spacing:-0.028800px;}
.lse_c00473{letter-spacing:-0.021600px;}
.lsf_c00473{letter-spacing:-0.014400px;}
.ls10_c00473{letter-spacing:-0.007200px;}
.lsc_c00473{letter-spacing:0.000000px;}
.ls0_c00473{letter-spacing:0.007200px;}
.ls1_c00473{letter-spacing:0.014400px;}
.ls4_c00473{letter-spacing:0.021600px;}
.ls5_c00473{letter-spacing:0.028800px;}
.ls2_c00473{letter-spacing:0.036000px;}
.ls3_c00473{letter-spacing:0.043200px;}
.ls6_c00473{letter-spacing:0.050400px;}
.lsa_c00473{letter-spacing:0.057600px;}
.ls8_c00473{letter-spacing:0.072000px;}
.lsb_c00473{letter-spacing:0.079200px;}
.ls9_c00473{letter-spacing:0.093600px;}
.ls7_c00473{letter-spacing:0.108000px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00473{word-spacing:-18.043200px;}
.ws1_c00473{word-spacing:-18.028800px;}
.ws2b_c00473{word-spacing:-4.010400px;}
.ws3d_c00473{word-spacing:-3.981600px;}
.ws2d_c00473{word-spacing:-3.967200px;}
.ws2c_c00473{word-spacing:-3.938400px;}
.ws5_c00473{word-spacing:-3.276000px;}
.ws6_c00473{word-spacing:-3.240000px;}
.ws2e_c00473{word-spacing:-1.821600px;}
.ws30_c00473{word-spacing:-1.800000px;}
.ws2f_c00473{word-spacing:-1.785600px;}
.ws7_c00473{word-spacing:-0.374400px;}
.ws1e_c00473{word-spacing:-0.180000px;}
.wsc_c00473{word-spacing:-0.129600px;}
.ws8_c00473{word-spacing:-0.100800px;}
.ws41_c00473{word-spacing:-0.072000px;}
.ws22_c00473{word-spacing:-0.043200px;}
.ws23_c00473{word-spacing:-0.036000px;}
.ws14_c00473{word-spacing:-0.028800px;}
.ws1d_c00473{word-spacing:-0.014400px;}
.wse_c00473{word-spacing:-0.007200px;}
.ws2_c00473{word-spacing:0.000000px;}
.ws1f_c00473{word-spacing:0.007200px;}
.ws31_c00473{word-spacing:0.028800px;}
.ws42_c00473{word-spacing:0.093600px;}
.ws32_c00473{word-spacing:1.036800px;}
.ws28_c00473{word-spacing:2.296800px;}
.ws27_c00473{word-spacing:2.426400px;}
.ws26_c00473{word-spacing:2.534400px;}
.ws29_c00473{word-spacing:3.492000px;}
.ws1c_c00473{word-spacing:3.506400px;}
.ws1a_c00473{word-spacing:3.578400px;}
.ws1b_c00473{word-spacing:3.585600px;}
.ws2a_c00473{word-spacing:3.614400px;}
.ws37_c00473{word-spacing:4.586400px;}
.ws16_c00473{word-spacing:4.809600px;}
.ws17_c00473{word-spacing:4.932000px;}
.ws11_c00473{word-spacing:5.011200px;}
.ws15_c00473{word-spacing:5.032800px;}
.ws10_c00473{word-spacing:5.313600px;}
.wsf_c00473{word-spacing:5.414400px;}
.ws34_c00473{word-spacing:7.452000px;}
.ws35_c00473{word-spacing:7.459200px;}
.ws33_c00473{word-spacing:7.502400px;}
.ws36_c00473{word-spacing:7.617600px;}
.ws40_c00473{word-spacing:8.150400px;}
.ws3f_c00473{word-spacing:8.236800px;}
.ws3e_c00473{word-spacing:8.388000px;}
.wsa_c00473{word-spacing:9.604800px;}
.ws9_c00473{word-spacing:9.712800px;}
.wsb_c00473{word-spacing:9.720000px;}
.ws20_c00473{word-spacing:10.065600px;}
.ws21_c00473{word-spacing:10.080000px;}
.ws39_c00473{word-spacing:14.011200px;}
.ws38_c00473{word-spacing:14.032800px;}
.ws13_c00473{word-spacing:15.033600px;}
.ws12_c00473{word-spacing:15.127200px;}
.ws24_c00473{word-spacing:16.480800px;}
.ws25_c00473{word-spacing:16.538400px;}
.ws3c_c00473{word-spacing:17.208000px;}
.ws3b_c00473{word-spacing:17.244000px;}
.ws3_c00473{word-spacing:19.072800px;}
.ws4_c00473{word-spacing:19.130400px;}
.wsd_c00473{word-spacing:21.571200px;}
.ws19_c00473{word-spacing:22.125600px;}
.ws18_c00473{word-spacing:22.327200px;}
.ws3a_c00473{word-spacing:145.468800px;}
._0_c00473{margin-left:-1.497600px;}
._1_c00473{width:13.471200px;}
.fc0_c00473{color:rgb(0,0,0);}
.fs0_c00473{font-size:72.000000px;}
.y0_c00473{bottom:0.000000px;}
.y2_c00473{bottom:46.830450px;}
.y1_c00473{bottom:67.530450px;}
.y2f_c00473{bottom:186.870450px;}
.y2e_c00473{bottom:207.570450px;}
.y2d_c00473{bottom:228.270450px;}
.y2c_c00473{bottom:248.970450px;}
.y2b_c00473{bottom:269.670450px;}
.y2a_c00473{bottom:290.370450px;}
.y29_c00473{bottom:311.070450px;}
.y28_c00473{bottom:331.770450px;}
.y27_c00473{bottom:352.470450px;}
.y26_c00473{bottom:373.170450px;}
.y25_c00473{bottom:393.780450px;}
.y24_c00473{bottom:414.480450px;}
.y23_c00473{bottom:435.180450px;}
.y22_c00473{bottom:455.880450px;}
.y21_c00473{bottom:476.580450px;}
.y20_c00473{bottom:497.280450px;}
.y1f_c00473{bottom:517.980450px;}
.y1e_c00473{bottom:538.680450px;}
.y1d_c00473{bottom:559.380450px;}
.y1c_c00473{bottom:580.080450px;}
.y1b_c00473{bottom:600.780450px;}
.y1a_c00473{bottom:621.480450px;}
.y19_c00473{bottom:642.180450px;}
.y18_c00473{bottom:662.880450px;}
.y17_c00473{bottom:683.580450px;}
.y16_c00473{bottom:704.280450px;}
.y15_c00473{bottom:724.980450px;}
.y14_c00473{bottom:745.680450px;}
.y13_c00473{bottom:766.380450px;}
.y12_c00473{bottom:787.080450px;}
.y11_c00473{bottom:807.780450px;}
.y10_c00473{bottom:828.480450px;}
.yf_c00473{bottom:849.180450px;}
.ye_c00473{bottom:869.880450px;}
.yd_c00473{bottom:890.580450px;}
.yc_c00473{bottom:911.280450px;}
.yb_c00473{bottom:931.980450px;}
.ya_c00473{bottom:952.680450px;}
.y9_c00473{bottom:973.380450px;}
.y8_c00473{bottom:994.080450px;}
.y7_c00473{bottom:1014.780450px;}
.y6_c00473{bottom:1035.480450px;}
.y5_c00473{bottom:1056.180450px;}
.y4_c00473{bottom:1076.880450px;}
.y3_c00473{bottom:1097.580450px;}
.h1_c00473{height:63.175781px;}
.h2_c00473{height:70.628906px;}
.h0_c00473{height:1263.000000px;}
.w1_c00473{width:892.500000px;}
.w0_c00473{width:892.830000px;}
.x0_c00473{left:0.000000px;}
.x2_c00473{left:127.620000px;}
.x3_c00473{left:181.620000px;}
.x1_c00473{left:695.880000px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls11_c00473{letter-spacing:-0.051200pt;}
.lsd_c00473{letter-spacing:-0.044800pt;}
.ls12_c00473{letter-spacing:-0.025600pt;}
.lse_c00473{letter-spacing:-0.019200pt;}
.lsf_c00473{letter-spacing:-0.012800pt;}
.ls10_c00473{letter-spacing:-0.006400pt;}
.lsc_c00473{letter-spacing:0.000000pt;}
.ls0_c00473{letter-spacing:0.006400pt;}
.ls1_c00473{letter-spacing:0.012800pt;}
.ls4_c00473{letter-spacing:0.019200pt;}
.ls5_c00473{letter-spacing:0.025600pt;}
.ls2_c00473{letter-spacing:0.032000pt;}
.ls3_c00473{letter-spacing:0.038400pt;}
.ls6_c00473{letter-spacing:0.044800pt;}
.lsa_c00473{letter-spacing:0.051200pt;}
.ls8_c00473{letter-spacing:0.064000pt;}
.lsb_c00473{letter-spacing:0.070400pt;}
.ls9_c00473{letter-spacing:0.083200pt;}
.ls7_c00473{letter-spacing:0.096000pt;}
.ws0_c00473{word-spacing:-16.038400pt;}
.ws1_c00473{word-spacing:-16.025600pt;}
.ws2b_c00473{word-spacing:-3.564800pt;}
.ws3d_c00473{word-spacing:-3.539200pt;}
.ws2d_c00473{word-spacing:-3.526400pt;}
.ws2c_c00473{word-spacing:-3.500800pt;}
.ws5_c00473{word-spacing:-2.912000pt;}
.ws6_c00473{word-spacing:-2.880000pt;}
.ws2e_c00473{word-spacing:-1.619200pt;}
.ws30_c00473{word-spacing:-1.600000pt;}
.ws2f_c00473{word-spacing:-1.587200pt;}
.ws7_c00473{word-spacing:-0.332800pt;}
.ws1e_c00473{word-spacing:-0.160000pt;}
.wsc_c00473{word-spacing:-0.115200pt;}
.ws8_c00473{word-spacing:-0.089600pt;}
.ws41_c00473{word-spacing:-0.064000pt;}
.ws22_c00473{word-spacing:-0.038400pt;}
.ws23_c00473{word-spacing:-0.032000pt;}
.ws14_c00473{word-spacing:-0.025600pt;}
.ws1d_c00473{word-spacing:-0.012800pt;}
.wse_c00473{word-spacing:-0.006400pt;}
.ws2_c00473{word-spacing:0.000000pt;}
.ws1f_c00473{word-spacing:0.006400pt;}
.ws31_c00473{word-spacing:0.025600pt;}
.ws42_c00473{word-spacing:0.083200pt;}
.ws32_c00473{word-spacing:0.921600pt;}
.ws28_c00473{word-spacing:2.041600pt;}
.ws27_c00473{word-spacing:2.156800pt;}
.ws26_c00473{word-spacing:2.252800pt;}
.ws29_c00473{word-spacing:3.104000pt;}
.ws1c_c00473{word-spacing:3.116800pt;}
.ws1a_c00473{word-spacing:3.180800pt;}
.ws1b_c00473{word-spacing:3.187200pt;}
.ws2a_c00473{word-spacing:3.212800pt;}
.ws37_c00473{word-spacing:4.076800pt;}
.ws16_c00473{word-spacing:4.275200pt;}
.ws17_c00473{word-spacing:4.384000pt;}
.ws11_c00473{word-spacing:4.454400pt;}
.ws15_c00473{word-spacing:4.473600pt;}
.ws10_c00473{word-spacing:4.723200pt;}
.wsf_c00473{word-spacing:4.812800pt;}
.ws34_c00473{word-spacing:6.624000pt;}
.ws35_c00473{word-spacing:6.630400pt;}
.ws33_c00473{word-spacing:6.668800pt;}
.ws36_c00473{word-spacing:6.771200pt;}
.ws40_c00473{word-spacing:7.244800pt;}
.ws3f_c00473{word-spacing:7.321600pt;}
.ws3e_c00473{word-spacing:7.456000pt;}
.wsa_c00473{word-spacing:8.537600pt;}
.ws9_c00473{word-spacing:8.633600pt;}
.wsb_c00473{word-spacing:8.640000pt;}
.ws20_c00473{word-spacing:8.947200pt;}
.ws21_c00473{word-spacing:8.960000pt;}
.ws39_c00473{word-spacing:12.454400pt;}
.ws38_c00473{word-spacing:12.473600pt;}
.ws13_c00473{word-spacing:13.363200pt;}
.ws12_c00473{word-spacing:13.446400pt;}
.ws24_c00473{word-spacing:14.649600pt;}
.ws25_c00473{word-spacing:14.700800pt;}
.ws3c_c00473{word-spacing:15.296000pt;}
.ws3b_c00473{word-spacing:15.328000pt;}
.ws3_c00473{word-spacing:16.953600pt;}
.ws4_c00473{word-spacing:17.004800pt;}
.wsd_c00473{word-spacing:19.174400pt;}
.ws19_c00473{word-spacing:19.667200pt;}
.ws18_c00473{word-spacing:19.846400pt;}
.ws3a_c00473{word-spacing:129.305600pt;}
._0_c00473{margin-left:-1.331200pt;}
._1_c00473{width:11.974400pt;}
.fs0_c00473{font-size:64.000000pt;}
.y0_c00473{bottom:0.000000pt;}
.y2_c00473{bottom:41.627067pt;}
.y1_c00473{bottom:60.027067pt;}
.y2f_c00473{bottom:166.107067pt;}
.y2e_c00473{bottom:184.507067pt;}
.y2d_c00473{bottom:202.907067pt;}
.y2c_c00473{bottom:221.307067pt;}
.y2b_c00473{bottom:239.707067pt;}
.y2a_c00473{bottom:258.107067pt;}
.y29_c00473{bottom:276.507067pt;}
.y28_c00473{bottom:294.907067pt;}
.y27_c00473{bottom:313.307067pt;}
.y26_c00473{bottom:331.707067pt;}
.y25_c00473{bottom:350.027067pt;}
.y24_c00473{bottom:368.427067pt;}
.y23_c00473{bottom:386.827067pt;}
.y22_c00473{bottom:405.227067pt;}
.y21_c00473{bottom:423.627067pt;}
.y20_c00473{bottom:442.027067pt;}
.y1f_c00473{bottom:460.427067pt;}
.y1e_c00473{bottom:478.827067pt;}
.y1d_c00473{bottom:497.227067pt;}
.y1c_c00473{bottom:515.627067pt;}
.y1b_c00473{bottom:534.027067pt;}
.y1a_c00473{bottom:552.427067pt;}
.y19_c00473{bottom:570.827067pt;}
.y18_c00473{bottom:589.227067pt;}
.y17_c00473{bottom:607.627067pt;}
.y16_c00473{bottom:626.027067pt;}
.y15_c00473{bottom:644.427067pt;}
.y14_c00473{bottom:662.827067pt;}
.y13_c00473{bottom:681.227067pt;}
.y12_c00473{bottom:699.627067pt;}
.y11_c00473{bottom:718.027067pt;}
.y10_c00473{bottom:736.427067pt;}
.yf_c00473{bottom:754.827067pt;}
.ye_c00473{bottom:773.227067pt;}
.yd_c00473{bottom:791.627067pt;}
.yc_c00473{bottom:810.027067pt;}
.yb_c00473{bottom:828.427067pt;}
.ya_c00473{bottom:846.827067pt;}
.y9_c00473{bottom:865.227067pt;}
.y8_c00473{bottom:883.627067pt;}
.y7_c00473{bottom:902.027067pt;}
.y6_c00473{bottom:920.427067pt;}
.y5_c00473{bottom:938.827067pt;}
.y4_c00473{bottom:957.227067pt;}
.y3_c00473{bottom:975.627067pt;}
.h1_c00473{height:56.156250pt;}
.h2_c00473{height:62.781250pt;}
.h0_c00473{height:1122.666667pt;}
.w1_c00473{width:793.333333pt;}
.w0_c00473{width:793.626667pt;}
.x0_c00473{left:0.000000pt;}
.x2_c00473{left:113.440000pt;}
.x3_c00473{left:161.440000pt;}
.x1_c00473{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4888162d793ec459d6e741a9.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.093262;font-style:normal;font-weight:normal;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_78de655245fdae49bb9ed51a.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00474{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.lsd_c00474{letter-spacing:-0.064800px;}
.lsf_c00474{letter-spacing:-0.057600px;}
.ls13_c00474{letter-spacing:-0.050400px;}
.ls11_c00474{letter-spacing:-0.043200px;}
.ls14_c00474{letter-spacing:-0.036000px;}
.lsc_c00474{letter-spacing:-0.028800px;}
.ls12_c00474{letter-spacing:-0.021600px;}
.ls10_c00474{letter-spacing:-0.014400px;}
.lse_c00474{letter-spacing:-0.007200px;}
.lsb_c00474{letter-spacing:0.000000px;}
.ls0_c00474{letter-spacing:0.007200px;}
.ls5_c00474{letter-spacing:0.014400px;}
.ls1_c00474{letter-spacing:0.021600px;}
.ls4_c00474{letter-spacing:0.028800px;}
.ls2_c00474{letter-spacing:0.036000px;}
.ls8_c00474{letter-spacing:0.043200px;}
.ls7_c00474{letter-spacing:0.050400px;}
.ls6_c00474{letter-spacing:0.064800px;}
.ls3_c00474{letter-spacing:0.072000px;}
.lsa_c00474{letter-spacing:0.086400px;}
.ls9_c00474{letter-spacing:0.100800px;}
.ls15_c00474{letter-spacing:0.360000px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00474{word-spacing:-18.064800px;}
.ws4_c00474{word-spacing:-18.028800px;}
.ws3_c00474{word-spacing:-18.021600px;}
.ws2_c00474{word-spacing:-18.014400px;}
.ws0_c00474{word-spacing:-18.000000px;}
.ws20_c00474{word-spacing:-3.664800px;}
.ws1e_c00474{word-spacing:-3.614400px;}
.ws1f_c00474{word-spacing:-3.592800px;}
.ws4d_c00474{word-spacing:-3.002400px;}
.ws4f_c00474{word-spacing:-2.887200px;}
.ws4e_c00474{word-spacing:-2.858400px;}
.wsb_c00474{word-spacing:-2.188800px;}
.ws9_c00474{word-spacing:-2.001600px;}
.wsa_c00474{word-spacing:-1.951200px;}
.ws2f_c00474{word-spacing:-1.612800px;}
.ws31_c00474{word-spacing:-1.576800px;}
.ws30_c00474{word-spacing:-1.533600px;}
.ws3e_c00474{word-spacing:-1.476000px;}
.ws3d_c00474{word-spacing:-1.461600px;}
.ws3c_c00474{word-spacing:-1.447200px;}
.ws1d_c00474{word-spacing:-0.979200px;}
.ws1c_c00474{word-spacing:-0.741600px;}
.ws17_c00474{word-spacing:-0.432000px;}
.ws47_c00474{word-spacing:-0.266400px;}
.ws3f_c00474{word-spacing:-0.223200px;}
.ws14_c00474{word-spacing:-0.201600px;}
.ws3b_c00474{word-spacing:-0.180000px;}
.ws50_c00474{word-spacing:-0.165600px;}
.ws21_c00474{word-spacing:-0.129600px;}
.ws27_c00474{word-spacing:-0.100800px;}
.ws16_c00474{word-spacing:-0.093600px;}
.ws3a_c00474{word-spacing:-0.050400px;}
.ws40_c00474{word-spacing:-0.043200px;}
.ws51_c00474{word-spacing:-0.036000px;}
.ws13_c00474{word-spacing:-0.021600px;}
.ws26_c00474{word-spacing:-0.014400px;}
.wsc_c00474{word-spacing:-0.007200px;}
.ws5_c00474{word-spacing:0.000000px;}
.ws46_c00474{word-spacing:0.007200px;}
.ws12_c00474{word-spacing:0.021600px;}
.ws32_c00474{word-spacing:0.036000px;}
.ws15_c00474{word-spacing:0.050400px;}
.wsd_c00474{word-spacing:0.064800px;}
.ws44_c00474{word-spacing:0.129600px;}
.ws45_c00474{word-spacing:0.259200px;}
.ws48_c00474{word-spacing:1.418400px;}
.ws49_c00474{word-spacing:1.476000px;}
.ws4b_c00474{word-spacing:3.031200px;}
.ws4c_c00474{word-spacing:3.060000px;}
.ws4a_c00474{word-spacing:3.247200px;}
.ws7_c00474{word-spacing:4.852800px;}
.ws34_c00474{word-spacing:4.881600px;}
.ws8_c00474{word-spacing:4.910400px;}
.ws33_c00474{word-spacing:4.953600px;}
.ws6_c00474{word-spacing:4.975200px;}
.ws35_c00474{word-spacing:5.032800px;}
.ws1a_c00474{word-spacing:5.760000px;}
.ws19_c00474{word-spacing:5.774400px;}
.ws18_c00474{word-spacing:5.788800px;}
.ws1b_c00474{word-spacing:5.817600px;}
.ws37_c00474{word-spacing:6.004800px;}
.ws39_c00474{word-spacing:6.019200px;}
.ws38_c00474{word-spacing:6.148800px;}
.ws23_c00474{word-spacing:6.300000px;}
.ws22_c00474{word-spacing:6.516000px;}
.ws41_c00474{word-spacing:7.581600px;}
.ws42_c00474{word-spacing:7.610400px;}
.wsf_c00474{word-spacing:9.324000px;}
.wse_c00474{word-spacing:9.367200px;}
.ws10_c00474{word-spacing:9.374400px;}
.ws11_c00474{word-spacing:9.403200px;}
.ws28_c00474{word-spacing:14.320800px;}
.ws43_c00474{word-spacing:14.385600px;}
.ws29_c00474{word-spacing:14.407200px;}
.ws2d_c00474{word-spacing:18.201600px;}
.ws2e_c00474{word-spacing:18.295200px;}
.ws2c_c00474{word-spacing:33.753600px;}
.ws2b_c00474{word-spacing:33.818400px;}
.ws2a_c00474{word-spacing:42.501600px;}
.ws24_c00474{word-spacing:61.408800px;}
.ws25_c00474{word-spacing:61.538400px;}
.ws36_c00474{word-spacing:449.287200px;}
._0_c00474{margin-left:-1.044000px;}
._1_c00474{width:41.760000px;}
.fc0_c00474{color:rgb(0,0,0);}
.fs0_c00474{font-size:72.000000px;}
.y0_c00474{bottom:0.000000px;}
.y2_c00474{bottom:46.830450px;}
.y1_c00474{bottom:67.530450px;}
.y31_c00474{bottom:145.470450px;}
.y30_c00474{bottom:166.170450px;}
.y2f_c00474{bottom:186.870450px;}
.y2e_c00474{bottom:207.570450px;}
.y2d_c00474{bottom:228.270450px;}
.y2c_c00474{bottom:248.970450px;}
.y2b_c00474{bottom:269.670450px;}
.y2a_c00474{bottom:290.370450px;}
.y29_c00474{bottom:311.070450px;}
.y28_c00474{bottom:331.770450px;}
.y27_c00474{bottom:352.470450px;}
.y26_c00474{bottom:373.170450px;}
.y25_c00474{bottom:393.780450px;}
.y24_c00474{bottom:414.480450px;}
.y23_c00474{bottom:435.180450px;}
.y22_c00474{bottom:455.880450px;}
.y21_c00474{bottom:476.580450px;}
.y20_c00474{bottom:497.280450px;}
.y1f_c00474{bottom:517.980450px;}
.y1e_c00474{bottom:538.680450px;}
.y1d_c00474{bottom:559.380450px;}
.y1c_c00474{bottom:580.080450px;}
.y1b_c00474{bottom:600.780450px;}
.y1a_c00474{bottom:621.390450px;}
.y19_c00474{bottom:642.180450px;}
.y18_c00474{bottom:662.880450px;}
.y17_c00474{bottom:683.580450px;}
.y16_c00474{bottom:704.280450px;}
.y15_c00474{bottom:724.980450px;}
.y14_c00474{bottom:745.680450px;}
.y13_c00474{bottom:766.380450px;}
.y12_c00474{bottom:787.080450px;}
.y11_c00474{bottom:807.780450px;}
.y10_c00474{bottom:828.480450px;}
.yf_c00474{bottom:849.180450px;}
.ye_c00474{bottom:869.880450px;}
.yd_c00474{bottom:890.580450px;}
.yc_c00474{bottom:911.280450px;}
.yb_c00474{bottom:931.980450px;}
.ya_c00474{bottom:952.680450px;}
.y9_c00474{bottom:973.380450px;}
.y8_c00474{bottom:994.080450px;}
.y7_c00474{bottom:1014.780450px;}
.y6_c00474{bottom:1035.480450px;}
.y5_c00474{bottom:1056.180450px;}
.y4_c00474{bottom:1076.880450px;}
.y3_c00474{bottom:1097.580450px;}
.h1_c00474{height:63.175781px;}
.h2_c00474{height:70.628906px;}
.h0_c00474{height:1263.000000px;}
.w1_c00474{width:892.500000px;}
.w0_c00474{width:892.830000px;}
.x0_c00474{left:0.000000px;}
.x2_c00474{left:170.100000px;}
.x3_c00474{left:224.100000px;}
.x1_c00474{left:738.360000px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.lsd_c00474{letter-spacing:-0.057600pt;}
.lsf_c00474{letter-spacing:-0.051200pt;}
.ls13_c00474{letter-spacing:-0.044800pt;}
.ls11_c00474{letter-spacing:-0.038400pt;}
.ls14_c00474{letter-spacing:-0.032000pt;}
.lsc_c00474{letter-spacing:-0.025600pt;}
.ls12_c00474{letter-spacing:-0.019200pt;}
.ls10_c00474{letter-spacing:-0.012800pt;}
.lse_c00474{letter-spacing:-0.006400pt;}
.lsb_c00474{letter-spacing:0.000000pt;}
.ls0_c00474{letter-spacing:0.006400pt;}
.ls5_c00474{letter-spacing:0.012800pt;}
.ls1_c00474{letter-spacing:0.019200pt;}
.ls4_c00474{letter-spacing:0.025600pt;}
.ls2_c00474{letter-spacing:0.032000pt;}
.ls8_c00474{letter-spacing:0.038400pt;}
.ls7_c00474{letter-spacing:0.044800pt;}
.ls6_c00474{letter-spacing:0.057600pt;}
.ls3_c00474{letter-spacing:0.064000pt;}
.lsa_c00474{letter-spacing:0.076800pt;}
.ls9_c00474{letter-spacing:0.089600pt;}
.ls15_c00474{letter-spacing:0.320000pt;}
.ws1_c00474{word-spacing:-16.057600pt;}
.ws4_c00474{word-spacing:-16.025600pt;}
.ws3_c00474{word-spacing:-16.019200pt;}
.ws2_c00474{word-spacing:-16.012800pt;}
.ws0_c00474{word-spacing:-16.000000pt;}
.ws20_c00474{word-spacing:-3.257600pt;}
.ws1e_c00474{word-spacing:-3.212800pt;}
.ws1f_c00474{word-spacing:-3.193600pt;}
.ws4d_c00474{word-spacing:-2.668800pt;}
.ws4f_c00474{word-spacing:-2.566400pt;}
.ws4e_c00474{word-spacing:-2.540800pt;}
.wsb_c00474{word-spacing:-1.945600pt;}
.ws9_c00474{word-spacing:-1.779200pt;}
.wsa_c00474{word-spacing:-1.734400pt;}
.ws2f_c00474{word-spacing:-1.433600pt;}
.ws31_c00474{word-spacing:-1.401600pt;}
.ws30_c00474{word-spacing:-1.363200pt;}
.ws3e_c00474{word-spacing:-1.312000pt;}
.ws3d_c00474{word-spacing:-1.299200pt;}
.ws3c_c00474{word-spacing:-1.286400pt;}
.ws1d_c00474{word-spacing:-0.870400pt;}
.ws1c_c00474{word-spacing:-0.659200pt;}
.ws17_c00474{word-spacing:-0.384000pt;}
.ws47_c00474{word-spacing:-0.236800pt;}
.ws3f_c00474{word-spacing:-0.198400pt;}
.ws14_c00474{word-spacing:-0.179200pt;}
.ws3b_c00474{word-spacing:-0.160000pt;}
.ws50_c00474{word-spacing:-0.147200pt;}
.ws21_c00474{word-spacing:-0.115200pt;}
.ws27_c00474{word-spacing:-0.089600pt;}
.ws16_c00474{word-spacing:-0.083200pt;}
.ws3a_c00474{word-spacing:-0.044800pt;}
.ws40_c00474{word-spacing:-0.038400pt;}
.ws51_c00474{word-spacing:-0.032000pt;}
.ws13_c00474{word-spacing:-0.019200pt;}
.ws26_c00474{word-spacing:-0.012800pt;}
.wsc_c00474{word-spacing:-0.006400pt;}
.ws5_c00474{word-spacing:0.000000pt;}
.ws46_c00474{word-spacing:0.006400pt;}
.ws12_c00474{word-spacing:0.019200pt;}
.ws32_c00474{word-spacing:0.032000pt;}
.ws15_c00474{word-spacing:0.044800pt;}
.wsd_c00474{word-spacing:0.057600pt;}
.ws44_c00474{word-spacing:0.115200pt;}
.ws45_c00474{word-spacing:0.230400pt;}
.ws48_c00474{word-spacing:1.260800pt;}
.ws49_c00474{word-spacing:1.312000pt;}
.ws4b_c00474{word-spacing:2.694400pt;}
.ws4c_c00474{word-spacing:2.720000pt;}
.ws4a_c00474{word-spacing:2.886400pt;}
.ws7_c00474{word-spacing:4.313600pt;}
.ws34_c00474{word-spacing:4.339200pt;}
.ws8_c00474{word-spacing:4.364800pt;}
.ws33_c00474{word-spacing:4.403200pt;}
.ws6_c00474{word-spacing:4.422400pt;}
.ws35_c00474{word-spacing:4.473600pt;}
.ws1a_c00474{word-spacing:5.120000pt;}
.ws19_c00474{word-spacing:5.132800pt;}
.ws18_c00474{word-spacing:5.145600pt;}
.ws1b_c00474{word-spacing:5.171200pt;}
.ws37_c00474{word-spacing:5.337600pt;}
.ws39_c00474{word-spacing:5.350400pt;}
.ws38_c00474{word-spacing:5.465600pt;}
.ws23_c00474{word-spacing:5.600000pt;}
.ws22_c00474{word-spacing:5.792000pt;}
.ws41_c00474{word-spacing:6.739200pt;}
.ws42_c00474{word-spacing:6.764800pt;}
.wsf_c00474{word-spacing:8.288000pt;}
.wse_c00474{word-spacing:8.326400pt;}
.ws10_c00474{word-spacing:8.332800pt;}
.ws11_c00474{word-spacing:8.358400pt;}
.ws28_c00474{word-spacing:12.729600pt;}
.ws43_c00474{word-spacing:12.787200pt;}
.ws29_c00474{word-spacing:12.806400pt;}
.ws2d_c00474{word-spacing:16.179200pt;}
.ws2e_c00474{word-spacing:16.262400pt;}
.ws2c_c00474{word-spacing:30.003200pt;}
.ws2b_c00474{word-spacing:30.060800pt;}
.ws2a_c00474{word-spacing:37.779200pt;}
.ws24_c00474{word-spacing:54.585600pt;}
.ws25_c00474{word-spacing:54.700800pt;}
.ws36_c00474{word-spacing:399.366400pt;}
._0_c00474{margin-left:-0.928000pt;}
._1_c00474{width:37.120000pt;}
.fs0_c00474{font-size:64.000000pt;}
.y0_c00474{bottom:0.000000pt;}
.y2_c00474{bottom:41.627067pt;}
.y1_c00474{bottom:60.027067pt;}
.y31_c00474{bottom:129.307067pt;}
.y30_c00474{bottom:147.707067pt;}
.y2f_c00474{bottom:166.107067pt;}
.y2e_c00474{bottom:184.507067pt;}
.y2d_c00474{bottom:202.907067pt;}
.y2c_c00474{bottom:221.307067pt;}
.y2b_c00474{bottom:239.707067pt;}
.y2a_c00474{bottom:258.107067pt;}
.y29_c00474{bottom:276.507067pt;}
.y28_c00474{bottom:294.907067pt;}
.y27_c00474{bottom:313.307067pt;}
.y26_c00474{bottom:331.707067pt;}
.y25_c00474{bottom:350.027067pt;}
.y24_c00474{bottom:368.427067pt;}
.y23_c00474{bottom:386.827067pt;}
.y22_c00474{bottom:405.227067pt;}
.y21_c00474{bottom:423.627067pt;}
.y20_c00474{bottom:442.027067pt;}
.y1f_c00474{bottom:460.427067pt;}
.y1e_c00474{bottom:478.827067pt;}
.y1d_c00474{bottom:497.227067pt;}
.y1c_c00474{bottom:515.627067pt;}
.y1b_c00474{bottom:534.027067pt;}
.y1a_c00474{bottom:552.347067pt;}
.y19_c00474{bottom:570.827067pt;}
.y18_c00474{bottom:589.227067pt;}
.y17_c00474{bottom:607.627067pt;}
.y16_c00474{bottom:626.027067pt;}
.y15_c00474{bottom:644.427067pt;}
.y14_c00474{bottom:662.827067pt;}
.y13_c00474{bottom:681.227067pt;}
.y12_c00474{bottom:699.627067pt;}
.y11_c00474{bottom:718.027067pt;}
.y10_c00474{bottom:736.427067pt;}
.yf_c00474{bottom:754.827067pt;}
.ye_c00474{bottom:773.227067pt;}
.yd_c00474{bottom:791.627067pt;}
.yc_c00474{bottom:810.027067pt;}
.yb_c00474{bottom:828.427067pt;}
.ya_c00474{bottom:846.827067pt;}
.y9_c00474{bottom:865.227067pt;}
.y8_c00474{bottom:883.627067pt;}
.y7_c00474{bottom:902.027067pt;}
.y6_c00474{bottom:920.427067pt;}
.y5_c00474{bottom:938.827067pt;}
.y4_c00474{bottom:957.227067pt;}
.y3_c00474{bottom:975.627067pt;}
.h1_c00474{height:56.156250pt;}
.h2_c00474{height:62.781250pt;}
.h0_c00474{height:1122.666667pt;}
.w1_c00474{width:793.333333pt;}
.w0_c00474{width:793.626667pt;}
.x0_c00474{left:0.000000pt;}
.x2_c00474{left:151.200000pt;}
.x3_c00474{left:199.200000pt;}
.x1_c00474{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8c952beebc623dd4b73fd9ef.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.093262;font-style:normal;font-weight:normal;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_f3a4ef71a703b5a0478f00b2.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00475{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.ls12_c00475{letter-spacing:-0.072000px;}
.ls14_c00475{letter-spacing:-0.050400px;}
.lsf_c00475{letter-spacing:-0.043200px;}
.ls13_c00475{letter-spacing:-0.028800px;}
.ls15_c00475{letter-spacing:-0.021600px;}
.lse_c00475{letter-spacing:-0.014400px;}
.ls11_c00475{letter-spacing:-0.007200px;}
.lsd_c00475{letter-spacing:0.000000px;}
.ls5_c00475{letter-spacing:0.007200px;}
.ls2_c00475{letter-spacing:0.014400px;}
.ls4_c00475{letter-spacing:0.021600px;}
.ls0_c00475{letter-spacing:0.028800px;}
.lsa_c00475{letter-spacing:0.036000px;}
.ls8_c00475{letter-spacing:0.043200px;}
.ls7_c00475{letter-spacing:0.057600px;}
.ls6_c00475{letter-spacing:0.064800px;}
.ls9_c00475{letter-spacing:0.072000px;}
.lsc_c00475{letter-spacing:0.079200px;}
.ls1_c00475{letter-spacing:0.086400px;}
.ls3_c00475{letter-spacing:0.093600px;}
.lsb_c00475{letter-spacing:0.108000px;}
.ls10_c00475{letter-spacing:0.144000px;}
.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:-18.057600px;}
.ws0_c00475{word-spacing:-18.028800px;}
.ws2_c00475{word-spacing:-18.021600px;}
.ws3_c00475{word-spacing:-18.000000px;}
.ws2a_c00475{word-spacing:-4.089600px;}
.ws2c_c00475{word-spacing:-3.945600px;}
.ws2b_c00475{word-spacing:-3.909600px;}
.ws3e_c00475{word-spacing:-3.506400px;}
.ws3f_c00475{word-spacing:-3.369600px;}
.ws3d_c00475{word-spacing:-3.297600px;}
.ws3c_c00475{word-spacing:-3.247200px;}
.ws43_c00475{word-spacing:-2.714400px;}
.ws42_c00475{word-spacing:-2.548800px;}
.ws44_c00475{word-spacing:-2.520000px;}
.ws48_c00475{word-spacing:-2.289600px;}
.ws46_c00475{word-spacing:-2.224800px;}
.ws47_c00475{word-spacing:-2.160000px;}
.ws1d_c00475{word-spacing:-1.188000px;}
.ws19_c00475{word-spacing:-1.152000px;}
.ws18_c00475{word-spacing:-1.094400px;}
.ws1e_c00475{word-spacing:-1.087200px;}
.ws10_c00475{word-spacing:-0.360000px;}
.ws4c_c00475{word-spacing:-0.338400px;}
.wsc_c00475{word-spacing:-0.273600px;}
.ws7_c00475{word-spacing:-0.266400px;}
.ws4d_c00475{word-spacing:-0.187200px;}
.ws45_c00475{word-spacing:-0.144000px;}
.ws30_c00475{word-spacing:-0.129600px;}
.ws6_c00475{word-spacing:-0.093600px;}
.ws2f_c00475{word-spacing:-0.072000px;}
.ws23_c00475{word-spacing:-0.064800px;}
.ws4f_c00475{word-spacing:-0.043200px;}
.ws4e_c00475{word-spacing:-0.028800px;}
.ws34_c00475{word-spacing:-0.014400px;}
.ws21_c00475{word-spacing:-0.007200px;}
.ws4_c00475{word-spacing:0.000000px;}
.ws22_c00475{word-spacing:0.007200px;}
.ws31_c00475{word-spacing:0.021600px;}
.ws3a_c00475{word-spacing:0.698400px;}
.ws3b_c00475{word-spacing:0.712800px;}
.ws8_c00475{word-spacing:0.885600px;}
.ws9_c00475{word-spacing:0.914400px;}
.wsb_c00475{word-spacing:0.936000px;}
.wsa_c00475{word-spacing:1.123200px;}
.ws5_c00475{word-spacing:1.411200px;}
.ws24_c00475{word-spacing:3.571200px;}
.ws25_c00475{word-spacing:3.614400px;}
.ws26_c00475{word-spacing:3.628800px;}
.ws27_c00475{word-spacing:3.643200px;}
.wsd_c00475{word-spacing:5.558400px;}
.wse_c00475{word-spacing:5.760000px;}
.wsf_c00475{word-spacing:5.774400px;}
.ws1c_c00475{word-spacing:6.573600px;}
.ws1b_c00475{word-spacing:6.710400px;}
.ws1a_c00475{word-spacing:6.739200px;}
.ws39_c00475{word-spacing:10.044000px;}
.ws37_c00475{word-spacing:10.058400px;}
.ws38_c00475{word-spacing:10.080000px;}
.ws32_c00475{word-spacing:12.124800px;}
.ws33_c00475{word-spacing:12.146400px;}
.ws2d_c00475{word-spacing:15.739200px;}
.ws13_c00475{word-spacing:15.746400px;}
.ws2e_c00475{word-spacing:15.796800px;}
.ws40_c00475{word-spacing:15.840000px;}
.ws41_c00475{word-spacing:15.854400px;}
.ws12_c00475{word-spacing:15.940800px;}
.ws17_c00475{word-spacing:16.200000px;}
.ws16_c00475{word-spacing:16.207200px;}
.ws11_c00475{word-spacing:16.538400px;}
.ws36_c00475{word-spacing:18.684000px;}
.ws35_c00475{word-spacing:18.698400px;}
.ws29_c00475{word-spacing:25.027200px;}
.ws28_c00475{word-spacing:25.120800px;}
.ws4b_c00475{word-spacing:28.015200px;}
.ws4a_c00475{word-spacing:28.065600px;}
.ws49_c00475{word-spacing:28.101600px;}
.ws14_c00475{word-spacing:34.430400px;}
.ws15_c00475{word-spacing:34.444800px;}
.ws1f_c00475{word-spacing:55.339200px;}
.ws20_c00475{word-spacing:55.468800px;}
._0_c00475{margin-left:-1.202400px;}
.fc0_c00475{color:rgb(0,0,0);}
.fs0_c00475{font-size:72.000000px;}
.y0_c00475{bottom:0.000000px;}
.y2_c00475{bottom:46.830450px;}
.y1_c00475{bottom:67.530450px;}
.y30_c00475{bottom:166.170450px;}
.y2f_c00475{bottom:186.870450px;}
.y2e_c00475{bottom:207.570450px;}
.y2d_c00475{bottom:228.270450px;}
.y2c_c00475{bottom:248.970450px;}
.y2b_c00475{bottom:269.670450px;}
.y2a_c00475{bottom:290.370450px;}
.y29_c00475{bottom:311.070450px;}
.y28_c00475{bottom:331.770450px;}
.y27_c00475{bottom:352.470450px;}
.y26_c00475{bottom:373.170450px;}
.y25_c00475{bottom:393.780450px;}
.y24_c00475{bottom:414.480450px;}
.y23_c00475{bottom:435.180450px;}
.y22_c00475{bottom:455.880450px;}
.y21_c00475{bottom:476.580450px;}
.y20_c00475{bottom:497.280450px;}
.y1f_c00475{bottom:517.980450px;}
.y1e_c00475{bottom:538.680450px;}
.y1d_c00475{bottom:559.380450px;}
.y1c_c00475{bottom:580.080450px;}
.y1b_c00475{bottom:600.780450px;}
.y1a_c00475{bottom:621.480450px;}
.y19_c00475{bottom:642.180450px;}
.y18_c00475{bottom:662.880450px;}
.y17_c00475{bottom:683.580450px;}
.y16_c00475{bottom:704.280450px;}
.y15_c00475{bottom:724.980450px;}
.y14_c00475{bottom:745.680450px;}
.y13_c00475{bottom:766.380450px;}
.y12_c00475{bottom:787.080450px;}
.y11_c00475{bottom:807.780450px;}
.y10_c00475{bottom:828.480450px;}
.yf_c00475{bottom:849.180450px;}
.ye_c00475{bottom:869.880450px;}
.yd_c00475{bottom:890.580450px;}
.yc_c00475{bottom:911.280450px;}
.yb_c00475{bottom:931.980450px;}
.ya_c00475{bottom:952.680450px;}
.y9_c00475{bottom:973.380450px;}
.y8_c00475{bottom:994.080450px;}
.y7_c00475{bottom:1014.780450px;}
.y6_c00475{bottom:1035.480450px;}
.y5_c00475{bottom:1056.180450px;}
.y4_c00475{bottom:1076.880450px;}
.y3_c00475{bottom:1097.580450px;}
.h1_c00475{height:63.175781px;}
.h2_c00475{height:70.628906px;}
.h0_c00475{height:1263.000000px;}
.w1_c00475{width:892.500000px;}
.w0_c00475{width:892.830000px;}
.x0_c00475{left:0.000000px;}
.x2_c00475{left:127.620000px;}
.x3_c00475{left:181.620000px;}
.x1_c00475{left:695.880000px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls12_c00475{letter-spacing:-0.064000pt;}
.ls14_c00475{letter-spacing:-0.044800pt;}
.lsf_c00475{letter-spacing:-0.038400pt;}
.ls13_c00475{letter-spacing:-0.025600pt;}
.ls15_c00475{letter-spacing:-0.019200pt;}
.lse_c00475{letter-spacing:-0.012800pt;}
.ls11_c00475{letter-spacing:-0.006400pt;}
.lsd_c00475{letter-spacing:0.000000pt;}
.ls5_c00475{letter-spacing:0.006400pt;}
.ls2_c00475{letter-spacing:0.012800pt;}
.ls4_c00475{letter-spacing:0.019200pt;}
.ls0_c00475{letter-spacing:0.025600pt;}
.lsa_c00475{letter-spacing:0.032000pt;}
.ls8_c00475{letter-spacing:0.038400pt;}
.ls7_c00475{letter-spacing:0.051200pt;}
.ls6_c00475{letter-spacing:0.057600pt;}
.ls9_c00475{letter-spacing:0.064000pt;}
.lsc_c00475{letter-spacing:0.070400pt;}
.ls1_c00475{letter-spacing:0.076800pt;}
.ls3_c00475{letter-spacing:0.083200pt;}
.lsb_c00475{letter-spacing:0.096000pt;}
.ls10_c00475{letter-spacing:0.128000pt;}
.ws1_c00475{word-spacing:-16.051200pt;}
.ws0_c00475{word-spacing:-16.025600pt;}
.ws2_c00475{word-spacing:-16.019200pt;}
.ws3_c00475{word-spacing:-16.000000pt;}
.ws2a_c00475{word-spacing:-3.635200pt;}
.ws2c_c00475{word-spacing:-3.507200pt;}
.ws2b_c00475{word-spacing:-3.475200pt;}
.ws3e_c00475{word-spacing:-3.116800pt;}
.ws3f_c00475{word-spacing:-2.995200pt;}
.ws3d_c00475{word-spacing:-2.931200pt;}
.ws3c_c00475{word-spacing:-2.886400pt;}
.ws43_c00475{word-spacing:-2.412800pt;}
.ws42_c00475{word-spacing:-2.265600pt;}
.ws44_c00475{word-spacing:-2.240000pt;}
.ws48_c00475{word-spacing:-2.035200pt;}
.ws46_c00475{word-spacing:-1.977600pt;}
.ws47_c00475{word-spacing:-1.920000pt;}
.ws1d_c00475{word-spacing:-1.056000pt;}
.ws19_c00475{word-spacing:-1.024000pt;}
.ws18_c00475{word-spacing:-0.972800pt;}
.ws1e_c00475{word-spacing:-0.966400pt;}
.ws10_c00475{word-spacing:-0.320000pt;}
.ws4c_c00475{word-spacing:-0.300800pt;}
.wsc_c00475{word-spacing:-0.243200pt;}
.ws7_c00475{word-spacing:-0.236800pt;}
.ws4d_c00475{word-spacing:-0.166400pt;}
.ws45_c00475{word-spacing:-0.128000pt;}
.ws30_c00475{word-spacing:-0.115200pt;}
.ws6_c00475{word-spacing:-0.083200pt;}
.ws2f_c00475{word-spacing:-0.064000pt;}
.ws23_c00475{word-spacing:-0.057600pt;}
.ws4f_c00475{word-spacing:-0.038400pt;}
.ws4e_c00475{word-spacing:-0.025600pt;}
.ws34_c00475{word-spacing:-0.012800pt;}
.ws21_c00475{word-spacing:-0.006400pt;}
.ws4_c00475{word-spacing:0.000000pt;}
.ws22_c00475{word-spacing:0.006400pt;}
.ws31_c00475{word-spacing:0.019200pt;}
.ws3a_c00475{word-spacing:0.620800pt;}
.ws3b_c00475{word-spacing:0.633600pt;}
.ws8_c00475{word-spacing:0.787200pt;}
.ws9_c00475{word-spacing:0.812800pt;}
.wsb_c00475{word-spacing:0.832000pt;}
.wsa_c00475{word-spacing:0.998400pt;}
.ws5_c00475{word-spacing:1.254400pt;}
.ws24_c00475{word-spacing:3.174400pt;}
.ws25_c00475{word-spacing:3.212800pt;}
.ws26_c00475{word-spacing:3.225600pt;}
.ws27_c00475{word-spacing:3.238400pt;}
.wsd_c00475{word-spacing:4.940800pt;}
.wse_c00475{word-spacing:5.120000pt;}
.wsf_c00475{word-spacing:5.132800pt;}
.ws1c_c00475{word-spacing:5.843200pt;}
.ws1b_c00475{word-spacing:5.964800pt;}
.ws1a_c00475{word-spacing:5.990400pt;}
.ws39_c00475{word-spacing:8.928000pt;}
.ws37_c00475{word-spacing:8.940800pt;}
.ws38_c00475{word-spacing:8.960000pt;}
.ws32_c00475{word-spacing:10.777600pt;}
.ws33_c00475{word-spacing:10.796800pt;}
.ws2d_c00475{word-spacing:13.990400pt;}
.ws13_c00475{word-spacing:13.996800pt;}
.ws2e_c00475{word-spacing:14.041600pt;}
.ws40_c00475{word-spacing:14.080000pt;}
.ws41_c00475{word-spacing:14.092800pt;}
.ws12_c00475{word-spacing:14.169600pt;}
.ws17_c00475{word-spacing:14.400000pt;}
.ws16_c00475{word-spacing:14.406400pt;}
.ws11_c00475{word-spacing:14.700800pt;}
.ws36_c00475{word-spacing:16.608000pt;}
.ws35_c00475{word-spacing:16.620800pt;}
.ws29_c00475{word-spacing:22.246400pt;}
.ws28_c00475{word-spacing:22.329600pt;}
.ws4b_c00475{word-spacing:24.902400pt;}
.ws4a_c00475{word-spacing:24.947200pt;}
.ws49_c00475{word-spacing:24.979200pt;}
.ws14_c00475{word-spacing:30.604800pt;}
.ws15_c00475{word-spacing:30.617600pt;}
.ws1f_c00475{word-spacing:49.190400pt;}
.ws20_c00475{word-spacing:49.305600pt;}
._0_c00475{margin-left:-1.068800pt;}
.fs0_c00475{font-size:64.000000pt;}
.y0_c00475{bottom:0.000000pt;}
.y2_c00475{bottom:41.627067pt;}
.y1_c00475{bottom:60.027067pt;}
.y30_c00475{bottom:147.707067pt;}
.y2f_c00475{bottom:166.107067pt;}
.y2e_c00475{bottom:184.507067pt;}
.y2d_c00475{bottom:202.907067pt;}
.y2c_c00475{bottom:221.307067pt;}
.y2b_c00475{bottom:239.707067pt;}
.y2a_c00475{bottom:258.107067pt;}
.y29_c00475{bottom:276.507067pt;}
.y28_c00475{bottom:294.907067pt;}
.y27_c00475{bottom:313.307067pt;}
.y26_c00475{bottom:331.707067pt;}
.y25_c00475{bottom:350.027067pt;}
.y24_c00475{bottom:368.427067pt;}
.y23_c00475{bottom:386.827067pt;}
.y22_c00475{bottom:405.227067pt;}
.y21_c00475{bottom:423.627067pt;}
.y20_c00475{bottom:442.027067pt;}
.y1f_c00475{bottom:460.427067pt;}
.y1e_c00475{bottom:478.827067pt;}
.y1d_c00475{bottom:497.227067pt;}
.y1c_c00475{bottom:515.627067pt;}
.y1b_c00475{bottom:534.027067pt;}
.y1a_c00475{bottom:552.427067pt;}
.y19_c00475{bottom:570.827067pt;}
.y18_c00475{bottom:589.227067pt;}
.y17_c00475{bottom:607.627067pt;}
.y16_c00475{bottom:626.027067pt;}
.y15_c00475{bottom:644.427067pt;}
.y14_c00475{bottom:662.827067pt;}
.y13_c00475{bottom:681.227067pt;}
.y12_c00475{bottom:699.627067pt;}
.y11_c00475{bottom:718.027067pt;}
.y10_c00475{bottom:736.427067pt;}
.yf_c00475{bottom:754.827067pt;}
.ye_c00475{bottom:773.227067pt;}
.yd_c00475{bottom:791.627067pt;}
.yc_c00475{bottom:810.027067pt;}
.yb_c00475{bottom:828.427067pt;}
.ya_c00475{bottom:846.827067pt;}
.y9_c00475{bottom:865.227067pt;}
.y8_c00475{bottom:883.627067pt;}
.y7_c00475{bottom:902.027067pt;}
.y6_c00475{bottom:920.427067pt;}
.y5_c00475{bottom:938.827067pt;}
.y4_c00475{bottom:957.227067pt;}
.y3_c00475{bottom:975.627067pt;}
.h1_c00475{height:56.156250pt;}
.h2_c00475{height:62.781250pt;}
.h0_c00475{height:1122.666667pt;}
.w1_c00475{width:793.333333pt;}
.w0_c00475{width:793.626667pt;}
.x0_c00475{left:0.000000pt;}
.x2_c00475{left:113.440000pt;}
.x3_c00475{left:161.440000pt;}
.x1_c00475{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f5f1cf2456845560cd355f73.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.093262;font-style:normal;font-weight:normal;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_201962a8410bd53cdd857a45.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00476{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls10_c00476{letter-spacing:-0.302400px;}
.lsd_c00476{letter-spacing:-0.086400px;}
.ls14_c00476{letter-spacing:-0.043200px;}
.ls12_c00476{letter-spacing:-0.028800px;}
.lse_c00476{letter-spacing:-0.021600px;}
.ls11_c00476{letter-spacing:-0.014400px;}
.lsf_c00476{letter-spacing:-0.007200px;}
.lsc_c00476{letter-spacing:0.000000px;}
.ls4_c00476{letter-spacing:0.007200px;}
.ls5_c00476{letter-spacing:0.014400px;}
.ls9_c00476{letter-spacing:0.021600px;}
.ls3_c00476{letter-spacing:0.028800px;}
.ls2_c00476{letter-spacing:0.036000px;}
.ls1_c00476{letter-spacing:0.043200px;}
.ls0_c00476{letter-spacing:0.050400px;}
.lsa_c00476{letter-spacing:0.057600px;}
.ls6_c00476{letter-spacing:0.064800px;}
.ls7_c00476{letter-spacing:0.072000px;}
.lsb_c00476{letter-spacing:0.079200px;}
.ls8_c00476{letter-spacing:0.108000px;}
.ls13_c00476{letter-spacing:0.360000px;}
.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:-18.043200px;}
.ws3_c00476{word-spacing:-18.036000px;}
.ws2_c00476{word-spacing:-18.028800px;}
.ws1_c00476{word-spacing:-18.007200px;}
.ws15_c00476{word-spacing:-2.678400px;}
.ws14_c00476{word-spacing:-2.584800px;}
.ws2b_c00476{word-spacing:-2.210400px;}
.ws2a_c00476{word-spacing:-1.843200px;}
.ws29_c00476{word-spacing:-1.814400px;}
.ws5_c00476{word-spacing:-0.770400px;}
.ws7_c00476{word-spacing:-0.396000px;}
.wsa_c00476{word-spacing:-0.338400px;}
.ws6_c00476{word-spacing:-0.273600px;}
.ws28_c00476{word-spacing:-0.252000px;}
.ws35_c00476{word-spacing:-0.144000px;}
.ws1e_c00476{word-spacing:-0.108000px;}
.ws1d_c00476{word-spacing:-0.064800px;}
.ws23_c00476{word-spacing:-0.014400px;}
.wsd_c00476{word-spacing:-0.007200px;}
.ws4_c00476{word-spacing:0.000000px;}
.ws13_c00476{word-spacing:0.007200px;}
.ws19_c00476{word-spacing:0.014400px;}
.ws24_c00476{word-spacing:0.028800px;}
.ws38_c00476{word-spacing:0.043200px;}
.ws2e_c00476{word-spacing:1.310400px;}
.ws2f_c00476{word-spacing:1.468800px;}
.ws3a_c00476{word-spacing:1.713600px;}
.ws3b_c00476{word-spacing:1.778400px;}
.ws39_c00476{word-spacing:1.900800px;}
.ws43_c00476{word-spacing:2.469600px;}
.ws44_c00476{word-spacing:2.534400px;}
.ws21_c00476{word-spacing:2.721600px;}
.ws33_c00476{word-spacing:2.750400px;}
.ws22_c00476{word-spacing:2.844000px;}
.ws34_c00476{word-spacing:2.880000px;}
.ws40_c00476{word-spacing:3.420000px;}
.ws41_c00476{word-spacing:3.520800px;}
.ws42_c00476{word-spacing:3.600000px;}
.ws10_c00476{word-spacing:4.104000px;}
.wsf_c00476{word-spacing:4.125600px;}
.ws12_c00476{word-spacing:4.305600px;}
.ws11_c00476{word-spacing:4.320000px;}
.ws20_c00476{word-spacing:4.852800px;}
.ws1f_c00476{word-spacing:4.989600px;}
.ws3e_c00476{word-spacing:5.911200px;}
.ws3f_c00476{word-spacing:6.084000px;}
.ws46_c00476{word-spacing:6.127200px;}
.ws47_c00476{word-spacing:7.516800px;}
.ws48_c00476{word-spacing:7.545600px;}
.ws3c_c00476{word-spacing:8.208000px;}
.ws3d_c00476{word-spacing:8.265600px;}
.wse_c00476{word-spacing:9.331200px;}
.ws26_c00476{word-spacing:12.031200px;}
.ws27_c00476{word-spacing:12.088800px;}
.ws2d_c00476{word-spacing:12.146400px;}
.ws25_c00476{word-spacing:12.225600px;}
.ws2c_c00476{word-spacing:12.276000px;}
.wsc_c00476{word-spacing:12.528000px;}
.wsb_c00476{word-spacing:12.600000px;}
.ws8_c00476{word-spacing:13.183200px;}
.ws9_c00476{word-spacing:13.284000px;}
.ws36_c00476{word-spacing:22.312800px;}
.ws45_c00476{word-spacing:22.341600px;}
.ws37_c00476{word-spacing:22.348800px;}
.ws18_c00476{word-spacing:22.953600px;}
.ws16_c00476{word-spacing:23.011200px;}
.ws17_c00476{word-spacing:23.032800px;}
.ws1a_c00476{word-spacing:26.287200px;}
.ws1b_c00476{word-spacing:26.294400px;}
.ws1c_c00476{word-spacing:26.308800px;}
.ws31_c00476{word-spacing:53.877600px;}
.ws32_c00476{word-spacing:53.964000px;}
.ws30_c00476{word-spacing:54.007200px;}
._0_c00476{margin-left:-1.310400px;}
._1_c00476{width:1.152000px;}
._2_c00476{width:5.652000px;}
.fc0_c00476{color:rgb(0,0,0);}
.fs0_c00476{font-size:72.000000px;}
.y0_c00476{bottom:0.000000px;}
.y2_c00476{bottom:46.830450px;}
.y1_c00476{bottom:67.530450px;}
.y31_c00476{bottom:145.470600px;}
.y30_c00476{bottom:166.170450px;}
.y2f_c00476{bottom:186.870450px;}
.y2e_c00476{bottom:207.570450px;}
.y2d_c00476{bottom:228.270450px;}
.y2c_c00476{bottom:248.970450px;}
.y2b_c00476{bottom:269.670450px;}
.y2a_c00476{bottom:290.370450px;}
.y29_c00476{bottom:311.070450px;}
.y28_c00476{bottom:331.770450px;}
.y27_c00476{bottom:352.470450px;}
.y26_c00476{bottom:373.170450px;}
.y25_c00476{bottom:393.780450px;}
.y24_c00476{bottom:414.480450px;}
.y23_c00476{bottom:435.180450px;}
.y22_c00476{bottom:455.880450px;}
.y21_c00476{bottom:476.580450px;}
.y20_c00476{bottom:497.280450px;}
.y1f_c00476{bottom:517.980450px;}
.y1e_c00476{bottom:538.680450px;}
.y1d_c00476{bottom:559.380450px;}
.y1c_c00476{bottom:580.080450px;}
.y1b_c00476{bottom:600.780450px;}
.y1a_c00476{bottom:621.480450px;}
.y19_c00476{bottom:642.180450px;}
.y18_c00476{bottom:662.880450px;}
.y17_c00476{bottom:683.580450px;}
.y16_c00476{bottom:704.280450px;}
.y15_c00476{bottom:724.980450px;}
.y14_c00476{bottom:745.590450px;}
.y13_c00476{bottom:766.380450px;}
.y12_c00476{bottom:787.080450px;}
.y11_c00476{bottom:807.780450px;}
.y10_c00476{bottom:828.480450px;}
.yf_c00476{bottom:849.180450px;}
.ye_c00476{bottom:869.880450px;}
.yd_c00476{bottom:890.580450px;}
.yc_c00476{bottom:911.280450px;}
.yb_c00476{bottom:931.980450px;}
.ya_c00476{bottom:952.680450px;}
.y9_c00476{bottom:973.380450px;}
.y8_c00476{bottom:994.080450px;}
.y7_c00476{bottom:1014.780450px;}
.y6_c00476{bottom:1035.480450px;}
.y5_c00476{bottom:1056.180450px;}
.y4_c00476{bottom:1076.880450px;}
.y3_c00476{bottom:1097.580450px;}
.h1_c00476{height:63.175781px;}
.h2_c00476{height:70.628906px;}
.h3_c00476{height:70.629506px;}
.h0_c00476{height:1263.000000px;}
.w1_c00476{width:892.500000px;}
.w0_c00476{width:892.830000px;}
.x0_c00476{left:0.000000px;}
.x2_c00476{left:170.100000px;}
.x3_c00476{left:224.100000px;}
.x1_c00476{left:738.360000px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls10_c00476{letter-spacing:-0.268800pt;}
.lsd_c00476{letter-spacing:-0.076800pt;}
.ls14_c00476{letter-spacing:-0.038400pt;}
.ls12_c00476{letter-spacing:-0.025600pt;}
.lse_c00476{letter-spacing:-0.019200pt;}
.ls11_c00476{letter-spacing:-0.012800pt;}
.lsf_c00476{letter-spacing:-0.006400pt;}
.lsc_c00476{letter-spacing:0.000000pt;}
.ls4_c00476{letter-spacing:0.006400pt;}
.ls5_c00476{letter-spacing:0.012800pt;}
.ls9_c00476{letter-spacing:0.019200pt;}
.ls3_c00476{letter-spacing:0.025600pt;}
.ls2_c00476{letter-spacing:0.032000pt;}
.ls1_c00476{letter-spacing:0.038400pt;}
.ls0_c00476{letter-spacing:0.044800pt;}
.lsa_c00476{letter-spacing:0.051200pt;}
.ls6_c00476{letter-spacing:0.057600pt;}
.ls7_c00476{letter-spacing:0.064000pt;}
.lsb_c00476{letter-spacing:0.070400pt;}
.ls8_c00476{letter-spacing:0.096000pt;}
.ls13_c00476{letter-spacing:0.320000pt;}
.ws0_c00476{word-spacing:-16.038400pt;}
.ws3_c00476{word-spacing:-16.032000pt;}
.ws2_c00476{word-spacing:-16.025600pt;}
.ws1_c00476{word-spacing:-16.006400pt;}
.ws15_c00476{word-spacing:-2.380800pt;}
.ws14_c00476{word-spacing:-2.297600pt;}
.ws2b_c00476{word-spacing:-1.964800pt;}
.ws2a_c00476{word-spacing:-1.638400pt;}
.ws29_c00476{word-spacing:-1.612800pt;}
.ws5_c00476{word-spacing:-0.684800pt;}
.ws7_c00476{word-spacing:-0.352000pt;}
.wsa_c00476{word-spacing:-0.300800pt;}
.ws6_c00476{word-spacing:-0.243200pt;}
.ws28_c00476{word-spacing:-0.224000pt;}
.ws35_c00476{word-spacing:-0.128000pt;}
.ws1e_c00476{word-spacing:-0.096000pt;}
.ws1d_c00476{word-spacing:-0.057600pt;}
.ws23_c00476{word-spacing:-0.012800pt;}
.wsd_c00476{word-spacing:-0.006400pt;}
.ws4_c00476{word-spacing:0.000000pt;}
.ws13_c00476{word-spacing:0.006400pt;}
.ws19_c00476{word-spacing:0.012800pt;}
.ws24_c00476{word-spacing:0.025600pt;}
.ws38_c00476{word-spacing:0.038400pt;}
.ws2e_c00476{word-spacing:1.164800pt;}
.ws2f_c00476{word-spacing:1.305600pt;}
.ws3a_c00476{word-spacing:1.523200pt;}
.ws3b_c00476{word-spacing:1.580800pt;}
.ws39_c00476{word-spacing:1.689600pt;}
.ws43_c00476{word-spacing:2.195200pt;}
.ws44_c00476{word-spacing:2.252800pt;}
.ws21_c00476{word-spacing:2.419200pt;}
.ws33_c00476{word-spacing:2.444800pt;}
.ws22_c00476{word-spacing:2.528000pt;}
.ws34_c00476{word-spacing:2.560000pt;}
.ws40_c00476{word-spacing:3.040000pt;}
.ws41_c00476{word-spacing:3.129600pt;}
.ws42_c00476{word-spacing:3.200000pt;}
.ws10_c00476{word-spacing:3.648000pt;}
.wsf_c00476{word-spacing:3.667200pt;}
.ws12_c00476{word-spacing:3.827200pt;}
.ws11_c00476{word-spacing:3.840000pt;}
.ws20_c00476{word-spacing:4.313600pt;}
.ws1f_c00476{word-spacing:4.435200pt;}
.ws3e_c00476{word-spacing:5.254400pt;}
.ws3f_c00476{word-spacing:5.408000pt;}
.ws46_c00476{word-spacing:5.446400pt;}
.ws47_c00476{word-spacing:6.681600pt;}
.ws48_c00476{word-spacing:6.707200pt;}
.ws3c_c00476{word-spacing:7.296000pt;}
.ws3d_c00476{word-spacing:7.347200pt;}
.wse_c00476{word-spacing:8.294400pt;}
.ws26_c00476{word-spacing:10.694400pt;}
.ws27_c00476{word-spacing:10.745600pt;}
.ws2d_c00476{word-spacing:10.796800pt;}
.ws25_c00476{word-spacing:10.867200pt;}
.ws2c_c00476{word-spacing:10.912000pt;}
.wsc_c00476{word-spacing:11.136000pt;}
.wsb_c00476{word-spacing:11.200000pt;}
.ws8_c00476{word-spacing:11.718400pt;}
.ws9_c00476{word-spacing:11.808000pt;}
.ws36_c00476{word-spacing:19.833600pt;}
.ws45_c00476{word-spacing:19.859200pt;}
.ws37_c00476{word-spacing:19.865600pt;}
.ws18_c00476{word-spacing:20.403200pt;}
.ws16_c00476{word-spacing:20.454400pt;}
.ws17_c00476{word-spacing:20.473600pt;}
.ws1a_c00476{word-spacing:23.366400pt;}
.ws1b_c00476{word-spacing:23.372800pt;}
.ws1c_c00476{word-spacing:23.385600pt;}
.ws31_c00476{word-spacing:47.891200pt;}
.ws32_c00476{word-spacing:47.968000pt;}
.ws30_c00476{word-spacing:48.006400pt;}
._0_c00476{margin-left:-1.164800pt;}
._1_c00476{width:1.024000pt;}
._2_c00476{width:5.024000pt;}
.fs0_c00476{font-size:64.000000pt;}
.y0_c00476{bottom:0.000000pt;}
.y2_c00476{bottom:41.627067pt;}
.y1_c00476{bottom:60.027067pt;}
.y31_c00476{bottom:129.307200pt;}
.y30_c00476{bottom:147.707067pt;}
.y2f_c00476{bottom:166.107067pt;}
.y2e_c00476{bottom:184.507067pt;}
.y2d_c00476{bottom:202.907067pt;}
.y2c_c00476{bottom:221.307067pt;}
.y2b_c00476{bottom:239.707067pt;}
.y2a_c00476{bottom:258.107067pt;}
.y29_c00476{bottom:276.507067pt;}
.y28_c00476{bottom:294.907067pt;}
.y27_c00476{bottom:313.307067pt;}
.y26_c00476{bottom:331.707067pt;}
.y25_c00476{bottom:350.027067pt;}
.y24_c00476{bottom:368.427067pt;}
.y23_c00476{bottom:386.827067pt;}
.y22_c00476{bottom:405.227067pt;}
.y21_c00476{bottom:423.627067pt;}
.y20_c00476{bottom:442.027067pt;}
.y1f_c00476{bottom:460.427067pt;}
.y1e_c00476{bottom:478.827067pt;}
.y1d_c00476{bottom:497.227067pt;}
.y1c_c00476{bottom:515.627067pt;}
.y1b_c00476{bottom:534.027067pt;}
.y1a_c00476{bottom:552.427067pt;}
.y19_c00476{bottom:570.827067pt;}
.y18_c00476{bottom:589.227067pt;}
.y17_c00476{bottom:607.627067pt;}
.y16_c00476{bottom:626.027067pt;}
.y15_c00476{bottom:644.427067pt;}
.y14_c00476{bottom:662.747067pt;}
.y13_c00476{bottom:681.227067pt;}
.y12_c00476{bottom:699.627067pt;}
.y11_c00476{bottom:718.027067pt;}
.y10_c00476{bottom:736.427067pt;}
.yf_c00476{bottom:754.827067pt;}
.ye_c00476{bottom:773.227067pt;}
.yd_c00476{bottom:791.627067pt;}
.yc_c00476{bottom:810.027067pt;}
.yb_c00476{bottom:828.427067pt;}
.ya_c00476{bottom:846.827067pt;}
.y9_c00476{bottom:865.227067pt;}
.y8_c00476{bottom:883.627067pt;}
.y7_c00476{bottom:902.027067pt;}
.y6_c00476{bottom:920.427067pt;}
.y5_c00476{bottom:938.827067pt;}
.y4_c00476{bottom:957.227067pt;}
.y3_c00476{bottom:975.627067pt;}
.h1_c00476{height:56.156250pt;}
.h2_c00476{height:62.781250pt;}
.h3_c00476{height:62.781783pt;}
.h0_c00476{height:1122.666667pt;}
.w1_c00476{width:793.333333pt;}
.w0_c00476{width:793.626667pt;}
.x0_c00476{left:0.000000pt;}
.x2_c00476{left:151.200000pt;}
.x3_c00476{left:199.200000pt;}
.x1_c00476{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cc481b9281f0db041cd703a7.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.093262;font-style:normal;font-weight:normal;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_e3b8bf3d47006a86bc456374.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00477{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls13_c00477{letter-spacing:-0.172800px;}
.ls10_c00477{letter-spacing:-0.057600px;}
.ls12_c00477{letter-spacing:-0.036000px;}
.lsf_c00477{letter-spacing:-0.028800px;}
.ls14_c00477{letter-spacing:-0.021600px;}
.lse_c00477{letter-spacing:-0.014400px;}
.ls11_c00477{letter-spacing:-0.007200px;}
.lsd_c00477{letter-spacing:0.000000px;}
.ls8_c00477{letter-spacing:0.007200px;}
.ls1_c00477{letter-spacing:0.014400px;}
.ls2_c00477{letter-spacing:0.021600px;}
.ls9_c00477{letter-spacing:0.028800px;}
.ls0_c00477{letter-spacing:0.036000px;}
.ls6_c00477{letter-spacing:0.043200px;}
.ls4_c00477{letter-spacing:0.050400px;}
.ls7_c00477{letter-spacing:0.057600px;}
.ls5_c00477{letter-spacing:0.064800px;}
.ls3_c00477{letter-spacing:0.072000px;}
.lsb_c00477{letter-spacing:0.086400px;}
.lsa_c00477{letter-spacing:0.093600px;}
.lsc_c00477{letter-spacing:0.144000px;}
.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;}
}
.ws2_c00477{word-spacing:-18.050400px;}
.ws1_c00477{word-spacing:-18.014400px;}
.ws0_c00477{word-spacing:-18.000000px;}
.ws2c_c00477{word-spacing:-1.843200px;}
.ws2b_c00477{word-spacing:-1.447200px;}
.ws2a_c00477{word-spacing:-1.288800px;}
.ws34_c00477{word-spacing:-1.238400px;}
.ws38_c00477{word-spacing:-1.216800px;}
.ws35_c00477{word-spacing:-1.173600px;}
.ws39_c00477{word-spacing:-1.072800px;}
.ws1a_c00477{word-spacing:-0.374400px;}
.ws26_c00477{word-spacing:-0.180000px;}
.ws10_c00477{word-spacing:-0.151200px;}
.ws7_c00477{word-spacing:-0.129600px;}
.ws3f_c00477{word-spacing:-0.100800px;}
.ws30_c00477{word-spacing:-0.093600px;}
.ws32_c00477{word-spacing:-0.079200px;}
.ws41_c00477{word-spacing:-0.072000px;}
.ws40_c00477{word-spacing:-0.057600px;}
.ws13_c00477{word-spacing:-0.043200px;}
.ws29_c00477{word-spacing:-0.036000px;}
.ws28_c00477{word-spacing:-0.028800px;}
.ws21_c00477{word-spacing:-0.021600px;}
.wsf_c00477{word-spacing:-0.014400px;}
.ws27_c00477{word-spacing:-0.007200px;}
.ws3_c00477{word-spacing:0.000000px;}
.ws22_c00477{word-spacing:0.007200px;}
.ws8_c00477{word-spacing:0.028800px;}
.ws33_c00477{word-spacing:0.036000px;}
.ws31_c00477{word-spacing:0.151200px;}
.ws48_c00477{word-spacing:1.396800px;}
.ws36_c00477{word-spacing:1.404000px;}
.ws49_c00477{word-spacing:1.432800px;}
.ws37_c00477{word-spacing:1.612800px;}
.ws5_c00477{word-spacing:3.463200px;}
.ws4_c00477{word-spacing:3.470400px;}
.ws6_c00477{word-spacing:3.614400px;}
.ws47_c00477{word-spacing:5.558400px;}
.ws45_c00477{word-spacing:5.565600px;}
.ws44_c00477{word-spacing:5.608800px;}
.ws2e_c00477{word-spacing:5.709600px;}
.ws2f_c00477{word-spacing:5.745600px;}
.ws46_c00477{word-spacing:5.781600px;}
.ws2d_c00477{word-spacing:5.911200px;}
.ws4d_c00477{word-spacing:7.740000px;}
.ws4c_c00477{word-spacing:7.855200px;}
.ws3d_c00477{word-spacing:8.985600px;}
.ws3e_c00477{word-spacing:9.000000px;}
.ws4b_c00477{word-spacing:13.111200px;}
.ws4a_c00477{word-spacing:13.255200px;}
.ws14_c00477{word-spacing:13.838400px;}
.ws42_c00477{word-spacing:13.968000px;}
.ws43_c00477{word-spacing:14.011200px;}
.ws15_c00477{word-spacing:14.018400px;}
.ws16_c00477{word-spacing:14.068800px;}
.ws1b_c00477{word-spacing:15.084000px;}
.ws1c_c00477{word-spacing:15.170400px;}
.ws20_c00477{word-spacing:15.314400px;}
.ws1f_c00477{word-spacing:15.386400px;}
.ws24_c00477{word-spacing:15.782400px;}
.ws23_c00477{word-spacing:15.796800px;}
.ws25_c00477{word-spacing:15.847200px;}
.ws3c_c00477{word-spacing:16.171200px;}
.ws12_c00477{word-spacing:21.535200px;}
.ws11_c00477{word-spacing:21.585600px;}
.wsa_c00477{word-spacing:24.696000px;}
.wsb_c00477{word-spacing:24.717600px;}
.ws1d_c00477{word-spacing:24.818400px;}
.ws1e_c00477{word-spacing:24.832800px;}
.ws17_c00477{word-spacing:27.014400px;}
.ws18_c00477{word-spacing:27.028800px;}
.ws19_c00477{word-spacing:27.136800px;}
.wsd_c00477{word-spacing:30.513600px;}
.wse_c00477{word-spacing:30.592800px;}
.wsc_c00477{word-spacing:30.614400px;}
.ws9_c00477{word-spacing:34.178400px;}
.ws3a_c00477{word-spacing:47.037600px;}
.ws3b_c00477{word-spacing:47.160000px;}
._0_c00477{margin-left:-1.008000px;}
._2_c00477{width:7.725600px;}
._1_c00477{width:15.012000px;}
.fc0_c00477{color:rgb(0,0,0);}
.fs0_c00477{font-size:72.000000px;}
.y0_c00477{bottom:0.000000px;}
.y2_c00477{bottom:46.830450px;}
.y1_c00477{bottom:67.530450px;}
.y31_c00477{bottom:145.470450px;}
.y30_c00477{bottom:166.170450px;}
.y2f_c00477{bottom:186.870450px;}
.y2e_c00477{bottom:207.570450px;}
.y2d_c00477{bottom:228.270450px;}
.y2c_c00477{bottom:248.970450px;}
.y2b_c00477{bottom:269.670450px;}
.y2a_c00477{bottom:290.370450px;}
.y29_c00477{bottom:311.070450px;}
.y28_c00477{bottom:331.770450px;}
.y27_c00477{bottom:352.470450px;}
.y26_c00477{bottom:373.170450px;}
.y25_c00477{bottom:393.780450px;}
.y24_c00477{bottom:414.480450px;}
.y23_c00477{bottom:435.180450px;}
.y22_c00477{bottom:455.880450px;}
.y21_c00477{bottom:476.580450px;}
.y20_c00477{bottom:497.280450px;}
.y1f_c00477{bottom:517.980450px;}
.y1e_c00477{bottom:538.680450px;}
.y1d_c00477{bottom:559.380450px;}
.y1c_c00477{bottom:580.080450px;}
.y1b_c00477{bottom:600.780450px;}
.y1a_c00477{bottom:621.480450px;}
.y19_c00477{bottom:642.180450px;}
.y18_c00477{bottom:662.880450px;}
.y17_c00477{bottom:683.580450px;}
.y16_c00477{bottom:704.280450px;}
.y15_c00477{bottom:724.980450px;}
.y14_c00477{bottom:745.680450px;}
.y13_c00477{bottom:766.380450px;}
.y12_c00477{bottom:787.080450px;}
.y11_c00477{bottom:807.780450px;}
.y10_c00477{bottom:828.480450px;}
.yf_c00477{bottom:849.180450px;}
.ye_c00477{bottom:869.880450px;}
.yd_c00477{bottom:890.580450px;}
.yc_c00477{bottom:911.280450px;}
.yb_c00477{bottom:931.980450px;}
.ya_c00477{bottom:952.680450px;}
.y9_c00477{bottom:973.380450px;}
.y8_c00477{bottom:994.080450px;}
.y7_c00477{bottom:1014.780450px;}
.y6_c00477{bottom:1035.480450px;}
.y5_c00477{bottom:1056.180450px;}
.y4_c00477{bottom:1076.880450px;}
.y3_c00477{bottom:1097.580450px;}
.h1_c00477{height:63.175781px;}
.h2_c00477{height:70.628906px;}
.h0_c00477{height:1263.000000px;}
.w1_c00477{width:892.500000px;}
.w0_c00477{width:892.830000px;}
.x0_c00477{left:0.000000px;}
.x2_c00477{left:127.620000px;}
.x3_c00477{left:181.620000px;}
.x1_c00477{left:695.880000px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls13_c00477{letter-spacing:-0.153600pt;}
.ls10_c00477{letter-spacing:-0.051200pt;}
.ls12_c00477{letter-spacing:-0.032000pt;}
.lsf_c00477{letter-spacing:-0.025600pt;}
.ls14_c00477{letter-spacing:-0.019200pt;}
.lse_c00477{letter-spacing:-0.012800pt;}
.ls11_c00477{letter-spacing:-0.006400pt;}
.lsd_c00477{letter-spacing:0.000000pt;}
.ls8_c00477{letter-spacing:0.006400pt;}
.ls1_c00477{letter-spacing:0.012800pt;}
.ls2_c00477{letter-spacing:0.019200pt;}
.ls9_c00477{letter-spacing:0.025600pt;}
.ls0_c00477{letter-spacing:0.032000pt;}
.ls6_c00477{letter-spacing:0.038400pt;}
.ls4_c00477{letter-spacing:0.044800pt;}
.ls7_c00477{letter-spacing:0.051200pt;}
.ls5_c00477{letter-spacing:0.057600pt;}
.ls3_c00477{letter-spacing:0.064000pt;}
.lsb_c00477{letter-spacing:0.076800pt;}
.lsa_c00477{letter-spacing:0.083200pt;}
.lsc_c00477{letter-spacing:0.128000pt;}
.ws2_c00477{word-spacing:-16.044800pt;}
.ws1_c00477{word-spacing:-16.012800pt;}
.ws0_c00477{word-spacing:-16.000000pt;}
.ws2c_c00477{word-spacing:-1.638400pt;}
.ws2b_c00477{word-spacing:-1.286400pt;}
.ws2a_c00477{word-spacing:-1.145600pt;}
.ws34_c00477{word-spacing:-1.100800pt;}
.ws38_c00477{word-spacing:-1.081600pt;}
.ws35_c00477{word-spacing:-1.043200pt;}
.ws39_c00477{word-spacing:-0.953600pt;}
.ws1a_c00477{word-spacing:-0.332800pt;}
.ws26_c00477{word-spacing:-0.160000pt;}
.ws10_c00477{word-spacing:-0.134400pt;}
.ws7_c00477{word-spacing:-0.115200pt;}
.ws3f_c00477{word-spacing:-0.089600pt;}
.ws30_c00477{word-spacing:-0.083200pt;}
.ws32_c00477{word-spacing:-0.070400pt;}
.ws41_c00477{word-spacing:-0.064000pt;}
.ws40_c00477{word-spacing:-0.051200pt;}
.ws13_c00477{word-spacing:-0.038400pt;}
.ws29_c00477{word-spacing:-0.032000pt;}
.ws28_c00477{word-spacing:-0.025600pt;}
.ws21_c00477{word-spacing:-0.019200pt;}
.wsf_c00477{word-spacing:-0.012800pt;}
.ws27_c00477{word-spacing:-0.006400pt;}
.ws3_c00477{word-spacing:0.000000pt;}
.ws22_c00477{word-spacing:0.006400pt;}
.ws8_c00477{word-spacing:0.025600pt;}
.ws33_c00477{word-spacing:0.032000pt;}
.ws31_c00477{word-spacing:0.134400pt;}
.ws48_c00477{word-spacing:1.241600pt;}
.ws36_c00477{word-spacing:1.248000pt;}
.ws49_c00477{word-spacing:1.273600pt;}
.ws37_c00477{word-spacing:1.433600pt;}
.ws5_c00477{word-spacing:3.078400pt;}
.ws4_c00477{word-spacing:3.084800pt;}
.ws6_c00477{word-spacing:3.212800pt;}
.ws47_c00477{word-spacing:4.940800pt;}
.ws45_c00477{word-spacing:4.947200pt;}
.ws44_c00477{word-spacing:4.985600pt;}
.ws2e_c00477{word-spacing:5.075200pt;}
.ws2f_c00477{word-spacing:5.107200pt;}
.ws46_c00477{word-spacing:5.139200pt;}
.ws2d_c00477{word-spacing:5.254400pt;}
.ws4d_c00477{word-spacing:6.880000pt;}
.ws4c_c00477{word-spacing:6.982400pt;}
.ws3d_c00477{word-spacing:7.987200pt;}
.ws3e_c00477{word-spacing:8.000000pt;}
.ws4b_c00477{word-spacing:11.654400pt;}
.ws4a_c00477{word-spacing:11.782400pt;}
.ws14_c00477{word-spacing:12.300800pt;}
.ws42_c00477{word-spacing:12.416000pt;}
.ws43_c00477{word-spacing:12.454400pt;}
.ws15_c00477{word-spacing:12.460800pt;}
.ws16_c00477{word-spacing:12.505600pt;}
.ws1b_c00477{word-spacing:13.408000pt;}
.ws1c_c00477{word-spacing:13.484800pt;}
.ws20_c00477{word-spacing:13.612800pt;}
.ws1f_c00477{word-spacing:13.676800pt;}
.ws24_c00477{word-spacing:14.028800pt;}
.ws23_c00477{word-spacing:14.041600pt;}
.ws25_c00477{word-spacing:14.086400pt;}
.ws3c_c00477{word-spacing:14.374400pt;}
.ws12_c00477{word-spacing:19.142400pt;}
.ws11_c00477{word-spacing:19.187200pt;}
.wsa_c00477{word-spacing:21.952000pt;}
.wsb_c00477{word-spacing:21.971200pt;}
.ws1d_c00477{word-spacing:22.060800pt;}
.ws1e_c00477{word-spacing:22.073600pt;}
.ws17_c00477{word-spacing:24.012800pt;}
.ws18_c00477{word-spacing:24.025600pt;}
.ws19_c00477{word-spacing:24.121600pt;}
.wsd_c00477{word-spacing:27.123200pt;}
.wse_c00477{word-spacing:27.193600pt;}
.wsc_c00477{word-spacing:27.212800pt;}
.ws9_c00477{word-spacing:30.380800pt;}
.ws3a_c00477{word-spacing:41.811200pt;}
.ws3b_c00477{word-spacing:41.920000pt;}
._0_c00477{margin-left:-0.896000pt;}
._2_c00477{width:6.867200pt;}
._1_c00477{width:13.344000pt;}
.fs0_c00477{font-size:64.000000pt;}
.y0_c00477{bottom:0.000000pt;}
.y2_c00477{bottom:41.627067pt;}
.y1_c00477{bottom:60.027067pt;}
.y31_c00477{bottom:129.307067pt;}
.y30_c00477{bottom:147.707067pt;}
.y2f_c00477{bottom:166.107067pt;}
.y2e_c00477{bottom:184.507067pt;}
.y2d_c00477{bottom:202.907067pt;}
.y2c_c00477{bottom:221.307067pt;}
.y2b_c00477{bottom:239.707067pt;}
.y2a_c00477{bottom:258.107067pt;}
.y29_c00477{bottom:276.507067pt;}
.y28_c00477{bottom:294.907067pt;}
.y27_c00477{bottom:313.307067pt;}
.y26_c00477{bottom:331.707067pt;}
.y25_c00477{bottom:350.027067pt;}
.y24_c00477{bottom:368.427067pt;}
.y23_c00477{bottom:386.827067pt;}
.y22_c00477{bottom:405.227067pt;}
.y21_c00477{bottom:423.627067pt;}
.y20_c00477{bottom:442.027067pt;}
.y1f_c00477{bottom:460.427067pt;}
.y1e_c00477{bottom:478.827067pt;}
.y1d_c00477{bottom:497.227067pt;}
.y1c_c00477{bottom:515.627067pt;}
.y1b_c00477{bottom:534.027067pt;}
.y1a_c00477{bottom:552.427067pt;}
.y19_c00477{bottom:570.827067pt;}
.y18_c00477{bottom:589.227067pt;}
.y17_c00477{bottom:607.627067pt;}
.y16_c00477{bottom:626.027067pt;}
.y15_c00477{bottom:644.427067pt;}
.y14_c00477{bottom:662.827067pt;}
.y13_c00477{bottom:681.227067pt;}
.y12_c00477{bottom:699.627067pt;}
.y11_c00477{bottom:718.027067pt;}
.y10_c00477{bottom:736.427067pt;}
.yf_c00477{bottom:754.827067pt;}
.ye_c00477{bottom:773.227067pt;}
.yd_c00477{bottom:791.627067pt;}
.yc_c00477{bottom:810.027067pt;}
.yb_c00477{bottom:828.427067pt;}
.ya_c00477{bottom:846.827067pt;}
.y9_c00477{bottom:865.227067pt;}
.y8_c00477{bottom:883.627067pt;}
.y7_c00477{bottom:902.027067pt;}
.y6_c00477{bottom:920.427067pt;}
.y5_c00477{bottom:938.827067pt;}
.y4_c00477{bottom:957.227067pt;}
.y3_c00477{bottom:975.627067pt;}
.h1_c00477{height:56.156250pt;}
.h2_c00477{height:62.781250pt;}
.h0_c00477{height:1122.666667pt;}
.w1_c00477{width:793.333333pt;}
.w0_c00477{width:793.626667pt;}
.x0_c00477{left:0.000000pt;}
.x2_c00477{left:113.440000pt;}
.x3_c00477{left:161.440000pt;}
.x1_c00477{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e522078cbea6aeb976a49dcb.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.093262;font-style:normal;font-weight:normal;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_efd92568af66e88b7398fac2.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00478{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls12_c00478{letter-spacing:-0.244800px;}
.ls15_c00478{letter-spacing:-0.057600px;}
.ls14_c00478{letter-spacing:-0.050400px;}
.lsf_c00478{letter-spacing:-0.043200px;}
.ls11_c00478{letter-spacing:-0.021600px;}
.ls13_c00478{letter-spacing:-0.014400px;}
.ls10_c00478{letter-spacing:-0.007200px;}
.lse_c00478{letter-spacing:0.000000px;}
.ls1_c00478{letter-spacing:0.007200px;}
.ls4_c00478{letter-spacing:0.014400px;}
.ls0_c00478{letter-spacing:0.021600px;}
.ls2_c00478{letter-spacing:0.028800px;}
.ls3_c00478{letter-spacing:0.036000px;}
.lsc_c00478{letter-spacing:0.043200px;}
.lsb_c00478{letter-spacing:0.050400px;}
.ls6_c00478{letter-spacing:0.057600px;}
.lsa_c00478{letter-spacing:0.064800px;}
.ls7_c00478{letter-spacing:0.072000px;}
.ls5_c00478{letter-spacing:0.079200px;}
.lsd_c00478{letter-spacing:0.086400px;}
.ls9_c00478{letter-spacing:0.093600px;}
.ls8_c00478{letter-spacing:0.108000px;}
.sc__c00478{text-shadow:none;}
.sc0_c00478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00478{-webkit-text-stroke:0px transparent;}
.sc0_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00478{word-spacing:-18.057600px;}
.ws1_c00478{word-spacing:-18.000000px;}
.ws9_c00478{word-spacing:-4.096800px;}
.ws8_c00478{word-spacing:-3.996000px;}
.ws7_c00478{word-spacing:-3.895200px;}
.ws4e_c00478{word-spacing:-1.670400px;}
.ws24_c00478{word-spacing:-1.555200px;}
.ws25_c00478{word-spacing:-1.533600px;}
.ws4d_c00478{word-spacing:-1.483200px;}
.ws4c_c00478{word-spacing:-1.267200px;}
.ws20_c00478{word-spacing:-0.856800px;}
.ws21_c00478{word-spacing:-0.727200px;}
.ws39_c00478{word-spacing:-0.720000px;}
.ws3a_c00478{word-spacing:-0.705600px;}
.ws22_c00478{word-spacing:-0.475200px;}
.ws2a_c00478{word-spacing:-0.381600px;}
.ws2b_c00478{word-spacing:-0.288000px;}
.ws48_c00478{word-spacing:-0.266400px;}
.ws12_c00478{word-spacing:-0.259200px;}
.ws38_c00478{word-spacing:-0.252000px;}
.ws4f_c00478{word-spacing:-0.194400px;}
.ws1e_c00478{word-spacing:-0.144000px;}
.ws29_c00478{word-spacing:-0.122400px;}
.ws43_c00478{word-spacing:-0.115200px;}
.ws32_c00478{word-spacing:-0.100800px;}
.ws28_c00478{word-spacing:-0.072000px;}
.ws31_c00478{word-spacing:-0.064800px;}
.wsb_c00478{word-spacing:-0.036000px;}
.wsa_c00478{word-spacing:-0.028800px;}
.ws26_c00478{word-spacing:-0.021600px;}
.ws47_c00478{word-spacing:-0.014400px;}
.ws6_c00478{word-spacing:-0.007200px;}
.ws2_c00478{word-spacing:0.000000px;}
.ws1f_c00478{word-spacing:0.007200px;}
.ws42_c00478{word-spacing:0.014400px;}
.ws17_c00478{word-spacing:0.057600px;}
.ws18_c00478{word-spacing:0.266400px;}
.ws45_c00478{word-spacing:1.425600px;}
.ws44_c00478{word-spacing:1.440000px;}
.ws46_c00478{word-spacing:1.461600px;}
.ws2e_c00478{word-spacing:1.605600px;}
.ws2c_c00478{word-spacing:1.720800px;}
.ws2d_c00478{word-spacing:1.850400px;}
.ws27_c00478{word-spacing:2.138400px;}
.ws34_c00478{word-spacing:4.543200px;}
.ws16_c00478{word-spacing:4.665600px;}
.ws33_c00478{word-spacing:4.694400px;}
.ws35_c00478{word-spacing:4.737600px;}
.ws1c_c00478{word-spacing:6.472800px;}
.ws1d_c00478{word-spacing:6.480000px;}
.ws3_c00478{word-spacing:8.632800px;}
.ws4_c00478{word-spacing:8.690400px;}
.ws5_c00478{word-spacing:8.712000px;}
.ws3f_c00478{word-spacing:9.151200px;}
.ws3e_c00478{word-spacing:9.338400px;}
.ws40_c00478{word-spacing:9.360000px;}
.ws41_c00478{word-spacing:9.417600px;}
.ws3c_c00478{word-spacing:11.743200px;}
.ws3b_c00478{word-spacing:11.858400px;}
.ws3d_c00478{word-spacing:11.865600px;}
.wsd_c00478{word-spacing:12.866400px;}
.wsc_c00478{word-spacing:13.010400px;}
.ws4a_c00478{word-spacing:14.983200px;}
.ws4b_c00478{word-spacing:15.048000px;}
.ws49_c00478{word-spacing:15.120000px;}
.ws1a_c00478{word-spacing:15.480000px;}
.ws19_c00478{word-spacing:15.616800px;}
.ws13_c00478{word-spacing:16.905600px;}
.ws14_c00478{word-spacing:16.912800px;}
.wsf_c00478{word-spacing:28.058400px;}
.wse_c00478{word-spacing:28.065600px;}
.ws11_c00478{word-spacing:28.267200px;}
.ws10_c00478{word-spacing:28.418400px;}
.ws37_c00478{word-spacing:30.549600px;}
.ws36_c00478{word-spacing:30.607200px;}
.ws30_c00478{word-spacing:32.126400px;}
.ws2f_c00478{word-spacing:32.392800px;}
.ws23_c00478{word-spacing:49.298400px;}
.ws15_c00478{word-spacing:100.015200px;}
.ws1b_c00478{word-spacing:544.240800px;}
._0_c00478{margin-left:-1.008000px;}
._2_c00478{width:1.440000px;}
._1_c00478{width:15.076800px;}
.fc0_c00478{color:rgb(0,0,0);}
.fs0_c00478{font-size:72.000000px;}
.y0_c00478{bottom:0.000000px;}
.y2_c00478{bottom:46.830450px;}
.y1_c00478{bottom:67.530450px;}
.y30_c00478{bottom:166.170450px;}
.y2f_c00478{bottom:186.870450px;}
.y2e_c00478{bottom:207.570450px;}
.y2d_c00478{bottom:228.270450px;}
.y2c_c00478{bottom:248.970450px;}
.y2b_c00478{bottom:269.670450px;}
.y2a_c00478{bottom:290.370450px;}
.y29_c00478{bottom:311.070450px;}
.y28_c00478{bottom:331.770450px;}
.y27_c00478{bottom:352.470450px;}
.y26_c00478{bottom:373.170450px;}
.y25_c00478{bottom:393.780450px;}
.y24_c00478{bottom:414.480450px;}
.y23_c00478{bottom:435.180450px;}
.y22_c00478{bottom:455.880450px;}
.y21_c00478{bottom:476.580450px;}
.y20_c00478{bottom:497.280450px;}
.y1f_c00478{bottom:517.980450px;}
.y1e_c00478{bottom:538.680450px;}
.y1d_c00478{bottom:559.380450px;}
.y1c_c00478{bottom:580.080450px;}
.y1b_c00478{bottom:600.780450px;}
.y1a_c00478{bottom:621.480450px;}
.y19_c00478{bottom:642.180450px;}
.y18_c00478{bottom:662.880450px;}
.y17_c00478{bottom:683.580450px;}
.y16_c00478{bottom:704.280450px;}
.y15_c00478{bottom:724.980450px;}
.y14_c00478{bottom:745.680450px;}
.y13_c00478{bottom:766.380450px;}
.y12_c00478{bottom:787.080450px;}
.y11_c00478{bottom:807.780450px;}
.y10_c00478{bottom:828.480450px;}
.yf_c00478{bottom:849.180450px;}
.ye_c00478{bottom:869.880450px;}
.yd_c00478{bottom:890.580450px;}
.yc_c00478{bottom:911.280450px;}
.yb_c00478{bottom:931.980450px;}
.ya_c00478{bottom:952.680450px;}
.y9_c00478{bottom:973.380450px;}
.y8_c00478{bottom:994.080450px;}
.y7_c00478{bottom:1014.780450px;}
.y6_c00478{bottom:1035.480450px;}
.y5_c00478{bottom:1056.180450px;}
.y4_c00478{bottom:1076.880450px;}
.y3_c00478{bottom:1097.580450px;}
.h1_c00478{height:63.175781px;}
.h2_c00478{height:70.628906px;}
.h0_c00478{height:1263.000000px;}
.w1_c00478{width:892.500000px;}
.w0_c00478{width:892.830000px;}
.x0_c00478{left:0.000000px;}
.x2_c00478{left:170.100000px;}
.x3_c00478{left:224.100000px;}
.x1_c00478{left:738.360000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls12_c00478{letter-spacing:-0.217600pt;}
.ls15_c00478{letter-spacing:-0.051200pt;}
.ls14_c00478{letter-spacing:-0.044800pt;}
.lsf_c00478{letter-spacing:-0.038400pt;}
.ls11_c00478{letter-spacing:-0.019200pt;}
.ls13_c00478{letter-spacing:-0.012800pt;}
.ls10_c00478{letter-spacing:-0.006400pt;}
.lse_c00478{letter-spacing:0.000000pt;}
.ls1_c00478{letter-spacing:0.006400pt;}
.ls4_c00478{letter-spacing:0.012800pt;}
.ls0_c00478{letter-spacing:0.019200pt;}
.ls2_c00478{letter-spacing:0.025600pt;}
.ls3_c00478{letter-spacing:0.032000pt;}
.lsc_c00478{letter-spacing:0.038400pt;}
.lsb_c00478{letter-spacing:0.044800pt;}
.ls6_c00478{letter-spacing:0.051200pt;}
.lsa_c00478{letter-spacing:0.057600pt;}
.ls7_c00478{letter-spacing:0.064000pt;}
.ls5_c00478{letter-spacing:0.070400pt;}
.lsd_c00478{letter-spacing:0.076800pt;}
.ls9_c00478{letter-spacing:0.083200pt;}
.ls8_c00478{letter-spacing:0.096000pt;}
.ws0_c00478{word-spacing:-16.051200pt;}
.ws1_c00478{word-spacing:-16.000000pt;}
.ws9_c00478{word-spacing:-3.641600pt;}
.ws8_c00478{word-spacing:-3.552000pt;}
.ws7_c00478{word-spacing:-3.462400pt;}
.ws4e_c00478{word-spacing:-1.484800pt;}
.ws24_c00478{word-spacing:-1.382400pt;}
.ws25_c00478{word-spacing:-1.363200pt;}
.ws4d_c00478{word-spacing:-1.318400pt;}
.ws4c_c00478{word-spacing:-1.126400pt;}
.ws20_c00478{word-spacing:-0.761600pt;}
.ws21_c00478{word-spacing:-0.646400pt;}
.ws39_c00478{word-spacing:-0.640000pt;}
.ws3a_c00478{word-spacing:-0.627200pt;}
.ws22_c00478{word-spacing:-0.422400pt;}
.ws2a_c00478{word-spacing:-0.339200pt;}
.ws2b_c00478{word-spacing:-0.256000pt;}
.ws48_c00478{word-spacing:-0.236800pt;}
.ws12_c00478{word-spacing:-0.230400pt;}
.ws38_c00478{word-spacing:-0.224000pt;}
.ws4f_c00478{word-spacing:-0.172800pt;}
.ws1e_c00478{word-spacing:-0.128000pt;}
.ws29_c00478{word-spacing:-0.108800pt;}
.ws43_c00478{word-spacing:-0.102400pt;}
.ws32_c00478{word-spacing:-0.089600pt;}
.ws28_c00478{word-spacing:-0.064000pt;}
.ws31_c00478{word-spacing:-0.057600pt;}
.wsb_c00478{word-spacing:-0.032000pt;}
.wsa_c00478{word-spacing:-0.025600pt;}
.ws26_c00478{word-spacing:-0.019200pt;}
.ws47_c00478{word-spacing:-0.012800pt;}
.ws6_c00478{word-spacing:-0.006400pt;}
.ws2_c00478{word-spacing:0.000000pt;}
.ws1f_c00478{word-spacing:0.006400pt;}
.ws42_c00478{word-spacing:0.012800pt;}
.ws17_c00478{word-spacing:0.051200pt;}
.ws18_c00478{word-spacing:0.236800pt;}
.ws45_c00478{word-spacing:1.267200pt;}
.ws44_c00478{word-spacing:1.280000pt;}
.ws46_c00478{word-spacing:1.299200pt;}
.ws2e_c00478{word-spacing:1.427200pt;}
.ws2c_c00478{word-spacing:1.529600pt;}
.ws2d_c00478{word-spacing:1.644800pt;}
.ws27_c00478{word-spacing:1.900800pt;}
.ws34_c00478{word-spacing:4.038400pt;}
.ws16_c00478{word-spacing:4.147200pt;}
.ws33_c00478{word-spacing:4.172800pt;}
.ws35_c00478{word-spacing:4.211200pt;}
.ws1c_c00478{word-spacing:5.753600pt;}
.ws1d_c00478{word-spacing:5.760000pt;}
.ws3_c00478{word-spacing:7.673600pt;}
.ws4_c00478{word-spacing:7.724800pt;}
.ws5_c00478{word-spacing:7.744000pt;}
.ws3f_c00478{word-spacing:8.134400pt;}
.ws3e_c00478{word-spacing:8.300800pt;}
.ws40_c00478{word-spacing:8.320000pt;}
.ws41_c00478{word-spacing:8.371200pt;}
.ws3c_c00478{word-spacing:10.438400pt;}
.ws3b_c00478{word-spacing:10.540800pt;}
.ws3d_c00478{word-spacing:10.547200pt;}
.wsd_c00478{word-spacing:11.436800pt;}
.wsc_c00478{word-spacing:11.564800pt;}
.ws4a_c00478{word-spacing:13.318400pt;}
.ws4b_c00478{word-spacing:13.376000pt;}
.ws49_c00478{word-spacing:13.440000pt;}
.ws1a_c00478{word-spacing:13.760000pt;}
.ws19_c00478{word-spacing:13.881600pt;}
.ws13_c00478{word-spacing:15.027200pt;}
.ws14_c00478{word-spacing:15.033600pt;}
.wsf_c00478{word-spacing:24.940800pt;}
.wse_c00478{word-spacing:24.947200pt;}
.ws11_c00478{word-spacing:25.126400pt;}
.ws10_c00478{word-spacing:25.260800pt;}
.ws37_c00478{word-spacing:27.155200pt;}
.ws36_c00478{word-spacing:27.206400pt;}
.ws30_c00478{word-spacing:28.556800pt;}
.ws2f_c00478{word-spacing:28.793600pt;}
.ws23_c00478{word-spacing:43.820800pt;}
.ws15_c00478{word-spacing:88.902400pt;}
.ws1b_c00478{word-spacing:483.769600pt;}
._0_c00478{margin-left:-0.896000pt;}
._2_c00478{width:1.280000pt;}
._1_c00478{width:13.401600pt;}
.fs0_c00478{font-size:64.000000pt;}
.y0_c00478{bottom:0.000000pt;}
.y2_c00478{bottom:41.627067pt;}
.y1_c00478{bottom:60.027067pt;}
.y30_c00478{bottom:147.707067pt;}
.y2f_c00478{bottom:166.107067pt;}
.y2e_c00478{bottom:184.507067pt;}
.y2d_c00478{bottom:202.907067pt;}
.y2c_c00478{bottom:221.307067pt;}
.y2b_c00478{bottom:239.707067pt;}
.y2a_c00478{bottom:258.107067pt;}
.y29_c00478{bottom:276.507067pt;}
.y28_c00478{bottom:294.907067pt;}
.y27_c00478{bottom:313.307067pt;}
.y26_c00478{bottom:331.707067pt;}
.y25_c00478{bottom:350.027067pt;}
.y24_c00478{bottom:368.427067pt;}
.y23_c00478{bottom:386.827067pt;}
.y22_c00478{bottom:405.227067pt;}
.y21_c00478{bottom:423.627067pt;}
.y20_c00478{bottom:442.027067pt;}
.y1f_c00478{bottom:460.427067pt;}
.y1e_c00478{bottom:478.827067pt;}
.y1d_c00478{bottom:497.227067pt;}
.y1c_c00478{bottom:515.627067pt;}
.y1b_c00478{bottom:534.027067pt;}
.y1a_c00478{bottom:552.427067pt;}
.y19_c00478{bottom:570.827067pt;}
.y18_c00478{bottom:589.227067pt;}
.y17_c00478{bottom:607.627067pt;}
.y16_c00478{bottom:626.027067pt;}
.y15_c00478{bottom:644.427067pt;}
.y14_c00478{bottom:662.827067pt;}
.y13_c00478{bottom:681.227067pt;}
.y12_c00478{bottom:699.627067pt;}
.y11_c00478{bottom:718.027067pt;}
.y10_c00478{bottom:736.427067pt;}
.yf_c00478{bottom:754.827067pt;}
.ye_c00478{bottom:773.227067pt;}
.yd_c00478{bottom:791.627067pt;}
.yc_c00478{bottom:810.027067pt;}
.yb_c00478{bottom:828.427067pt;}
.ya_c00478{bottom:846.827067pt;}
.y9_c00478{bottom:865.227067pt;}
.y8_c00478{bottom:883.627067pt;}
.y7_c00478{bottom:902.027067pt;}
.y6_c00478{bottom:920.427067pt;}
.y5_c00478{bottom:938.827067pt;}
.y4_c00478{bottom:957.227067pt;}
.y3_c00478{bottom:975.627067pt;}
.h1_c00478{height:56.156250pt;}
.h2_c00478{height:62.781250pt;}
.h0_c00478{height:1122.666667pt;}
.w1_c00478{width:793.333333pt;}
.w0_c00478{width:793.626667pt;}
.x0_c00478{left:0.000000pt;}
.x2_c00478{left:151.200000pt;}
.x3_c00478{left:199.200000pt;}
.x1_c00478{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d21f22d3e63efefbde8b8d8b.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.093262;font-style:normal;font-weight:normal;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_16478ebc848eaa1ee8fb632c.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00479{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.lsf_c00479{letter-spacing:-0.122400px;}
.ls10_c00479{letter-spacing:-0.057600px;}
.ls11_c00479{letter-spacing:-0.028800px;}
.lsd_c00479{letter-spacing:-0.021600px;}
.lse_c00479{letter-spacing:-0.014400px;}
.ls12_c00479{letter-spacing:-0.007200px;}
.lsc_c00479{letter-spacing:0.000000px;}
.ls6_c00479{letter-spacing:0.007200px;}
.ls1_c00479{letter-spacing:0.014400px;}
.ls5_c00479{letter-spacing:0.021600px;}
.ls0_c00479{letter-spacing:0.028800px;}
.ls2_c00479{letter-spacing:0.036000px;}
.ls8_c00479{letter-spacing:0.043200px;}
.ls4_c00479{letter-spacing:0.050400px;}
.lsb_c00479{letter-spacing:0.064800px;}
.ls9_c00479{letter-spacing:0.072000px;}
.ls3_c00479{letter-spacing:0.079200px;}
.ls7_c00479{letter-spacing:0.086400px;}
.lsa_c00479{letter-spacing:0.093600px;}
.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;}
}
.ws3_c00479{word-spacing:-18.064800px;}
.ws1_c00479{word-spacing:-18.050400px;}
.ws0_c00479{word-spacing:-18.028800px;}
.ws2_c00479{word-spacing:-18.000000px;}
.ws2f_c00479{word-spacing:-3.319200px;}
.ws2e_c00479{word-spacing:-3.211200px;}
.ws22_c00479{word-spacing:-2.743200px;}
.ws23_c00479{word-spacing:-2.527200px;}
.ws1a_c00479{word-spacing:-2.520000px;}
.ws19_c00479{word-spacing:-2.498400px;}
.ws3a_c00479{word-spacing:-2.196000px;}
.ws26_c00479{word-spacing:-1.461600px;}
.ws27_c00479{word-spacing:-1.375200px;}
.ws32_c00479{word-spacing:-0.453600px;}
.ws47_c00479{word-spacing:-0.360000px;}
.ws38_c00479{word-spacing:-0.194400px;}
.ws1b_c00479{word-spacing:-0.086400px;}
.ws3e_c00479{word-spacing:-0.036000px;}
.ws1f_c00479{word-spacing:-0.028800px;}
.ws17_c00479{word-spacing:-0.021600px;}
.ws2d_c00479{word-spacing:-0.014400px;}
.ws18_c00479{word-spacing:-0.007200px;}
.ws4_c00479{word-spacing:0.000000px;}
.ws39_c00479{word-spacing:0.007200px;}
.wse_c00479{word-spacing:0.021600px;}
.wsc_c00479{word-spacing:0.244800px;}
.ws14_c00479{word-spacing:0.324000px;}
.ws13_c00479{word-spacing:0.331200px;}
.wsd_c00479{word-spacing:0.338400px;}
.ws3f_c00479{word-spacing:0.345600px;}
.ws11_c00479{word-spacing:0.532800px;}
.ws10_c00479{word-spacing:0.576000px;}
.wsf_c00479{word-spacing:0.734400px;}
.ws43_c00479{word-spacing:2.030400px;}
.ws44_c00479{word-spacing:2.138400px;}
.ws42_c00479{word-spacing:2.160000px;}
.ws1d_c00479{word-spacing:2.815200px;}
.ws1c_c00479{word-spacing:2.872800px;}
.ws1e_c00479{word-spacing:2.937600px;}
.ws33_c00479{word-spacing:4.838400px;}
.ws34_c00479{word-spacing:4.852800px;}
.ws35_c00479{word-spacing:5.025600px;}
.wsa_c00479{word-spacing:6.372000px;}
.ws9_c00479{word-spacing:6.465600px;}
.ws25_c00479{word-spacing:7.156800px;}
.ws24_c00479{word-spacing:7.178400px;}
.ws28_c00479{word-spacing:8.618400px;}
.ws29_c00479{word-spacing:8.697600px;}
.ws5_c00479{word-spacing:10.800000px;}
.ws6_c00479{word-spacing:10.821600px;}
.ws7_c00479{word-spacing:11.865600px;}
.ws8_c00479{word-spacing:11.901600px;}
.ws41_c00479{word-spacing:12.902400px;}
.ws40_c00479{word-spacing:12.952800px;}
.ws45_c00479{word-spacing:13.183200px;}
.ws46_c00479{word-spacing:13.248000px;}
.wsb_c00479{word-spacing:14.256000px;}
.ws21_c00479{word-spacing:14.371200px;}
.ws20_c00479{word-spacing:14.392800px;}
.ws3d_c00479{word-spacing:14.788800px;}
.ws3c_c00479{word-spacing:15.098400px;}
.ws3b_c00479{word-spacing:15.112800px;}
.ws31_c00479{word-spacing:15.408000px;}
.ws30_c00479{word-spacing:15.487200px;}
.ws2b_c00479{word-spacing:17.928000px;}
.ws2c_c00479{word-spacing:17.971200px;}
.ws2a_c00479{word-spacing:17.978400px;}
.ws36_c00479{word-spacing:24.480000px;}
.ws37_c00479{word-spacing:24.494400px;}
.ws15_c00479{word-spacing:25.639200px;}
.ws16_c00479{word-spacing:25.711200px;}
.ws12_c00479{word-spacing:66.261600px;}
._0_c00479{margin-left:-1.238400px;}
._1_c00479{width:13.334400px;}
.fc0_c00479{color:rgb(0,0,0);}
.fs0_c00479{font-size:72.000000px;}
.y0_c00479{bottom:0.000000px;}
.y2_c00479{bottom:46.830450px;}
.y1_c00479{bottom:67.530450px;}
.y30_c00479{bottom:166.170450px;}
.y2f_c00479{bottom:186.870450px;}
.y2e_c00479{bottom:207.570450px;}
.y2d_c00479{bottom:228.270450px;}
.y2c_c00479{bottom:248.970450px;}
.y2b_c00479{bottom:269.670450px;}
.y2a_c00479{bottom:290.370450px;}
.y29_c00479{bottom:311.070450px;}
.y28_c00479{bottom:331.770450px;}
.y27_c00479{bottom:352.470450px;}
.y26_c00479{bottom:373.170450px;}
.y25_c00479{bottom:393.780450px;}
.y24_c00479{bottom:414.480450px;}
.y23_c00479{bottom:435.180450px;}
.y22_c00479{bottom:455.880450px;}
.y21_c00479{bottom:476.580450px;}
.y20_c00479{bottom:497.280450px;}
.y1f_c00479{bottom:517.980450px;}
.y1e_c00479{bottom:538.680450px;}
.y1d_c00479{bottom:559.380450px;}
.y1c_c00479{bottom:580.080450px;}
.y1b_c00479{bottom:600.780450px;}
.y1a_c00479{bottom:621.480450px;}
.y19_c00479{bottom:642.180450px;}
.y18_c00479{bottom:662.880450px;}
.y17_c00479{bottom:683.580450px;}
.y16_c00479{bottom:704.280450px;}
.y15_c00479{bottom:724.980450px;}
.y14_c00479{bottom:745.680450px;}
.y13_c00479{bottom:766.380450px;}
.y12_c00479{bottom:787.080450px;}
.y11_c00479{bottom:807.780450px;}
.y10_c00479{bottom:828.480450px;}
.yf_c00479{bottom:849.180450px;}
.ye_c00479{bottom:869.880450px;}
.yd_c00479{bottom:890.580450px;}
.yc_c00479{bottom:911.280450px;}
.yb_c00479{bottom:931.980450px;}
.ya_c00479{bottom:952.680450px;}
.y9_c00479{bottom:973.380450px;}
.y8_c00479{bottom:994.080450px;}
.y7_c00479{bottom:1014.780450px;}
.y6_c00479{bottom:1035.480450px;}
.y5_c00479{bottom:1056.180450px;}
.y4_c00479{bottom:1076.880450px;}
.y3_c00479{bottom:1097.580450px;}
.h1_c00479{height:63.175781px;}
.h2_c00479{height:70.628906px;}
.h0_c00479{height:1263.000000px;}
.w1_c00479{width:892.500000px;}
.w0_c00479{width:892.830000px;}
.x0_c00479{left:0.000000px;}
.x2_c00479{left:127.620000px;}
.x3_c00479{left:181.620000px;}
.x1_c00479{left:695.880000px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.lsf_c00479{letter-spacing:-0.108800pt;}
.ls10_c00479{letter-spacing:-0.051200pt;}
.ls11_c00479{letter-spacing:-0.025600pt;}
.lsd_c00479{letter-spacing:-0.019200pt;}
.lse_c00479{letter-spacing:-0.012800pt;}
.ls12_c00479{letter-spacing:-0.006400pt;}
.lsc_c00479{letter-spacing:0.000000pt;}
.ls6_c00479{letter-spacing:0.006400pt;}
.ls1_c00479{letter-spacing:0.012800pt;}
.ls5_c00479{letter-spacing:0.019200pt;}
.ls0_c00479{letter-spacing:0.025600pt;}
.ls2_c00479{letter-spacing:0.032000pt;}
.ls8_c00479{letter-spacing:0.038400pt;}
.ls4_c00479{letter-spacing:0.044800pt;}
.lsb_c00479{letter-spacing:0.057600pt;}
.ls9_c00479{letter-spacing:0.064000pt;}
.ls3_c00479{letter-spacing:0.070400pt;}
.ls7_c00479{letter-spacing:0.076800pt;}
.lsa_c00479{letter-spacing:0.083200pt;}
.ws3_c00479{word-spacing:-16.057600pt;}
.ws1_c00479{word-spacing:-16.044800pt;}
.ws0_c00479{word-spacing:-16.025600pt;}
.ws2_c00479{word-spacing:-16.000000pt;}
.ws2f_c00479{word-spacing:-2.950400pt;}
.ws2e_c00479{word-spacing:-2.854400pt;}
.ws22_c00479{word-spacing:-2.438400pt;}
.ws23_c00479{word-spacing:-2.246400pt;}
.ws1a_c00479{word-spacing:-2.240000pt;}
.ws19_c00479{word-spacing:-2.220800pt;}
.ws3a_c00479{word-spacing:-1.952000pt;}
.ws26_c00479{word-spacing:-1.299200pt;}
.ws27_c00479{word-spacing:-1.222400pt;}
.ws32_c00479{word-spacing:-0.403200pt;}
.ws47_c00479{word-spacing:-0.320000pt;}
.ws38_c00479{word-spacing:-0.172800pt;}
.ws1b_c00479{word-spacing:-0.076800pt;}
.ws3e_c00479{word-spacing:-0.032000pt;}
.ws1f_c00479{word-spacing:-0.025600pt;}
.ws17_c00479{word-spacing:-0.019200pt;}
.ws2d_c00479{word-spacing:-0.012800pt;}
.ws18_c00479{word-spacing:-0.006400pt;}
.ws4_c00479{word-spacing:0.000000pt;}
.ws39_c00479{word-spacing:0.006400pt;}
.wse_c00479{word-spacing:0.019200pt;}
.wsc_c00479{word-spacing:0.217600pt;}
.ws14_c00479{word-spacing:0.288000pt;}
.ws13_c00479{word-spacing:0.294400pt;}
.wsd_c00479{word-spacing:0.300800pt;}
.ws3f_c00479{word-spacing:0.307200pt;}
.ws11_c00479{word-spacing:0.473600pt;}
.ws10_c00479{word-spacing:0.512000pt;}
.wsf_c00479{word-spacing:0.652800pt;}
.ws43_c00479{word-spacing:1.804800pt;}
.ws44_c00479{word-spacing:1.900800pt;}
.ws42_c00479{word-spacing:1.920000pt;}
.ws1d_c00479{word-spacing:2.502400pt;}
.ws1c_c00479{word-spacing:2.553600pt;}
.ws1e_c00479{word-spacing:2.611200pt;}
.ws33_c00479{word-spacing:4.300800pt;}
.ws34_c00479{word-spacing:4.313600pt;}
.ws35_c00479{word-spacing:4.467200pt;}
.wsa_c00479{word-spacing:5.664000pt;}
.ws9_c00479{word-spacing:5.747200pt;}
.ws25_c00479{word-spacing:6.361600pt;}
.ws24_c00479{word-spacing:6.380800pt;}
.ws28_c00479{word-spacing:7.660800pt;}
.ws29_c00479{word-spacing:7.731200pt;}
.ws5_c00479{word-spacing:9.600000pt;}
.ws6_c00479{word-spacing:9.619200pt;}
.ws7_c00479{word-spacing:10.547200pt;}
.ws8_c00479{word-spacing:10.579200pt;}
.ws41_c00479{word-spacing:11.468800pt;}
.ws40_c00479{word-spacing:11.513600pt;}
.ws45_c00479{word-spacing:11.718400pt;}
.ws46_c00479{word-spacing:11.776000pt;}
.wsb_c00479{word-spacing:12.672000pt;}
.ws21_c00479{word-spacing:12.774400pt;}
.ws20_c00479{word-spacing:12.793600pt;}
.ws3d_c00479{word-spacing:13.145600pt;}
.ws3c_c00479{word-spacing:13.420800pt;}
.ws3b_c00479{word-spacing:13.433600pt;}
.ws31_c00479{word-spacing:13.696000pt;}
.ws30_c00479{word-spacing:13.766400pt;}
.ws2b_c00479{word-spacing:15.936000pt;}
.ws2c_c00479{word-spacing:15.974400pt;}
.ws2a_c00479{word-spacing:15.980800pt;}
.ws36_c00479{word-spacing:21.760000pt;}
.ws37_c00479{word-spacing:21.772800pt;}
.ws15_c00479{word-spacing:22.790400pt;}
.ws16_c00479{word-spacing:22.854400pt;}
.ws12_c00479{word-spacing:58.899200pt;}
._0_c00479{margin-left:-1.100800pt;}
._1_c00479{width:11.852800pt;}
.fs0_c00479{font-size:64.000000pt;}
.y0_c00479{bottom:0.000000pt;}
.y2_c00479{bottom:41.627067pt;}
.y1_c00479{bottom:60.027067pt;}
.y30_c00479{bottom:147.707067pt;}
.y2f_c00479{bottom:166.107067pt;}
.y2e_c00479{bottom:184.507067pt;}
.y2d_c00479{bottom:202.907067pt;}
.y2c_c00479{bottom:221.307067pt;}
.y2b_c00479{bottom:239.707067pt;}
.y2a_c00479{bottom:258.107067pt;}
.y29_c00479{bottom:276.507067pt;}
.y28_c00479{bottom:294.907067pt;}
.y27_c00479{bottom:313.307067pt;}
.y26_c00479{bottom:331.707067pt;}
.y25_c00479{bottom:350.027067pt;}
.y24_c00479{bottom:368.427067pt;}
.y23_c00479{bottom:386.827067pt;}
.y22_c00479{bottom:405.227067pt;}
.y21_c00479{bottom:423.627067pt;}
.y20_c00479{bottom:442.027067pt;}
.y1f_c00479{bottom:460.427067pt;}
.y1e_c00479{bottom:478.827067pt;}
.y1d_c00479{bottom:497.227067pt;}
.y1c_c00479{bottom:515.627067pt;}
.y1b_c00479{bottom:534.027067pt;}
.y1a_c00479{bottom:552.427067pt;}
.y19_c00479{bottom:570.827067pt;}
.y18_c00479{bottom:589.227067pt;}
.y17_c00479{bottom:607.627067pt;}
.y16_c00479{bottom:626.027067pt;}
.y15_c00479{bottom:644.427067pt;}
.y14_c00479{bottom:662.827067pt;}
.y13_c00479{bottom:681.227067pt;}
.y12_c00479{bottom:699.627067pt;}
.y11_c00479{bottom:718.027067pt;}
.y10_c00479{bottom:736.427067pt;}
.yf_c00479{bottom:754.827067pt;}
.ye_c00479{bottom:773.227067pt;}
.yd_c00479{bottom:791.627067pt;}
.yc_c00479{bottom:810.027067pt;}
.yb_c00479{bottom:828.427067pt;}
.ya_c00479{bottom:846.827067pt;}
.y9_c00479{bottom:865.227067pt;}
.y8_c00479{bottom:883.627067pt;}
.y7_c00479{bottom:902.027067pt;}
.y6_c00479{bottom:920.427067pt;}
.y5_c00479{bottom:938.827067pt;}
.y4_c00479{bottom:957.227067pt;}
.y3_c00479{bottom:975.627067pt;}
.h1_c00479{height:56.156250pt;}
.h2_c00479{height:62.781250pt;}
.h0_c00479{height:1122.666667pt;}
.w1_c00479{width:793.333333pt;}
.w0_c00479{width:793.626667pt;}
.x0_c00479{left:0.000000pt;}
.x2_c00479{left:113.440000pt;}
.x3_c00479{left:161.440000pt;}
.x1_c00479{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8af0745e2a25d97c938d4eb4.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.093262;font-style:normal;font-weight:normal;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_52ef5023ee6b722f2627731d.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00480{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls12_c00480{letter-spacing:-0.050400px;}
.ls11_c00480{letter-spacing:-0.043200px;}
.lsf_c00480{letter-spacing:-0.036000px;}
.lse_c00480{letter-spacing:-0.028800px;}
.ls13_c00480{letter-spacing:-0.021600px;}
.ls10_c00480{letter-spacing:-0.014400px;}
.lsd_c00480{letter-spacing:-0.007200px;}
.lsc_c00480{letter-spacing:0.000000px;}
.ls0_c00480{letter-spacing:0.007200px;}
.ls3_c00480{letter-spacing:0.014400px;}
.lsa_c00480{letter-spacing:0.021600px;}
.ls9_c00480{letter-spacing:0.028800px;}
.ls6_c00480{letter-spacing:0.036000px;}
.ls4_c00480{letter-spacing:0.043200px;}
.ls7_c00480{letter-spacing:0.050400px;}
.ls1_c00480{letter-spacing:0.064800px;}
.ls5_c00480{letter-spacing:0.079200px;}
.ls2_c00480{letter-spacing:0.086400px;}
.ls8_c00480{letter-spacing:0.100800px;}
.lsb_c00480{letter-spacing:0.108000px;}
.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;}
}
.ws2_c00480{word-spacing:-18.100800px;}
.ws1_c00480{word-spacing:-18.043200px;}
.ws0_c00480{word-spacing:-18.021600px;}
.ws3_c00480{word-spacing:-17.978400px;}
.ws17_c00480{word-spacing:-3.636000px;}
.ws18_c00480{word-spacing:-3.600000px;}
.ws19_c00480{word-spacing:-3.564000px;}
.ws2d_c00480{word-spacing:-3.067200px;}
.ws2f_c00480{word-spacing:-3.060000px;}
.ws2e_c00480{word-spacing:-2.865600px;}
.ws3c_c00480{word-spacing:-2.534400px;}
.ws5_c00480{word-spacing:-2.527200px;}
.ws6_c00480{word-spacing:-2.520000px;}
.ws20_c00480{word-spacing:-1.123200px;}
.ws21_c00480{word-spacing:-1.065600px;}
.ws9_c00480{word-spacing:-0.360000px;}
.ws30_c00480{word-spacing:-0.288000px;}
.ws1b_c00480{word-spacing:-0.244800px;}
.ws4f_c00480{word-spacing:-0.201600px;}
.wsd_c00480{word-spacing:-0.180000px;}
.ws1a_c00480{word-spacing:-0.172800px;}
.ws33_c00480{word-spacing:-0.115200px;}
.ws29_c00480{word-spacing:-0.100800px;}
.ws50_c00480{word-spacing:-0.093600px;}
.wse_c00480{word-spacing:-0.086400px;}
.ws13_c00480{word-spacing:-0.079200px;}
.wsb_c00480{word-spacing:-0.064800px;}
.ws1f_c00480{word-spacing:-0.050400px;}
.ws11_c00480{word-spacing:-0.043200px;}
.ws25_c00480{word-spacing:-0.036000px;}
.ws4c_c00480{word-spacing:-0.028800px;}
.ws3d_c00480{word-spacing:-0.021600px;}
.ws12_c00480{word-spacing:-0.014400px;}
.wsa_c00480{word-spacing:-0.007200px;}
.ws4_c00480{word-spacing:0.000000px;}
.wsc_c00480{word-spacing:0.007200px;}
.ws37_c00480{word-spacing:0.014400px;}
.ws3e_c00480{word-spacing:0.021600px;}
.ws2c_c00480{word-spacing:0.028800px;}
.ws26_c00480{word-spacing:0.050400px;}
.ws15_c00480{word-spacing:1.065600px;}
.ws16_c00480{word-spacing:1.108800px;}
.ws14_c00480{word-spacing:1.245600px;}
.ws10_c00480{word-spacing:1.778400px;}
.wsf_c00480{word-spacing:1.965600px;}
.ws31_c00480{word-spacing:2.476800px;}
.ws32_c00480{word-spacing:2.491200px;}
.ws27_c00480{word-spacing:3.204000px;}
.ws1c_c00480{word-spacing:3.211200px;}
.ws28_c00480{word-spacing:3.232800px;}
.ws1e_c00480{word-spacing:3.247200px;}
.ws1d_c00480{word-spacing:3.340800px;}
.ws41_c00480{word-spacing:3.506400px;}
.ws43_c00480{word-spacing:3.520800px;}
.ws42_c00480{word-spacing:3.614400px;}
.ws39_c00480{word-spacing:4.600800px;}
.ws38_c00480{word-spacing:4.629600px;}
.ws3a_c00480{word-spacing:4.838400px;}
.ws51_c00480{word-spacing:4.917600px;}
.ws53_c00480{word-spacing:5.061600px;}
.ws52_c00480{word-spacing:5.076000px;}
.ws56_c00480{word-spacing:5.198400px;}
.ws57_c00480{word-spacing:5.306400px;}
.ws58_c00480{word-spacing:5.385600px;}
.ws59_c00480{word-spacing:5.436000px;}
.ws2b_c00480{word-spacing:5.587200px;}
.ws2a_c00480{word-spacing:5.666400px;}
.ws36_c00480{word-spacing:6.328800px;}
.ws35_c00480{word-spacing:6.379200px;}
.ws34_c00480{word-spacing:6.609600px;}
.ws23_c00480{word-spacing:9.280800px;}
.ws22_c00480{word-spacing:9.374400px;}
.ws24_c00480{word-spacing:9.388800px;}
.ws45_c00480{word-spacing:9.612000px;}
.ws46_c00480{word-spacing:9.712800px;}
.ws44_c00480{word-spacing:9.727200px;}
.ws4e_c00480{word-spacing:11.347200px;}
.ws4d_c00480{word-spacing:11.505600px;}
.ws8_c00480{word-spacing:12.895200px;}
.ws7_c00480{word-spacing:12.967200px;}
.ws48_c00480{word-spacing:13.600800px;}
.ws47_c00480{word-spacing:13.644000px;}
.ws4a_c00480{word-spacing:18.180000px;}
.ws4b_c00480{word-spacing:18.216000px;}
.ws49_c00480{word-spacing:18.338400px;}
.ws54_c00480{word-spacing:20.145600px;}
.ws55_c00480{word-spacing:20.203200px;}
.ws40_c00480{word-spacing:21.146400px;}
.ws3f_c00480{word-spacing:21.218400px;}
.ws3b_c00480{word-spacing:75.952800px;}
._1_c00480{margin-left:-1.087200px;}
._0_c00480{width:12.960000px;}
.fc0_c00480{color:rgb(0,0,0);}
.fs0_c00480{font-size:72.000000px;}
.y0_c00480{bottom:0.000000px;}
.y2_c00480{bottom:46.830450px;}
.y1_c00480{bottom:67.530450px;}
.y30_c00480{bottom:166.170450px;}
.y2f_c00480{bottom:186.870450px;}
.y2e_c00480{bottom:207.570450px;}
.y2d_c00480{bottom:228.270450px;}
.y2c_c00480{bottom:248.970450px;}
.y2b_c00480{bottom:269.670450px;}
.y2a_c00480{bottom:290.370450px;}
.y29_c00480{bottom:311.070450px;}
.y28_c00480{bottom:331.770450px;}
.y27_c00480{bottom:352.470450px;}
.y26_c00480{bottom:373.170450px;}
.y25_c00480{bottom:393.780450px;}
.y24_c00480{bottom:414.480450px;}
.y23_c00480{bottom:435.090450px;}
.y22_c00480{bottom:455.880450px;}
.y21_c00480{bottom:476.580450px;}
.y20_c00480{bottom:497.280450px;}
.y1f_c00480{bottom:517.980450px;}
.y1e_c00480{bottom:538.680450px;}
.y1d_c00480{bottom:559.380450px;}
.y1c_c00480{bottom:580.080450px;}
.y1b_c00480{bottom:600.780450px;}
.y1a_c00480{bottom:621.480450px;}
.y19_c00480{bottom:642.180450px;}
.y18_c00480{bottom:662.880450px;}
.y17_c00480{bottom:683.580450px;}
.y16_c00480{bottom:704.280450px;}
.y15_c00480{bottom:724.980450px;}
.y14_c00480{bottom:745.680450px;}
.y13_c00480{bottom:766.380450px;}
.y12_c00480{bottom:787.080450px;}
.y11_c00480{bottom:807.780450px;}
.y10_c00480{bottom:828.480450px;}
.yf_c00480{bottom:849.180450px;}
.ye_c00480{bottom:869.880450px;}
.yd_c00480{bottom:890.580450px;}
.yc_c00480{bottom:911.280450px;}
.yb_c00480{bottom:931.980450px;}
.ya_c00480{bottom:952.680450px;}
.y9_c00480{bottom:973.380450px;}
.y8_c00480{bottom:994.080450px;}
.y7_c00480{bottom:1014.780450px;}
.y6_c00480{bottom:1035.480450px;}
.y5_c00480{bottom:1056.180450px;}
.y4_c00480{bottom:1076.880450px;}
.y3_c00480{bottom:1097.580450px;}
.h1_c00480{height:63.175781px;}
.h2_c00480{height:70.628906px;}
.h0_c00480{height:1263.000000px;}
.w1_c00480{width:892.500000px;}
.w0_c00480{width:892.830000px;}
.x0_c00480{left:0.000000px;}
.x2_c00480{left:170.100000px;}
.x3_c00480{left:224.100000px;}
.x1_c00480{left:738.360000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls12_c00480{letter-spacing:-0.044800pt;}
.ls11_c00480{letter-spacing:-0.038400pt;}
.lsf_c00480{letter-spacing:-0.032000pt;}
.lse_c00480{letter-spacing:-0.025600pt;}
.ls13_c00480{letter-spacing:-0.019200pt;}
.ls10_c00480{letter-spacing:-0.012800pt;}
.lsd_c00480{letter-spacing:-0.006400pt;}
.lsc_c00480{letter-spacing:0.000000pt;}
.ls0_c00480{letter-spacing:0.006400pt;}
.ls3_c00480{letter-spacing:0.012800pt;}
.lsa_c00480{letter-spacing:0.019200pt;}
.ls9_c00480{letter-spacing:0.025600pt;}
.ls6_c00480{letter-spacing:0.032000pt;}
.ls4_c00480{letter-spacing:0.038400pt;}
.ls7_c00480{letter-spacing:0.044800pt;}
.ls1_c00480{letter-spacing:0.057600pt;}
.ls5_c00480{letter-spacing:0.070400pt;}
.ls2_c00480{letter-spacing:0.076800pt;}
.ls8_c00480{letter-spacing:0.089600pt;}
.lsb_c00480{letter-spacing:0.096000pt;}
.ws2_c00480{word-spacing:-16.089600pt;}
.ws1_c00480{word-spacing:-16.038400pt;}
.ws0_c00480{word-spacing:-16.019200pt;}
.ws3_c00480{word-spacing:-15.980800pt;}
.ws17_c00480{word-spacing:-3.232000pt;}
.ws18_c00480{word-spacing:-3.200000pt;}
.ws19_c00480{word-spacing:-3.168000pt;}
.ws2d_c00480{word-spacing:-2.726400pt;}
.ws2f_c00480{word-spacing:-2.720000pt;}
.ws2e_c00480{word-spacing:-2.547200pt;}
.ws3c_c00480{word-spacing:-2.252800pt;}
.ws5_c00480{word-spacing:-2.246400pt;}
.ws6_c00480{word-spacing:-2.240000pt;}
.ws20_c00480{word-spacing:-0.998400pt;}
.ws21_c00480{word-spacing:-0.947200pt;}
.ws9_c00480{word-spacing:-0.320000pt;}
.ws30_c00480{word-spacing:-0.256000pt;}
.ws1b_c00480{word-spacing:-0.217600pt;}
.ws4f_c00480{word-spacing:-0.179200pt;}
.wsd_c00480{word-spacing:-0.160000pt;}
.ws1a_c00480{word-spacing:-0.153600pt;}
.ws33_c00480{word-spacing:-0.102400pt;}
.ws29_c00480{word-spacing:-0.089600pt;}
.ws50_c00480{word-spacing:-0.083200pt;}
.wse_c00480{word-spacing:-0.076800pt;}
.ws13_c00480{word-spacing:-0.070400pt;}
.wsb_c00480{word-spacing:-0.057600pt;}
.ws1f_c00480{word-spacing:-0.044800pt;}
.ws11_c00480{word-spacing:-0.038400pt;}
.ws25_c00480{word-spacing:-0.032000pt;}
.ws4c_c00480{word-spacing:-0.025600pt;}
.ws3d_c00480{word-spacing:-0.019200pt;}
.ws12_c00480{word-spacing:-0.012800pt;}
.wsa_c00480{word-spacing:-0.006400pt;}
.ws4_c00480{word-spacing:0.000000pt;}
.wsc_c00480{word-spacing:0.006400pt;}
.ws37_c00480{word-spacing:0.012800pt;}
.ws3e_c00480{word-spacing:0.019200pt;}
.ws2c_c00480{word-spacing:0.025600pt;}
.ws26_c00480{word-spacing:0.044800pt;}
.ws15_c00480{word-spacing:0.947200pt;}
.ws16_c00480{word-spacing:0.985600pt;}
.ws14_c00480{word-spacing:1.107200pt;}
.ws10_c00480{word-spacing:1.580800pt;}
.wsf_c00480{word-spacing:1.747200pt;}
.ws31_c00480{word-spacing:2.201600pt;}
.ws32_c00480{word-spacing:2.214400pt;}
.ws27_c00480{word-spacing:2.848000pt;}
.ws1c_c00480{word-spacing:2.854400pt;}
.ws28_c00480{word-spacing:2.873600pt;}
.ws1e_c00480{word-spacing:2.886400pt;}
.ws1d_c00480{word-spacing:2.969600pt;}
.ws41_c00480{word-spacing:3.116800pt;}
.ws43_c00480{word-spacing:3.129600pt;}
.ws42_c00480{word-spacing:3.212800pt;}
.ws39_c00480{word-spacing:4.089600pt;}
.ws38_c00480{word-spacing:4.115200pt;}
.ws3a_c00480{word-spacing:4.300800pt;}
.ws51_c00480{word-spacing:4.371200pt;}
.ws53_c00480{word-spacing:4.499200pt;}
.ws52_c00480{word-spacing:4.512000pt;}
.ws56_c00480{word-spacing:4.620800pt;}
.ws57_c00480{word-spacing:4.716800pt;}
.ws58_c00480{word-spacing:4.787200pt;}
.ws59_c00480{word-spacing:4.832000pt;}
.ws2b_c00480{word-spacing:4.966400pt;}
.ws2a_c00480{word-spacing:5.036800pt;}
.ws36_c00480{word-spacing:5.625600pt;}
.ws35_c00480{word-spacing:5.670400pt;}
.ws34_c00480{word-spacing:5.875200pt;}
.ws23_c00480{word-spacing:8.249600pt;}
.ws22_c00480{word-spacing:8.332800pt;}
.ws24_c00480{word-spacing:8.345600pt;}
.ws45_c00480{word-spacing:8.544000pt;}
.ws46_c00480{word-spacing:8.633600pt;}
.ws44_c00480{word-spacing:8.646400pt;}
.ws4e_c00480{word-spacing:10.086400pt;}
.ws4d_c00480{word-spacing:10.227200pt;}
.ws8_c00480{word-spacing:11.462400pt;}
.ws7_c00480{word-spacing:11.526400pt;}
.ws48_c00480{word-spacing:12.089600pt;}
.ws47_c00480{word-spacing:12.128000pt;}
.ws4a_c00480{word-spacing:16.160000pt;}
.ws4b_c00480{word-spacing:16.192000pt;}
.ws49_c00480{word-spacing:16.300800pt;}
.ws54_c00480{word-spacing:17.907200pt;}
.ws55_c00480{word-spacing:17.958400pt;}
.ws40_c00480{word-spacing:18.796800pt;}
.ws3f_c00480{word-spacing:18.860800pt;}
.ws3b_c00480{word-spacing:67.513600pt;}
._1_c00480{margin-left:-0.966400pt;}
._0_c00480{width:11.520000pt;}
.fs0_c00480{font-size:64.000000pt;}
.y0_c00480{bottom:0.000000pt;}
.y2_c00480{bottom:41.627067pt;}
.y1_c00480{bottom:60.027067pt;}
.y30_c00480{bottom:147.707067pt;}
.y2f_c00480{bottom:166.107067pt;}
.y2e_c00480{bottom:184.507067pt;}
.y2d_c00480{bottom:202.907067pt;}
.y2c_c00480{bottom:221.307067pt;}
.y2b_c00480{bottom:239.707067pt;}
.y2a_c00480{bottom:258.107067pt;}
.y29_c00480{bottom:276.507067pt;}
.y28_c00480{bottom:294.907067pt;}
.y27_c00480{bottom:313.307067pt;}
.y26_c00480{bottom:331.707067pt;}
.y25_c00480{bottom:350.027067pt;}
.y24_c00480{bottom:368.427067pt;}
.y23_c00480{bottom:386.747067pt;}
.y22_c00480{bottom:405.227067pt;}
.y21_c00480{bottom:423.627067pt;}
.y20_c00480{bottom:442.027067pt;}
.y1f_c00480{bottom:460.427067pt;}
.y1e_c00480{bottom:478.827067pt;}
.y1d_c00480{bottom:497.227067pt;}
.y1c_c00480{bottom:515.627067pt;}
.y1b_c00480{bottom:534.027067pt;}
.y1a_c00480{bottom:552.427067pt;}
.y19_c00480{bottom:570.827067pt;}
.y18_c00480{bottom:589.227067pt;}
.y17_c00480{bottom:607.627067pt;}
.y16_c00480{bottom:626.027067pt;}
.y15_c00480{bottom:644.427067pt;}
.y14_c00480{bottom:662.827067pt;}
.y13_c00480{bottom:681.227067pt;}
.y12_c00480{bottom:699.627067pt;}
.y11_c00480{bottom:718.027067pt;}
.y10_c00480{bottom:736.427067pt;}
.yf_c00480{bottom:754.827067pt;}
.ye_c00480{bottom:773.227067pt;}
.yd_c00480{bottom:791.627067pt;}
.yc_c00480{bottom:810.027067pt;}
.yb_c00480{bottom:828.427067pt;}
.ya_c00480{bottom:846.827067pt;}
.y9_c00480{bottom:865.227067pt;}
.y8_c00480{bottom:883.627067pt;}
.y7_c00480{bottom:902.027067pt;}
.y6_c00480{bottom:920.427067pt;}
.y5_c00480{bottom:938.827067pt;}
.y4_c00480{bottom:957.227067pt;}
.y3_c00480{bottom:975.627067pt;}
.h1_c00480{height:56.156250pt;}
.h2_c00480{height:62.781250pt;}
.h0_c00480{height:1122.666667pt;}
.w1_c00480{width:793.333333pt;}
.w0_c00480{width:793.626667pt;}
.x0_c00480{left:0.000000pt;}
.x2_c00480{left:151.200000pt;}
.x3_c00480{left:199.200000pt;}
.x1_c00480{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e4ca54df2aede6ec93729564.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.093262;font-style:normal;font-weight:normal;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_61f0c4fce73f4f0caa3a0dc7.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00481{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.ls15_c00481{letter-spacing:-0.360000px;}
.ls14_c00481{letter-spacing:-0.230400px;}
.lse_c00481{letter-spacing:-0.165600px;}
.ls16_c00481{letter-spacing:-0.136800px;}
.ls11_c00481{letter-spacing:-0.115200px;}
.ls13_c00481{letter-spacing:-0.050400px;}
.ls12_c00481{letter-spacing:-0.043200px;}
.lsf_c00481{letter-spacing:-0.028800px;}
.ls10_c00481{letter-spacing:-0.021600px;}
.lsc_c00481{letter-spacing:-0.014400px;}
.lsd_c00481{letter-spacing:-0.007200px;}
.lsb_c00481{letter-spacing:0.000000px;}
.ls4_c00481{letter-spacing:0.007200px;}
.ls5_c00481{letter-spacing:0.014400px;}
.ls0_c00481{letter-spacing:0.021600px;}
.ls3_c00481{letter-spacing:0.028800px;}
.ls7_c00481{letter-spacing:0.036000px;}
.ls1_c00481{letter-spacing:0.043200px;}
.ls8_c00481{letter-spacing:0.050400px;}
.ls6_c00481{letter-spacing:0.057600px;}
.lsa_c00481{letter-spacing:0.064800px;}
.ls2_c00481{letter-spacing:0.072000px;}
.ls9_c00481{letter-spacing:0.115200px;}
.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:-18.028800px;}
.ws0_c00481{word-spacing:-18.021600px;}
.ws1_c00481{word-spacing:-17.992800px;}
.ws27_c00481{word-spacing:-3.722400px;}
.ws26_c00481{word-spacing:-3.628800px;}
.ws25_c00481{word-spacing:-3.621600px;}
.ws32_c00481{word-spacing:-2.923200px;}
.ws31_c00481{word-spacing:-2.901600px;}
.ws3b_c00481{word-spacing:-2.196000px;}
.ws3a_c00481{word-spacing:-2.181600px;}
.ws5_c00481{word-spacing:-1.800000px;}
.ws4_c00481{word-spacing:-1.735200px;}
.ws46_c00481{word-spacing:-0.424800px;}
.ws9_c00481{word-spacing:-0.381600px;}
.ws1b_c00481{word-spacing:-0.338400px;}
.ws1a_c00481{word-spacing:-0.280800px;}
.ws30_c00481{word-spacing:-0.208800px;}
.ws47_c00481{word-spacing:-0.201600px;}
.ws3f_c00481{word-spacing:-0.194400px;}
.ws36_c00481{word-spacing:-0.180000px;}
.ws19_c00481{word-spacing:-0.172800px;}
.ws20_c00481{word-spacing:-0.136800px;}
.ws49_c00481{word-spacing:-0.122400px;}
.ws45_c00481{word-spacing:-0.108000px;}
.ws40_c00481{word-spacing:-0.093600px;}
.ws48_c00481{word-spacing:-0.086400px;}
.wsc_c00481{word-spacing:-0.072000px;}
.wsb_c00481{word-spacing:-0.043200px;}
.ws1f_c00481{word-spacing:-0.036000px;}
.wsd_c00481{word-spacing:-0.028800px;}
.ws39_c00481{word-spacing:-0.021600px;}
.ws21_c00481{word-spacing:-0.014400px;}
.ws2c_c00481{word-spacing:-0.007200px;}
.ws3_c00481{word-spacing:0.000000px;}
.ws35_c00481{word-spacing:0.007200px;}
.ws4a_c00481{word-spacing:0.136800px;}
.ws41_c00481{word-spacing:0.662400px;}
.wsa_c00481{word-spacing:1.058400px;}
.ws23_c00481{word-spacing:1.922400px;}
.ws22_c00481{word-spacing:2.116800px;}
.ws24_c00481{word-spacing:2.167200px;}
.wsf_c00481{word-spacing:3.672000px;}
.wse_c00481{word-spacing:3.837600px;}
.ws10_c00481{word-spacing:3.974400px;}
.ws28_c00481{word-spacing:4.269600px;}
.ws2a_c00481{word-spacing:4.320000px;}
.ws29_c00481{word-spacing:4.327200px;}
.ws2b_c00481{word-spacing:4.370400px;}
.ws34_c00481{word-spacing:6.789600px;}
.ws33_c00481{word-spacing:6.818400px;}
.ws2f_c00481{word-spacing:8.992800px;}
.ws3d_c00481{word-spacing:9.568800px;}
.ws3e_c00481{word-spacing:9.604800px;}
.ws3c_c00481{word-spacing:9.698400px;}
.ws13_c00481{word-spacing:10.562400px;}
.ws14_c00481{word-spacing:10.965600px;}
.ws12_c00481{word-spacing:12.578400px;}
.ws11_c00481{word-spacing:12.592800px;}
.ws37_c00481{word-spacing:12.938400px;}
.ws2d_c00481{word-spacing:12.960000px;}
.ws2e_c00481{word-spacing:13.147200px;}
.ws38_c00481{word-spacing:13.190400px;}
.ws4c_c00481{word-spacing:14.889600px;}
.ws4b_c00481{word-spacing:15.127200px;}
.ws7_c00481{word-spacing:19.951200px;}
.ws8_c00481{word-spacing:20.016000px;}
.ws18_c00481{word-spacing:20.102400px;}
.ws6_c00481{word-spacing:20.138400px;}
.ws17_c00481{word-spacing:20.188800px;}
.ws1c_c00481{word-spacing:20.894400px;}
.ws44_c00481{word-spacing:24.494400px;}
.ws43_c00481{word-spacing:24.832800px;}
.ws42_c00481{word-spacing:24.854400px;}
.ws1d_c00481{word-spacing:38.671200px;}
.ws1e_c00481{word-spacing:38.836800px;}
.ws15_c00481{word-spacing:403.905600px;}
.ws16_c00481{word-spacing:403.948800px;}
._0_c00481{margin-left:-1.461600px;}
._2_c00481{width:1.209600px;}
._1_c00481{width:10.792800px;}
.fc0_c00481{color:rgb(0,0,0);}
.fs0_c00481{font-size:72.000000px;}
.y0_c00481{bottom:0.000000px;}
.y2_c00481{bottom:46.830450px;}
.y1_c00481{bottom:67.530450px;}
.y31_c00481{bottom:145.470450px;}
.y30_c00481{bottom:166.170450px;}
.y2f_c00481{bottom:186.870450px;}
.y2e_c00481{bottom:207.570450px;}
.y2d_c00481{bottom:228.270450px;}
.y2c_c00481{bottom:248.970450px;}
.y2b_c00481{bottom:269.670450px;}
.y2a_c00481{bottom:290.370450px;}
.y29_c00481{bottom:311.070450px;}
.y28_c00481{bottom:331.770450px;}
.y27_c00481{bottom:352.470450px;}
.y26_c00481{bottom:373.170450px;}
.y25_c00481{bottom:393.780450px;}
.y24_c00481{bottom:414.480450px;}
.y23_c00481{bottom:435.180450px;}
.y22_c00481{bottom:455.880450px;}
.y21_c00481{bottom:476.580450px;}
.y20_c00481{bottom:497.280450px;}
.y1f_c00481{bottom:517.980450px;}
.y1e_c00481{bottom:538.680450px;}
.y1d_c00481{bottom:559.380450px;}
.y1c_c00481{bottom:580.080450px;}
.y1b_c00481{bottom:600.780450px;}
.y1a_c00481{bottom:621.480450px;}
.y19_c00481{bottom:642.180450px;}
.y18_c00481{bottom:662.880450px;}
.y17_c00481{bottom:683.580450px;}
.y16_c00481{bottom:704.280450px;}
.y15_c00481{bottom:724.980450px;}
.y14_c00481{bottom:745.680450px;}
.y13_c00481{bottom:766.380450px;}
.y12_c00481{bottom:787.080450px;}
.y11_c00481{bottom:807.780450px;}
.y10_c00481{bottom:828.480450px;}
.yf_c00481{bottom:849.180450px;}
.ye_c00481{bottom:869.880450px;}
.yd_c00481{bottom:890.580450px;}
.yc_c00481{bottom:911.280450px;}
.yb_c00481{bottom:931.980450px;}
.ya_c00481{bottom:952.680450px;}
.y9_c00481{bottom:973.380450px;}
.y8_c00481{bottom:994.080450px;}
.y7_c00481{bottom:1014.780450px;}
.y6_c00481{bottom:1035.480450px;}
.y5_c00481{bottom:1056.180450px;}
.y4_c00481{bottom:1076.880450px;}
.y3_c00481{bottom:1097.580450px;}
.h1_c00481{height:63.175781px;}
.h2_c00481{height:70.628906px;}
.h0_c00481{height:1263.000000px;}
.w1_c00481{width:892.500000px;}
.w0_c00481{width:892.830000px;}
.x0_c00481{left:0.000000px;}
.x2_c00481{left:127.620000px;}
.x3_c00481{left:181.620000px;}
.x1_c00481{left:695.880000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls15_c00481{letter-spacing:-0.320000pt;}
.ls14_c00481{letter-spacing:-0.204800pt;}
.lse_c00481{letter-spacing:-0.147200pt;}
.ls16_c00481{letter-spacing:-0.121600pt;}
.ls11_c00481{letter-spacing:-0.102400pt;}
.ls13_c00481{letter-spacing:-0.044800pt;}
.ls12_c00481{letter-spacing:-0.038400pt;}
.lsf_c00481{letter-spacing:-0.025600pt;}
.ls10_c00481{letter-spacing:-0.019200pt;}
.lsc_c00481{letter-spacing:-0.012800pt;}
.lsd_c00481{letter-spacing:-0.006400pt;}
.lsb_c00481{letter-spacing:0.000000pt;}
.ls4_c00481{letter-spacing:0.006400pt;}
.ls5_c00481{letter-spacing:0.012800pt;}
.ls0_c00481{letter-spacing:0.019200pt;}
.ls3_c00481{letter-spacing:0.025600pt;}
.ls7_c00481{letter-spacing:0.032000pt;}
.ls1_c00481{letter-spacing:0.038400pt;}
.ls8_c00481{letter-spacing:0.044800pt;}
.ls6_c00481{letter-spacing:0.051200pt;}
.lsa_c00481{letter-spacing:0.057600pt;}
.ls2_c00481{letter-spacing:0.064000pt;}
.ls9_c00481{letter-spacing:0.102400pt;}
.ws2_c00481{word-spacing:-16.025600pt;}
.ws0_c00481{word-spacing:-16.019200pt;}
.ws1_c00481{word-spacing:-15.993600pt;}
.ws27_c00481{word-spacing:-3.308800pt;}
.ws26_c00481{word-spacing:-3.225600pt;}
.ws25_c00481{word-spacing:-3.219200pt;}
.ws32_c00481{word-spacing:-2.598400pt;}
.ws31_c00481{word-spacing:-2.579200pt;}
.ws3b_c00481{word-spacing:-1.952000pt;}
.ws3a_c00481{word-spacing:-1.939200pt;}
.ws5_c00481{word-spacing:-1.600000pt;}
.ws4_c00481{word-spacing:-1.542400pt;}
.ws46_c00481{word-spacing:-0.377600pt;}
.ws9_c00481{word-spacing:-0.339200pt;}
.ws1b_c00481{word-spacing:-0.300800pt;}
.ws1a_c00481{word-spacing:-0.249600pt;}
.ws30_c00481{word-spacing:-0.185600pt;}
.ws47_c00481{word-spacing:-0.179200pt;}
.ws3f_c00481{word-spacing:-0.172800pt;}
.ws36_c00481{word-spacing:-0.160000pt;}
.ws19_c00481{word-spacing:-0.153600pt;}
.ws20_c00481{word-spacing:-0.121600pt;}
.ws49_c00481{word-spacing:-0.108800pt;}
.ws45_c00481{word-spacing:-0.096000pt;}
.ws40_c00481{word-spacing:-0.083200pt;}
.ws48_c00481{word-spacing:-0.076800pt;}
.wsc_c00481{word-spacing:-0.064000pt;}
.wsb_c00481{word-spacing:-0.038400pt;}
.ws1f_c00481{word-spacing:-0.032000pt;}
.wsd_c00481{word-spacing:-0.025600pt;}
.ws39_c00481{word-spacing:-0.019200pt;}
.ws21_c00481{word-spacing:-0.012800pt;}
.ws2c_c00481{word-spacing:-0.006400pt;}
.ws3_c00481{word-spacing:0.000000pt;}
.ws35_c00481{word-spacing:0.006400pt;}
.ws4a_c00481{word-spacing:0.121600pt;}
.ws41_c00481{word-spacing:0.588800pt;}
.wsa_c00481{word-spacing:0.940800pt;}
.ws23_c00481{word-spacing:1.708800pt;}
.ws22_c00481{word-spacing:1.881600pt;}
.ws24_c00481{word-spacing:1.926400pt;}
.wsf_c00481{word-spacing:3.264000pt;}
.wse_c00481{word-spacing:3.411200pt;}
.ws10_c00481{word-spacing:3.532800pt;}
.ws28_c00481{word-spacing:3.795200pt;}
.ws2a_c00481{word-spacing:3.840000pt;}
.ws29_c00481{word-spacing:3.846400pt;}
.ws2b_c00481{word-spacing:3.884800pt;}
.ws34_c00481{word-spacing:6.035200pt;}
.ws33_c00481{word-spacing:6.060800pt;}
.ws2f_c00481{word-spacing:7.993600pt;}
.ws3d_c00481{word-spacing:8.505600pt;}
.ws3e_c00481{word-spacing:8.537600pt;}
.ws3c_c00481{word-spacing:8.620800pt;}
.ws13_c00481{word-spacing:9.388800pt;}
.ws14_c00481{word-spacing:9.747200pt;}
.ws12_c00481{word-spacing:11.180800pt;}
.ws11_c00481{word-spacing:11.193600pt;}
.ws37_c00481{word-spacing:11.500800pt;}
.ws2d_c00481{word-spacing:11.520000pt;}
.ws2e_c00481{word-spacing:11.686400pt;}
.ws38_c00481{word-spacing:11.724800pt;}
.ws4c_c00481{word-spacing:13.235200pt;}
.ws4b_c00481{word-spacing:13.446400pt;}
.ws7_c00481{word-spacing:17.734400pt;}
.ws8_c00481{word-spacing:17.792000pt;}
.ws18_c00481{word-spacing:17.868800pt;}
.ws6_c00481{word-spacing:17.900800pt;}
.ws17_c00481{word-spacing:17.945600pt;}
.ws1c_c00481{word-spacing:18.572800pt;}
.ws44_c00481{word-spacing:21.772800pt;}
.ws43_c00481{word-spacing:22.073600pt;}
.ws42_c00481{word-spacing:22.092800pt;}
.ws1d_c00481{word-spacing:34.374400pt;}
.ws1e_c00481{word-spacing:34.521600pt;}
.ws15_c00481{word-spacing:359.027200pt;}
.ws16_c00481{word-spacing:359.065600pt;}
._0_c00481{margin-left:-1.299200pt;}
._2_c00481{width:1.075200pt;}
._1_c00481{width:9.593600pt;}
.fs0_c00481{font-size:64.000000pt;}
.y0_c00481{bottom:0.000000pt;}
.y2_c00481{bottom:41.627067pt;}
.y1_c00481{bottom:60.027067pt;}
.y31_c00481{bottom:129.307067pt;}
.y30_c00481{bottom:147.707067pt;}
.y2f_c00481{bottom:166.107067pt;}
.y2e_c00481{bottom:184.507067pt;}
.y2d_c00481{bottom:202.907067pt;}
.y2c_c00481{bottom:221.307067pt;}
.y2b_c00481{bottom:239.707067pt;}
.y2a_c00481{bottom:258.107067pt;}
.y29_c00481{bottom:276.507067pt;}
.y28_c00481{bottom:294.907067pt;}
.y27_c00481{bottom:313.307067pt;}
.y26_c00481{bottom:331.707067pt;}
.y25_c00481{bottom:350.027067pt;}
.y24_c00481{bottom:368.427067pt;}
.y23_c00481{bottom:386.827067pt;}
.y22_c00481{bottom:405.227067pt;}
.y21_c00481{bottom:423.627067pt;}
.y20_c00481{bottom:442.027067pt;}
.y1f_c00481{bottom:460.427067pt;}
.y1e_c00481{bottom:478.827067pt;}
.y1d_c00481{bottom:497.227067pt;}
.y1c_c00481{bottom:515.627067pt;}
.y1b_c00481{bottom:534.027067pt;}
.y1a_c00481{bottom:552.427067pt;}
.y19_c00481{bottom:570.827067pt;}
.y18_c00481{bottom:589.227067pt;}
.y17_c00481{bottom:607.627067pt;}
.y16_c00481{bottom:626.027067pt;}
.y15_c00481{bottom:644.427067pt;}
.y14_c00481{bottom:662.827067pt;}
.y13_c00481{bottom:681.227067pt;}
.y12_c00481{bottom:699.627067pt;}
.y11_c00481{bottom:718.027067pt;}
.y10_c00481{bottom:736.427067pt;}
.yf_c00481{bottom:754.827067pt;}
.ye_c00481{bottom:773.227067pt;}
.yd_c00481{bottom:791.627067pt;}
.yc_c00481{bottom:810.027067pt;}
.yb_c00481{bottom:828.427067pt;}
.ya_c00481{bottom:846.827067pt;}
.y9_c00481{bottom:865.227067pt;}
.y8_c00481{bottom:883.627067pt;}
.y7_c00481{bottom:902.027067pt;}
.y6_c00481{bottom:920.427067pt;}
.y5_c00481{bottom:938.827067pt;}
.y4_c00481{bottom:957.227067pt;}
.y3_c00481{bottom:975.627067pt;}
.h1_c00481{height:56.156250pt;}
.h2_c00481{height:62.781250pt;}
.h0_c00481{height:1122.666667pt;}
.w1_c00481{width:793.333333pt;}
.w0_c00481{width:793.626667pt;}
.x0_c00481{left:0.000000pt;}
.x2_c00481{left:113.440000pt;}
.x3_c00481{left:161.440000pt;}
.x1_c00481{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_19a916179860ced7e857e70a.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.093262;font-style:normal;font-weight:normal;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_52d87129462d21f445b8c6e9.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls11_c00482{letter-spacing:-0.360000px;}
.lsf_c00482{letter-spacing:-0.086400px;}
.ls10_c00482{letter-spacing:-0.043200px;}
.lsd_c00482{letter-spacing:-0.028800px;}
.lse_c00482{letter-spacing:-0.021600px;}
.lsc_c00482{letter-spacing:-0.007200px;}
.lsb_c00482{letter-spacing:0.000000px;}
.ls3_c00482{letter-spacing:0.007200px;}
.ls5_c00482{letter-spacing:0.014400px;}
.ls4_c00482{letter-spacing:0.021600px;}
.ls1_c00482{letter-spacing:0.028800px;}
.ls6_c00482{letter-spacing:0.036000px;}
.ls8_c00482{letter-spacing:0.043200px;}
.ls2_c00482{letter-spacing:0.050400px;}
.ls0_c00482{letter-spacing:0.057600px;}
.ls9_c00482{letter-spacing:0.064800px;}
.lsa_c00482{letter-spacing:0.072000px;}
.ls7_c00482{letter-spacing:0.079200px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00482{word-spacing:-18.028800px;}
.ws3a_c00482{word-spacing:-4.521600px;}
.ws3b_c00482{word-spacing:-4.327200px;}
.ws3c_c00482{word-spacing:-4.320000px;}
.ws3d_c00482{word-spacing:-1.562400px;}
.wsd_c00482{word-spacing:-1.461600px;}
.ws3e_c00482{word-spacing:-1.454400px;}
.wsc_c00482{word-spacing:-1.447200px;}
.ws15_c00482{word-spacing:-0.381600px;}
.ws1e_c00482{word-spacing:-0.374400px;}
.ws1c_c00482{word-spacing:-0.360000px;}
.ws1d_c00482{word-spacing:-0.338400px;}
.ws1b_c00482{word-spacing:-0.331200px;}
.ws39_c00482{word-spacing:-0.244800px;}
.ws41_c00482{word-spacing:-0.230400px;}
.ws38_c00482{word-spacing:-0.093600px;}
.ws19_c00482{word-spacing:-0.079200px;}
.ws33_c00482{word-spacing:-0.072000px;}
.ws20_c00482{word-spacing:-0.057600px;}
.ws1a_c00482{word-spacing:-0.050400px;}
.ws1f_c00482{word-spacing:-0.043200px;}
.ws4b_c00482{word-spacing:-0.021600px;}
.wse_c00482{word-spacing:-0.014400px;}
.ws9_c00482{word-spacing:-0.007200px;}
.ws1_c00482{word-spacing:0.000000px;}
.ws26_c00482{word-spacing:0.007200px;}
.ws2b_c00482{word-spacing:0.021600px;}
.ws36_c00482{word-spacing:0.316800px;}
.ws37_c00482{word-spacing:0.345600px;}
.ws17_c00482{word-spacing:0.964800px;}
.ws10_c00482{word-spacing:0.979200px;}
.ws16_c00482{word-spacing:1.065600px;}
.ws18_c00482{word-spacing:1.087200px;}
.wsf_c00482{word-spacing:1.166400px;}
.ws48_c00482{word-spacing:1.267200px;}
.ws47_c00482{word-spacing:1.310400px;}
.ws4e_c00482{word-spacing:1.771200px;}
.ws4d_c00482{word-spacing:2.059200px;}
.ws4c_c00482{word-spacing:2.152800px;}
.ws4f_c00482{word-spacing:2.160000px;}
.ws27_c00482{word-spacing:3.225600px;}
.ws28_c00482{word-spacing:3.319200px;}
.ws25_c00482{word-spacing:3.556800px;}
.ws24_c00482{word-spacing:3.578400px;}
.ws12_c00482{word-spacing:4.183200px;}
.ws11_c00482{word-spacing:4.240800px;}
.ws34_c00482{word-spacing:4.276800px;}
.ws35_c00482{word-spacing:4.327200px;}
.ws21_c00482{word-spacing:6.796800px;}
.ws22_c00482{word-spacing:6.811200px;}
.ws23_c00482{word-spacing:6.832800px;}
.ws4a_c00482{word-spacing:11.361600px;}
.ws49_c00482{word-spacing:11.469600px;}
.ws13_c00482{word-spacing:11.844000px;}
.ws14_c00482{word-spacing:11.858400px;}
.ws32_c00482{word-spacing:12.196800px;}
.ws31_c00482{word-spacing:12.391200px;}
.ws6_c00482{word-spacing:13.989600px;}
.ws8_c00482{word-spacing:14.011200px;}
.ws7_c00482{word-spacing:14.040000px;}
.ws46_c00482{word-spacing:15.782400px;}
.ws45_c00482{word-spacing:15.811200px;}
.wsa_c00482{word-spacing:16.056000px;}
.wsb_c00482{word-spacing:16.063200px;}
.ws2_c00482{word-spacing:16.077600px;}
.ws40_c00482{word-spacing:16.120800px;}
.ws3f_c00482{word-spacing:16.135200px;}
.ws3_c00482{word-spacing:16.164000px;}
.ws30_c00482{word-spacing:19.260000px;}
.ws2f_c00482{word-spacing:19.303200px;}
.ws29_c00482{word-spacing:19.576800px;}
.ws44_c00482{word-spacing:22.572000px;}
.ws42_c00482{word-spacing:22.701600px;}
.ws43_c00482{word-spacing:22.708800px;}
.ws5_c00482{word-spacing:22.867200px;}
.ws4_c00482{word-spacing:22.982400px;}
.ws2c_c00482{word-spacing:23.263200px;}
.ws2e_c00482{word-spacing:23.270400px;}
.ws2d_c00482{word-spacing:23.378400px;}
.ws2a_c00482{word-spacing:78.595200px;}
._0_c00482{margin-left:-1.080000px;}
._1_c00482{width:1.080000px;}
._2_c00482{width:19.440000px;}
.fc0_c00482{color:rgb(0,0,0);}
.fs0_c00482{font-size:72.000000px;}
.y0_c00482{bottom:0.000000px;}
.y2_c00482{bottom:46.830450px;}
.y1_c00482{bottom:67.530450px;}
.y31_c00482{bottom:145.470450px;}
.y30_c00482{bottom:166.170450px;}
.y2f_c00482{bottom:186.870450px;}
.y2e_c00482{bottom:207.570450px;}
.y2d_c00482{bottom:228.270450px;}
.y2c_c00482{bottom:248.970450px;}
.y2b_c00482{bottom:269.670450px;}
.y2a_c00482{bottom:290.370450px;}
.y29_c00482{bottom:311.070450px;}
.y28_c00482{bottom:331.770450px;}
.y27_c00482{bottom:352.470450px;}
.y26_c00482{bottom:373.170450px;}
.y25_c00482{bottom:393.780450px;}
.y24_c00482{bottom:414.480450px;}
.y23_c00482{bottom:435.180450px;}
.y22_c00482{bottom:455.880450px;}
.y21_c00482{bottom:476.580450px;}
.y20_c00482{bottom:497.280450px;}
.y1f_c00482{bottom:517.980450px;}
.y1e_c00482{bottom:538.680450px;}
.y1d_c00482{bottom:559.380450px;}
.y1c_c00482{bottom:580.080450px;}
.y1b_c00482{bottom:600.780450px;}
.y1a_c00482{bottom:621.480450px;}
.y19_c00482{bottom:642.180450px;}
.y18_c00482{bottom:662.880450px;}
.y17_c00482{bottom:683.580450px;}
.y16_c00482{bottom:704.280450px;}
.y15_c00482{bottom:724.980450px;}
.y14_c00482{bottom:745.680450px;}
.y13_c00482{bottom:766.380450px;}
.y12_c00482{bottom:787.080450px;}
.y11_c00482{bottom:807.780450px;}
.y10_c00482{bottom:828.480450px;}
.yf_c00482{bottom:849.180450px;}
.ye_c00482{bottom:869.880450px;}
.yd_c00482{bottom:890.580450px;}
.yc_c00482{bottom:911.280450px;}
.yb_c00482{bottom:931.980450px;}
.ya_c00482{bottom:952.680450px;}
.y9_c00482{bottom:973.380450px;}
.y8_c00482{bottom:994.080450px;}
.y7_c00482{bottom:1014.780450px;}
.y6_c00482{bottom:1035.480450px;}
.y5_c00482{bottom:1056.180450px;}
.y4_c00482{bottom:1076.880450px;}
.y3_c00482{bottom:1097.580450px;}
.h1_c00482{height:63.175781px;}
.h2_c00482{height:70.628906px;}
.h0_c00482{height:1263.000000px;}
.w1_c00482{width:892.500000px;}
.w0_c00482{width:892.830000px;}
.x0_c00482{left:0.000000px;}
.x2_c00482{left:170.100000px;}
.x3_c00482{left:224.100000px;}
.x1_c00482{left:738.360000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls11_c00482{letter-spacing:-0.320000pt;}
.lsf_c00482{letter-spacing:-0.076800pt;}
.ls10_c00482{letter-spacing:-0.038400pt;}
.lsd_c00482{letter-spacing:-0.025600pt;}
.lse_c00482{letter-spacing:-0.019200pt;}
.lsc_c00482{letter-spacing:-0.006400pt;}
.lsb_c00482{letter-spacing:0.000000pt;}
.ls3_c00482{letter-spacing:0.006400pt;}
.ls5_c00482{letter-spacing:0.012800pt;}
.ls4_c00482{letter-spacing:0.019200pt;}
.ls1_c00482{letter-spacing:0.025600pt;}
.ls6_c00482{letter-spacing:0.032000pt;}
.ls8_c00482{letter-spacing:0.038400pt;}
.ls2_c00482{letter-spacing:0.044800pt;}
.ls0_c00482{letter-spacing:0.051200pt;}
.ls9_c00482{letter-spacing:0.057600pt;}
.lsa_c00482{letter-spacing:0.064000pt;}
.ls7_c00482{letter-spacing:0.070400pt;}
.ws0_c00482{word-spacing:-16.025600pt;}
.ws3a_c00482{word-spacing:-4.019200pt;}
.ws3b_c00482{word-spacing:-3.846400pt;}
.ws3c_c00482{word-spacing:-3.840000pt;}
.ws3d_c00482{word-spacing:-1.388800pt;}
.wsd_c00482{word-spacing:-1.299200pt;}
.ws3e_c00482{word-spacing:-1.292800pt;}
.wsc_c00482{word-spacing:-1.286400pt;}
.ws15_c00482{word-spacing:-0.339200pt;}
.ws1e_c00482{word-spacing:-0.332800pt;}
.ws1c_c00482{word-spacing:-0.320000pt;}
.ws1d_c00482{word-spacing:-0.300800pt;}
.ws1b_c00482{word-spacing:-0.294400pt;}
.ws39_c00482{word-spacing:-0.217600pt;}
.ws41_c00482{word-spacing:-0.204800pt;}
.ws38_c00482{word-spacing:-0.083200pt;}
.ws19_c00482{word-spacing:-0.070400pt;}
.ws33_c00482{word-spacing:-0.064000pt;}
.ws20_c00482{word-spacing:-0.051200pt;}
.ws1a_c00482{word-spacing:-0.044800pt;}
.ws1f_c00482{word-spacing:-0.038400pt;}
.ws4b_c00482{word-spacing:-0.019200pt;}
.wse_c00482{word-spacing:-0.012800pt;}
.ws9_c00482{word-spacing:-0.006400pt;}
.ws1_c00482{word-spacing:0.000000pt;}
.ws26_c00482{word-spacing:0.006400pt;}
.ws2b_c00482{word-spacing:0.019200pt;}
.ws36_c00482{word-spacing:0.281600pt;}
.ws37_c00482{word-spacing:0.307200pt;}
.ws17_c00482{word-spacing:0.857600pt;}
.ws10_c00482{word-spacing:0.870400pt;}
.ws16_c00482{word-spacing:0.947200pt;}
.ws18_c00482{word-spacing:0.966400pt;}
.wsf_c00482{word-spacing:1.036800pt;}
.ws48_c00482{word-spacing:1.126400pt;}
.ws47_c00482{word-spacing:1.164800pt;}
.ws4e_c00482{word-spacing:1.574400pt;}
.ws4d_c00482{word-spacing:1.830400pt;}
.ws4c_c00482{word-spacing:1.913600pt;}
.ws4f_c00482{word-spacing:1.920000pt;}
.ws27_c00482{word-spacing:2.867200pt;}
.ws28_c00482{word-spacing:2.950400pt;}
.ws25_c00482{word-spacing:3.161600pt;}
.ws24_c00482{word-spacing:3.180800pt;}
.ws12_c00482{word-spacing:3.718400pt;}
.ws11_c00482{word-spacing:3.769600pt;}
.ws34_c00482{word-spacing:3.801600pt;}
.ws35_c00482{word-spacing:3.846400pt;}
.ws21_c00482{word-spacing:6.041600pt;}
.ws22_c00482{word-spacing:6.054400pt;}
.ws23_c00482{word-spacing:6.073600pt;}
.ws4a_c00482{word-spacing:10.099200pt;}
.ws49_c00482{word-spacing:10.195200pt;}
.ws13_c00482{word-spacing:10.528000pt;}
.ws14_c00482{word-spacing:10.540800pt;}
.ws32_c00482{word-spacing:10.841600pt;}
.ws31_c00482{word-spacing:11.014400pt;}
.ws6_c00482{word-spacing:12.435200pt;}
.ws8_c00482{word-spacing:12.454400pt;}
.ws7_c00482{word-spacing:12.480000pt;}
.ws46_c00482{word-spacing:14.028800pt;}
.ws45_c00482{word-spacing:14.054400pt;}
.wsa_c00482{word-spacing:14.272000pt;}
.wsb_c00482{word-spacing:14.278400pt;}
.ws2_c00482{word-spacing:14.291200pt;}
.ws40_c00482{word-spacing:14.329600pt;}
.ws3f_c00482{word-spacing:14.342400pt;}
.ws3_c00482{word-spacing:14.368000pt;}
.ws30_c00482{word-spacing:17.120000pt;}
.ws2f_c00482{word-spacing:17.158400pt;}
.ws29_c00482{word-spacing:17.401600pt;}
.ws44_c00482{word-spacing:20.064000pt;}
.ws42_c00482{word-spacing:20.179200pt;}
.ws43_c00482{word-spacing:20.185600pt;}
.ws5_c00482{word-spacing:20.326400pt;}
.ws4_c00482{word-spacing:20.428800pt;}
.ws2c_c00482{word-spacing:20.678400pt;}
.ws2e_c00482{word-spacing:20.684800pt;}
.ws2d_c00482{word-spacing:20.780800pt;}
.ws2a_c00482{word-spacing:69.862400pt;}
._0_c00482{margin-left:-0.960000pt;}
._1_c00482{width:0.960000pt;}
._2_c00482{width:17.280000pt;}
.fs0_c00482{font-size:64.000000pt;}
.y0_c00482{bottom:0.000000pt;}
.y2_c00482{bottom:41.627067pt;}
.y1_c00482{bottom:60.027067pt;}
.y31_c00482{bottom:129.307067pt;}
.y30_c00482{bottom:147.707067pt;}
.y2f_c00482{bottom:166.107067pt;}
.y2e_c00482{bottom:184.507067pt;}
.y2d_c00482{bottom:202.907067pt;}
.y2c_c00482{bottom:221.307067pt;}
.y2b_c00482{bottom:239.707067pt;}
.y2a_c00482{bottom:258.107067pt;}
.y29_c00482{bottom:276.507067pt;}
.y28_c00482{bottom:294.907067pt;}
.y27_c00482{bottom:313.307067pt;}
.y26_c00482{bottom:331.707067pt;}
.y25_c00482{bottom:350.027067pt;}
.y24_c00482{bottom:368.427067pt;}
.y23_c00482{bottom:386.827067pt;}
.y22_c00482{bottom:405.227067pt;}
.y21_c00482{bottom:423.627067pt;}
.y20_c00482{bottom:442.027067pt;}
.y1f_c00482{bottom:460.427067pt;}
.y1e_c00482{bottom:478.827067pt;}
.y1d_c00482{bottom:497.227067pt;}
.y1c_c00482{bottom:515.627067pt;}
.y1b_c00482{bottom:534.027067pt;}
.y1a_c00482{bottom:552.427067pt;}
.y19_c00482{bottom:570.827067pt;}
.y18_c00482{bottom:589.227067pt;}
.y17_c00482{bottom:607.627067pt;}
.y16_c00482{bottom:626.027067pt;}
.y15_c00482{bottom:644.427067pt;}
.y14_c00482{bottom:662.827067pt;}
.y13_c00482{bottom:681.227067pt;}
.y12_c00482{bottom:699.627067pt;}
.y11_c00482{bottom:718.027067pt;}
.y10_c00482{bottom:736.427067pt;}
.yf_c00482{bottom:754.827067pt;}
.ye_c00482{bottom:773.227067pt;}
.yd_c00482{bottom:791.627067pt;}
.yc_c00482{bottom:810.027067pt;}
.yb_c00482{bottom:828.427067pt;}
.ya_c00482{bottom:846.827067pt;}
.y9_c00482{bottom:865.227067pt;}
.y8_c00482{bottom:883.627067pt;}
.y7_c00482{bottom:902.027067pt;}
.y6_c00482{bottom:920.427067pt;}
.y5_c00482{bottom:938.827067pt;}
.y4_c00482{bottom:957.227067pt;}
.y3_c00482{bottom:975.627067pt;}
.h1_c00482{height:56.156250pt;}
.h2_c00482{height:62.781250pt;}
.h0_c00482{height:1122.666667pt;}
.w1_c00482{width:793.333333pt;}
.w0_c00482{width:793.626667pt;}
.x0_c00482{left:0.000000pt;}
.x2_c00482{left:151.200000pt;}
.x3_c00482{left:199.200000pt;}
.x1_c00482{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_04c9e21bded79bb0829a7dc4.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.093262;font-style:normal;font-weight:normal;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_40f654aa53dbc4c5010b627a.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00483{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls13_c00483{letter-spacing:-0.288000px;}
.lsd_c00483{letter-spacing:-0.093600px;}
.ls10_c00483{letter-spacing:-0.057600px;}
.lsc_c00483{letter-spacing:-0.043200px;}
.lse_c00483{letter-spacing:-0.036000px;}
.lsf_c00483{letter-spacing:-0.028800px;}
.ls12_c00483{letter-spacing:-0.021600px;}
.lsb_c00483{letter-spacing:-0.014400px;}
.ls11_c00483{letter-spacing:-0.007200px;}
.lsa_c00483{letter-spacing:0.000000px;}
.ls6_c00483{letter-spacing:0.007200px;}
.ls4_c00483{letter-spacing:0.014400px;}
.ls3_c00483{letter-spacing:0.021600px;}
.ls8_c00483{letter-spacing:0.028800px;}
.ls5_c00483{letter-spacing:0.036000px;}
.ls0_c00483{letter-spacing:0.043200px;}
.ls9_c00483{letter-spacing:0.050400px;}
.ls2_c00483{letter-spacing:0.057600px;}
.ls7_c00483{letter-spacing:0.064800px;}
.ls1_c00483{letter-spacing:0.100800px;}
.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;}
}
.ws4_c00483{word-spacing:-18.064800px;}
.ws3_c00483{word-spacing:-18.028800px;}
.ws1_c00483{word-spacing:-18.021600px;}
.ws0_c00483{word-spacing:-18.007200px;}
.ws2_c00483{word-spacing:-17.712000px;}
.ws4b_c00483{word-spacing:-4.500000px;}
.ws4a_c00483{word-spacing:-4.464000px;}
.ws49_c00483{word-spacing:-4.356000px;}
.ws41_c00483{word-spacing:-2.282400px;}
.ws42_c00483{word-spacing:-2.275200px;}
.ws40_c00483{word-spacing:-2.167200px;}
.ws8_c00483{word-spacing:-0.360000px;}
.ws2e_c00483{word-spacing:-0.194400px;}
.ws3c_c00483{word-spacing:-0.187200px;}
.ws46_c00483{word-spacing:-0.122400px;}
.ws4c_c00483{word-spacing:-0.115200px;}
.ws9_c00483{word-spacing:-0.100800px;}
.ws14_c00483{word-spacing:-0.093600px;}
.wsd_c00483{word-spacing:-0.057600px;}
.ws43_c00483{word-spacing:-0.043200px;}
.ws27_c00483{word-spacing:-0.028800px;}
.ws37_c00483{word-spacing:-0.014400px;}
.ws26_c00483{word-spacing:-0.007200px;}
.ws5_c00483{word-spacing:0.000000px;}
.ws1a_c00483{word-spacing:0.007200px;}
.ws2a_c00483{word-spacing:0.014400px;}
.ws20_c00483{word-spacing:0.021600px;}
.ws29_c00483{word-spacing:0.302400px;}
.ws28_c00483{word-spacing:0.316800px;}
.ws21_c00483{word-spacing:0.698400px;}
.ws22_c00483{word-spacing:0.741600px;}
.ws25_c00483{word-spacing:1.044000px;}
.ws24_c00483{word-spacing:1.058400px;}
.ws10_c00483{word-spacing:1.742400px;}
.wsf_c00483{word-spacing:1.879200px;}
.wse_c00483{word-spacing:2.080800px;}
.ws16_c00483{word-spacing:2.476800px;}
.ws15_c00483{word-spacing:2.556000px;}
.ws3b_c00483{word-spacing:3.780000px;}
.ws3a_c00483{word-spacing:3.996000px;}
.ws48_c00483{word-spacing:5.407200px;}
.ws47_c00483{word-spacing:5.745600px;}
.ws12_c00483{word-spacing:6.213600px;}
.ws11_c00483{word-spacing:6.465600px;}
.ws2c_c00483{word-spacing:7.812000px;}
.ws2b_c00483{word-spacing:7.920000px;}
.ws2d_c00483{word-spacing:7.934400px;}
.ws36_c00483{word-spacing:8.229600px;}
.ws35_c00483{word-spacing:8.265600px;}
.ws3f_c00483{word-spacing:9.979200px;}
.ws3e_c00483{word-spacing:10.022400px;}
.ws1f_c00483{word-spacing:10.036800px;}
.ws1e_c00483{word-spacing:10.072800px;}
.ws3d_c00483{word-spacing:10.116000px;}
.ws18_c00483{word-spacing:15.688800px;}
.ws19_c00483{word-spacing:15.897600px;}
.ws13_c00483{word-spacing:18.324000px;}
.ws45_c00483{word-spacing:19.022400px;}
.ws44_c00483{word-spacing:19.058400px;}
.ws31_c00483{word-spacing:19.641600px;}
.ws30_c00483{word-spacing:19.742400px;}
.ws2f_c00483{word-spacing:19.792800px;}
.ws38_c00483{word-spacing:21.578400px;}
.ws39_c00483{word-spacing:21.585600px;}
.ws17_c00483{word-spacing:23.601600px;}
.ws34_c00483{word-spacing:26.985600px;}
.ws33_c00483{word-spacing:27.223200px;}
.ws32_c00483{word-spacing:27.345600px;}
.ws1d_c00483{word-spacing:27.619200px;}
.ws1b_c00483{word-spacing:27.691200px;}
.ws1c_c00483{word-spacing:27.748800px;}
.wsa_c00483{word-spacing:28.756800px;}
.wsb_c00483{word-spacing:28.814400px;}
.wsc_c00483{word-spacing:28.843200px;}
.ws6_c00483{word-spacing:29.116800px;}
.ws7_c00483{word-spacing:29.131200px;}
.ws23_c00483{word-spacing:359.280000px;}
._0_c00483{margin-left:-1.022400px;}
.fc0_c00483{color:rgb(0,0,0);}
.fs0_c00483{font-size:72.000000px;}
.y0_c00483{bottom:0.000000px;}
.y2_c00483{bottom:46.830450px;}
.y1_c00483{bottom:67.530450px;}
.y30_c00483{bottom:166.170450px;}
.y2f_c00483{bottom:186.870450px;}
.y2e_c00483{bottom:207.570450px;}
.y2d_c00483{bottom:228.270450px;}
.y2c_c00483{bottom:248.970450px;}
.y2b_c00483{bottom:269.670450px;}
.y2a_c00483{bottom:290.370450px;}
.y29_c00483{bottom:311.070450px;}
.y28_c00483{bottom:331.770450px;}
.y27_c00483{bottom:352.470450px;}
.y26_c00483{bottom:373.170450px;}
.y25_c00483{bottom:393.780450px;}
.y24_c00483{bottom:414.480450px;}
.y23_c00483{bottom:435.180450px;}
.y22_c00483{bottom:455.880450px;}
.y21_c00483{bottom:476.580450px;}
.y20_c00483{bottom:497.280450px;}
.y1f_c00483{bottom:517.980450px;}
.y1e_c00483{bottom:538.680450px;}
.y1d_c00483{bottom:559.380450px;}
.y1c_c00483{bottom:580.080450px;}
.y1b_c00483{bottom:600.780450px;}
.y1a_c00483{bottom:621.480450px;}
.y19_c00483{bottom:642.180450px;}
.y18_c00483{bottom:662.880450px;}
.y17_c00483{bottom:683.580450px;}
.y16_c00483{bottom:704.280450px;}
.y15_c00483{bottom:724.980450px;}
.y14_c00483{bottom:745.680450px;}
.y13_c00483{bottom:766.380450px;}
.y12_c00483{bottom:787.080450px;}
.y11_c00483{bottom:807.780450px;}
.y10_c00483{bottom:828.480450px;}
.yf_c00483{bottom:849.180450px;}
.ye_c00483{bottom:869.880450px;}
.yd_c00483{bottom:890.580450px;}
.yc_c00483{bottom:911.280450px;}
.yb_c00483{bottom:931.980450px;}
.ya_c00483{bottom:952.680450px;}
.y9_c00483{bottom:973.290450px;}
.y8_c00483{bottom:994.080450px;}
.y7_c00483{bottom:1014.780450px;}
.y6_c00483{bottom:1035.480450px;}
.y5_c00483{bottom:1056.180450px;}
.y4_c00483{bottom:1076.880450px;}
.y3_c00483{bottom:1097.580450px;}
.h1_c00483{height:63.175781px;}
.h2_c00483{height:70.628906px;}
.h0_c00483{height:1263.000000px;}
.w1_c00483{width:892.500000px;}
.w0_c00483{width:892.830000px;}
.x0_c00483{left:0.000000px;}
.x2_c00483{left:127.620000px;}
.x3_c00483{left:181.620000px;}
.x1_c00483{left:695.880000px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls13_c00483{letter-spacing:-0.256000pt;}
.lsd_c00483{letter-spacing:-0.083200pt;}
.ls10_c00483{letter-spacing:-0.051200pt;}
.lsc_c00483{letter-spacing:-0.038400pt;}
.lse_c00483{letter-spacing:-0.032000pt;}
.lsf_c00483{letter-spacing:-0.025600pt;}
.ls12_c00483{letter-spacing:-0.019200pt;}
.lsb_c00483{letter-spacing:-0.012800pt;}
.ls11_c00483{letter-spacing:-0.006400pt;}
.lsa_c00483{letter-spacing:0.000000pt;}
.ls6_c00483{letter-spacing:0.006400pt;}
.ls4_c00483{letter-spacing:0.012800pt;}
.ls3_c00483{letter-spacing:0.019200pt;}
.ls8_c00483{letter-spacing:0.025600pt;}
.ls5_c00483{letter-spacing:0.032000pt;}
.ls0_c00483{letter-spacing:0.038400pt;}
.ls9_c00483{letter-spacing:0.044800pt;}
.ls2_c00483{letter-spacing:0.051200pt;}
.ls7_c00483{letter-spacing:0.057600pt;}
.ls1_c00483{letter-spacing:0.089600pt;}
.ws4_c00483{word-spacing:-16.057600pt;}
.ws3_c00483{word-spacing:-16.025600pt;}
.ws1_c00483{word-spacing:-16.019200pt;}
.ws0_c00483{word-spacing:-16.006400pt;}
.ws2_c00483{word-spacing:-15.744000pt;}
.ws4b_c00483{word-spacing:-4.000000pt;}
.ws4a_c00483{word-spacing:-3.968000pt;}
.ws49_c00483{word-spacing:-3.872000pt;}
.ws41_c00483{word-spacing:-2.028800pt;}
.ws42_c00483{word-spacing:-2.022400pt;}
.ws40_c00483{word-spacing:-1.926400pt;}
.ws8_c00483{word-spacing:-0.320000pt;}
.ws2e_c00483{word-spacing:-0.172800pt;}
.ws3c_c00483{word-spacing:-0.166400pt;}
.ws46_c00483{word-spacing:-0.108800pt;}
.ws4c_c00483{word-spacing:-0.102400pt;}
.ws9_c00483{word-spacing:-0.089600pt;}
.ws14_c00483{word-spacing:-0.083200pt;}
.wsd_c00483{word-spacing:-0.051200pt;}
.ws43_c00483{word-spacing:-0.038400pt;}
.ws27_c00483{word-spacing:-0.025600pt;}
.ws37_c00483{word-spacing:-0.012800pt;}
.ws26_c00483{word-spacing:-0.006400pt;}
.ws5_c00483{word-spacing:0.000000pt;}
.ws1a_c00483{word-spacing:0.006400pt;}
.ws2a_c00483{word-spacing:0.012800pt;}
.ws20_c00483{word-spacing:0.019200pt;}
.ws29_c00483{word-spacing:0.268800pt;}
.ws28_c00483{word-spacing:0.281600pt;}
.ws21_c00483{word-spacing:0.620800pt;}
.ws22_c00483{word-spacing:0.659200pt;}
.ws25_c00483{word-spacing:0.928000pt;}
.ws24_c00483{word-spacing:0.940800pt;}
.ws10_c00483{word-spacing:1.548800pt;}
.wsf_c00483{word-spacing:1.670400pt;}
.wse_c00483{word-spacing:1.849600pt;}
.ws16_c00483{word-spacing:2.201600pt;}
.ws15_c00483{word-spacing:2.272000pt;}
.ws3b_c00483{word-spacing:3.360000pt;}
.ws3a_c00483{word-spacing:3.552000pt;}
.ws48_c00483{word-spacing:4.806400pt;}
.ws47_c00483{word-spacing:5.107200pt;}
.ws12_c00483{word-spacing:5.523200pt;}
.ws11_c00483{word-spacing:5.747200pt;}
.ws2c_c00483{word-spacing:6.944000pt;}
.ws2b_c00483{word-spacing:7.040000pt;}
.ws2d_c00483{word-spacing:7.052800pt;}
.ws36_c00483{word-spacing:7.315200pt;}
.ws35_c00483{word-spacing:7.347200pt;}
.ws3f_c00483{word-spacing:8.870400pt;}
.ws3e_c00483{word-spacing:8.908800pt;}
.ws1f_c00483{word-spacing:8.921600pt;}
.ws1e_c00483{word-spacing:8.953600pt;}
.ws3d_c00483{word-spacing:8.992000pt;}
.ws18_c00483{word-spacing:13.945600pt;}
.ws19_c00483{word-spacing:14.131200pt;}
.ws13_c00483{word-spacing:16.288000pt;}
.ws45_c00483{word-spacing:16.908800pt;}
.ws44_c00483{word-spacing:16.940800pt;}
.ws31_c00483{word-spacing:17.459200pt;}
.ws30_c00483{word-spacing:17.548800pt;}
.ws2f_c00483{word-spacing:17.593600pt;}
.ws38_c00483{word-spacing:19.180800pt;}
.ws39_c00483{word-spacing:19.187200pt;}
.ws17_c00483{word-spacing:20.979200pt;}
.ws34_c00483{word-spacing:23.987200pt;}
.ws33_c00483{word-spacing:24.198400pt;}
.ws32_c00483{word-spacing:24.307200pt;}
.ws1d_c00483{word-spacing:24.550400pt;}
.ws1b_c00483{word-spacing:24.614400pt;}
.ws1c_c00483{word-spacing:24.665600pt;}
.wsa_c00483{word-spacing:25.561600pt;}
.wsb_c00483{word-spacing:25.612800pt;}
.wsc_c00483{word-spacing:25.638400pt;}
.ws6_c00483{word-spacing:25.881600pt;}
.ws7_c00483{word-spacing:25.894400pt;}
.ws23_c00483{word-spacing:319.360000pt;}
._0_c00483{margin-left:-0.908800pt;}
.fs0_c00483{font-size:64.000000pt;}
.y0_c00483{bottom:0.000000pt;}
.y2_c00483{bottom:41.627067pt;}
.y1_c00483{bottom:60.027067pt;}
.y30_c00483{bottom:147.707067pt;}
.y2f_c00483{bottom:166.107067pt;}
.y2e_c00483{bottom:184.507067pt;}
.y2d_c00483{bottom:202.907067pt;}
.y2c_c00483{bottom:221.307067pt;}
.y2b_c00483{bottom:239.707067pt;}
.y2a_c00483{bottom:258.107067pt;}
.y29_c00483{bottom:276.507067pt;}
.y28_c00483{bottom:294.907067pt;}
.y27_c00483{bottom:313.307067pt;}
.y26_c00483{bottom:331.707067pt;}
.y25_c00483{bottom:350.027067pt;}
.y24_c00483{bottom:368.427067pt;}
.y23_c00483{bottom:386.827067pt;}
.y22_c00483{bottom:405.227067pt;}
.y21_c00483{bottom:423.627067pt;}
.y20_c00483{bottom:442.027067pt;}
.y1f_c00483{bottom:460.427067pt;}
.y1e_c00483{bottom:478.827067pt;}
.y1d_c00483{bottom:497.227067pt;}
.y1c_c00483{bottom:515.627067pt;}
.y1b_c00483{bottom:534.027067pt;}
.y1a_c00483{bottom:552.427067pt;}
.y19_c00483{bottom:570.827067pt;}
.y18_c00483{bottom:589.227067pt;}
.y17_c00483{bottom:607.627067pt;}
.y16_c00483{bottom:626.027067pt;}
.y15_c00483{bottom:644.427067pt;}
.y14_c00483{bottom:662.827067pt;}
.y13_c00483{bottom:681.227067pt;}
.y12_c00483{bottom:699.627067pt;}
.y11_c00483{bottom:718.027067pt;}
.y10_c00483{bottom:736.427067pt;}
.yf_c00483{bottom:754.827067pt;}
.ye_c00483{bottom:773.227067pt;}
.yd_c00483{bottom:791.627067pt;}
.yc_c00483{bottom:810.027067pt;}
.yb_c00483{bottom:828.427067pt;}
.ya_c00483{bottom:846.827067pt;}
.y9_c00483{bottom:865.147067pt;}
.y8_c00483{bottom:883.627067pt;}
.y7_c00483{bottom:902.027067pt;}
.y6_c00483{bottom:920.427067pt;}
.y5_c00483{bottom:938.827067pt;}
.y4_c00483{bottom:957.227067pt;}
.y3_c00483{bottom:975.627067pt;}
.h1_c00483{height:56.156250pt;}
.h2_c00483{height:62.781250pt;}
.h0_c00483{height:1122.666667pt;}
.w1_c00483{width:793.333333pt;}
.w0_c00483{width:793.626667pt;}
.x0_c00483{left:0.000000pt;}
.x2_c00483{left:113.440000pt;}
.x3_c00483{left:161.440000pt;}
.x1_c00483{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7ec4a97c37aed4e0ae1a147c.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.093262;font-style:normal;font-weight:normal;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_32b9efab64af64656a1fae15.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00484{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls10_c00484{letter-spacing:-0.237600px;}
.lsc_c00484{letter-spacing:-0.064800px;}
.lsd_c00484{letter-spacing:-0.050400px;}
.lse_c00484{letter-spacing:-0.036000px;}
.ls11_c00484{letter-spacing:-0.021600px;}
.lsf_c00484{letter-spacing:-0.014400px;}
.ls12_c00484{letter-spacing:-0.007200px;}
.lsb_c00484{letter-spacing:0.000000px;}
.ls6_c00484{letter-spacing:0.007200px;}
.ls5_c00484{letter-spacing:0.014400px;}
.ls3_c00484{letter-spacing:0.021600px;}
.ls9_c00484{letter-spacing:0.028800px;}
.ls2_c00484{letter-spacing:0.036000px;}
.ls7_c00484{letter-spacing:0.043200px;}
.ls0_c00484{letter-spacing:0.050400px;}
.ls4_c00484{letter-spacing:0.064800px;}
.ls8_c00484{letter-spacing:0.072000px;}
.lsa_c00484{letter-spacing:0.093600px;}
.ls1_c00484{letter-spacing:0.165600px;}
.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:-18.036000px;}
.ws2_c00484{word-spacing:-18.021600px;}
.ws0_c00484{word-spacing:-17.762400px;}
.ws1e_c00484{word-spacing:-2.894400px;}
.ws25_c00484{word-spacing:-2.592000px;}
.ws26_c00484{word-spacing:-2.556000px;}
.ws27_c00484{word-spacing:-2.498400px;}
.ws30_c00484{word-spacing:-0.381600px;}
.ws45_c00484{word-spacing:-0.374400px;}
.ws15_c00484{word-spacing:-0.360000px;}
.ws40_c00484{word-spacing:-0.244800px;}
.ws2a_c00484{word-spacing:-0.230400px;}
.ws24_c00484{word-spacing:-0.194400px;}
.ws49_c00484{word-spacing:-0.129600px;}
.ws38_c00484{word-spacing:-0.122400px;}
.ws18_c00484{word-spacing:-0.115200px;}
.ws34_c00484{word-spacing:-0.093600px;}
.ws48_c00484{word-spacing:-0.072000px;}
.wsd_c00484{word-spacing:-0.064800px;}
.ws10_c00484{word-spacing:-0.050400px;}
.ws8_c00484{word-spacing:-0.036000px;}
.ws9_c00484{word-spacing:-0.028800px;}
.wse_c00484{word-spacing:-0.021600px;}
.wsf_c00484{word-spacing:-0.014400px;}
.ws16_c00484{word-spacing:-0.007200px;}
.ws3_c00484{word-spacing:0.000000px;}
.ws1b_c00484{word-spacing:0.007200px;}
.ws19_c00484{word-spacing:0.014400px;}
.ws1a_c00484{word-spacing:0.021600px;}
.ws14_c00484{word-spacing:0.115200px;}
.ws17_c00484{word-spacing:0.165600px;}
.ws5_c00484{word-spacing:1.058400px;}
.ws4_c00484{word-spacing:1.101600px;}
.ws42_c00484{word-spacing:1.252800px;}
.ws43_c00484{word-spacing:1.375200px;}
.ws41_c00484{word-spacing:1.425600px;}
.ws13_c00484{word-spacing:2.354400px;}
.ws11_c00484{word-spacing:2.390400px;}
.ws32_c00484{word-spacing:2.433600px;}
.ws31_c00484{word-spacing:2.512800px;}
.ws33_c00484{word-spacing:2.520000px;}
.ws12_c00484{word-spacing:2.556000px;}
.ws1f_c00484{word-spacing:5.752800px;}
.ws39_c00484{word-spacing:5.760000px;}
.wsa_c00484{word-spacing:5.918400px;}
.wsc_c00484{word-spacing:6.098400px;}
.wsb_c00484{word-spacing:6.120000px;}
.ws20_c00484{word-spacing:7.430400px;}
.ws21_c00484{word-spacing:7.488000px;}
.ws28_c00484{word-spacing:9.144000px;}
.ws29_c00484{word-spacing:9.230400px;}
.ws23_c00484{word-spacing:9.676800px;}
.ws22_c00484{word-spacing:9.741600px;}
.ws1c_c00484{word-spacing:10.418400px;}
.ws1d_c00484{word-spacing:10.447200px;}
.ws3b_c00484{word-spacing:11.505600px;}
.ws3c_c00484{word-spacing:11.534400px;}
.ws3a_c00484{word-spacing:11.656800px;}
.ws36_c00484{word-spacing:12.218400px;}
.ws37_c00484{word-spacing:12.232800px;}
.ws35_c00484{word-spacing:12.247200px;}
.ws2c_c00484{word-spacing:12.456000px;}
.ws2b_c00484{word-spacing:12.506400px;}
.ws3e_c00484{word-spacing:12.571200px;}
.ws2d_c00484{word-spacing:12.614400px;}
.ws3d_c00484{word-spacing:12.916800px;}
.ws3f_c00484{word-spacing:12.974400px;}
.ws7_c00484{word-spacing:15.314400px;}
.ws6_c00484{word-spacing:15.544800px;}
.ws46_c00484{word-spacing:16.113600px;}
.ws47_c00484{word-spacing:16.171200px;}
.ws44_c00484{word-spacing:20.851200px;}
.ws2f_c00484{word-spacing:22.168800px;}
.ws2e_c00484{word-spacing:22.327200px;}
._0_c00484{margin-left:-1.008000px;}
._1_c00484{width:1.224000px;}
.fc0_c00484{color:rgb(0,0,0);}
.fs0_c00484{font-size:72.000000px;}
.y0_c00484{bottom:0.000000px;}
.y2_c00484{bottom:46.830450px;}
.y1_c00484{bottom:67.530450px;}
.y31_c00484{bottom:145.470450px;}
.y30_c00484{bottom:166.170450px;}
.y2f_c00484{bottom:186.870450px;}
.y2e_c00484{bottom:207.570450px;}
.y2d_c00484{bottom:228.270450px;}
.y2c_c00484{bottom:248.970450px;}
.y2b_c00484{bottom:269.670450px;}
.y2a_c00484{bottom:290.370450px;}
.y29_c00484{bottom:311.070450px;}
.y28_c00484{bottom:331.770450px;}
.y27_c00484{bottom:352.470450px;}
.y26_c00484{bottom:373.170450px;}
.y25_c00484{bottom:393.780450px;}
.y24_c00484{bottom:414.480450px;}
.y23_c00484{bottom:435.180450px;}
.y22_c00484{bottom:455.880450px;}
.y21_c00484{bottom:476.580450px;}
.y20_c00484{bottom:497.280450px;}
.y1f_c00484{bottom:517.980450px;}
.y1e_c00484{bottom:538.590450px;}
.y1d_c00484{bottom:559.380450px;}
.y1c_c00484{bottom:580.080450px;}
.y1b_c00484{bottom:600.780450px;}
.y1a_c00484{bottom:621.480450px;}
.y19_c00484{bottom:642.180450px;}
.y18_c00484{bottom:662.880450px;}
.y17_c00484{bottom:683.580450px;}
.y16_c00484{bottom:704.280450px;}
.y15_c00484{bottom:724.980450px;}
.y14_c00484{bottom:745.680450px;}
.y13_c00484{bottom:766.380450px;}
.y12_c00484{bottom:787.080450px;}
.y11_c00484{bottom:807.780450px;}
.y10_c00484{bottom:828.480450px;}
.yf_c00484{bottom:849.180450px;}
.ye_c00484{bottom:869.790450px;}
.yd_c00484{bottom:890.580450px;}
.yc_c00484{bottom:911.280450px;}
.yb_c00484{bottom:931.980450px;}
.ya_c00484{bottom:952.680450px;}
.y9_c00484{bottom:973.380450px;}
.y8_c00484{bottom:994.080450px;}
.y7_c00484{bottom:1014.780450px;}
.y6_c00484{bottom:1035.480450px;}
.y5_c00484{bottom:1056.180450px;}
.y4_c00484{bottom:1076.880450px;}
.y3_c00484{bottom:1097.580450px;}
.h1_c00484{height:63.175781px;}
.h2_c00484{height:70.628906px;}
.h0_c00484{height:1263.000000px;}
.w1_c00484{width:892.500000px;}
.w0_c00484{width:892.830000px;}
.x0_c00484{left:0.000000px;}
.x2_c00484{left:170.100000px;}
.x3_c00484{left:224.100000px;}
.x1_c00484{left:738.360000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls10_c00484{letter-spacing:-0.211200pt;}
.lsc_c00484{letter-spacing:-0.057600pt;}
.lsd_c00484{letter-spacing:-0.044800pt;}
.lse_c00484{letter-spacing:-0.032000pt;}
.ls11_c00484{letter-spacing:-0.019200pt;}
.lsf_c00484{letter-spacing:-0.012800pt;}
.ls12_c00484{letter-spacing:-0.006400pt;}
.lsb_c00484{letter-spacing:0.000000pt;}
.ls6_c00484{letter-spacing:0.006400pt;}
.ls5_c00484{letter-spacing:0.012800pt;}
.ls3_c00484{letter-spacing:0.019200pt;}
.ls9_c00484{letter-spacing:0.025600pt;}
.ls2_c00484{letter-spacing:0.032000pt;}
.ls7_c00484{letter-spacing:0.038400pt;}
.ls0_c00484{letter-spacing:0.044800pt;}
.ls4_c00484{letter-spacing:0.057600pt;}
.ls8_c00484{letter-spacing:0.064000pt;}
.lsa_c00484{letter-spacing:0.083200pt;}
.ls1_c00484{letter-spacing:0.147200pt;}
.ws1_c00484{word-spacing:-16.032000pt;}
.ws2_c00484{word-spacing:-16.019200pt;}
.ws0_c00484{word-spacing:-15.788800pt;}
.ws1e_c00484{word-spacing:-2.572800pt;}
.ws25_c00484{word-spacing:-2.304000pt;}
.ws26_c00484{word-spacing:-2.272000pt;}
.ws27_c00484{word-spacing:-2.220800pt;}
.ws30_c00484{word-spacing:-0.339200pt;}
.ws45_c00484{word-spacing:-0.332800pt;}
.ws15_c00484{word-spacing:-0.320000pt;}
.ws40_c00484{word-spacing:-0.217600pt;}
.ws2a_c00484{word-spacing:-0.204800pt;}
.ws24_c00484{word-spacing:-0.172800pt;}
.ws49_c00484{word-spacing:-0.115200pt;}
.ws38_c00484{word-spacing:-0.108800pt;}
.ws18_c00484{word-spacing:-0.102400pt;}
.ws34_c00484{word-spacing:-0.083200pt;}
.ws48_c00484{word-spacing:-0.064000pt;}
.wsd_c00484{word-spacing:-0.057600pt;}
.ws10_c00484{word-spacing:-0.044800pt;}
.ws8_c00484{word-spacing:-0.032000pt;}
.ws9_c00484{word-spacing:-0.025600pt;}
.wse_c00484{word-spacing:-0.019200pt;}
.wsf_c00484{word-spacing:-0.012800pt;}
.ws16_c00484{word-spacing:-0.006400pt;}
.ws3_c00484{word-spacing:0.000000pt;}
.ws1b_c00484{word-spacing:0.006400pt;}
.ws19_c00484{word-spacing:0.012800pt;}
.ws1a_c00484{word-spacing:0.019200pt;}
.ws14_c00484{word-spacing:0.102400pt;}
.ws17_c00484{word-spacing:0.147200pt;}
.ws5_c00484{word-spacing:0.940800pt;}
.ws4_c00484{word-spacing:0.979200pt;}
.ws42_c00484{word-spacing:1.113600pt;}
.ws43_c00484{word-spacing:1.222400pt;}
.ws41_c00484{word-spacing:1.267200pt;}
.ws13_c00484{word-spacing:2.092800pt;}
.ws11_c00484{word-spacing:2.124800pt;}
.ws32_c00484{word-spacing:2.163200pt;}
.ws31_c00484{word-spacing:2.233600pt;}
.ws33_c00484{word-spacing:2.240000pt;}
.ws12_c00484{word-spacing:2.272000pt;}
.ws1f_c00484{word-spacing:5.113600pt;}
.ws39_c00484{word-spacing:5.120000pt;}
.wsa_c00484{word-spacing:5.260800pt;}
.wsc_c00484{word-spacing:5.420800pt;}
.wsb_c00484{word-spacing:5.440000pt;}
.ws20_c00484{word-spacing:6.604800pt;}
.ws21_c00484{word-spacing:6.656000pt;}
.ws28_c00484{word-spacing:8.128000pt;}
.ws29_c00484{word-spacing:8.204800pt;}
.ws23_c00484{word-spacing:8.601600pt;}
.ws22_c00484{word-spacing:8.659200pt;}
.ws1c_c00484{word-spacing:9.260800pt;}
.ws1d_c00484{word-spacing:9.286400pt;}
.ws3b_c00484{word-spacing:10.227200pt;}
.ws3c_c00484{word-spacing:10.252800pt;}
.ws3a_c00484{word-spacing:10.361600pt;}
.ws36_c00484{word-spacing:10.860800pt;}
.ws37_c00484{word-spacing:10.873600pt;}
.ws35_c00484{word-spacing:10.886400pt;}
.ws2c_c00484{word-spacing:11.072000pt;}
.ws2b_c00484{word-spacing:11.116800pt;}
.ws3e_c00484{word-spacing:11.174400pt;}
.ws2d_c00484{word-spacing:11.212800pt;}
.ws3d_c00484{word-spacing:11.481600pt;}
.ws3f_c00484{word-spacing:11.532800pt;}
.ws7_c00484{word-spacing:13.612800pt;}
.ws6_c00484{word-spacing:13.817600pt;}
.ws46_c00484{word-spacing:14.323200pt;}
.ws47_c00484{word-spacing:14.374400pt;}
.ws44_c00484{word-spacing:18.534400pt;}
.ws2f_c00484{word-spacing:19.705600pt;}
.ws2e_c00484{word-spacing:19.846400pt;}
._0_c00484{margin-left:-0.896000pt;}
._1_c00484{width:1.088000pt;}
.fs0_c00484{font-size:64.000000pt;}
.y0_c00484{bottom:0.000000pt;}
.y2_c00484{bottom:41.627067pt;}
.y1_c00484{bottom:60.027067pt;}
.y31_c00484{bottom:129.307067pt;}
.y30_c00484{bottom:147.707067pt;}
.y2f_c00484{bottom:166.107067pt;}
.y2e_c00484{bottom:184.507067pt;}
.y2d_c00484{bottom:202.907067pt;}
.y2c_c00484{bottom:221.307067pt;}
.y2b_c00484{bottom:239.707067pt;}
.y2a_c00484{bottom:258.107067pt;}
.y29_c00484{bottom:276.507067pt;}
.y28_c00484{bottom:294.907067pt;}
.y27_c00484{bottom:313.307067pt;}
.y26_c00484{bottom:331.707067pt;}
.y25_c00484{bottom:350.027067pt;}
.y24_c00484{bottom:368.427067pt;}
.y23_c00484{bottom:386.827067pt;}
.y22_c00484{bottom:405.227067pt;}
.y21_c00484{bottom:423.627067pt;}
.y20_c00484{bottom:442.027067pt;}
.y1f_c00484{bottom:460.427067pt;}
.y1e_c00484{bottom:478.747067pt;}
.y1d_c00484{bottom:497.227067pt;}
.y1c_c00484{bottom:515.627067pt;}
.y1b_c00484{bottom:534.027067pt;}
.y1a_c00484{bottom:552.427067pt;}
.y19_c00484{bottom:570.827067pt;}
.y18_c00484{bottom:589.227067pt;}
.y17_c00484{bottom:607.627067pt;}
.y16_c00484{bottom:626.027067pt;}
.y15_c00484{bottom:644.427067pt;}
.y14_c00484{bottom:662.827067pt;}
.y13_c00484{bottom:681.227067pt;}
.y12_c00484{bottom:699.627067pt;}
.y11_c00484{bottom:718.027067pt;}
.y10_c00484{bottom:736.427067pt;}
.yf_c00484{bottom:754.827067pt;}
.ye_c00484{bottom:773.147067pt;}
.yd_c00484{bottom:791.627067pt;}
.yc_c00484{bottom:810.027067pt;}
.yb_c00484{bottom:828.427067pt;}
.ya_c00484{bottom:846.827067pt;}
.y9_c00484{bottom:865.227067pt;}
.y8_c00484{bottom:883.627067pt;}
.y7_c00484{bottom:902.027067pt;}
.y6_c00484{bottom:920.427067pt;}
.y5_c00484{bottom:938.827067pt;}
.y4_c00484{bottom:957.227067pt;}
.y3_c00484{bottom:975.627067pt;}
.h1_c00484{height:56.156250pt;}
.h2_c00484{height:62.781250pt;}
.h0_c00484{height:1122.666667pt;}
.w1_c00484{width:793.333333pt;}
.w0_c00484{width:793.626667pt;}
.x0_c00484{left:0.000000pt;}
.x2_c00484{left:151.200000pt;}
.x3_c00484{left:199.200000pt;}
.x1_c00484{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_08cc9aef16d5906b61338ff9.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.093262;font-style:normal;font-weight:normal;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_b2723fa953e3555c50ae559c.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00485{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls13_c00485{letter-spacing:-0.086400px;}
.lsf_c00485{letter-spacing:-0.057600px;}
.ls10_c00485{letter-spacing:-0.050400px;}
.ls12_c00485{letter-spacing:-0.043200px;}
.ls11_c00485{letter-spacing:-0.036000px;}
.lse_c00485{letter-spacing:-0.028800px;}
.lsd_c00485{letter-spacing:-0.021600px;}
.lsb_c00485{letter-spacing:-0.014400px;}
.lsc_c00485{letter-spacing:-0.007200px;}
.lsa_c00485{letter-spacing:0.000000px;}
.ls1_c00485{letter-spacing:0.007200px;}
.ls0_c00485{letter-spacing:0.014400px;}
.ls3_c00485{letter-spacing:0.021600px;}
.ls2_c00485{letter-spacing:0.028800px;}
.ls5_c00485{letter-spacing:0.036000px;}
.ls4_c00485{letter-spacing:0.043200px;}
.ls9_c00485{letter-spacing:0.050400px;}
.ls8_c00485{letter-spacing:0.064800px;}
.ls6_c00485{letter-spacing:0.072000px;}
.ls7_c00485{letter-spacing:0.079200px;}
.ls14_c00485{letter-spacing:0.165600px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00485{word-spacing:-18.079200px;}
.ws2_c00485{word-spacing:-18.050400px;}
.ws3_c00485{word-spacing:-18.028800px;}
.ws0_c00485{word-spacing:-18.014400px;}
.ws4_c00485{word-spacing:-17.992800px;}
.ws3b_c00485{word-spacing:-2.404800px;}
.ws3a_c00485{word-spacing:-2.354400px;}
.ws3c_c00485{word-spacing:-2.239200px;}
.ws2a_c00485{word-spacing:-0.388800px;}
.ws17_c00485{word-spacing:-0.374400px;}
.ws11_c00485{word-spacing:-0.259200px;}
.ws20_c00485{word-spacing:-0.223200px;}
.ws47_c00485{word-spacing:-0.187200px;}
.ws31_c00485{word-spacing:-0.136800px;}
.ws4b_c00485{word-spacing:-0.108000px;}
.ws1f_c00485{word-spacing:-0.072000px;}
.ws15_c00485{word-spacing:-0.043200px;}
.ws2d_c00485{word-spacing:-0.028800px;}
.ws16_c00485{word-spacing:-0.021600px;}
.ws8_c00485{word-spacing:-0.014400px;}
.wsd_c00485{word-spacing:-0.007200px;}
.ws5_c00485{word-spacing:0.000000px;}
.ws44_c00485{word-spacing:0.007200px;}
.ws1e_c00485{word-spacing:0.014400px;}
.ws9_c00485{word-spacing:0.021600px;}
.ws21_c00485{word-spacing:0.036000px;}
.ws2f_c00485{word-spacing:0.921600px;}
.ws2e_c00485{word-spacing:1.072800px;}
.ws41_c00485{word-spacing:1.720800px;}
.ws23_c00485{word-spacing:2.131200px;}
.ws22_c00485{word-spacing:2.160000px;}
.ws34_c00485{word-spacing:6.940800px;}
.ws35_c00485{word-spacing:7.185600px;}
.ws48_c00485{word-spacing:8.157600px;}
.ws49_c00485{word-spacing:8.186400px;}
.ws2b_c00485{word-spacing:8.200800px;}
.ws4a_c00485{word-spacing:8.265600px;}
.ws2c_c00485{word-spacing:8.301600px;}
.ws24_c00485{word-spacing:9.158400px;}
.ws25_c00485{word-spacing:9.367200px;}
.ws12_c00485{word-spacing:11.080800px;}
.ws13_c00485{word-spacing:11.116800px;}
.ws14_c00485{word-spacing:11.210400px;}
.wsa_c00485{word-spacing:11.750400px;}
.wsb_c00485{word-spacing:11.779200px;}
.ws26_c00485{word-spacing:11.865600px;}
.wsc_c00485{word-spacing:11.908800px;}
.ws38_c00485{word-spacing:14.004000px;}
.ws39_c00485{word-spacing:14.126400px;}
.ws33_c00485{word-spacing:17.157600px;}
.ws32_c00485{word-spacing:17.179200px;}
.ws1c_c00485{word-spacing:17.244000px;}
.ws1d_c00485{word-spacing:17.251200px;}
.ws1b_c00485{word-spacing:17.258400px;}
.ws30_c00485{word-spacing:19.072800px;}
.ws19_c00485{word-spacing:22.420800px;}
.ws1a_c00485{word-spacing:22.442400px;}
.ws18_c00485{word-spacing:22.716000px;}
.ws6_c00485{word-spacing:23.263200px;}
.ws7_c00485{word-spacing:23.414400px;}
.ws29_c00485{word-spacing:23.443200px;}
.ws28_c00485{word-spacing:23.601600px;}
.ws27_c00485{word-spacing:23.781600px;}
.wsf_c00485{word-spacing:23.997600px;}
.ws45_c00485{word-spacing:24.019200px;}
.ws46_c00485{word-spacing:24.084000px;}
.wse_c00485{word-spacing:24.105600px;}
.ws10_c00485{word-spacing:24.177600px;}
.ws3f_c00485{word-spacing:33.386400px;}
.ws40_c00485{word-spacing:33.508800px;}
.ws3e_c00485{word-spacing:36.619200px;}
.ws3d_c00485{word-spacing:36.705600px;}
.ws36_c00485{word-spacing:45.928800px;}
.ws37_c00485{word-spacing:45.964800px;}
.ws42_c00485{word-spacing:92.469600px;}
.ws43_c00485{word-spacing:92.541600px;}
._0_c00485{margin-left:-1.108800px;}
.fc0_c00485{color:rgb(0,0,0);}
.fs0_c00485{font-size:72.000000px;}
.y0_c00485{bottom:0.000000px;}
.y2_c00485{bottom:46.830450px;}
.y1_c00485{bottom:67.530450px;}
.y31_c00485{bottom:145.470450px;}
.y30_c00485{bottom:166.170450px;}
.y2f_c00485{bottom:186.870450px;}
.y2e_c00485{bottom:207.570450px;}
.y2d_c00485{bottom:228.270450px;}
.y2c_c00485{bottom:248.970450px;}
.y2b_c00485{bottom:269.670450px;}
.y2a_c00485{bottom:290.370450px;}
.y29_c00485{bottom:311.070450px;}
.y28_c00485{bottom:331.770450px;}
.y27_c00485{bottom:352.470450px;}
.y26_c00485{bottom:373.170450px;}
.y25_c00485{bottom:393.780450px;}
.y24_c00485{bottom:414.480450px;}
.y23_c00485{bottom:435.180450px;}
.y22_c00485{bottom:455.880450px;}
.y21_c00485{bottom:476.580450px;}
.y20_c00485{bottom:497.280450px;}
.y1f_c00485{bottom:517.980450px;}
.y1e_c00485{bottom:538.680450px;}
.y1d_c00485{bottom:559.380450px;}
.y1c_c00485{bottom:580.080450px;}
.y1b_c00485{bottom:600.690450px;}
.y1a_c00485{bottom:621.480450px;}
.y19_c00485{bottom:642.180450px;}
.y18_c00485{bottom:662.880450px;}
.y17_c00485{bottom:683.580450px;}
.y16_c00485{bottom:704.280450px;}
.y15_c00485{bottom:724.980450px;}
.y14_c00485{bottom:745.680450px;}
.y13_c00485{bottom:766.380450px;}
.y12_c00485{bottom:787.080450px;}
.y11_c00485{bottom:807.780450px;}
.y10_c00485{bottom:828.480450px;}
.yf_c00485{bottom:849.180450px;}
.ye_c00485{bottom:869.880450px;}
.yd_c00485{bottom:890.580450px;}
.yc_c00485{bottom:911.280450px;}
.yb_c00485{bottom:931.980450px;}
.ya_c00485{bottom:952.680450px;}
.y9_c00485{bottom:973.380450px;}
.y8_c00485{bottom:994.080450px;}
.y7_c00485{bottom:1014.780450px;}
.y6_c00485{bottom:1035.480450px;}
.y5_c00485{bottom:1056.180450px;}
.y4_c00485{bottom:1076.880450px;}
.y3_c00485{bottom:1097.580450px;}
.h1_c00485{height:63.175781px;}
.h2_c00485{height:70.628906px;}
.h0_c00485{height:1263.000000px;}
.w1_c00485{width:892.500000px;}
.w0_c00485{width:892.830000px;}
.x0_c00485{left:0.000000px;}
.x2_c00485{left:127.620000px;}
.x3_c00485{left:181.620000px;}
.x1_c00485{left:695.880000px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls13_c00485{letter-spacing:-0.076800pt;}
.lsf_c00485{letter-spacing:-0.051200pt;}
.ls10_c00485{letter-spacing:-0.044800pt;}
.ls12_c00485{letter-spacing:-0.038400pt;}
.ls11_c00485{letter-spacing:-0.032000pt;}
.lse_c00485{letter-spacing:-0.025600pt;}
.lsd_c00485{letter-spacing:-0.019200pt;}
.lsb_c00485{letter-spacing:-0.012800pt;}
.lsc_c00485{letter-spacing:-0.006400pt;}
.lsa_c00485{letter-spacing:0.000000pt;}
.ls1_c00485{letter-spacing:0.006400pt;}
.ls0_c00485{letter-spacing:0.012800pt;}
.ls3_c00485{letter-spacing:0.019200pt;}
.ls2_c00485{letter-spacing:0.025600pt;}
.ls5_c00485{letter-spacing:0.032000pt;}
.ls4_c00485{letter-spacing:0.038400pt;}
.ls9_c00485{letter-spacing:0.044800pt;}
.ls8_c00485{letter-spacing:0.057600pt;}
.ls6_c00485{letter-spacing:0.064000pt;}
.ls7_c00485{letter-spacing:0.070400pt;}
.ls14_c00485{letter-spacing:0.147200pt;}
.ws1_c00485{word-spacing:-16.070400pt;}
.ws2_c00485{word-spacing:-16.044800pt;}
.ws3_c00485{word-spacing:-16.025600pt;}
.ws0_c00485{word-spacing:-16.012800pt;}
.ws4_c00485{word-spacing:-15.993600pt;}
.ws3b_c00485{word-spacing:-2.137600pt;}
.ws3a_c00485{word-spacing:-2.092800pt;}
.ws3c_c00485{word-spacing:-1.990400pt;}
.ws2a_c00485{word-spacing:-0.345600pt;}
.ws17_c00485{word-spacing:-0.332800pt;}
.ws11_c00485{word-spacing:-0.230400pt;}
.ws20_c00485{word-spacing:-0.198400pt;}
.ws47_c00485{word-spacing:-0.166400pt;}
.ws31_c00485{word-spacing:-0.121600pt;}
.ws4b_c00485{word-spacing:-0.096000pt;}
.ws1f_c00485{word-spacing:-0.064000pt;}
.ws15_c00485{word-spacing:-0.038400pt;}
.ws2d_c00485{word-spacing:-0.025600pt;}
.ws16_c00485{word-spacing:-0.019200pt;}
.ws8_c00485{word-spacing:-0.012800pt;}
.wsd_c00485{word-spacing:-0.006400pt;}
.ws5_c00485{word-spacing:0.000000pt;}
.ws44_c00485{word-spacing:0.006400pt;}
.ws1e_c00485{word-spacing:0.012800pt;}
.ws9_c00485{word-spacing:0.019200pt;}
.ws21_c00485{word-spacing:0.032000pt;}
.ws2f_c00485{word-spacing:0.819200pt;}
.ws2e_c00485{word-spacing:0.953600pt;}
.ws41_c00485{word-spacing:1.529600pt;}
.ws23_c00485{word-spacing:1.894400pt;}
.ws22_c00485{word-spacing:1.920000pt;}
.ws34_c00485{word-spacing:6.169600pt;}
.ws35_c00485{word-spacing:6.387200pt;}
.ws48_c00485{word-spacing:7.251200pt;}
.ws49_c00485{word-spacing:7.276800pt;}
.ws2b_c00485{word-spacing:7.289600pt;}
.ws4a_c00485{word-spacing:7.347200pt;}
.ws2c_c00485{word-spacing:7.379200pt;}
.ws24_c00485{word-spacing:8.140800pt;}
.ws25_c00485{word-spacing:8.326400pt;}
.ws12_c00485{word-spacing:9.849600pt;}
.ws13_c00485{word-spacing:9.881600pt;}
.ws14_c00485{word-spacing:9.964800pt;}
.wsa_c00485{word-spacing:10.444800pt;}
.wsb_c00485{word-spacing:10.470400pt;}
.ws26_c00485{word-spacing:10.547200pt;}
.wsc_c00485{word-spacing:10.585600pt;}
.ws38_c00485{word-spacing:12.448000pt;}
.ws39_c00485{word-spacing:12.556800pt;}
.ws33_c00485{word-spacing:15.251200pt;}
.ws32_c00485{word-spacing:15.270400pt;}
.ws1c_c00485{word-spacing:15.328000pt;}
.ws1d_c00485{word-spacing:15.334400pt;}
.ws1b_c00485{word-spacing:15.340800pt;}
.ws30_c00485{word-spacing:16.953600pt;}
.ws19_c00485{word-spacing:19.929600pt;}
.ws1a_c00485{word-spacing:19.948800pt;}
.ws18_c00485{word-spacing:20.192000pt;}
.ws6_c00485{word-spacing:20.678400pt;}
.ws7_c00485{word-spacing:20.812800pt;}
.ws29_c00485{word-spacing:20.838400pt;}
.ws28_c00485{word-spacing:20.979200pt;}
.ws27_c00485{word-spacing:21.139200pt;}
.wsf_c00485{word-spacing:21.331200pt;}
.ws45_c00485{word-spacing:21.350400pt;}
.ws46_c00485{word-spacing:21.408000pt;}
.wse_c00485{word-spacing:21.427200pt;}
.ws10_c00485{word-spacing:21.491200pt;}
.ws3f_c00485{word-spacing:29.676800pt;}
.ws40_c00485{word-spacing:29.785600pt;}
.ws3e_c00485{word-spacing:32.550400pt;}
.ws3d_c00485{word-spacing:32.627200pt;}
.ws36_c00485{word-spacing:40.825600pt;}
.ws37_c00485{word-spacing:40.857600pt;}
.ws42_c00485{word-spacing:82.195200pt;}
.ws43_c00485{word-spacing:82.259200pt;}
._0_c00485{margin-left:-0.985600pt;}
.fs0_c00485{font-size:64.000000pt;}
.y0_c00485{bottom:0.000000pt;}
.y2_c00485{bottom:41.627067pt;}
.y1_c00485{bottom:60.027067pt;}
.y31_c00485{bottom:129.307067pt;}
.y30_c00485{bottom:147.707067pt;}
.y2f_c00485{bottom:166.107067pt;}
.y2e_c00485{bottom:184.507067pt;}
.y2d_c00485{bottom:202.907067pt;}
.y2c_c00485{bottom:221.307067pt;}
.y2b_c00485{bottom:239.707067pt;}
.y2a_c00485{bottom:258.107067pt;}
.y29_c00485{bottom:276.507067pt;}
.y28_c00485{bottom:294.907067pt;}
.y27_c00485{bottom:313.307067pt;}
.y26_c00485{bottom:331.707067pt;}
.y25_c00485{bottom:350.027067pt;}
.y24_c00485{bottom:368.427067pt;}
.y23_c00485{bottom:386.827067pt;}
.y22_c00485{bottom:405.227067pt;}
.y21_c00485{bottom:423.627067pt;}
.y20_c00485{bottom:442.027067pt;}
.y1f_c00485{bottom:460.427067pt;}
.y1e_c00485{bottom:478.827067pt;}
.y1d_c00485{bottom:497.227067pt;}
.y1c_c00485{bottom:515.627067pt;}
.y1b_c00485{bottom:533.947067pt;}
.y1a_c00485{bottom:552.427067pt;}
.y19_c00485{bottom:570.827067pt;}
.y18_c00485{bottom:589.227067pt;}
.y17_c00485{bottom:607.627067pt;}
.y16_c00485{bottom:626.027067pt;}
.y15_c00485{bottom:644.427067pt;}
.y14_c00485{bottom:662.827067pt;}
.y13_c00485{bottom:681.227067pt;}
.y12_c00485{bottom:699.627067pt;}
.y11_c00485{bottom:718.027067pt;}
.y10_c00485{bottom:736.427067pt;}
.yf_c00485{bottom:754.827067pt;}
.ye_c00485{bottom:773.227067pt;}
.yd_c00485{bottom:791.627067pt;}
.yc_c00485{bottom:810.027067pt;}
.yb_c00485{bottom:828.427067pt;}
.ya_c00485{bottom:846.827067pt;}
.y9_c00485{bottom:865.227067pt;}
.y8_c00485{bottom:883.627067pt;}
.y7_c00485{bottom:902.027067pt;}
.y6_c00485{bottom:920.427067pt;}
.y5_c00485{bottom:938.827067pt;}
.y4_c00485{bottom:957.227067pt;}
.y3_c00485{bottom:975.627067pt;}
.h1_c00485{height:56.156250pt;}
.h2_c00485{height:62.781250pt;}
.h0_c00485{height:1122.666667pt;}
.w1_c00485{width:793.333333pt;}
.w0_c00485{width:793.626667pt;}
.x0_c00485{left:0.000000pt;}
.x2_c00485{left:113.440000pt;}
.x3_c00485{left:161.440000pt;}
.x1_c00485{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7705b2c32426633c5a5ac518.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.093262;font-style:normal;font-weight:normal;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_a4a073a733a046fdd469c095.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00486{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.ls17_c00486{letter-spacing:-0.201600px;}
.lsc_c00486{letter-spacing:-0.187200px;}
.ls11_c00486{letter-spacing:-0.093600px;}
.ls16_c00486{letter-spacing:-0.057600px;}
.ls13_c00486{letter-spacing:-0.050400px;}
.ls15_c00486{letter-spacing:-0.043200px;}
.lsd_c00486{letter-spacing:-0.036000px;}
.ls12_c00486{letter-spacing:-0.028800px;}
.lse_c00486{letter-spacing:-0.021600px;}
.lsf_c00486{letter-spacing:-0.014400px;}
.ls10_c00486{letter-spacing:-0.007200px;}
.lsb_c00486{letter-spacing:0.000000px;}
.ls1_c00486{letter-spacing:0.007200px;}
.ls4_c00486{letter-spacing:0.014400px;}
.ls7_c00486{letter-spacing:0.021600px;}
.ls5_c00486{letter-spacing:0.028800px;}
.ls0_c00486{letter-spacing:0.036000px;}
.ls2_c00486{letter-spacing:0.043200px;}
.lsa_c00486{letter-spacing:0.050400px;}
.ls6_c00486{letter-spacing:0.057600px;}
.ls14_c00486{letter-spacing:0.064800px;}
.ls3_c00486{letter-spacing:0.072000px;}
.ls9_c00486{letter-spacing:0.079200px;}
.ls8_c00486{letter-spacing:0.086400px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00486{word-spacing:-18.036000px;}
.ws1_c00486{word-spacing:-18.028800px;}
.ws29_c00486{word-spacing:-4.068000px;}
.ws28_c00486{word-spacing:-4.039200px;}
.ws31_c00486{word-spacing:-3.859200px;}
.ws30_c00486{word-spacing:-3.722400px;}
.ws32_c00486{word-spacing:-3.664800px;}
.ws2f_c00486{word-spacing:-3.614400px;}
.ws1d_c00486{word-spacing:-0.266400px;}
.ws4c_c00486{word-spacing:-0.208800px;}
.ws1b_c00486{word-spacing:-0.194400px;}
.ws36_c00486{word-spacing:-0.144000px;}
.wsa_c00486{word-spacing:-0.129600px;}
.ws46_c00486{word-spacing:-0.079200px;}
.ws8_c00486{word-spacing:-0.072000px;}
.ws1a_c00486{word-spacing:-0.057600px;}
.ws7_c00486{word-spacing:-0.043200px;}
.ws1c_c00486{word-spacing:-0.028800px;}
.ws6_c00486{word-spacing:-0.021600px;}
.ws9_c00486{word-spacing:-0.014400px;}
.ws2d_c00486{word-spacing:-0.007200px;}
.ws2_c00486{word-spacing:0.000000px;}
.ws4d_c00486{word-spacing:0.007200px;}
.ws27_c00486{word-spacing:0.014400px;}
.wsb_c00486{word-spacing:0.021600px;}
.ws49_c00486{word-spacing:0.028800px;}
.wsf_c00486{word-spacing:0.036000px;}
.ws2e_c00486{word-spacing:0.050400px;}
.ws33_c00486{word-spacing:0.129600px;}
.ws4e_c00486{word-spacing:0.201600px;}
.ws53_c00486{word-spacing:0.309600px;}
.ws52_c00486{word-spacing:0.316800px;}
.ws3f_c00486{word-spacing:0.936000px;}
.ws40_c00486{word-spacing:0.979200px;}
.ws4a_c00486{word-spacing:1.382400px;}
.ws4b_c00486{word-spacing:1.418400px;}
.ws19_c00486{word-spacing:1.836000px;}
.ws17_c00486{word-spacing:2.160000px;}
.ws18_c00486{word-spacing:2.181600px;}
.ws11_c00486{word-spacing:3.571200px;}
.ws10_c00486{word-spacing:3.614400px;}
.ws3d_c00486{word-spacing:3.873600px;}
.ws3c_c00486{word-spacing:3.960000px;}
.ws3e_c00486{word-spacing:4.017600px;}
.ws15_c00486{word-spacing:4.305600px;}
.ws16_c00486{word-spacing:4.636800px;}
.ws3_c00486{word-spacing:4.644000px;}
.ws4_c00486{word-spacing:4.672800px;}
.ws5_c00486{word-spacing:4.867200px;}
.ws1f_c00486{word-spacing:8.121600px;}
.ws1e_c00486{word-spacing:8.222400px;}
.ws12_c00486{word-spacing:8.618400px;}
.ws13_c00486{word-spacing:8.625600px;}
.ws14_c00486{word-spacing:8.640000px;}
.ws20_c00486{word-spacing:8.985600px;}
.ws21_c00486{word-spacing:9.000000px;}
.ws23_c00486{word-spacing:9.331200px;}
.ws22_c00486{word-spacing:9.345600px;}
.ws50_c00486{word-spacing:12.160800px;}
.ws4f_c00486{word-spacing:12.211200px;}
.ws51_c00486{word-spacing:12.268800px;}
.ws3a_c00486{word-spacing:12.484800px;}
.ws3b_c00486{word-spacing:12.636000px;}
.wsc_c00486{word-spacing:13.644000px;}
.wse_c00486{word-spacing:13.651200px;}
.wsd_c00486{word-spacing:13.752000px;}
.ws24_c00486{word-spacing:14.241600px;}
.ws25_c00486{word-spacing:14.277600px;}
.ws26_c00486{word-spacing:14.493600px;}
.ws48_c00486{word-spacing:15.429600px;}
.ws47_c00486{word-spacing:15.530400px;}
.ws42_c00486{word-spacing:16.012800px;}
.ws41_c00486{word-spacing:16.156800px;}
.ws35_c00486{word-spacing:17.186400px;}
.ws34_c00486{word-spacing:17.236800px;}
.ws43_c00486{word-spacing:17.496000px;}
.ws44_c00486{word-spacing:17.553600px;}
.ws45_c00486{word-spacing:17.676000px;}
.ws39_c00486{word-spacing:24.004800px;}
.ws38_c00486{word-spacing:24.127200px;}
.ws37_c00486{word-spacing:24.163200px;}
.ws2b_c00486{word-spacing:28.627200px;}
.ws2c_c00486{word-spacing:28.756800px;}
.ws2a_c00486{word-spacing:28.828800px;}
._0_c00486{margin-left:-1.008000px;}
._1_c00486{width:1.080000px;}
.fc0_c00486{color:rgb(0,0,0);}
.fs0_c00486{font-size:72.000000px;}
.y0_c00486{bottom:0.000000px;}
.y2_c00486{bottom:46.830450px;}
.y1_c00486{bottom:67.530450px;}
.y31_c00486{bottom:145.470450px;}
.y30_c00486{bottom:166.170450px;}
.y2f_c00486{bottom:186.870450px;}
.y2e_c00486{bottom:207.570450px;}
.y2d_c00486{bottom:228.270450px;}
.y2c_c00486{bottom:248.970450px;}
.y2b_c00486{bottom:269.670450px;}
.y2a_c00486{bottom:290.370450px;}
.y29_c00486{bottom:311.070450px;}
.y28_c00486{bottom:331.770450px;}
.y27_c00486{bottom:352.470450px;}
.y26_c00486{bottom:373.170450px;}
.y25_c00486{bottom:393.780450px;}
.y24_c00486{bottom:414.480450px;}
.y23_c00486{bottom:435.180450px;}
.y22_c00486{bottom:455.880450px;}
.y21_c00486{bottom:476.490450px;}
.y20_c00486{bottom:497.280450px;}
.y1f_c00486{bottom:517.980450px;}
.y1e_c00486{bottom:538.680450px;}
.y1d_c00486{bottom:559.380450px;}
.y1c_c00486{bottom:580.080450px;}
.y1b_c00486{bottom:600.780450px;}
.y1a_c00486{bottom:621.480450px;}
.y19_c00486{bottom:642.180450px;}
.y18_c00486{bottom:662.880450px;}
.y17_c00486{bottom:683.580450px;}
.y16_c00486{bottom:704.280450px;}
.y15_c00486{bottom:724.980450px;}
.y14_c00486{bottom:745.680450px;}
.y13_c00486{bottom:766.380450px;}
.y12_c00486{bottom:787.080450px;}
.y11_c00486{bottom:807.780450px;}
.y10_c00486{bottom:828.480450px;}
.yf_c00486{bottom:849.180450px;}
.ye_c00486{bottom:869.880450px;}
.yd_c00486{bottom:890.580450px;}
.yc_c00486{bottom:911.280450px;}
.yb_c00486{bottom:931.980450px;}
.ya_c00486{bottom:952.680450px;}
.y9_c00486{bottom:973.380450px;}
.y8_c00486{bottom:994.080450px;}
.y7_c00486{bottom:1014.780450px;}
.y6_c00486{bottom:1035.480450px;}
.y5_c00486{bottom:1056.180450px;}
.y4_c00486{bottom:1076.880450px;}
.y3_c00486{bottom:1097.580450px;}
.h1_c00486{height:63.175781px;}
.h2_c00486{height:70.628906px;}
.h0_c00486{height:1263.000000px;}
.w1_c00486{width:892.500000px;}
.w0_c00486{width:892.830000px;}
.x0_c00486{left:0.000000px;}
.x2_c00486{left:170.100000px;}
.x3_c00486{left:224.100000px;}
.x1_c00486{left:738.360000px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls17_c00486{letter-spacing:-0.179200pt;}
.lsc_c00486{letter-spacing:-0.166400pt;}
.ls11_c00486{letter-spacing:-0.083200pt;}
.ls16_c00486{letter-spacing:-0.051200pt;}
.ls13_c00486{letter-spacing:-0.044800pt;}
.ls15_c00486{letter-spacing:-0.038400pt;}
.lsd_c00486{letter-spacing:-0.032000pt;}
.ls12_c00486{letter-spacing:-0.025600pt;}
.lse_c00486{letter-spacing:-0.019200pt;}
.lsf_c00486{letter-spacing:-0.012800pt;}
.ls10_c00486{letter-spacing:-0.006400pt;}
.lsb_c00486{letter-spacing:0.000000pt;}
.ls1_c00486{letter-spacing:0.006400pt;}
.ls4_c00486{letter-spacing:0.012800pt;}
.ls7_c00486{letter-spacing:0.019200pt;}
.ls5_c00486{letter-spacing:0.025600pt;}
.ls0_c00486{letter-spacing:0.032000pt;}
.ls2_c00486{letter-spacing:0.038400pt;}
.lsa_c00486{letter-spacing:0.044800pt;}
.ls6_c00486{letter-spacing:0.051200pt;}
.ls14_c00486{letter-spacing:0.057600pt;}
.ls3_c00486{letter-spacing:0.064000pt;}
.ls9_c00486{letter-spacing:0.070400pt;}
.ls8_c00486{letter-spacing:0.076800pt;}
.ws0_c00486{word-spacing:-16.032000pt;}
.ws1_c00486{word-spacing:-16.025600pt;}
.ws29_c00486{word-spacing:-3.616000pt;}
.ws28_c00486{word-spacing:-3.590400pt;}
.ws31_c00486{word-spacing:-3.430400pt;}
.ws30_c00486{word-spacing:-3.308800pt;}
.ws32_c00486{word-spacing:-3.257600pt;}
.ws2f_c00486{word-spacing:-3.212800pt;}
.ws1d_c00486{word-spacing:-0.236800pt;}
.ws4c_c00486{word-spacing:-0.185600pt;}
.ws1b_c00486{word-spacing:-0.172800pt;}
.ws36_c00486{word-spacing:-0.128000pt;}
.wsa_c00486{word-spacing:-0.115200pt;}
.ws46_c00486{word-spacing:-0.070400pt;}
.ws8_c00486{word-spacing:-0.064000pt;}
.ws1a_c00486{word-spacing:-0.051200pt;}
.ws7_c00486{word-spacing:-0.038400pt;}
.ws1c_c00486{word-spacing:-0.025600pt;}
.ws6_c00486{word-spacing:-0.019200pt;}
.ws9_c00486{word-spacing:-0.012800pt;}
.ws2d_c00486{word-spacing:-0.006400pt;}
.ws2_c00486{word-spacing:0.000000pt;}
.ws4d_c00486{word-spacing:0.006400pt;}
.ws27_c00486{word-spacing:0.012800pt;}
.wsb_c00486{word-spacing:0.019200pt;}
.ws49_c00486{word-spacing:0.025600pt;}
.wsf_c00486{word-spacing:0.032000pt;}
.ws2e_c00486{word-spacing:0.044800pt;}
.ws33_c00486{word-spacing:0.115200pt;}
.ws4e_c00486{word-spacing:0.179200pt;}
.ws53_c00486{word-spacing:0.275200pt;}
.ws52_c00486{word-spacing:0.281600pt;}
.ws3f_c00486{word-spacing:0.832000pt;}
.ws40_c00486{word-spacing:0.870400pt;}
.ws4a_c00486{word-spacing:1.228800pt;}
.ws4b_c00486{word-spacing:1.260800pt;}
.ws19_c00486{word-spacing:1.632000pt;}
.ws17_c00486{word-spacing:1.920000pt;}
.ws18_c00486{word-spacing:1.939200pt;}
.ws11_c00486{word-spacing:3.174400pt;}
.ws10_c00486{word-spacing:3.212800pt;}
.ws3d_c00486{word-spacing:3.443200pt;}
.ws3c_c00486{word-spacing:3.520000pt;}
.ws3e_c00486{word-spacing:3.571200pt;}
.ws15_c00486{word-spacing:3.827200pt;}
.ws16_c00486{word-spacing:4.121600pt;}
.ws3_c00486{word-spacing:4.128000pt;}
.ws4_c00486{word-spacing:4.153600pt;}
.ws5_c00486{word-spacing:4.326400pt;}
.ws1f_c00486{word-spacing:7.219200pt;}
.ws1e_c00486{word-spacing:7.308800pt;}
.ws12_c00486{word-spacing:7.660800pt;}
.ws13_c00486{word-spacing:7.667200pt;}
.ws14_c00486{word-spacing:7.680000pt;}
.ws20_c00486{word-spacing:7.987200pt;}
.ws21_c00486{word-spacing:8.000000pt;}
.ws23_c00486{word-spacing:8.294400pt;}
.ws22_c00486{word-spacing:8.307200pt;}
.ws50_c00486{word-spacing:10.809600pt;}
.ws4f_c00486{word-spacing:10.854400pt;}
.ws51_c00486{word-spacing:10.905600pt;}
.ws3a_c00486{word-spacing:11.097600pt;}
.ws3b_c00486{word-spacing:11.232000pt;}
.wsc_c00486{word-spacing:12.128000pt;}
.wse_c00486{word-spacing:12.134400pt;}
.wsd_c00486{word-spacing:12.224000pt;}
.ws24_c00486{word-spacing:12.659200pt;}
.ws25_c00486{word-spacing:12.691200pt;}
.ws26_c00486{word-spacing:12.883200pt;}
.ws48_c00486{word-spacing:13.715200pt;}
.ws47_c00486{word-spacing:13.804800pt;}
.ws42_c00486{word-spacing:14.233600pt;}
.ws41_c00486{word-spacing:14.361600pt;}
.ws35_c00486{word-spacing:15.276800pt;}
.ws34_c00486{word-spacing:15.321600pt;}
.ws43_c00486{word-spacing:15.552000pt;}
.ws44_c00486{word-spacing:15.603200pt;}
.ws45_c00486{word-spacing:15.712000pt;}
.ws39_c00486{word-spacing:21.337600pt;}
.ws38_c00486{word-spacing:21.446400pt;}
.ws37_c00486{word-spacing:21.478400pt;}
.ws2b_c00486{word-spacing:25.446400pt;}
.ws2c_c00486{word-spacing:25.561600pt;}
.ws2a_c00486{word-spacing:25.625600pt;}
._0_c00486{margin-left:-0.896000pt;}
._1_c00486{width:0.960000pt;}
.fs0_c00486{font-size:64.000000pt;}
.y0_c00486{bottom:0.000000pt;}
.y2_c00486{bottom:41.627067pt;}
.y1_c00486{bottom:60.027067pt;}
.y31_c00486{bottom:129.307067pt;}
.y30_c00486{bottom:147.707067pt;}
.y2f_c00486{bottom:166.107067pt;}
.y2e_c00486{bottom:184.507067pt;}
.y2d_c00486{bottom:202.907067pt;}
.y2c_c00486{bottom:221.307067pt;}
.y2b_c00486{bottom:239.707067pt;}
.y2a_c00486{bottom:258.107067pt;}
.y29_c00486{bottom:276.507067pt;}
.y28_c00486{bottom:294.907067pt;}
.y27_c00486{bottom:313.307067pt;}
.y26_c00486{bottom:331.707067pt;}
.y25_c00486{bottom:350.027067pt;}
.y24_c00486{bottom:368.427067pt;}
.y23_c00486{bottom:386.827067pt;}
.y22_c00486{bottom:405.227067pt;}
.y21_c00486{bottom:423.547067pt;}
.y20_c00486{bottom:442.027067pt;}
.y1f_c00486{bottom:460.427067pt;}
.y1e_c00486{bottom:478.827067pt;}
.y1d_c00486{bottom:497.227067pt;}
.y1c_c00486{bottom:515.627067pt;}
.y1b_c00486{bottom:534.027067pt;}
.y1a_c00486{bottom:552.427067pt;}
.y19_c00486{bottom:570.827067pt;}
.y18_c00486{bottom:589.227067pt;}
.y17_c00486{bottom:607.627067pt;}
.y16_c00486{bottom:626.027067pt;}
.y15_c00486{bottom:644.427067pt;}
.y14_c00486{bottom:662.827067pt;}
.y13_c00486{bottom:681.227067pt;}
.y12_c00486{bottom:699.627067pt;}
.y11_c00486{bottom:718.027067pt;}
.y10_c00486{bottom:736.427067pt;}
.yf_c00486{bottom:754.827067pt;}
.ye_c00486{bottom:773.227067pt;}
.yd_c00486{bottom:791.627067pt;}
.yc_c00486{bottom:810.027067pt;}
.yb_c00486{bottom:828.427067pt;}
.ya_c00486{bottom:846.827067pt;}
.y9_c00486{bottom:865.227067pt;}
.y8_c00486{bottom:883.627067pt;}
.y7_c00486{bottom:902.027067pt;}
.y6_c00486{bottom:920.427067pt;}
.y5_c00486{bottom:938.827067pt;}
.y4_c00486{bottom:957.227067pt;}
.y3_c00486{bottom:975.627067pt;}
.h1_c00486{height:56.156250pt;}
.h2_c00486{height:62.781250pt;}
.h0_c00486{height:1122.666667pt;}
.w1_c00486{width:793.333333pt;}
.w0_c00486{width:793.626667pt;}
.x0_c00486{left:0.000000pt;}
.x2_c00486{left:151.200000pt;}
.x3_c00486{left:199.200000pt;}
.x1_c00486{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d4404fe08bff56cb81d88010.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.093262;font-style:normal;font-weight:normal;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_8538f02d4b972abf3d481678.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00487{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls14_c00487{letter-spacing:-0.201600px;}
.lsd_c00487{letter-spacing:-0.108000px;}
.ls15_c00487{letter-spacing:-0.100800px;}
.ls12_c00487{letter-spacing:-0.064800px;}
.ls16_c00487{letter-spacing:-0.057600px;}
.lsf_c00487{letter-spacing:-0.050400px;}
.ls13_c00487{letter-spacing:-0.036000px;}
.ls11_c00487{letter-spacing:-0.028800px;}
.lse_c00487{letter-spacing:-0.021600px;}
.lsc_c00487{letter-spacing:-0.014400px;}
.ls10_c00487{letter-spacing:-0.007200px;}
.lsb_c00487{letter-spacing:0.000000px;}
.ls4_c00487{letter-spacing:0.007200px;}
.ls8_c00487{letter-spacing:0.014400px;}
.ls1_c00487{letter-spacing:0.021600px;}
.ls0_c00487{letter-spacing:0.028800px;}
.ls2_c00487{letter-spacing:0.036000px;}
.ls3_c00487{letter-spacing:0.043200px;}
.lsa_c00487{letter-spacing:0.050400px;}
.ls7_c00487{letter-spacing:0.057600px;}
.ls6_c00487{letter-spacing:0.072000px;}
.ls5_c00487{letter-spacing:0.079200px;}
.ls9_c00487{letter-spacing:0.093600px;}
.ls17_c00487{letter-spacing:0.158400px;}
.sc__c00487{text-shadow:none;}
.sc0_c00487{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00487{-webkit-text-stroke:0px transparent;}
.sc0_c00487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00487{word-spacing:-18.043200px;}
.ws3_c00487{word-spacing:-18.036000px;}
.ws1_c00487{word-spacing:-18.021600px;}
.ws2_c00487{word-spacing:-17.942400px;}
.ws3d_c00487{word-spacing:-4.348800px;}
.ws40_c00487{word-spacing:-3.139200px;}
.ws41_c00487{word-spacing:-2.959200px;}
.ws3f_c00487{word-spacing:-2.901600px;}
.ws3a_c00487{word-spacing:-2.671200px;}
.ws12_c00487{word-spacing:-2.628000px;}
.ws3b_c00487{word-spacing:-2.527200px;}
.ws13_c00487{word-spacing:-2.512800px;}
.ws3c_c00487{word-spacing:-2.498400px;}
.ws27_c00487{word-spacing:-1.512000px;}
.ws15_c00487{word-spacing:-1.468800px;}
.ws16_c00487{word-spacing:-1.447200px;}
.ws28_c00487{word-spacing:-1.432800px;}
.ws18_c00487{word-spacing:-1.396800px;}
.ws26_c00487{word-spacing:-1.346400px;}
.ws17_c00487{word-spacing:-1.159200px;}
.ws19_c00487{word-spacing:-1.108800px;}
.ws10_c00487{word-spacing:-0.453600px;}
.wsf_c00487{word-spacing:-0.396000px;}
.ws37_c00487{word-spacing:-0.374400px;}
.ws1d_c00487{word-spacing:-0.252000px;}
.ws47_c00487{word-spacing:-0.208800px;}
.ws11_c00487{word-spacing:-0.201600px;}
.ws46_c00487{word-spacing:-0.194400px;}
.ws2a_c00487{word-spacing:-0.151200px;}
.ws29_c00487{word-spacing:-0.086400px;}
.ws1f_c00487{word-spacing:-0.057600px;}
.ws1a_c00487{word-spacing:-0.043200px;}
.ws4a_c00487{word-spacing:-0.028800px;}
.ws42_c00487{word-spacing:-0.021600px;}
.wsd_c00487{word-spacing:-0.014400px;}
.ws2b_c00487{word-spacing:-0.007200px;}
.ws4_c00487{word-spacing:0.000000px;}
.ws2c_c00487{word-spacing:0.007200px;}
.ws1e_c00487{word-spacing:0.021600px;}
.ws14_c00487{word-spacing:0.028800px;}
.ws2d_c00487{word-spacing:0.036000px;}
.wsc_c00487{word-spacing:0.050400px;}
.ws45_c00487{word-spacing:2.109600px;}
.ws43_c00487{word-spacing:2.124000px;}
.ws44_c00487{word-spacing:2.210400px;}
.wse_c00487{word-spacing:2.858400px;}
.ws30_c00487{word-spacing:3.218400px;}
.ws2e_c00487{word-spacing:4.269600px;}
.ws38_c00487{word-spacing:4.276800px;}
.ws39_c00487{word-spacing:4.291200px;}
.ws32_c00487{word-spacing:10.058400px;}
.ws31_c00487{word-spacing:10.101600px;}
.ws35_c00487{word-spacing:10.836000px;}
.ws36_c00487{word-spacing:11.001600px;}
.ws22_c00487{word-spacing:11.152800px;}
.ws21_c00487{word-spacing:11.160000px;}
.ws20_c00487{word-spacing:11.304000px;}
.ws2f_c00487{word-spacing:11.865600px;}
.wsb_c00487{word-spacing:11.908800px;}
.wsa_c00487{word-spacing:12.016800px;}
.ws1c_c00487{word-spacing:14.004000px;}
.ws1b_c00487{word-spacing:14.054400px;}
.ws8_c00487{word-spacing:19.274400px;}
.ws7_c00487{word-spacing:19.288800px;}
.ws9_c00487{word-spacing:19.548000px;}
.ws24_c00487{word-spacing:21.024000px;}
.ws25_c00487{word-spacing:21.124800px;}
.ws23_c00487{word-spacing:21.153600px;}
.ws6_c00487{word-spacing:23.666400px;}
.ws5_c00487{word-spacing:23.731200px;}
.ws49_c00487{word-spacing:26.632800px;}
.ws48_c00487{word-spacing:26.654400px;}
.ws34_c00487{word-spacing:66.643200px;}
.ws33_c00487{word-spacing:66.650400px;}
.ws3e_c00487{word-spacing:716.731200px;}
._0_c00487{margin-left:-1.008000px;}
._2_c00487{width:1.260000px;}
._1_c00487{width:12.182400px;}
.fc0_c00487{color:rgb(0,0,0);}
.fs0_c00487{font-size:72.000000px;}
.y0_c00487{bottom:0.000000px;}
.y2_c00487{bottom:46.830450px;}
.y1_c00487{bottom:67.530450px;}
.y30_c00487{bottom:166.170450px;}
.y2f_c00487{bottom:186.870450px;}
.y2e_c00487{bottom:207.570450px;}
.y2d_c00487{bottom:228.270450px;}
.y2c_c00487{bottom:248.970450px;}
.y2b_c00487{bottom:269.670450px;}
.y2a_c00487{bottom:290.370450px;}
.y29_c00487{bottom:311.070450px;}
.y28_c00487{bottom:331.770450px;}
.y27_c00487{bottom:352.470450px;}
.y26_c00487{bottom:373.170450px;}
.y25_c00487{bottom:393.780450px;}
.y24_c00487{bottom:414.480450px;}
.y23_c00487{bottom:435.180450px;}
.y22_c00487{bottom:455.880450px;}
.y21_c00487{bottom:476.580450px;}
.y20_c00487{bottom:497.280450px;}
.y1f_c00487{bottom:517.980450px;}
.y1e_c00487{bottom:538.680450px;}
.y1d_c00487{bottom:559.380450px;}
.y1c_c00487{bottom:580.080450px;}
.y1b_c00487{bottom:600.780450px;}
.y1a_c00487{bottom:621.480450px;}
.y19_c00487{bottom:642.180450px;}
.y18_c00487{bottom:662.880450px;}
.y17_c00487{bottom:683.580450px;}
.y16_c00487{bottom:704.280450px;}
.y15_c00487{bottom:724.980450px;}
.y14_c00487{bottom:745.680450px;}
.y13_c00487{bottom:766.380450px;}
.y12_c00487{bottom:787.080450px;}
.y11_c00487{bottom:807.780450px;}
.y10_c00487{bottom:828.480450px;}
.yf_c00487{bottom:849.180450px;}
.ye_c00487{bottom:869.880450px;}
.yd_c00487{bottom:890.580450px;}
.yc_c00487{bottom:911.280450px;}
.yb_c00487{bottom:931.980450px;}
.ya_c00487{bottom:952.680450px;}
.y9_c00487{bottom:973.380450px;}
.y8_c00487{bottom:994.080450px;}
.y7_c00487{bottom:1014.780450px;}
.y6_c00487{bottom:1035.480450px;}
.y5_c00487{bottom:1056.090450px;}
.y4_c00487{bottom:1076.880450px;}
.y3_c00487{bottom:1097.580450px;}
.h1_c00487{height:63.175781px;}
.h2_c00487{height:70.628906px;}
.h3_c00487{height:70.629506px;}
.h0_c00487{height:1263.000000px;}
.w1_c00487{width:892.500000px;}
.w0_c00487{width:892.830000px;}
.x0_c00487{left:0.000000px;}
.x2_c00487{left:127.620000px;}
.x3_c00487{left:181.620000px;}
.x1_c00487{left:695.880000px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls14_c00487{letter-spacing:-0.179200pt;}
.lsd_c00487{letter-spacing:-0.096000pt;}
.ls15_c00487{letter-spacing:-0.089600pt;}
.ls12_c00487{letter-spacing:-0.057600pt;}
.ls16_c00487{letter-spacing:-0.051200pt;}
.lsf_c00487{letter-spacing:-0.044800pt;}
.ls13_c00487{letter-spacing:-0.032000pt;}
.ls11_c00487{letter-spacing:-0.025600pt;}
.lse_c00487{letter-spacing:-0.019200pt;}
.lsc_c00487{letter-spacing:-0.012800pt;}
.ls10_c00487{letter-spacing:-0.006400pt;}
.lsb_c00487{letter-spacing:0.000000pt;}
.ls4_c00487{letter-spacing:0.006400pt;}
.ls8_c00487{letter-spacing:0.012800pt;}
.ls1_c00487{letter-spacing:0.019200pt;}
.ls0_c00487{letter-spacing:0.025600pt;}
.ls2_c00487{letter-spacing:0.032000pt;}
.ls3_c00487{letter-spacing:0.038400pt;}
.lsa_c00487{letter-spacing:0.044800pt;}
.ls7_c00487{letter-spacing:0.051200pt;}
.ls6_c00487{letter-spacing:0.064000pt;}
.ls5_c00487{letter-spacing:0.070400pt;}
.ls9_c00487{letter-spacing:0.083200pt;}
.ls17_c00487{letter-spacing:0.140800pt;}
.ws0_c00487{word-spacing:-16.038400pt;}
.ws3_c00487{word-spacing:-16.032000pt;}
.ws1_c00487{word-spacing:-16.019200pt;}
.ws2_c00487{word-spacing:-15.948800pt;}
.ws3d_c00487{word-spacing:-3.865600pt;}
.ws40_c00487{word-spacing:-2.790400pt;}
.ws41_c00487{word-spacing:-2.630400pt;}
.ws3f_c00487{word-spacing:-2.579200pt;}
.ws3a_c00487{word-spacing:-2.374400pt;}
.ws12_c00487{word-spacing:-2.336000pt;}
.ws3b_c00487{word-spacing:-2.246400pt;}
.ws13_c00487{word-spacing:-2.233600pt;}
.ws3c_c00487{word-spacing:-2.220800pt;}
.ws27_c00487{word-spacing:-1.344000pt;}
.ws15_c00487{word-spacing:-1.305600pt;}
.ws16_c00487{word-spacing:-1.286400pt;}
.ws28_c00487{word-spacing:-1.273600pt;}
.ws18_c00487{word-spacing:-1.241600pt;}
.ws26_c00487{word-spacing:-1.196800pt;}
.ws17_c00487{word-spacing:-1.030400pt;}
.ws19_c00487{word-spacing:-0.985600pt;}
.ws10_c00487{word-spacing:-0.403200pt;}
.wsf_c00487{word-spacing:-0.352000pt;}
.ws37_c00487{word-spacing:-0.332800pt;}
.ws1d_c00487{word-spacing:-0.224000pt;}
.ws47_c00487{word-spacing:-0.185600pt;}
.ws11_c00487{word-spacing:-0.179200pt;}
.ws46_c00487{word-spacing:-0.172800pt;}
.ws2a_c00487{word-spacing:-0.134400pt;}
.ws29_c00487{word-spacing:-0.076800pt;}
.ws1f_c00487{word-spacing:-0.051200pt;}
.ws1a_c00487{word-spacing:-0.038400pt;}
.ws4a_c00487{word-spacing:-0.025600pt;}
.ws42_c00487{word-spacing:-0.019200pt;}
.wsd_c00487{word-spacing:-0.012800pt;}
.ws2b_c00487{word-spacing:-0.006400pt;}
.ws4_c00487{word-spacing:0.000000pt;}
.ws2c_c00487{word-spacing:0.006400pt;}
.ws1e_c00487{word-spacing:0.019200pt;}
.ws14_c00487{word-spacing:0.025600pt;}
.ws2d_c00487{word-spacing:0.032000pt;}
.wsc_c00487{word-spacing:0.044800pt;}
.ws45_c00487{word-spacing:1.875200pt;}
.ws43_c00487{word-spacing:1.888000pt;}
.ws44_c00487{word-spacing:1.964800pt;}
.wse_c00487{word-spacing:2.540800pt;}
.ws30_c00487{word-spacing:2.860800pt;}
.ws2e_c00487{word-spacing:3.795200pt;}
.ws38_c00487{word-spacing:3.801600pt;}
.ws39_c00487{word-spacing:3.814400pt;}
.ws32_c00487{word-spacing:8.940800pt;}
.ws31_c00487{word-spacing:8.979200pt;}
.ws35_c00487{word-spacing:9.632000pt;}
.ws36_c00487{word-spacing:9.779200pt;}
.ws22_c00487{word-spacing:9.913600pt;}
.ws21_c00487{word-spacing:9.920000pt;}
.ws20_c00487{word-spacing:10.048000pt;}
.ws2f_c00487{word-spacing:10.547200pt;}
.wsb_c00487{word-spacing:10.585600pt;}
.wsa_c00487{word-spacing:10.681600pt;}
.ws1c_c00487{word-spacing:12.448000pt;}
.ws1b_c00487{word-spacing:12.492800pt;}
.ws8_c00487{word-spacing:17.132800pt;}
.ws7_c00487{word-spacing:17.145600pt;}
.ws9_c00487{word-spacing:17.376000pt;}
.ws24_c00487{word-spacing:18.688000pt;}
.ws25_c00487{word-spacing:18.777600pt;}
.ws23_c00487{word-spacing:18.803200pt;}
.ws6_c00487{word-spacing:21.036800pt;}
.ws5_c00487{word-spacing:21.094400pt;}
.ws49_c00487{word-spacing:23.673600pt;}
.ws48_c00487{word-spacing:23.692800pt;}
.ws34_c00487{word-spacing:59.238400pt;}
.ws33_c00487{word-spacing:59.244800pt;}
.ws3e_c00487{word-spacing:637.094400pt;}
._0_c00487{margin-left:-0.896000pt;}
._2_c00487{width:1.120000pt;}
._1_c00487{width:10.828800pt;}
.fs0_c00487{font-size:64.000000pt;}
.y0_c00487{bottom:0.000000pt;}
.y2_c00487{bottom:41.627067pt;}
.y1_c00487{bottom:60.027067pt;}
.y30_c00487{bottom:147.707067pt;}
.y2f_c00487{bottom:166.107067pt;}
.y2e_c00487{bottom:184.507067pt;}
.y2d_c00487{bottom:202.907067pt;}
.y2c_c00487{bottom:221.307067pt;}
.y2b_c00487{bottom:239.707067pt;}
.y2a_c00487{bottom:258.107067pt;}
.y29_c00487{bottom:276.507067pt;}
.y28_c00487{bottom:294.907067pt;}
.y27_c00487{bottom:313.307067pt;}
.y26_c00487{bottom:331.707067pt;}
.y25_c00487{bottom:350.027067pt;}
.y24_c00487{bottom:368.427067pt;}
.y23_c00487{bottom:386.827067pt;}
.y22_c00487{bottom:405.227067pt;}
.y21_c00487{bottom:423.627067pt;}
.y20_c00487{bottom:442.027067pt;}
.y1f_c00487{bottom:460.427067pt;}
.y1e_c00487{bottom:478.827067pt;}
.y1d_c00487{bottom:497.227067pt;}
.y1c_c00487{bottom:515.627067pt;}
.y1b_c00487{bottom:534.027067pt;}
.y1a_c00487{bottom:552.427067pt;}
.y19_c00487{bottom:570.827067pt;}
.y18_c00487{bottom:589.227067pt;}
.y17_c00487{bottom:607.627067pt;}
.y16_c00487{bottom:626.027067pt;}
.y15_c00487{bottom:644.427067pt;}
.y14_c00487{bottom:662.827067pt;}
.y13_c00487{bottom:681.227067pt;}
.y12_c00487{bottom:699.627067pt;}
.y11_c00487{bottom:718.027067pt;}
.y10_c00487{bottom:736.427067pt;}
.yf_c00487{bottom:754.827067pt;}
.ye_c00487{bottom:773.227067pt;}
.yd_c00487{bottom:791.627067pt;}
.yc_c00487{bottom:810.027067pt;}
.yb_c00487{bottom:828.427067pt;}
.ya_c00487{bottom:846.827067pt;}
.y9_c00487{bottom:865.227067pt;}
.y8_c00487{bottom:883.627067pt;}
.y7_c00487{bottom:902.027067pt;}
.y6_c00487{bottom:920.427067pt;}
.y5_c00487{bottom:938.747067pt;}
.y4_c00487{bottom:957.227067pt;}
.y3_c00487{bottom:975.627067pt;}
.h1_c00487{height:56.156250pt;}
.h2_c00487{height:62.781250pt;}
.h3_c00487{height:62.781783pt;}
.h0_c00487{height:1122.666667pt;}
.w1_c00487{width:793.333333pt;}
.w0_c00487{width:793.626667pt;}
.x0_c00487{left:0.000000pt;}
.x2_c00487{left:113.440000pt;}
.x3_c00487{left:161.440000pt;}
.x1_c00487{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b87c3ee72c2c110d1b10b7d7.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.093262;font-style:normal;font-weight:normal;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_b6c6e86a242dbcd9fdc0b43e.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls15_c00488{letter-spacing:-0.093600px;}
.ls14_c00488{letter-spacing:-0.057600px;}
.ls13_c00488{letter-spacing:-0.050400px;}
.ls12_c00488{letter-spacing:-0.043200px;}
.ls16_c00488{letter-spacing:-0.028800px;}
.lsf_c00488{letter-spacing:-0.021600px;}
.ls10_c00488{letter-spacing:-0.014400px;}
.ls11_c00488{letter-spacing:-0.007200px;}
.lse_c00488{letter-spacing:0.000000px;}
.ls4_c00488{letter-spacing:0.007200px;}
.ls6_c00488{letter-spacing:0.014400px;}
.ls0_c00488{letter-spacing:0.021600px;}
.ls5_c00488{letter-spacing:0.028800px;}
.ls8_c00488{letter-spacing:0.036000px;}
.lsa_c00488{letter-spacing:0.043200px;}
.ls1_c00488{letter-spacing:0.050400px;}
.ls3_c00488{letter-spacing:0.057600px;}
.ls7_c00488{letter-spacing:0.064800px;}
.lsb_c00488{letter-spacing:0.072000px;}
.ls2_c00488{letter-spacing:0.079200px;}
.lsc_c00488{letter-spacing:0.086400px;}
.ls9_c00488{letter-spacing:0.093600px;}
.lsd_c00488{letter-spacing:0.108000px;}
.sc__c00488{text-shadow:none;}
.sc0_c00488{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00488{-webkit-text-stroke:0px transparent;}
.sc0_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00488{word-spacing:-18.028800px;}
.ws0_c00488{word-spacing:-18.014400px;}
.ws1_c00488{word-spacing:-18.007200px;}
.wsd_c00488{word-spacing:-2.721600px;}
.ws2e_c00488{word-spacing:-2.656800px;}
.ws2f_c00488{word-spacing:-2.592000px;}
.wsc_c00488{word-spacing:-2.584800px;}
.ws45_c00488{word-spacing:-2.527200px;}
.ws44_c00488{word-spacing:-2.520000px;}
.ws2d_c00488{word-spacing:-2.491200px;}
.ws30_c00488{word-spacing:-2.203200px;}
.ws31_c00488{word-spacing:-2.174400px;}
.ws2a_c00488{word-spacing:-1.108800px;}
.ws3a_c00488{word-spacing:-0.792000px;}
.wse_c00488{word-spacing:-0.201600px;}
.ws23_c00488{word-spacing:-0.115200px;}
.ws6_c00488{word-spacing:-0.093600px;}
.wsb_c00488{word-spacing:-0.057600px;}
.wsf_c00488{word-spacing:-0.007200px;}
.ws3_c00488{word-spacing:0.000000px;}
.ws19_c00488{word-spacing:0.007200px;}
.ws29_c00488{word-spacing:0.021600px;}
.ws32_c00488{word-spacing:1.008000px;}
.ws5_c00488{word-spacing:3.067200px;}
.ws4_c00488{word-spacing:3.218400px;}
.ws40_c00488{word-spacing:3.261600px;}
.ws1e_c00488{word-spacing:3.895200px;}
.ws1f_c00488{word-spacing:4.053600px;}
.ws1c_c00488{word-spacing:4.543200px;}
.ws21_c00488{word-spacing:4.572000px;}
.ws12_c00488{word-spacing:4.629600px;}
.ws10_c00488{word-spacing:4.651200px;}
.ws20_c00488{word-spacing:4.658400px;}
.ws11_c00488{word-spacing:4.680000px;}
.ws1a_c00488{word-spacing:4.694400px;}
.ws22_c00488{word-spacing:4.701600px;}
.ws1b_c00488{word-spacing:4.737600px;}
.ws39_c00488{word-spacing:7.495200px;}
.ws38_c00488{word-spacing:7.574400px;}
.ws3c_c00488{word-spacing:7.725600px;}
.ws3b_c00488{word-spacing:7.884000px;}
.ws3d_c00488{word-spacing:7.927200px;}
.ws43_c00488{word-spacing:9.475200px;}
.ws42_c00488{word-spacing:9.619200px;}
.ws34_c00488{word-spacing:9.712800px;}
.ws33_c00488{word-spacing:9.734400px;}
.ws18_c00488{word-spacing:10.044000px;}
.ws16_c00488{word-spacing:10.087200px;}
.ws17_c00488{word-spacing:10.101600px;}
.ws9_c00488{word-spacing:12.758400px;}
.ws8_c00488{word-spacing:12.967200px;}
.ws7_c00488{word-spacing:12.974400px;}
.wsa_c00488{word-spacing:13.003200px;}
.ws14_c00488{word-spacing:16.545600px;}
.ws13_c00488{word-spacing:16.552800px;}
.ws1d_c00488{word-spacing:16.567200px;}
.ws15_c00488{word-spacing:16.610400px;}
.ws36_c00488{word-spacing:20.678400px;}
.ws35_c00488{word-spacing:20.844000px;}
.ws37_c00488{word-spacing:20.858400px;}
.ws24_c00488{word-spacing:21.261600px;}
.ws3f_c00488{word-spacing:24.465600px;}
.ws3e_c00488{word-spacing:24.566400px;}
.ws25_c00488{word-spacing:26.856000px;}
.ws27_c00488{word-spacing:33.458400px;}
.ws26_c00488{word-spacing:33.775200px;}
.ws28_c00488{word-spacing:33.832800px;}
.ws41_c00488{word-spacing:93.621600px;}
.ws2b_c00488{word-spacing:141.487200px;}
.ws2c_c00488{word-spacing:141.501600px;}
._0_c00488{margin-left:-1.447200px;}
._1_c00488{width:3.852000px;}
.fc0_c00488{color:rgb(0,0,0);}
.fs0_c00488{font-size:72.000000px;}
.y0_c00488{bottom:0.000000px;}
.y2_c00488{bottom:46.830450px;}
.y1_c00488{bottom:67.530450px;}
.y30_c00488{bottom:166.170450px;}
.y2f_c00488{bottom:186.870450px;}
.y2e_c00488{bottom:207.570450px;}
.y2d_c00488{bottom:228.270450px;}
.y2c_c00488{bottom:248.970450px;}
.y2b_c00488{bottom:269.670450px;}
.y2a_c00488{bottom:290.370450px;}
.y29_c00488{bottom:311.070450px;}
.y28_c00488{bottom:331.770450px;}
.y27_c00488{bottom:352.470450px;}
.y26_c00488{bottom:373.170450px;}
.y25_c00488{bottom:393.780450px;}
.y24_c00488{bottom:414.480450px;}
.y23_c00488{bottom:435.180450px;}
.y22_c00488{bottom:455.880450px;}
.y21_c00488{bottom:476.580450px;}
.y20_c00488{bottom:497.280450px;}
.y1f_c00488{bottom:517.980450px;}
.y1e_c00488{bottom:538.680450px;}
.y1d_c00488{bottom:559.380450px;}
.y1c_c00488{bottom:580.080450px;}
.y1b_c00488{bottom:600.780450px;}
.y1a_c00488{bottom:621.480450px;}
.y19_c00488{bottom:642.180450px;}
.y18_c00488{bottom:662.880450px;}
.y17_c00488{bottom:683.580450px;}
.y16_c00488{bottom:704.280450px;}
.y15_c00488{bottom:724.980450px;}
.y14_c00488{bottom:745.680450px;}
.y13_c00488{bottom:766.380450px;}
.y12_c00488{bottom:787.080450px;}
.y11_c00488{bottom:807.780450px;}
.y10_c00488{bottom:828.480450px;}
.yf_c00488{bottom:849.180450px;}
.ye_c00488{bottom:869.880450px;}
.yd_c00488{bottom:890.580450px;}
.yc_c00488{bottom:911.280450px;}
.yb_c00488{bottom:931.980450px;}
.ya_c00488{bottom:952.680450px;}
.y9_c00488{bottom:973.380450px;}
.y8_c00488{bottom:994.080450px;}
.y7_c00488{bottom:1014.780450px;}
.y6_c00488{bottom:1035.480450px;}
.y5_c00488{bottom:1056.180450px;}
.y4_c00488{bottom:1076.880450px;}
.y3_c00488{bottom:1097.580450px;}
.h1_c00488{height:63.175781px;}
.h2_c00488{height:70.628906px;}
.h0_c00488{height:1263.000000px;}
.w1_c00488{width:892.500000px;}
.w0_c00488{width:892.830000px;}
.x0_c00488{left:0.000000px;}
.x2_c00488{left:170.100000px;}
.x3_c00488{left:224.100000px;}
.x1_c00488{left:738.360000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls15_c00488{letter-spacing:-0.083200pt;}
.ls14_c00488{letter-spacing:-0.051200pt;}
.ls13_c00488{letter-spacing:-0.044800pt;}
.ls12_c00488{letter-spacing:-0.038400pt;}
.ls16_c00488{letter-spacing:-0.025600pt;}
.lsf_c00488{letter-spacing:-0.019200pt;}
.ls10_c00488{letter-spacing:-0.012800pt;}
.ls11_c00488{letter-spacing:-0.006400pt;}
.lse_c00488{letter-spacing:0.000000pt;}
.ls4_c00488{letter-spacing:0.006400pt;}
.ls6_c00488{letter-spacing:0.012800pt;}
.ls0_c00488{letter-spacing:0.019200pt;}
.ls5_c00488{letter-spacing:0.025600pt;}
.ls8_c00488{letter-spacing:0.032000pt;}
.lsa_c00488{letter-spacing:0.038400pt;}
.ls1_c00488{letter-spacing:0.044800pt;}
.ls3_c00488{letter-spacing:0.051200pt;}
.ls7_c00488{letter-spacing:0.057600pt;}
.lsb_c00488{letter-spacing:0.064000pt;}
.ls2_c00488{letter-spacing:0.070400pt;}
.lsc_c00488{letter-spacing:0.076800pt;}
.ls9_c00488{letter-spacing:0.083200pt;}
.lsd_c00488{letter-spacing:0.096000pt;}
.ws2_c00488{word-spacing:-16.025600pt;}
.ws0_c00488{word-spacing:-16.012800pt;}
.ws1_c00488{word-spacing:-16.006400pt;}
.wsd_c00488{word-spacing:-2.419200pt;}
.ws2e_c00488{word-spacing:-2.361600pt;}
.ws2f_c00488{word-spacing:-2.304000pt;}
.wsc_c00488{word-spacing:-2.297600pt;}
.ws45_c00488{word-spacing:-2.246400pt;}
.ws44_c00488{word-spacing:-2.240000pt;}
.ws2d_c00488{word-spacing:-2.214400pt;}
.ws30_c00488{word-spacing:-1.958400pt;}
.ws31_c00488{word-spacing:-1.932800pt;}
.ws2a_c00488{word-spacing:-0.985600pt;}
.ws3a_c00488{word-spacing:-0.704000pt;}
.wse_c00488{word-spacing:-0.179200pt;}
.ws23_c00488{word-spacing:-0.102400pt;}
.ws6_c00488{word-spacing:-0.083200pt;}
.wsb_c00488{word-spacing:-0.051200pt;}
.wsf_c00488{word-spacing:-0.006400pt;}
.ws3_c00488{word-spacing:0.000000pt;}
.ws19_c00488{word-spacing:0.006400pt;}
.ws29_c00488{word-spacing:0.019200pt;}
.ws32_c00488{word-spacing:0.896000pt;}
.ws5_c00488{word-spacing:2.726400pt;}
.ws4_c00488{word-spacing:2.860800pt;}
.ws40_c00488{word-spacing:2.899200pt;}
.ws1e_c00488{word-spacing:3.462400pt;}
.ws1f_c00488{word-spacing:3.603200pt;}
.ws1c_c00488{word-spacing:4.038400pt;}
.ws21_c00488{word-spacing:4.064000pt;}
.ws12_c00488{word-spacing:4.115200pt;}
.ws10_c00488{word-spacing:4.134400pt;}
.ws20_c00488{word-spacing:4.140800pt;}
.ws11_c00488{word-spacing:4.160000pt;}
.ws1a_c00488{word-spacing:4.172800pt;}
.ws22_c00488{word-spacing:4.179200pt;}
.ws1b_c00488{word-spacing:4.211200pt;}
.ws39_c00488{word-spacing:6.662400pt;}
.ws38_c00488{word-spacing:6.732800pt;}
.ws3c_c00488{word-spacing:6.867200pt;}
.ws3b_c00488{word-spacing:7.008000pt;}
.ws3d_c00488{word-spacing:7.046400pt;}
.ws43_c00488{word-spacing:8.422400pt;}
.ws42_c00488{word-spacing:8.550400pt;}
.ws34_c00488{word-spacing:8.633600pt;}
.ws33_c00488{word-spacing:8.652800pt;}
.ws18_c00488{word-spacing:8.928000pt;}
.ws16_c00488{word-spacing:8.966400pt;}
.ws17_c00488{word-spacing:8.979200pt;}
.ws9_c00488{word-spacing:11.340800pt;}
.ws8_c00488{word-spacing:11.526400pt;}
.ws7_c00488{word-spacing:11.532800pt;}
.wsa_c00488{word-spacing:11.558400pt;}
.ws14_c00488{word-spacing:14.707200pt;}
.ws13_c00488{word-spacing:14.713600pt;}
.ws1d_c00488{word-spacing:14.726400pt;}
.ws15_c00488{word-spacing:14.764800pt;}
.ws36_c00488{word-spacing:18.380800pt;}
.ws35_c00488{word-spacing:18.528000pt;}
.ws37_c00488{word-spacing:18.540800pt;}
.ws24_c00488{word-spacing:18.899200pt;}
.ws3f_c00488{word-spacing:21.747200pt;}
.ws3e_c00488{word-spacing:21.836800pt;}
.ws25_c00488{word-spacing:23.872000pt;}
.ws27_c00488{word-spacing:29.740800pt;}
.ws26_c00488{word-spacing:30.022400pt;}
.ws28_c00488{word-spacing:30.073600pt;}
.ws41_c00488{word-spacing:83.219200pt;}
.ws2b_c00488{word-spacing:125.766400pt;}
.ws2c_c00488{word-spacing:125.779200pt;}
._0_c00488{margin-left:-1.286400pt;}
._1_c00488{width:3.424000pt;}
.fs0_c00488{font-size:64.000000pt;}
.y0_c00488{bottom:0.000000pt;}
.y2_c00488{bottom:41.627067pt;}
.y1_c00488{bottom:60.027067pt;}
.y30_c00488{bottom:147.707067pt;}
.y2f_c00488{bottom:166.107067pt;}
.y2e_c00488{bottom:184.507067pt;}
.y2d_c00488{bottom:202.907067pt;}
.y2c_c00488{bottom:221.307067pt;}
.y2b_c00488{bottom:239.707067pt;}
.y2a_c00488{bottom:258.107067pt;}
.y29_c00488{bottom:276.507067pt;}
.y28_c00488{bottom:294.907067pt;}
.y27_c00488{bottom:313.307067pt;}
.y26_c00488{bottom:331.707067pt;}
.y25_c00488{bottom:350.027067pt;}
.y24_c00488{bottom:368.427067pt;}
.y23_c00488{bottom:386.827067pt;}
.y22_c00488{bottom:405.227067pt;}
.y21_c00488{bottom:423.627067pt;}
.y20_c00488{bottom:442.027067pt;}
.y1f_c00488{bottom:460.427067pt;}
.y1e_c00488{bottom:478.827067pt;}
.y1d_c00488{bottom:497.227067pt;}
.y1c_c00488{bottom:515.627067pt;}
.y1b_c00488{bottom:534.027067pt;}
.y1a_c00488{bottom:552.427067pt;}
.y19_c00488{bottom:570.827067pt;}
.y18_c00488{bottom:589.227067pt;}
.y17_c00488{bottom:607.627067pt;}
.y16_c00488{bottom:626.027067pt;}
.y15_c00488{bottom:644.427067pt;}
.y14_c00488{bottom:662.827067pt;}
.y13_c00488{bottom:681.227067pt;}
.y12_c00488{bottom:699.627067pt;}
.y11_c00488{bottom:718.027067pt;}
.y10_c00488{bottom:736.427067pt;}
.yf_c00488{bottom:754.827067pt;}
.ye_c00488{bottom:773.227067pt;}
.yd_c00488{bottom:791.627067pt;}
.yc_c00488{bottom:810.027067pt;}
.yb_c00488{bottom:828.427067pt;}
.ya_c00488{bottom:846.827067pt;}
.y9_c00488{bottom:865.227067pt;}
.y8_c00488{bottom:883.627067pt;}
.y7_c00488{bottom:902.027067pt;}
.y6_c00488{bottom:920.427067pt;}
.y5_c00488{bottom:938.827067pt;}
.y4_c00488{bottom:957.227067pt;}
.y3_c00488{bottom:975.627067pt;}
.h1_c00488{height:56.156250pt;}
.h2_c00488{height:62.781250pt;}
.h0_c00488{height:1122.666667pt;}
.w1_c00488{width:793.333333pt;}
.w0_c00488{width:793.626667pt;}
.x0_c00488{left:0.000000pt;}
.x2_c00488{left:151.200000pt;}
.x3_c00488{left:199.200000pt;}
.x1_c00488{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f99513cc395a2ebba692de3a.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.093262;font-style:normal;font-weight:normal;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_779f5574133e10aa4314a98d.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00489{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls14_c00489{letter-spacing:-0.187200px;}
.lse_c00489{letter-spacing:-0.050400px;}
.ls13_c00489{letter-spacing:-0.036000px;}
.ls11_c00489{letter-spacing:-0.028800px;}
.ls12_c00489{letter-spacing:-0.021600px;}
.ls10_c00489{letter-spacing:-0.014400px;}
.lsf_c00489{letter-spacing:-0.007200px;}
.lsd_c00489{letter-spacing:0.000000px;}
.ls0_c00489{letter-spacing:0.007200px;}
.ls2_c00489{letter-spacing:0.014400px;}
.ls7_c00489{letter-spacing:0.021600px;}
.ls3_c00489{letter-spacing:0.028800px;}
.ls1_c00489{letter-spacing:0.036000px;}
.ls5_c00489{letter-spacing:0.043200px;}
.ls8_c00489{letter-spacing:0.050400px;}
.ls6_c00489{letter-spacing:0.057600px;}
.lsc_c00489{letter-spacing:0.064800px;}
.ls4_c00489{letter-spacing:0.072000px;}
.lsb_c00489{letter-spacing:0.079200px;}
.ls9_c00489{letter-spacing:0.086400px;}
.lsa_c00489{letter-spacing:0.115200px;}
.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:-18.086400px;}
.ws3_c00489{word-spacing:-18.057600px;}
.ws5_c00489{word-spacing:-18.050400px;}
.ws2_c00489{word-spacing:-18.043200px;}
.ws0_c00489{word-spacing:-18.014400px;}
.ws1_c00489{word-spacing:-18.000000px;}
.ws51_c00489{word-spacing:-4.176000px;}
.ws52_c00489{word-spacing:-4.075200px;}
.ws50_c00489{word-spacing:-4.053600px;}
.ws32_c00489{word-spacing:-3.938400px;}
.ws4d_c00489{word-spacing:-3.758400px;}
.ws30_c00489{word-spacing:-3.607200px;}
.ws31_c00489{word-spacing:-3.578400px;}
.ws12_c00489{word-spacing:-2.376000px;}
.ws14_c00489{word-spacing:-2.246400px;}
.ws13_c00489{word-spacing:-2.145600px;}
.ws1b_c00489{word-spacing:-1.641600px;}
.ws1a_c00489{word-spacing:-1.497600px;}
.ws3a_c00489{word-spacing:-1.195200px;}
.ws27_c00489{word-spacing:-0.907200px;}
.ws26_c00489{word-spacing:-0.784800px;}
.wsd_c00489{word-spacing:-0.734400px;}
.ws39_c00489{word-spacing:-0.727200px;}
.wsb_c00489{word-spacing:-0.619200px;}
.wsc_c00489{word-spacing:-0.583200px;}
.ws4a_c00489{word-spacing:-0.439200px;}
.ws4b_c00489{word-spacing:-0.338400px;}
.ws48_c00489{word-spacing:-0.280800px;}
.ws3b_c00489{word-spacing:-0.259200px;}
.ws15_c00489{word-spacing:-0.252000px;}
.ws24_c00489{word-spacing:-0.237600px;}
.ws1e_c00489{word-spacing:-0.208800px;}
.ws4c_c00489{word-spacing:-0.172800px;}
.ws44_c00489{word-spacing:-0.158400px;}
.ws23_c00489{word-spacing:-0.151200px;}
.ws1d_c00489{word-spacing:-0.129600px;}
.ws53_c00489{word-spacing:-0.100800px;}
.ws41_c00489{word-spacing:-0.086400px;}
.ws19_c00489{word-spacing:-0.057600px;}
.ws49_c00489{word-spacing:-0.050400px;}
.ws1f_c00489{word-spacing:-0.043200px;}
.ws2f_c00489{word-spacing:-0.036000px;}
.ws35_c00489{word-spacing:-0.028800px;}
.ws1c_c00489{word-spacing:-0.021600px;}
.ws2c_c00489{word-spacing:-0.014400px;}
.ws34_c00489{word-spacing:-0.007200px;}
.ws6_c00489{word-spacing:0.000000px;}
.ws16_c00489{word-spacing:0.007200px;}
.ws33_c00489{word-spacing:0.021600px;}
.ws25_c00489{word-spacing:0.028800px;}
.ws4e_c00489{word-spacing:1.360800px;}
.ws4f_c00489{word-spacing:1.432800px;}
.ws28_c00489{word-spacing:4.111200px;}
.ws29_c00489{word-spacing:4.276800px;}
.ws17_c00489{word-spacing:4.298400px;}
.ws18_c00489{word-spacing:4.320000px;}
.wsf_c00489{word-spacing:4.917600px;}
.wse_c00489{word-spacing:5.032800px;}
.ws8_c00489{word-spacing:8.150400px;}
.ws38_c00489{word-spacing:8.251200px;}
.ws7_c00489{word-spacing:8.272800px;}
.ws9_c00489{word-spacing:8.330400px;}
.ws3f_c00489{word-spacing:8.460000px;}
.ws37_c00489{word-spacing:8.481600px;}
.ws40_c00489{word-spacing:8.568000px;}
.ws36_c00489{word-spacing:8.618400px;}
.ws3c_c00489{word-spacing:14.738400px;}
.ws3d_c00489{word-spacing:14.760000px;}
.ws3e_c00489{word-spacing:14.767200px;}
.ws22_c00489{word-spacing:16.387200px;}
.ws21_c00489{word-spacing:16.401600px;}
.ws20_c00489{word-spacing:16.531200px;}
.ws47_c00489{word-spacing:24.062400px;}
.ws46_c00489{word-spacing:24.120000px;}
.ws2e_c00489{word-spacing:26.200800px;}
.ws2d_c00489{word-spacing:26.258400px;}
.wsa_c00489{word-spacing:31.327200px;}
.ws10_c00489{word-spacing:34.840800px;}
.ws11_c00489{word-spacing:34.898400px;}
.ws45_c00489{word-spacing:39.578400px;}
.ws42_c00489{word-spacing:44.258400px;}
.ws43_c00489{word-spacing:44.272800px;}
.ws2b_c00489{word-spacing:48.117600px;}
.ws2a_c00489{word-spacing:48.225600px;}
._0_c00489{margin-left:-1.137600px;}
._1_c00489{width:1.173600px;}
.fc0_c00489{color:rgb(0,0,0);}
.fs0_c00489{font-size:72.000000px;}
.y0_c00489{bottom:0.000000px;}
.y2_c00489{bottom:46.830450px;}
.y1_c00489{bottom:67.530450px;}
.y31_c00489{bottom:145.470450px;}
.y30_c00489{bottom:166.170450px;}
.y2f_c00489{bottom:186.870450px;}
.y2e_c00489{bottom:207.570450px;}
.y2d_c00489{bottom:228.270450px;}
.y2c_c00489{bottom:248.970450px;}
.y2b_c00489{bottom:269.670450px;}
.y2a_c00489{bottom:290.370450px;}
.y29_c00489{bottom:311.070450px;}
.y28_c00489{bottom:331.770450px;}
.y27_c00489{bottom:352.470450px;}
.y26_c00489{bottom:373.170450px;}
.y25_c00489{bottom:393.780450px;}
.y24_c00489{bottom:414.480450px;}
.y23_c00489{bottom:435.180450px;}
.y22_c00489{bottom:455.880450px;}
.y21_c00489{bottom:476.580450px;}
.y20_c00489{bottom:497.280450px;}
.y1f_c00489{bottom:517.980450px;}
.y1e_c00489{bottom:538.680450px;}
.y1d_c00489{bottom:559.380450px;}
.y1c_c00489{bottom:580.080450px;}
.y1b_c00489{bottom:600.780450px;}
.y1a_c00489{bottom:621.480450px;}
.y19_c00489{bottom:642.180450px;}
.y18_c00489{bottom:662.880450px;}
.y17_c00489{bottom:683.580450px;}
.y16_c00489{bottom:704.280450px;}
.y15_c00489{bottom:724.980450px;}
.y14_c00489{bottom:745.680450px;}
.y13_c00489{bottom:766.380450px;}
.y12_c00489{bottom:787.080450px;}
.y11_c00489{bottom:807.780450px;}
.y10_c00489{bottom:828.480450px;}
.yf_c00489{bottom:849.180450px;}
.ye_c00489{bottom:869.880450px;}
.yd_c00489{bottom:890.580450px;}
.yc_c00489{bottom:911.280450px;}
.yb_c00489{bottom:931.980450px;}
.ya_c00489{bottom:952.680450px;}
.y9_c00489{bottom:973.380450px;}
.y8_c00489{bottom:994.080450px;}
.y7_c00489{bottom:1014.780450px;}
.y6_c00489{bottom:1035.480450px;}
.y5_c00489{bottom:1056.180450px;}
.y4_c00489{bottom:1076.880450px;}
.y3_c00489{bottom:1097.580450px;}
.h1_c00489{height:63.175781px;}
.h2_c00489{height:70.628906px;}
.h0_c00489{height:1263.000000px;}
.w1_c00489{width:892.500000px;}
.w0_c00489{width:892.830000px;}
.x0_c00489{left:0.000000px;}
.x2_c00489{left:127.620000px;}
.x3_c00489{left:181.620000px;}
.x1_c00489{left:695.880000px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls14_c00489{letter-spacing:-0.166400pt;}
.lse_c00489{letter-spacing:-0.044800pt;}
.ls13_c00489{letter-spacing:-0.032000pt;}
.ls11_c00489{letter-spacing:-0.025600pt;}
.ls12_c00489{letter-spacing:-0.019200pt;}
.ls10_c00489{letter-spacing:-0.012800pt;}
.lsf_c00489{letter-spacing:-0.006400pt;}
.lsd_c00489{letter-spacing:0.000000pt;}
.ls0_c00489{letter-spacing:0.006400pt;}
.ls2_c00489{letter-spacing:0.012800pt;}
.ls7_c00489{letter-spacing:0.019200pt;}
.ls3_c00489{letter-spacing:0.025600pt;}
.ls1_c00489{letter-spacing:0.032000pt;}
.ls5_c00489{letter-spacing:0.038400pt;}
.ls8_c00489{letter-spacing:0.044800pt;}
.ls6_c00489{letter-spacing:0.051200pt;}
.lsc_c00489{letter-spacing:0.057600pt;}
.ls4_c00489{letter-spacing:0.064000pt;}
.lsb_c00489{letter-spacing:0.070400pt;}
.ls9_c00489{letter-spacing:0.076800pt;}
.lsa_c00489{letter-spacing:0.102400pt;}
.ws4_c00489{word-spacing:-16.076800pt;}
.ws3_c00489{word-spacing:-16.051200pt;}
.ws5_c00489{word-spacing:-16.044800pt;}
.ws2_c00489{word-spacing:-16.038400pt;}
.ws0_c00489{word-spacing:-16.012800pt;}
.ws1_c00489{word-spacing:-16.000000pt;}
.ws51_c00489{word-spacing:-3.712000pt;}
.ws52_c00489{word-spacing:-3.622400pt;}
.ws50_c00489{word-spacing:-3.603200pt;}
.ws32_c00489{word-spacing:-3.500800pt;}
.ws4d_c00489{word-spacing:-3.340800pt;}
.ws30_c00489{word-spacing:-3.206400pt;}
.ws31_c00489{word-spacing:-3.180800pt;}
.ws12_c00489{word-spacing:-2.112000pt;}
.ws14_c00489{word-spacing:-1.996800pt;}
.ws13_c00489{word-spacing:-1.907200pt;}
.ws1b_c00489{word-spacing:-1.459200pt;}
.ws1a_c00489{word-spacing:-1.331200pt;}
.ws3a_c00489{word-spacing:-1.062400pt;}
.ws27_c00489{word-spacing:-0.806400pt;}
.ws26_c00489{word-spacing:-0.697600pt;}
.wsd_c00489{word-spacing:-0.652800pt;}
.ws39_c00489{word-spacing:-0.646400pt;}
.wsb_c00489{word-spacing:-0.550400pt;}
.wsc_c00489{word-spacing:-0.518400pt;}
.ws4a_c00489{word-spacing:-0.390400pt;}
.ws4b_c00489{word-spacing:-0.300800pt;}
.ws48_c00489{word-spacing:-0.249600pt;}
.ws3b_c00489{word-spacing:-0.230400pt;}
.ws15_c00489{word-spacing:-0.224000pt;}
.ws24_c00489{word-spacing:-0.211200pt;}
.ws1e_c00489{word-spacing:-0.185600pt;}
.ws4c_c00489{word-spacing:-0.153600pt;}
.ws44_c00489{word-spacing:-0.140800pt;}
.ws23_c00489{word-spacing:-0.134400pt;}
.ws1d_c00489{word-spacing:-0.115200pt;}
.ws53_c00489{word-spacing:-0.089600pt;}
.ws41_c00489{word-spacing:-0.076800pt;}
.ws19_c00489{word-spacing:-0.051200pt;}
.ws49_c00489{word-spacing:-0.044800pt;}
.ws1f_c00489{word-spacing:-0.038400pt;}
.ws2f_c00489{word-spacing:-0.032000pt;}
.ws35_c00489{word-spacing:-0.025600pt;}
.ws1c_c00489{word-spacing:-0.019200pt;}
.ws2c_c00489{word-spacing:-0.012800pt;}
.ws34_c00489{word-spacing:-0.006400pt;}
.ws6_c00489{word-spacing:0.000000pt;}
.ws16_c00489{word-spacing:0.006400pt;}
.ws33_c00489{word-spacing:0.019200pt;}
.ws25_c00489{word-spacing:0.025600pt;}
.ws4e_c00489{word-spacing:1.209600pt;}
.ws4f_c00489{word-spacing:1.273600pt;}
.ws28_c00489{word-spacing:3.654400pt;}
.ws29_c00489{word-spacing:3.801600pt;}
.ws17_c00489{word-spacing:3.820800pt;}
.ws18_c00489{word-spacing:3.840000pt;}
.wsf_c00489{word-spacing:4.371200pt;}
.wse_c00489{word-spacing:4.473600pt;}
.ws8_c00489{word-spacing:7.244800pt;}
.ws38_c00489{word-spacing:7.334400pt;}
.ws7_c00489{word-spacing:7.353600pt;}
.ws9_c00489{word-spacing:7.404800pt;}
.ws3f_c00489{word-spacing:7.520000pt;}
.ws37_c00489{word-spacing:7.539200pt;}
.ws40_c00489{word-spacing:7.616000pt;}
.ws36_c00489{word-spacing:7.660800pt;}
.ws3c_c00489{word-spacing:13.100800pt;}
.ws3d_c00489{word-spacing:13.120000pt;}
.ws3e_c00489{word-spacing:13.126400pt;}
.ws22_c00489{word-spacing:14.566400pt;}
.ws21_c00489{word-spacing:14.579200pt;}
.ws20_c00489{word-spacing:14.694400pt;}
.ws47_c00489{word-spacing:21.388800pt;}
.ws46_c00489{word-spacing:21.440000pt;}
.ws2e_c00489{word-spacing:23.289600pt;}
.ws2d_c00489{word-spacing:23.340800pt;}
.wsa_c00489{word-spacing:27.846400pt;}
.ws10_c00489{word-spacing:30.969600pt;}
.ws11_c00489{word-spacing:31.020800pt;}
.ws45_c00489{word-spacing:35.180800pt;}
.ws42_c00489{word-spacing:39.340800pt;}
.ws43_c00489{word-spacing:39.353600pt;}
.ws2b_c00489{word-spacing:42.771200pt;}
.ws2a_c00489{word-spacing:42.867200pt;}
._0_c00489{margin-left:-1.011200pt;}
._1_c00489{width:1.043200pt;}
.fs0_c00489{font-size:64.000000pt;}
.y0_c00489{bottom:0.000000pt;}
.y2_c00489{bottom:41.627067pt;}
.y1_c00489{bottom:60.027067pt;}
.y31_c00489{bottom:129.307067pt;}
.y30_c00489{bottom:147.707067pt;}
.y2f_c00489{bottom:166.107067pt;}
.y2e_c00489{bottom:184.507067pt;}
.y2d_c00489{bottom:202.907067pt;}
.y2c_c00489{bottom:221.307067pt;}
.y2b_c00489{bottom:239.707067pt;}
.y2a_c00489{bottom:258.107067pt;}
.y29_c00489{bottom:276.507067pt;}
.y28_c00489{bottom:294.907067pt;}
.y27_c00489{bottom:313.307067pt;}
.y26_c00489{bottom:331.707067pt;}
.y25_c00489{bottom:350.027067pt;}
.y24_c00489{bottom:368.427067pt;}
.y23_c00489{bottom:386.827067pt;}
.y22_c00489{bottom:405.227067pt;}
.y21_c00489{bottom:423.627067pt;}
.y20_c00489{bottom:442.027067pt;}
.y1f_c00489{bottom:460.427067pt;}
.y1e_c00489{bottom:478.827067pt;}
.y1d_c00489{bottom:497.227067pt;}
.y1c_c00489{bottom:515.627067pt;}
.y1b_c00489{bottom:534.027067pt;}
.y1a_c00489{bottom:552.427067pt;}
.y19_c00489{bottom:570.827067pt;}
.y18_c00489{bottom:589.227067pt;}
.y17_c00489{bottom:607.627067pt;}
.y16_c00489{bottom:626.027067pt;}
.y15_c00489{bottom:644.427067pt;}
.y14_c00489{bottom:662.827067pt;}
.y13_c00489{bottom:681.227067pt;}
.y12_c00489{bottom:699.627067pt;}
.y11_c00489{bottom:718.027067pt;}
.y10_c00489{bottom:736.427067pt;}
.yf_c00489{bottom:754.827067pt;}
.ye_c00489{bottom:773.227067pt;}
.yd_c00489{bottom:791.627067pt;}
.yc_c00489{bottom:810.027067pt;}
.yb_c00489{bottom:828.427067pt;}
.ya_c00489{bottom:846.827067pt;}
.y9_c00489{bottom:865.227067pt;}
.y8_c00489{bottom:883.627067pt;}
.y7_c00489{bottom:902.027067pt;}
.y6_c00489{bottom:920.427067pt;}
.y5_c00489{bottom:938.827067pt;}
.y4_c00489{bottom:957.227067pt;}
.y3_c00489{bottom:975.627067pt;}
.h1_c00489{height:56.156250pt;}
.h2_c00489{height:62.781250pt;}
.h0_c00489{height:1122.666667pt;}
.w1_c00489{width:793.333333pt;}
.w0_c00489{width:793.626667pt;}
.x0_c00489{left:0.000000pt;}
.x2_c00489{left:113.440000pt;}
.x3_c00489{left:161.440000pt;}
.x1_c00489{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_be2872f778dc97e83e7eb225.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.093262;font-style:normal;font-weight:normal;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_8e9e6825e44d511300835275.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00490{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls11_c00490{letter-spacing:-0.158400px;}
.ls12_c00490{letter-spacing:-0.057600px;}
.lsf_c00490{letter-spacing:-0.043200px;}
.ls10_c00490{letter-spacing:-0.036000px;}
.lsc_c00490{letter-spacing:-0.028800px;}
.lse_c00490{letter-spacing:-0.021600px;}
.lsd_c00490{letter-spacing:-0.014400px;}
.lsb_c00490{letter-spacing:-0.007200px;}
.lsa_c00490{letter-spacing:0.000000px;}
.ls6_c00490{letter-spacing:0.007200px;}
.ls4_c00490{letter-spacing:0.014400px;}
.ls7_c00490{letter-spacing:0.021600px;}
.ls5_c00490{letter-spacing:0.028800px;}
.ls3_c00490{letter-spacing:0.036000px;}
.ls8_c00490{letter-spacing:0.043200px;}
.ls2_c00490{letter-spacing:0.050400px;}
.ls0_c00490{letter-spacing:0.064800px;}
.ls9_c00490{letter-spacing:0.072000px;}
.ls1_c00490{letter-spacing:0.086400px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00490{word-spacing:-18.086400px;}
.ws8_c00490{word-spacing:-18.036000px;}
.ws2_c00490{word-spacing:-18.028800px;}
.ws5_c00490{word-spacing:-18.014400px;}
.ws9_c00490{word-spacing:-18.007200px;}
.ws3_c00490{word-spacing:-18.000000px;}
.ws4_c00490{word-spacing:-17.992800px;}
.ws6_c00490{word-spacing:-17.978400px;}
.ws1_c00490{word-spacing:-17.964000px;}
.ws7_c00490{word-spacing:-17.942400px;}
.ws28_c00490{word-spacing:-4.312800px;}
.ws29_c00490{word-spacing:-4.291200px;}
.ws32_c00490{word-spacing:-1.749600px;}
.ws33_c00490{word-spacing:-1.706400px;}
.ws11_c00490{word-spacing:-1.591200px;}
.ws10_c00490{word-spacing:-1.447200px;}
.ws12_c00490{word-spacing:-1.440000px;}
.ws13_c00490{word-spacing:-1.411200px;}
.ws17_c00490{word-spacing:-0.208800px;}
.ws2e_c00490{word-spacing:-0.201600px;}
.ws15_c00490{word-spacing:-0.194400px;}
.ws18_c00490{word-spacing:-0.187200px;}
.ws1a_c00490{word-spacing:-0.180000px;}
.wse_c00490{word-spacing:-0.064800px;}
.ws26_c00490{word-spacing:-0.043200px;}
.ws16_c00490{word-spacing:-0.028800px;}
.ws27_c00490{word-spacing:-0.021600px;}
.wsf_c00490{word-spacing:-0.014400px;}
.wsd_c00490{word-spacing:-0.007200px;}
.wsa_c00490{word-spacing:0.000000px;}
.ws19_c00490{word-spacing:0.014400px;}
.ws3c_c00490{word-spacing:0.021600px;}
.ws34_c00490{word-spacing:1.706400px;}
.ws35_c00490{word-spacing:1.872000px;}
.ws1c_c00490{word-spacing:2.124000px;}
.ws1b_c00490{word-spacing:2.152800px;}
.ws37_c00490{word-spacing:2.772000px;}
.ws36_c00490{word-spacing:2.880000px;}
.ws14_c00490{word-spacing:5.054400px;}
.wsc_c00490{word-spacing:6.321600px;}
.wsb_c00490{word-spacing:6.343200px;}
.ws25_c00490{word-spacing:12.931200px;}
.ws24_c00490{word-spacing:12.938400px;}
.ws2f_c00490{word-spacing:14.032800px;}
.ws30_c00490{word-spacing:14.054400px;}
.ws3b_c00490{word-spacing:15.789600px;}
.ws3a_c00490{word-spacing:15.883200px;}
.ws1e_c00490{word-spacing:21.096000px;}
.ws1d_c00490{word-spacing:21.261600px;}
.ws1f_c00490{word-spacing:21.909600px;}
.ws20_c00490{word-spacing:21.931200px;}
.ws2d_c00490{word-spacing:23.990400px;}
.ws2c_c00490{word-spacing:24.004800px;}
.ws2b_c00490{word-spacing:24.127200px;}
.ws2a_c00490{word-spacing:29.491200px;}
.ws21_c00490{word-spacing:65.541600px;}
.ws22_c00490{word-spacing:65.901600px;}
.ws23_c00490{word-spacing:91.591200px;}
.ws38_c00490{word-spacing:91.764000px;}
.ws39_c00490{word-spacing:91.821600px;}
.ws31_c00490{word-spacing:229.327200px;}
._0_c00490{margin-left:-1.224000px;}
.fc0_c00490{color:rgb(0,0,0);}
.fs0_c00490{font-size:72.000000px;}
.y0_c00490{bottom:0.000000px;}
.y2_c00490{bottom:46.830450px;}
.y1_c00490{bottom:67.530450px;}
.y30_c00490{bottom:166.170450px;}
.y2f_c00490{bottom:186.870450px;}
.y2e_c00490{bottom:207.570450px;}
.y2d_c00490{bottom:228.270450px;}
.y2c_c00490{bottom:248.970450px;}
.y2b_c00490{bottom:269.670450px;}
.y2a_c00490{bottom:290.370450px;}
.y29_c00490{bottom:311.070450px;}
.y28_c00490{bottom:331.770450px;}
.y27_c00490{bottom:352.470450px;}
.y26_c00490{bottom:373.170450px;}
.y25_c00490{bottom:393.780450px;}
.y24_c00490{bottom:414.480450px;}
.y23_c00490{bottom:435.180450px;}
.y22_c00490{bottom:455.880450px;}
.y21_c00490{bottom:476.580450px;}
.y20_c00490{bottom:497.280450px;}
.y1f_c00490{bottom:517.980450px;}
.y1e_c00490{bottom:538.680450px;}
.y1d_c00490{bottom:559.380450px;}
.y1c_c00490{bottom:580.080450px;}
.y1b_c00490{bottom:600.780450px;}
.y1a_c00490{bottom:621.480450px;}
.y19_c00490{bottom:642.180450px;}
.y18_c00490{bottom:662.880450px;}
.y17_c00490{bottom:683.580450px;}
.y16_c00490{bottom:704.280450px;}
.y15_c00490{bottom:724.980450px;}
.y14_c00490{bottom:745.680450px;}
.y13_c00490{bottom:766.380450px;}
.y12_c00490{bottom:787.080450px;}
.y11_c00490{bottom:807.780450px;}
.y10_c00490{bottom:828.480450px;}
.yf_c00490{bottom:849.180450px;}
.ye_c00490{bottom:869.790450px;}
.yd_c00490{bottom:890.580450px;}
.yc_c00490{bottom:911.280450px;}
.yb_c00490{bottom:931.980450px;}
.ya_c00490{bottom:952.680450px;}
.y9_c00490{bottom:973.380450px;}
.y8_c00490{bottom:994.080450px;}
.y7_c00490{bottom:1014.780450px;}
.y6_c00490{bottom:1035.480450px;}
.y5_c00490{bottom:1056.180450px;}
.y4_c00490{bottom:1076.880450px;}
.y3_c00490{bottom:1097.580450px;}
.h1_c00490{height:63.175781px;}
.h2_c00490{height:70.628906px;}
.h0_c00490{height:1263.000000px;}
.w1_c00490{width:892.500000px;}
.w0_c00490{width:892.830000px;}
.x0_c00490{left:0.000000px;}
.x2_c00490{left:170.100000px;}
.x3_c00490{left:224.100000px;}
.x1_c00490{left:738.360000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls11_c00490{letter-spacing:-0.140800pt;}
.ls12_c00490{letter-spacing:-0.051200pt;}
.lsf_c00490{letter-spacing:-0.038400pt;}
.ls10_c00490{letter-spacing:-0.032000pt;}
.lsc_c00490{letter-spacing:-0.025600pt;}
.lse_c00490{letter-spacing:-0.019200pt;}
.lsd_c00490{letter-spacing:-0.012800pt;}
.lsb_c00490{letter-spacing:-0.006400pt;}
.lsa_c00490{letter-spacing:0.000000pt;}
.ls6_c00490{letter-spacing:0.006400pt;}
.ls4_c00490{letter-spacing:0.012800pt;}
.ls7_c00490{letter-spacing:0.019200pt;}
.ls5_c00490{letter-spacing:0.025600pt;}
.ls3_c00490{letter-spacing:0.032000pt;}
.ls8_c00490{letter-spacing:0.038400pt;}
.ls2_c00490{letter-spacing:0.044800pt;}
.ls0_c00490{letter-spacing:0.057600pt;}
.ls9_c00490{letter-spacing:0.064000pt;}
.ls1_c00490{letter-spacing:0.076800pt;}
.ws0_c00490{word-spacing:-16.076800pt;}
.ws8_c00490{word-spacing:-16.032000pt;}
.ws2_c00490{word-spacing:-16.025600pt;}
.ws5_c00490{word-spacing:-16.012800pt;}
.ws9_c00490{word-spacing:-16.006400pt;}
.ws3_c00490{word-spacing:-16.000000pt;}
.ws4_c00490{word-spacing:-15.993600pt;}
.ws6_c00490{word-spacing:-15.980800pt;}
.ws1_c00490{word-spacing:-15.968000pt;}
.ws7_c00490{word-spacing:-15.948800pt;}
.ws28_c00490{word-spacing:-3.833600pt;}
.ws29_c00490{word-spacing:-3.814400pt;}
.ws32_c00490{word-spacing:-1.555200pt;}
.ws33_c00490{word-spacing:-1.516800pt;}
.ws11_c00490{word-spacing:-1.414400pt;}
.ws10_c00490{word-spacing:-1.286400pt;}
.ws12_c00490{word-spacing:-1.280000pt;}
.ws13_c00490{word-spacing:-1.254400pt;}
.ws17_c00490{word-spacing:-0.185600pt;}
.ws2e_c00490{word-spacing:-0.179200pt;}
.ws15_c00490{word-spacing:-0.172800pt;}
.ws18_c00490{word-spacing:-0.166400pt;}
.ws1a_c00490{word-spacing:-0.160000pt;}
.wse_c00490{word-spacing:-0.057600pt;}
.ws26_c00490{word-spacing:-0.038400pt;}
.ws16_c00490{word-spacing:-0.025600pt;}
.ws27_c00490{word-spacing:-0.019200pt;}
.wsf_c00490{word-spacing:-0.012800pt;}
.wsd_c00490{word-spacing:-0.006400pt;}
.wsa_c00490{word-spacing:0.000000pt;}
.ws19_c00490{word-spacing:0.012800pt;}
.ws3c_c00490{word-spacing:0.019200pt;}
.ws34_c00490{word-spacing:1.516800pt;}
.ws35_c00490{word-spacing:1.664000pt;}
.ws1c_c00490{word-spacing:1.888000pt;}
.ws1b_c00490{word-spacing:1.913600pt;}
.ws37_c00490{word-spacing:2.464000pt;}
.ws36_c00490{word-spacing:2.560000pt;}
.ws14_c00490{word-spacing:4.492800pt;}
.wsc_c00490{word-spacing:5.619200pt;}
.wsb_c00490{word-spacing:5.638400pt;}
.ws25_c00490{word-spacing:11.494400pt;}
.ws24_c00490{word-spacing:11.500800pt;}
.ws2f_c00490{word-spacing:12.473600pt;}
.ws30_c00490{word-spacing:12.492800pt;}
.ws3b_c00490{word-spacing:14.035200pt;}
.ws3a_c00490{word-spacing:14.118400pt;}
.ws1e_c00490{word-spacing:18.752000pt;}
.ws1d_c00490{word-spacing:18.899200pt;}
.ws1f_c00490{word-spacing:19.475200pt;}
.ws20_c00490{word-spacing:19.494400pt;}
.ws2d_c00490{word-spacing:21.324800pt;}
.ws2c_c00490{word-spacing:21.337600pt;}
.ws2b_c00490{word-spacing:21.446400pt;}
.ws2a_c00490{word-spacing:26.214400pt;}
.ws21_c00490{word-spacing:58.259200pt;}
.ws22_c00490{word-spacing:58.579200pt;}
.ws23_c00490{word-spacing:81.414400pt;}
.ws38_c00490{word-spacing:81.568000pt;}
.ws39_c00490{word-spacing:81.619200pt;}
.ws31_c00490{word-spacing:203.846400pt;}
._0_c00490{margin-left:-1.088000pt;}
.fs0_c00490{font-size:64.000000pt;}
.y0_c00490{bottom:0.000000pt;}
.y2_c00490{bottom:41.627067pt;}
.y1_c00490{bottom:60.027067pt;}
.y30_c00490{bottom:147.707067pt;}
.y2f_c00490{bottom:166.107067pt;}
.y2e_c00490{bottom:184.507067pt;}
.y2d_c00490{bottom:202.907067pt;}
.y2c_c00490{bottom:221.307067pt;}
.y2b_c00490{bottom:239.707067pt;}
.y2a_c00490{bottom:258.107067pt;}
.y29_c00490{bottom:276.507067pt;}
.y28_c00490{bottom:294.907067pt;}
.y27_c00490{bottom:313.307067pt;}
.y26_c00490{bottom:331.707067pt;}
.y25_c00490{bottom:350.027067pt;}
.y24_c00490{bottom:368.427067pt;}
.y23_c00490{bottom:386.827067pt;}
.y22_c00490{bottom:405.227067pt;}
.y21_c00490{bottom:423.627067pt;}
.y20_c00490{bottom:442.027067pt;}
.y1f_c00490{bottom:460.427067pt;}
.y1e_c00490{bottom:478.827067pt;}
.y1d_c00490{bottom:497.227067pt;}
.y1c_c00490{bottom:515.627067pt;}
.y1b_c00490{bottom:534.027067pt;}
.y1a_c00490{bottom:552.427067pt;}
.y19_c00490{bottom:570.827067pt;}
.y18_c00490{bottom:589.227067pt;}
.y17_c00490{bottom:607.627067pt;}
.y16_c00490{bottom:626.027067pt;}
.y15_c00490{bottom:644.427067pt;}
.y14_c00490{bottom:662.827067pt;}
.y13_c00490{bottom:681.227067pt;}
.y12_c00490{bottom:699.627067pt;}
.y11_c00490{bottom:718.027067pt;}
.y10_c00490{bottom:736.427067pt;}
.yf_c00490{bottom:754.827067pt;}
.ye_c00490{bottom:773.147067pt;}
.yd_c00490{bottom:791.627067pt;}
.yc_c00490{bottom:810.027067pt;}
.yb_c00490{bottom:828.427067pt;}
.ya_c00490{bottom:846.827067pt;}
.y9_c00490{bottom:865.227067pt;}
.y8_c00490{bottom:883.627067pt;}
.y7_c00490{bottom:902.027067pt;}
.y6_c00490{bottom:920.427067pt;}
.y5_c00490{bottom:938.827067pt;}
.y4_c00490{bottom:957.227067pt;}
.y3_c00490{bottom:975.627067pt;}
.h1_c00490{height:56.156250pt;}
.h2_c00490{height:62.781250pt;}
.h0_c00490{height:1122.666667pt;}
.w1_c00490{width:793.333333pt;}
.w0_c00490{width:793.626667pt;}
.x0_c00490{left:0.000000pt;}
.x2_c00490{left:151.200000pt;}
.x3_c00490{left:199.200000pt;}
.x1_c00490{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_811180249b4ffed54152e257.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.093262;font-style:normal;font-weight:normal;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_02d7f58a39b32014a786003d.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls12_c00491{letter-spacing:-0.180000px;}
.ls16_c00491{letter-spacing:-0.158400px;}
.ls17_c00491{letter-spacing:-0.072000px;}
.lsf_c00491{letter-spacing:-0.064800px;}
.lsd_c00491{letter-spacing:-0.057600px;}
.ls15_c00491{letter-spacing:-0.050400px;}
.lse_c00491{letter-spacing:-0.043200px;}
.ls10_c00491{letter-spacing:-0.036000px;}
.ls13_c00491{letter-spacing:-0.028800px;}
.ls14_c00491{letter-spacing:-0.021600px;}
.lsc_c00491{letter-spacing:-0.014400px;}
.ls11_c00491{letter-spacing:-0.007200px;}
.lsb_c00491{letter-spacing:0.000000px;}
.ls0_c00491{letter-spacing:0.007200px;}
.ls2_c00491{letter-spacing:0.014400px;}
.ls1_c00491{letter-spacing:0.021600px;}
.ls6_c00491{letter-spacing:0.028800px;}
.ls3_c00491{letter-spacing:0.036000px;}
.ls9_c00491{letter-spacing:0.043200px;}
.ls5_c00491{letter-spacing:0.050400px;}
.lsa_c00491{letter-spacing:0.057600px;}
.ls7_c00491{letter-spacing:0.064800px;}
.ls8_c00491{letter-spacing:0.072000px;}
.ls4_c00491{letter-spacing:0.079200px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00491{word-spacing:-18.014400px;}
.ws2_c00491{word-spacing:-18.000000px;}
.ws1_c00491{word-spacing:-17.992800px;}
.ws3_c00491{word-spacing:-17.978400px;}
.ws31_c00491{word-spacing:-3.988800px;}
.ws2e_c00491{word-spacing:-3.729600px;}
.ws30_c00491{word-spacing:-3.672000px;}
.ws19_c00491{word-spacing:-3.628800px;}
.ws1a_c00491{word-spacing:-3.607200px;}
.ws2f_c00491{word-spacing:-3.564000px;}
.wsf_c00491{word-spacing:-3.348000px;}
.wse_c00491{word-spacing:-3.254400px;}
.ws10_c00491{word-spacing:-3.060000px;}
.ws22_c00491{word-spacing:-2.210400px;}
.ws23_c00491{word-spacing:-2.145600px;}
.ws35_c00491{word-spacing:-1.965600px;}
.ws34_c00491{word-spacing:-1.879200px;}
.ws21_c00491{word-spacing:-1.828800px;}
.ws33_c00491{word-spacing:-1.821600px;}
.ws11_c00491{word-spacing:-1.807200px;}
.ws38_c00491{word-spacing:-0.813600px;}
.ws37_c00491{word-spacing:-0.763200px;}
.ws39_c00491{word-spacing:-0.748800px;}
.ws2b_c00491{word-spacing:-0.374400px;}
.ws27_c00491{word-spacing:-0.367200px;}
.ws26_c00491{word-spacing:-0.345600px;}
.ws2d_c00491{word-spacing:-0.338400px;}
.ws2c_c00491{word-spacing:-0.208800px;}
.ws15_c00491{word-spacing:-0.057600px;}
.ws1f_c00491{word-spacing:-0.050400px;}
.ws3a_c00491{word-spacing:-0.043200px;}
.ws20_c00491{word-spacing:-0.007200px;}
.ws4_c00491{word-spacing:0.000000px;}
.ws14_c00491{word-spacing:0.007200px;}
.ws46_c00491{word-spacing:0.028800px;}
.ws8_c00491{word-spacing:0.043200px;}
.ws3d_c00491{word-spacing:0.050400px;}
.ws28_c00491{word-spacing:0.208800px;}
.ws5_c00491{word-spacing:1.792800px;}
.ws6_c00491{word-spacing:1.814400px;}
.ws7_c00491{word-spacing:1.857600px;}
.ws13_c00491{word-spacing:4.118400px;}
.ws12_c00491{word-spacing:4.348800px;}
.ws1e_c00491{word-spacing:6.328800px;}
.ws1d_c00491{word-spacing:6.494400px;}
.ws3b_c00491{word-spacing:6.710400px;}
.ws3c_c00491{word-spacing:6.796800px;}
.ws9_c00491{word-spacing:8.611200px;}
.wsa_c00491{word-spacing:8.632800px;}
.ws45_c00491{word-spacing:9.324000px;}
.ws1c_c00491{word-spacing:11.872800px;}
.ws1b_c00491{word-spacing:12.132000px;}
.ws2a_c00491{word-spacing:13.161600px;}
.ws29_c00491{word-spacing:13.298400px;}
.wsc_c00491{word-spacing:15.645600px;}
.wsb_c00491{word-spacing:15.818400px;}
.wsd_c00491{word-spacing:15.876000px;}
.ws47_c00491{word-spacing:16.891200px;}
.ws49_c00491{word-spacing:16.977600px;}
.ws48_c00491{word-spacing:16.992000px;}
.ws44_c00491{word-spacing:17.452800px;}
.ws43_c00491{word-spacing:17.517600px;}
.ws17_c00491{word-spacing:17.532000px;}
.ws16_c00491{word-spacing:17.611200px;}
.ws18_c00491{word-spacing:17.632800px;}
.ws41_c00491{word-spacing:21.859200px;}
.ws42_c00491{word-spacing:21.895200px;}
.ws3e_c00491{word-spacing:37.886400px;}
.ws3f_c00491{word-spacing:38.145600px;}
.ws40_c00491{word-spacing:38.318400px;}
.ws25_c00491{word-spacing:93.967200px;}
.ws24_c00491{word-spacing:93.996000px;}
.ws32_c00491{word-spacing:491.752800px;}
.ws36_c00491{word-spacing:722.520000px;}
._1_c00491{margin-left:-1.238400px;}
._0_c00491{width:1.087200px;}
.fc0_c00491{color:rgb(0,0,0);}
.fs0_c00491{font-size:72.000000px;}
.y0_c00491{bottom:0.000000px;}
.y2_c00491{bottom:46.830450px;}
.y1_c00491{bottom:67.530450px;}
.y30_c00491{bottom:166.170450px;}
.y2f_c00491{bottom:186.870450px;}
.y2e_c00491{bottom:207.570450px;}
.y2d_c00491{bottom:228.270450px;}
.y2c_c00491{bottom:248.970450px;}
.y2b_c00491{bottom:269.670450px;}
.y2a_c00491{bottom:290.370450px;}
.y29_c00491{bottom:311.070450px;}
.y28_c00491{bottom:331.770450px;}
.y27_c00491{bottom:352.470450px;}
.y26_c00491{bottom:373.170450px;}
.y25_c00491{bottom:393.780450px;}
.y24_c00491{bottom:414.480450px;}
.y23_c00491{bottom:435.180450px;}
.y22_c00491{bottom:455.880450px;}
.y21_c00491{bottom:476.580450px;}
.y20_c00491{bottom:497.280450px;}
.y1f_c00491{bottom:517.980450px;}
.y1e_c00491{bottom:538.680450px;}
.y1d_c00491{bottom:559.380450px;}
.y1c_c00491{bottom:580.080450px;}
.y1b_c00491{bottom:600.780450px;}
.y1a_c00491{bottom:621.480450px;}
.y19_c00491{bottom:642.180450px;}
.y18_c00491{bottom:662.880450px;}
.y17_c00491{bottom:683.580450px;}
.y16_c00491{bottom:704.280450px;}
.y15_c00491{bottom:724.980450px;}
.y14_c00491{bottom:745.680450px;}
.y13_c00491{bottom:766.380450px;}
.y12_c00491{bottom:787.080450px;}
.y11_c00491{bottom:807.780450px;}
.y10_c00491{bottom:828.480450px;}
.yf_c00491{bottom:849.180450px;}
.ye_c00491{bottom:869.880450px;}
.yd_c00491{bottom:890.580450px;}
.yc_c00491{bottom:911.280450px;}
.yb_c00491{bottom:931.980450px;}
.ya_c00491{bottom:952.680450px;}
.y9_c00491{bottom:973.380450px;}
.y8_c00491{bottom:994.080450px;}
.y7_c00491{bottom:1014.780450px;}
.y6_c00491{bottom:1035.480450px;}
.y5_c00491{bottom:1056.180450px;}
.y4_c00491{bottom:1076.880450px;}
.y3_c00491{bottom:1097.580450px;}
.h1_c00491{height:63.175781px;}
.h2_c00491{height:70.628906px;}
.h0_c00491{height:1263.000000px;}
.w1_c00491{width:892.500000px;}
.w0_c00491{width:892.830000px;}
.x0_c00491{left:0.000000px;}
.x2_c00491{left:127.620000px;}
.x3_c00491{left:181.620000px;}
.x1_c00491{left:695.880000px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls12_c00491{letter-spacing:-0.160000pt;}
.ls16_c00491{letter-spacing:-0.140800pt;}
.ls17_c00491{letter-spacing:-0.064000pt;}
.lsf_c00491{letter-spacing:-0.057600pt;}
.lsd_c00491{letter-spacing:-0.051200pt;}
.ls15_c00491{letter-spacing:-0.044800pt;}
.lse_c00491{letter-spacing:-0.038400pt;}
.ls10_c00491{letter-spacing:-0.032000pt;}
.ls13_c00491{letter-spacing:-0.025600pt;}
.ls14_c00491{letter-spacing:-0.019200pt;}
.lsc_c00491{letter-spacing:-0.012800pt;}
.ls11_c00491{letter-spacing:-0.006400pt;}
.lsb_c00491{letter-spacing:0.000000pt;}
.ls0_c00491{letter-spacing:0.006400pt;}
.ls2_c00491{letter-spacing:0.012800pt;}
.ls1_c00491{letter-spacing:0.019200pt;}
.ls6_c00491{letter-spacing:0.025600pt;}
.ls3_c00491{letter-spacing:0.032000pt;}
.ls9_c00491{letter-spacing:0.038400pt;}
.ls5_c00491{letter-spacing:0.044800pt;}
.lsa_c00491{letter-spacing:0.051200pt;}
.ls7_c00491{letter-spacing:0.057600pt;}
.ls8_c00491{letter-spacing:0.064000pt;}
.ls4_c00491{letter-spacing:0.070400pt;}
.ws0_c00491{word-spacing:-16.012800pt;}
.ws2_c00491{word-spacing:-16.000000pt;}
.ws1_c00491{word-spacing:-15.993600pt;}
.ws3_c00491{word-spacing:-15.980800pt;}
.ws31_c00491{word-spacing:-3.545600pt;}
.ws2e_c00491{word-spacing:-3.315200pt;}
.ws30_c00491{word-spacing:-3.264000pt;}
.ws19_c00491{word-spacing:-3.225600pt;}
.ws1a_c00491{word-spacing:-3.206400pt;}
.ws2f_c00491{word-spacing:-3.168000pt;}
.wsf_c00491{word-spacing:-2.976000pt;}
.wse_c00491{word-spacing:-2.892800pt;}
.ws10_c00491{word-spacing:-2.720000pt;}
.ws22_c00491{word-spacing:-1.964800pt;}
.ws23_c00491{word-spacing:-1.907200pt;}
.ws35_c00491{word-spacing:-1.747200pt;}
.ws34_c00491{word-spacing:-1.670400pt;}
.ws21_c00491{word-spacing:-1.625600pt;}
.ws33_c00491{word-spacing:-1.619200pt;}
.ws11_c00491{word-spacing:-1.606400pt;}
.ws38_c00491{word-spacing:-0.723200pt;}
.ws37_c00491{word-spacing:-0.678400pt;}
.ws39_c00491{word-spacing:-0.665600pt;}
.ws2b_c00491{word-spacing:-0.332800pt;}
.ws27_c00491{word-spacing:-0.326400pt;}
.ws26_c00491{word-spacing:-0.307200pt;}
.ws2d_c00491{word-spacing:-0.300800pt;}
.ws2c_c00491{word-spacing:-0.185600pt;}
.ws15_c00491{word-spacing:-0.051200pt;}
.ws1f_c00491{word-spacing:-0.044800pt;}
.ws3a_c00491{word-spacing:-0.038400pt;}
.ws20_c00491{word-spacing:-0.006400pt;}
.ws4_c00491{word-spacing:0.000000pt;}
.ws14_c00491{word-spacing:0.006400pt;}
.ws46_c00491{word-spacing:0.025600pt;}
.ws8_c00491{word-spacing:0.038400pt;}
.ws3d_c00491{word-spacing:0.044800pt;}
.ws28_c00491{word-spacing:0.185600pt;}
.ws5_c00491{word-spacing:1.593600pt;}
.ws6_c00491{word-spacing:1.612800pt;}
.ws7_c00491{word-spacing:1.651200pt;}
.ws13_c00491{word-spacing:3.660800pt;}
.ws12_c00491{word-spacing:3.865600pt;}
.ws1e_c00491{word-spacing:5.625600pt;}
.ws1d_c00491{word-spacing:5.772800pt;}
.ws3b_c00491{word-spacing:5.964800pt;}
.ws3c_c00491{word-spacing:6.041600pt;}
.ws9_c00491{word-spacing:7.654400pt;}
.wsa_c00491{word-spacing:7.673600pt;}
.ws45_c00491{word-spacing:8.288000pt;}
.ws1c_c00491{word-spacing:10.553600pt;}
.ws1b_c00491{word-spacing:10.784000pt;}
.ws2a_c00491{word-spacing:11.699200pt;}
.ws29_c00491{word-spacing:11.820800pt;}
.wsc_c00491{word-spacing:13.907200pt;}
.wsb_c00491{word-spacing:14.060800pt;}
.wsd_c00491{word-spacing:14.112000pt;}
.ws47_c00491{word-spacing:15.014400pt;}
.ws49_c00491{word-spacing:15.091200pt;}
.ws48_c00491{word-spacing:15.104000pt;}
.ws44_c00491{word-spacing:15.513600pt;}
.ws43_c00491{word-spacing:15.571200pt;}
.ws17_c00491{word-spacing:15.584000pt;}
.ws16_c00491{word-spacing:15.654400pt;}
.ws18_c00491{word-spacing:15.673600pt;}
.ws41_c00491{word-spacing:19.430400pt;}
.ws42_c00491{word-spacing:19.462400pt;}
.ws3e_c00491{word-spacing:33.676800pt;}
.ws3f_c00491{word-spacing:33.907200pt;}
.ws40_c00491{word-spacing:34.060800pt;}
.ws25_c00491{word-spacing:83.526400pt;}
.ws24_c00491{word-spacing:83.552000pt;}
.ws32_c00491{word-spacing:437.113600pt;}
.ws36_c00491{word-spacing:642.240000pt;}
._1_c00491{margin-left:-1.100800pt;}
._0_c00491{width:0.966400pt;}
.fs0_c00491{font-size:64.000000pt;}
.y0_c00491{bottom:0.000000pt;}
.y2_c00491{bottom:41.627067pt;}
.y1_c00491{bottom:60.027067pt;}
.y30_c00491{bottom:147.707067pt;}
.y2f_c00491{bottom:166.107067pt;}
.y2e_c00491{bottom:184.507067pt;}
.y2d_c00491{bottom:202.907067pt;}
.y2c_c00491{bottom:221.307067pt;}
.y2b_c00491{bottom:239.707067pt;}
.y2a_c00491{bottom:258.107067pt;}
.y29_c00491{bottom:276.507067pt;}
.y28_c00491{bottom:294.907067pt;}
.y27_c00491{bottom:313.307067pt;}
.y26_c00491{bottom:331.707067pt;}
.y25_c00491{bottom:350.027067pt;}
.y24_c00491{bottom:368.427067pt;}
.y23_c00491{bottom:386.827067pt;}
.y22_c00491{bottom:405.227067pt;}
.y21_c00491{bottom:423.627067pt;}
.y20_c00491{bottom:442.027067pt;}
.y1f_c00491{bottom:460.427067pt;}
.y1e_c00491{bottom:478.827067pt;}
.y1d_c00491{bottom:497.227067pt;}
.y1c_c00491{bottom:515.627067pt;}
.y1b_c00491{bottom:534.027067pt;}
.y1a_c00491{bottom:552.427067pt;}
.y19_c00491{bottom:570.827067pt;}
.y18_c00491{bottom:589.227067pt;}
.y17_c00491{bottom:607.627067pt;}
.y16_c00491{bottom:626.027067pt;}
.y15_c00491{bottom:644.427067pt;}
.y14_c00491{bottom:662.827067pt;}
.y13_c00491{bottom:681.227067pt;}
.y12_c00491{bottom:699.627067pt;}
.y11_c00491{bottom:718.027067pt;}
.y10_c00491{bottom:736.427067pt;}
.yf_c00491{bottom:754.827067pt;}
.ye_c00491{bottom:773.227067pt;}
.yd_c00491{bottom:791.627067pt;}
.yc_c00491{bottom:810.027067pt;}
.yb_c00491{bottom:828.427067pt;}
.ya_c00491{bottom:846.827067pt;}
.y9_c00491{bottom:865.227067pt;}
.y8_c00491{bottom:883.627067pt;}
.y7_c00491{bottom:902.027067pt;}
.y6_c00491{bottom:920.427067pt;}
.y5_c00491{bottom:938.827067pt;}
.y4_c00491{bottom:957.227067pt;}
.y3_c00491{bottom:975.627067pt;}
.h1_c00491{height:56.156250pt;}
.h2_c00491{height:62.781250pt;}
.h0_c00491{height:1122.666667pt;}
.w1_c00491{width:793.333333pt;}
.w0_c00491{width:793.626667pt;}
.x0_c00491{left:0.000000pt;}
.x2_c00491{left:113.440000pt;}
.x3_c00491{left:161.440000pt;}
.x1_c00491{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cd5b2fcce55a8b404dccf2b4.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.093262;font-style:normal;font-weight:normal;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_f2b045d76f9e14b22c2468c1.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00492{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls10_c00492{letter-spacing:-0.115200px;}
.lse_c00492{letter-spacing:-0.057600px;}
.lsf_c00492{letter-spacing:-0.043200px;}
.ls11_c00492{letter-spacing:-0.028800px;}
.lsb_c00492{letter-spacing:-0.021600px;}
.lsd_c00492{letter-spacing:-0.014400px;}
.lsc_c00492{letter-spacing:-0.007200px;}
.lsa_c00492{letter-spacing:0.000000px;}
.ls1_c00492{letter-spacing:0.007200px;}
.ls6_c00492{letter-spacing:0.014400px;}
.ls0_c00492{letter-spacing:0.021600px;}
.ls2_c00492{letter-spacing:0.028800px;}
.ls8_c00492{letter-spacing:0.036000px;}
.ls7_c00492{letter-spacing:0.043200px;}
.ls4_c00492{letter-spacing:0.050400px;}
.ls3_c00492{letter-spacing:0.057600px;}
.ls5_c00492{letter-spacing:0.064800px;}
.ls9_c00492{letter-spacing:0.093600px;}
.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;}
}
.ws1_c00492{word-spacing:-18.021600px;}
.ws0_c00492{word-spacing:-17.992800px;}
.ws16_c00492{word-spacing:-3.974400px;}
.ws17_c00492{word-spacing:-3.931200px;}
.ws3d_c00492{word-spacing:-3.736800px;}
.ws3c_c00492{word-spacing:-3.657600px;}
.ws46_c00492{word-spacing:-3.060000px;}
.ws48_c00492{word-spacing:-2.923200px;}
.ws47_c00492{word-spacing:-2.872800px;}
.ws40_c00492{word-spacing:-2.592000px;}
.ws41_c00492{word-spacing:-2.534400px;}
.ws20_c00492{word-spacing:-1.980000px;}
.ws45_c00492{word-spacing:-1.879200px;}
.ws1f_c00492{word-spacing:-1.828800px;}
.ws21_c00492{word-spacing:-1.778400px;}
.ws18_c00492{word-spacing:-1.195200px;}
.ws19_c00492{word-spacing:-1.094400px;}
.ws33_c00492{word-spacing:-0.316800px;}
.ws34_c00492{word-spacing:-0.266400px;}
.wsd_c00492{word-spacing:-0.180000px;}
.wsc_c00492{word-spacing:-0.144000px;}
.ws11_c00492{word-spacing:-0.136800px;}
.ws1a_c00492{word-spacing:-0.100800px;}
.wse_c00492{word-spacing:-0.057600px;}
.ws3e_c00492{word-spacing:-0.021600px;}
.ws6_c00492{word-spacing:-0.014400px;}
.ws8_c00492{word-spacing:-0.007200px;}
.ws2_c00492{word-spacing:0.000000px;}
.wsb_c00492{word-spacing:0.007200px;}
.ws3f_c00492{word-spacing:0.021600px;}
.ws24_c00492{word-spacing:0.043200px;}
.ws39_c00492{word-spacing:0.064800px;}
.ws44_c00492{word-spacing:1.440000px;}
.ws42_c00492{word-spacing:1.591200px;}
.ws43_c00492{word-spacing:1.792800px;}
.ws22_c00492{word-spacing:3.844800px;}
.ws23_c00492{word-spacing:3.873600px;}
.ws2c_c00492{word-spacing:8.971200px;}
.ws2d_c00492{word-spacing:8.992800px;}
.ws1e_c00492{word-spacing:9.309600px;}
.ws1d_c00492{word-spacing:9.331200px;}
.ws1c_c00492{word-spacing:9.691200px;}
.ws1b_c00492{word-spacing:9.720000px;}
.ws13_c00492{word-spacing:10.029600px;}
.ws12_c00492{word-spacing:10.058400px;}
.ws14_c00492{word-spacing:10.094400px;}
.ws4_c00492{word-spacing:10.656000px;}
.ws5_c00492{word-spacing:10.699200px;}
.ws3_c00492{word-spacing:10.821600px;}
.ws15_c00492{word-spacing:12.600000px;}
.ws28_c00492{word-spacing:13.284000px;}
.ws27_c00492{word-spacing:13.298400px;}
.ws3a_c00492{word-spacing:13.572000px;}
.ws3b_c00492{word-spacing:13.658400px;}
.ws26_c00492{word-spacing:14.356800px;}
.ws25_c00492{word-spacing:14.421600px;}
.ws35_c00492{word-spacing:15.062400px;}
.ws37_c00492{word-spacing:15.141600px;}
.ws36_c00492{word-spacing:15.148800px;}
.wsa_c00492{word-spacing:15.422400px;}
.ws10_c00492{word-spacing:17.618400px;}
.wsf_c00492{word-spacing:17.704800px;}
.ws2e_c00492{word-spacing:19.368000px;}
.ws2f_c00492{word-spacing:19.432800px;}
.ws9_c00492{word-spacing:21.211200px;}
.ws2a_c00492{word-spacing:25.545600px;}
.ws29_c00492{word-spacing:25.552800px;}
.ws2b_c00492{word-spacing:25.581600px;}
.ws7_c00492{word-spacing:31.651200px;}
.ws31_c00492{word-spacing:40.536000px;}
.ws32_c00492{word-spacing:40.636800px;}
.ws30_c00492{word-spacing:40.665600px;}
.ws38_c00492{word-spacing:1916.985600px;}
._0_c00492{margin-left:-1.310400px;}
.fc0_c00492{color:rgb(0,0,0);}
.fs0_c00492{font-size:72.000000px;}
.y0_c00492{bottom:0.000000px;}
.y2_c00492{bottom:46.830450px;}
.y1_c00492{bottom:67.530450px;}
.y31_c00492{bottom:145.470450px;}
.y30_c00492{bottom:166.170450px;}
.y2f_c00492{bottom:186.870450px;}
.y2e_c00492{bottom:207.570450px;}
.y2d_c00492{bottom:228.270450px;}
.y2c_c00492{bottom:248.970450px;}
.y2b_c00492{bottom:269.670450px;}
.y2a_c00492{bottom:290.370450px;}
.y29_c00492{bottom:311.070450px;}
.y28_c00492{bottom:331.770450px;}
.y27_c00492{bottom:352.470450px;}
.y26_c00492{bottom:373.170450px;}
.y25_c00492{bottom:393.780450px;}
.y24_c00492{bottom:414.480450px;}
.y23_c00492{bottom:435.180450px;}
.y22_c00492{bottom:455.880450px;}
.y21_c00492{bottom:476.580450px;}
.y20_c00492{bottom:497.280450px;}
.y1f_c00492{bottom:517.980450px;}
.y1e_c00492{bottom:538.680450px;}
.y1d_c00492{bottom:559.380450px;}
.y1c_c00492{bottom:580.080450px;}
.y1b_c00492{bottom:600.780450px;}
.y1a_c00492{bottom:621.480450px;}
.y19_c00492{bottom:642.180450px;}
.y18_c00492{bottom:662.880450px;}
.y17_c00492{bottom:683.580450px;}
.y16_c00492{bottom:704.280450px;}
.y15_c00492{bottom:724.980450px;}
.y14_c00492{bottom:745.680450px;}
.y13_c00492{bottom:766.380450px;}
.y12_c00492{bottom:787.080450px;}
.y11_c00492{bottom:807.780450px;}
.y10_c00492{bottom:828.480450px;}
.yf_c00492{bottom:849.180450px;}
.ye_c00492{bottom:869.880450px;}
.yd_c00492{bottom:890.580450px;}
.yc_c00492{bottom:911.280450px;}
.yb_c00492{bottom:931.980450px;}
.ya_c00492{bottom:952.680450px;}
.y9_c00492{bottom:973.380450px;}
.y8_c00492{bottom:994.080450px;}
.y7_c00492{bottom:1014.780450px;}
.y6_c00492{bottom:1035.480450px;}
.y5_c00492{bottom:1056.180450px;}
.y4_c00492{bottom:1076.880450px;}
.y3_c00492{bottom:1097.580450px;}
.h1_c00492{height:63.175781px;}
.h2_c00492{height:70.628906px;}
.h0_c00492{height:1263.000000px;}
.w1_c00492{width:892.500000px;}
.w0_c00492{width:892.830000px;}
.x0_c00492{left:0.000000px;}
.x2_c00492{left:170.100000px;}
.x3_c00492{left:224.100000px;}
.x1_c00492{left:738.360000px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls10_c00492{letter-spacing:-0.102400pt;}
.lse_c00492{letter-spacing:-0.051200pt;}
.lsf_c00492{letter-spacing:-0.038400pt;}
.ls11_c00492{letter-spacing:-0.025600pt;}
.lsb_c00492{letter-spacing:-0.019200pt;}
.lsd_c00492{letter-spacing:-0.012800pt;}
.lsc_c00492{letter-spacing:-0.006400pt;}
.lsa_c00492{letter-spacing:0.000000pt;}
.ls1_c00492{letter-spacing:0.006400pt;}
.ls6_c00492{letter-spacing:0.012800pt;}
.ls0_c00492{letter-spacing:0.019200pt;}
.ls2_c00492{letter-spacing:0.025600pt;}
.ls8_c00492{letter-spacing:0.032000pt;}
.ls7_c00492{letter-spacing:0.038400pt;}
.ls4_c00492{letter-spacing:0.044800pt;}
.ls3_c00492{letter-spacing:0.051200pt;}
.ls5_c00492{letter-spacing:0.057600pt;}
.ls9_c00492{letter-spacing:0.083200pt;}
.ws1_c00492{word-spacing:-16.019200pt;}
.ws0_c00492{word-spacing:-15.993600pt;}
.ws16_c00492{word-spacing:-3.532800pt;}
.ws17_c00492{word-spacing:-3.494400pt;}
.ws3d_c00492{word-spacing:-3.321600pt;}
.ws3c_c00492{word-spacing:-3.251200pt;}
.ws46_c00492{word-spacing:-2.720000pt;}
.ws48_c00492{word-spacing:-2.598400pt;}
.ws47_c00492{word-spacing:-2.553600pt;}
.ws40_c00492{word-spacing:-2.304000pt;}
.ws41_c00492{word-spacing:-2.252800pt;}
.ws20_c00492{word-spacing:-1.760000pt;}
.ws45_c00492{word-spacing:-1.670400pt;}
.ws1f_c00492{word-spacing:-1.625600pt;}
.ws21_c00492{word-spacing:-1.580800pt;}
.ws18_c00492{word-spacing:-1.062400pt;}
.ws19_c00492{word-spacing:-0.972800pt;}
.ws33_c00492{word-spacing:-0.281600pt;}
.ws34_c00492{word-spacing:-0.236800pt;}
.wsd_c00492{word-spacing:-0.160000pt;}
.wsc_c00492{word-spacing:-0.128000pt;}
.ws11_c00492{word-spacing:-0.121600pt;}
.ws1a_c00492{word-spacing:-0.089600pt;}
.wse_c00492{word-spacing:-0.051200pt;}
.ws3e_c00492{word-spacing:-0.019200pt;}
.ws6_c00492{word-spacing:-0.012800pt;}
.ws8_c00492{word-spacing:-0.006400pt;}
.ws2_c00492{word-spacing:0.000000pt;}
.wsb_c00492{word-spacing:0.006400pt;}
.ws3f_c00492{word-spacing:0.019200pt;}
.ws24_c00492{word-spacing:0.038400pt;}
.ws39_c00492{word-spacing:0.057600pt;}
.ws44_c00492{word-spacing:1.280000pt;}
.ws42_c00492{word-spacing:1.414400pt;}
.ws43_c00492{word-spacing:1.593600pt;}
.ws22_c00492{word-spacing:3.417600pt;}
.ws23_c00492{word-spacing:3.443200pt;}
.ws2c_c00492{word-spacing:7.974400pt;}
.ws2d_c00492{word-spacing:7.993600pt;}
.ws1e_c00492{word-spacing:8.275200pt;}
.ws1d_c00492{word-spacing:8.294400pt;}
.ws1c_c00492{word-spacing:8.614400pt;}
.ws1b_c00492{word-spacing:8.640000pt;}
.ws13_c00492{word-spacing:8.915200pt;}
.ws12_c00492{word-spacing:8.940800pt;}
.ws14_c00492{word-spacing:8.972800pt;}
.ws4_c00492{word-spacing:9.472000pt;}
.ws5_c00492{word-spacing:9.510400pt;}
.ws3_c00492{word-spacing:9.619200pt;}
.ws15_c00492{word-spacing:11.200000pt;}
.ws28_c00492{word-spacing:11.808000pt;}
.ws27_c00492{word-spacing:11.820800pt;}
.ws3a_c00492{word-spacing:12.064000pt;}
.ws3b_c00492{word-spacing:12.140800pt;}
.ws26_c00492{word-spacing:12.761600pt;}
.ws25_c00492{word-spacing:12.819200pt;}
.ws35_c00492{word-spacing:13.388800pt;}
.ws37_c00492{word-spacing:13.459200pt;}
.ws36_c00492{word-spacing:13.465600pt;}
.wsa_c00492{word-spacing:13.708800pt;}
.ws10_c00492{word-spacing:15.660800pt;}
.wsf_c00492{word-spacing:15.737600pt;}
.ws2e_c00492{word-spacing:17.216000pt;}
.ws2f_c00492{word-spacing:17.273600pt;}
.ws9_c00492{word-spacing:18.854400pt;}
.ws2a_c00492{word-spacing:22.707200pt;}
.ws29_c00492{word-spacing:22.713600pt;}
.ws2b_c00492{word-spacing:22.739200pt;}
.ws7_c00492{word-spacing:28.134400pt;}
.ws31_c00492{word-spacing:36.032000pt;}
.ws32_c00492{word-spacing:36.121600pt;}
.ws30_c00492{word-spacing:36.147200pt;}
.ws38_c00492{word-spacing:1703.987200pt;}
._0_c00492{margin-left:-1.164800pt;}
.fs0_c00492{font-size:64.000000pt;}
.y0_c00492{bottom:0.000000pt;}
.y2_c00492{bottom:41.627067pt;}
.y1_c00492{bottom:60.027067pt;}
.y31_c00492{bottom:129.307067pt;}
.y30_c00492{bottom:147.707067pt;}
.y2f_c00492{bottom:166.107067pt;}
.y2e_c00492{bottom:184.507067pt;}
.y2d_c00492{bottom:202.907067pt;}
.y2c_c00492{bottom:221.307067pt;}
.y2b_c00492{bottom:239.707067pt;}
.y2a_c00492{bottom:258.107067pt;}
.y29_c00492{bottom:276.507067pt;}
.y28_c00492{bottom:294.907067pt;}
.y27_c00492{bottom:313.307067pt;}
.y26_c00492{bottom:331.707067pt;}
.y25_c00492{bottom:350.027067pt;}
.y24_c00492{bottom:368.427067pt;}
.y23_c00492{bottom:386.827067pt;}
.y22_c00492{bottom:405.227067pt;}
.y21_c00492{bottom:423.627067pt;}
.y20_c00492{bottom:442.027067pt;}
.y1f_c00492{bottom:460.427067pt;}
.y1e_c00492{bottom:478.827067pt;}
.y1d_c00492{bottom:497.227067pt;}
.y1c_c00492{bottom:515.627067pt;}
.y1b_c00492{bottom:534.027067pt;}
.y1a_c00492{bottom:552.427067pt;}
.y19_c00492{bottom:570.827067pt;}
.y18_c00492{bottom:589.227067pt;}
.y17_c00492{bottom:607.627067pt;}
.y16_c00492{bottom:626.027067pt;}
.y15_c00492{bottom:644.427067pt;}
.y14_c00492{bottom:662.827067pt;}
.y13_c00492{bottom:681.227067pt;}
.y12_c00492{bottom:699.627067pt;}
.y11_c00492{bottom:718.027067pt;}
.y10_c00492{bottom:736.427067pt;}
.yf_c00492{bottom:754.827067pt;}
.ye_c00492{bottom:773.227067pt;}
.yd_c00492{bottom:791.627067pt;}
.yc_c00492{bottom:810.027067pt;}
.yb_c00492{bottom:828.427067pt;}
.ya_c00492{bottom:846.827067pt;}
.y9_c00492{bottom:865.227067pt;}
.y8_c00492{bottom:883.627067pt;}
.y7_c00492{bottom:902.027067pt;}
.y6_c00492{bottom:920.427067pt;}
.y5_c00492{bottom:938.827067pt;}
.y4_c00492{bottom:957.227067pt;}
.y3_c00492{bottom:975.627067pt;}
.h1_c00492{height:56.156250pt;}
.h2_c00492{height:62.781250pt;}
.h0_c00492{height:1122.666667pt;}
.w1_c00492{width:793.333333pt;}
.w0_c00492{width:793.626667pt;}
.x0_c00492{left:0.000000pt;}
.x2_c00492{left:151.200000pt;}
.x3_c00492{left:199.200000pt;}
.x1_c00492{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0b87be33bcdd726927e6852f.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.093262;font-style:normal;font-weight:normal;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_799ad274431d3ab3d0cc2be7.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00493{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls10_c00493{letter-spacing:-0.172800px;}
.ls16_c00493{letter-spacing:-0.129600px;}
.ls14_c00493{letter-spacing:-0.064800px;}
.ls13_c00493{letter-spacing:-0.057600px;}
.lsf_c00493{letter-spacing:-0.050400px;}
.ls11_c00493{letter-spacing:-0.028800px;}
.ls15_c00493{letter-spacing:-0.021600px;}
.ls12_c00493{letter-spacing:-0.014400px;}
.lse_c00493{letter-spacing:-0.007200px;}
.lsd_c00493{letter-spacing:0.000000px;}
.ls0_c00493{letter-spacing:0.007200px;}
.ls3_c00493{letter-spacing:0.014400px;}
.ls5_c00493{letter-spacing:0.021600px;}
.ls1_c00493{letter-spacing:0.028800px;}
.ls8_c00493{letter-spacing:0.036000px;}
.ls6_c00493{letter-spacing:0.043200px;}
.ls9_c00493{letter-spacing:0.050400px;}
.ls2_c00493{letter-spacing:0.057600px;}
.ls4_c00493{letter-spacing:0.064800px;}
.ls7_c00493{letter-spacing:0.072000px;}
.lsb_c00493{letter-spacing:0.086400px;}
.lsc_c00493{letter-spacing:0.100800px;}
.lsa_c00493{letter-spacing:0.115200px;}
.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;}
}
.ws3_c00493{word-spacing:-18.064800px;}
.ws0_c00493{word-spacing:-18.028800px;}
.ws2_c00493{word-spacing:-18.014400px;}
.ws1_c00493{word-spacing:-18.000000px;}
.ws37_c00493{word-spacing:-3.758400px;}
.ws38_c00493{word-spacing:-3.693600px;}
.ws36_c00493{word-spacing:-3.643200px;}
.ws41_c00493{word-spacing:-2.743200px;}
.ws3f_c00493{word-spacing:-2.606400px;}
.ws40_c00493{word-spacing:-2.520000px;}
.ws4c_c00493{word-spacing:-2.232000px;}
.ws4b_c00493{word-spacing:-2.196000px;}
.wse_c00493{word-spacing:-1.483200px;}
.wsd_c00493{word-spacing:-1.461600px;}
.ws2b_c00493{word-spacing:-0.763200px;}
.ws2c_c00493{word-spacing:-0.741600px;}
.wsf_c00493{word-spacing:-0.360000px;}
.ws35_c00493{word-spacing:-0.280800px;}
.ws34_c00493{word-spacing:-0.237600px;}
.ws21_c00493{word-spacing:-0.201600px;}
.ws4d_c00493{word-spacing:-0.165600px;}
.wsc_c00493{word-spacing:-0.136800px;}
.ws22_c00493{word-spacing:-0.115200px;}
.ws1b_c00493{word-spacing:-0.072000px;}
.ws39_c00493{word-spacing:-0.064800px;}
.ws47_c00493{word-spacing:-0.057600px;}
.ws1f_c00493{word-spacing:-0.021600px;}
.ws16_c00493{word-spacing:-0.014400px;}
.ws12_c00493{word-spacing:-0.007200px;}
.ws4_c00493{word-spacing:0.000000px;}
.ws4a_c00493{word-spacing:0.007200px;}
.ws20_c00493{word-spacing:0.021600px;}
.ws2f_c00493{word-spacing:0.028800px;}
.ws1e_c00493{word-spacing:0.064800px;}
.ws3e_c00493{word-spacing:0.367200px;}
.ws2e_c00493{word-spacing:0.532800px;}
.ws2d_c00493{word-spacing:0.712800px;}
.ws24_c00493{word-spacing:1.260000px;}
.ws23_c00493{word-spacing:1.404000px;}
.ws3c_c00493{word-spacing:1.706400px;}
.ws3d_c00493{word-spacing:1.814400px;}
.ws29_c00493{word-spacing:2.052000px;}
.ws2a_c00493{word-spacing:2.174400px;}
.ws25_c00493{word-spacing:4.975200px;}
.ws26_c00493{word-spacing:5.032800px;}
.ws1d_c00493{word-spacing:7.754400px;}
.ws1c_c00493{word-spacing:7.797600px;}
.ws42_c00493{word-spacing:7.869600px;}
.ws3b_c00493{word-spacing:8.258400px;}
.ws43_c00493{word-spacing:8.280000px;}
.ws3a_c00493{word-spacing:8.366400px;}
.ws18_c00493{word-spacing:8.532000px;}
.ws19_c00493{word-spacing:8.625600px;}
.ws17_c00493{word-spacing:8.640000px;}
.ws1a_c00493{word-spacing:8.697600px;}
.ws33_c00493{word-spacing:9.244800px;}
.ws31_c00493{word-spacing:9.698400px;}
.ws32_c00493{word-spacing:9.720000px;}
.ws30_c00493{word-spacing:9.885600px;}
.ws45_c00493{word-spacing:10.065600px;}
.ws46_c00493{word-spacing:10.303200px;}
.ws44_c00493{word-spacing:10.425600px;}
.wsa_c00493{word-spacing:12.348000px;}
.ws9_c00493{word-spacing:12.607200px;}
.wsb_c00493{word-spacing:12.650400px;}
.ws13_c00493{word-spacing:15.645600px;}
.ws15_c00493{word-spacing:15.818400px;}
.ws14_c00493{word-spacing:15.868800px;}
.ws7_c00493{word-spacing:17.848800px;}
.ws6_c00493{word-spacing:17.971200px;}
.ws5_c00493{word-spacing:17.992800px;}
.ws11_c00493{word-spacing:23.299200px;}
.ws10_c00493{word-spacing:23.378400px;}
.ws48_c00493{word-spacing:28.332000px;}
.ws49_c00493{word-spacing:28.404000px;}
.ws27_c00493{word-spacing:41.940000px;}
.ws28_c00493{word-spacing:42.033600px;}
.ws8_c00493{word-spacing:52.891200px;}
._0_c00493{margin-left:-1.152000px;}
._1_c00493{width:1.166400px;}
.fc0_c00493{color:rgb(0,0,0);}
.fs0_c00493{font-size:72.000000px;}
.y0_c00493{bottom:0.000000px;}
.y2_c00493{bottom:46.830450px;}
.y1_c00493{bottom:67.530450px;}
.y31_c00493{bottom:145.470450px;}
.y30_c00493{bottom:166.170450px;}
.y2f_c00493{bottom:186.870450px;}
.y2e_c00493{bottom:207.570450px;}
.y2d_c00493{bottom:228.270450px;}
.y2c_c00493{bottom:248.970450px;}
.y2b_c00493{bottom:269.670450px;}
.y2a_c00493{bottom:290.370450px;}
.y29_c00493{bottom:311.070450px;}
.y28_c00493{bottom:331.770450px;}
.y27_c00493{bottom:352.470450px;}
.y26_c00493{bottom:373.170450px;}
.y25_c00493{bottom:393.780450px;}
.y24_c00493{bottom:414.480450px;}
.y23_c00493{bottom:435.180450px;}
.y22_c00493{bottom:455.880450px;}
.y21_c00493{bottom:476.580450px;}
.y20_c00493{bottom:497.280450px;}
.y1f_c00493{bottom:517.980450px;}
.y1e_c00493{bottom:538.680450px;}
.y1d_c00493{bottom:559.380450px;}
.y1c_c00493{bottom:580.080450px;}
.y1b_c00493{bottom:600.780450px;}
.y1a_c00493{bottom:621.480450px;}
.y19_c00493{bottom:642.180450px;}
.y18_c00493{bottom:662.790450px;}
.y17_c00493{bottom:683.580450px;}
.y16_c00493{bottom:704.280450px;}
.y15_c00493{bottom:724.980450px;}
.y14_c00493{bottom:745.680450px;}
.y13_c00493{bottom:766.380450px;}
.y12_c00493{bottom:787.080450px;}
.y11_c00493{bottom:807.780450px;}
.y10_c00493{bottom:828.480450px;}
.yf_c00493{bottom:849.180450px;}
.ye_c00493{bottom:869.880450px;}
.yd_c00493{bottom:890.580450px;}
.yc_c00493{bottom:911.280450px;}
.yb_c00493{bottom:931.980450px;}
.ya_c00493{bottom:952.680450px;}
.y9_c00493{bottom:973.380450px;}
.y8_c00493{bottom:994.080450px;}
.y7_c00493{bottom:1014.780450px;}
.y6_c00493{bottom:1035.480450px;}
.y5_c00493{bottom:1056.180450px;}
.y4_c00493{bottom:1076.880450px;}
.y3_c00493{bottom:1097.580450px;}
.h1_c00493{height:63.175781px;}
.h2_c00493{height:70.628906px;}
.h0_c00493{height:1263.000000px;}
.w1_c00493{width:892.500000px;}
.w0_c00493{width:892.830000px;}
.x0_c00493{left:0.000000px;}
.x2_c00493{left:127.620000px;}
.x3_c00493{left:181.620000px;}
.x1_c00493{left:695.880000px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls10_c00493{letter-spacing:-0.153600pt;}
.ls16_c00493{letter-spacing:-0.115200pt;}
.ls14_c00493{letter-spacing:-0.057600pt;}
.ls13_c00493{letter-spacing:-0.051200pt;}
.lsf_c00493{letter-spacing:-0.044800pt;}
.ls11_c00493{letter-spacing:-0.025600pt;}
.ls15_c00493{letter-spacing:-0.019200pt;}
.ls12_c00493{letter-spacing:-0.012800pt;}
.lse_c00493{letter-spacing:-0.006400pt;}
.lsd_c00493{letter-spacing:0.000000pt;}
.ls0_c00493{letter-spacing:0.006400pt;}
.ls3_c00493{letter-spacing:0.012800pt;}
.ls5_c00493{letter-spacing:0.019200pt;}
.ls1_c00493{letter-spacing:0.025600pt;}
.ls8_c00493{letter-spacing:0.032000pt;}
.ls6_c00493{letter-spacing:0.038400pt;}
.ls9_c00493{letter-spacing:0.044800pt;}
.ls2_c00493{letter-spacing:0.051200pt;}
.ls4_c00493{letter-spacing:0.057600pt;}
.ls7_c00493{letter-spacing:0.064000pt;}
.lsb_c00493{letter-spacing:0.076800pt;}
.lsc_c00493{letter-spacing:0.089600pt;}
.lsa_c00493{letter-spacing:0.102400pt;}
.ws3_c00493{word-spacing:-16.057600pt;}
.ws0_c00493{word-spacing:-16.025600pt;}
.ws2_c00493{word-spacing:-16.012800pt;}
.ws1_c00493{word-spacing:-16.000000pt;}
.ws37_c00493{word-spacing:-3.340800pt;}
.ws38_c00493{word-spacing:-3.283200pt;}
.ws36_c00493{word-spacing:-3.238400pt;}
.ws41_c00493{word-spacing:-2.438400pt;}
.ws3f_c00493{word-spacing:-2.316800pt;}
.ws40_c00493{word-spacing:-2.240000pt;}
.ws4c_c00493{word-spacing:-1.984000pt;}
.ws4b_c00493{word-spacing:-1.952000pt;}
.wse_c00493{word-spacing:-1.318400pt;}
.wsd_c00493{word-spacing:-1.299200pt;}
.ws2b_c00493{word-spacing:-0.678400pt;}
.ws2c_c00493{word-spacing:-0.659200pt;}
.wsf_c00493{word-spacing:-0.320000pt;}
.ws35_c00493{word-spacing:-0.249600pt;}
.ws34_c00493{word-spacing:-0.211200pt;}
.ws21_c00493{word-spacing:-0.179200pt;}
.ws4d_c00493{word-spacing:-0.147200pt;}
.wsc_c00493{word-spacing:-0.121600pt;}
.ws22_c00493{word-spacing:-0.102400pt;}
.ws1b_c00493{word-spacing:-0.064000pt;}
.ws39_c00493{word-spacing:-0.057600pt;}
.ws47_c00493{word-spacing:-0.051200pt;}
.ws1f_c00493{word-spacing:-0.019200pt;}
.ws16_c00493{word-spacing:-0.012800pt;}
.ws12_c00493{word-spacing:-0.006400pt;}
.ws4_c00493{word-spacing:0.000000pt;}
.ws4a_c00493{word-spacing:0.006400pt;}
.ws20_c00493{word-spacing:0.019200pt;}
.ws2f_c00493{word-spacing:0.025600pt;}
.ws1e_c00493{word-spacing:0.057600pt;}
.ws3e_c00493{word-spacing:0.326400pt;}
.ws2e_c00493{word-spacing:0.473600pt;}
.ws2d_c00493{word-spacing:0.633600pt;}
.ws24_c00493{word-spacing:1.120000pt;}
.ws23_c00493{word-spacing:1.248000pt;}
.ws3c_c00493{word-spacing:1.516800pt;}
.ws3d_c00493{word-spacing:1.612800pt;}
.ws29_c00493{word-spacing:1.824000pt;}
.ws2a_c00493{word-spacing:1.932800pt;}
.ws25_c00493{word-spacing:4.422400pt;}
.ws26_c00493{word-spacing:4.473600pt;}
.ws1d_c00493{word-spacing:6.892800pt;}
.ws1c_c00493{word-spacing:6.931200pt;}
.ws42_c00493{word-spacing:6.995200pt;}
.ws3b_c00493{word-spacing:7.340800pt;}
.ws43_c00493{word-spacing:7.360000pt;}
.ws3a_c00493{word-spacing:7.436800pt;}
.ws18_c00493{word-spacing:7.584000pt;}
.ws19_c00493{word-spacing:7.667200pt;}
.ws17_c00493{word-spacing:7.680000pt;}
.ws1a_c00493{word-spacing:7.731200pt;}
.ws33_c00493{word-spacing:8.217600pt;}
.ws31_c00493{word-spacing:8.620800pt;}
.ws32_c00493{word-spacing:8.640000pt;}
.ws30_c00493{word-spacing:8.787200pt;}
.ws45_c00493{word-spacing:8.947200pt;}
.ws46_c00493{word-spacing:9.158400pt;}
.ws44_c00493{word-spacing:9.267200pt;}
.wsa_c00493{word-spacing:10.976000pt;}
.ws9_c00493{word-spacing:11.206400pt;}
.wsb_c00493{word-spacing:11.244800pt;}
.ws13_c00493{word-spacing:13.907200pt;}
.ws15_c00493{word-spacing:14.060800pt;}
.ws14_c00493{word-spacing:14.105600pt;}
.ws7_c00493{word-spacing:15.865600pt;}
.ws6_c00493{word-spacing:15.974400pt;}
.ws5_c00493{word-spacing:15.993600pt;}
.ws11_c00493{word-spacing:20.710400pt;}
.ws10_c00493{word-spacing:20.780800pt;}
.ws48_c00493{word-spacing:25.184000pt;}
.ws49_c00493{word-spacing:25.248000pt;}
.ws27_c00493{word-spacing:37.280000pt;}
.ws28_c00493{word-spacing:37.363200pt;}
.ws8_c00493{word-spacing:47.014400pt;}
._0_c00493{margin-left:-1.024000pt;}
._1_c00493{width:1.036800pt;}
.fs0_c00493{font-size:64.000000pt;}
.y0_c00493{bottom:0.000000pt;}
.y2_c00493{bottom:41.627067pt;}
.y1_c00493{bottom:60.027067pt;}
.y31_c00493{bottom:129.307067pt;}
.y30_c00493{bottom:147.707067pt;}
.y2f_c00493{bottom:166.107067pt;}
.y2e_c00493{bottom:184.507067pt;}
.y2d_c00493{bottom:202.907067pt;}
.y2c_c00493{bottom:221.307067pt;}
.y2b_c00493{bottom:239.707067pt;}
.y2a_c00493{bottom:258.107067pt;}
.y29_c00493{bottom:276.507067pt;}
.y28_c00493{bottom:294.907067pt;}
.y27_c00493{bottom:313.307067pt;}
.y26_c00493{bottom:331.707067pt;}
.y25_c00493{bottom:350.027067pt;}
.y24_c00493{bottom:368.427067pt;}
.y23_c00493{bottom:386.827067pt;}
.y22_c00493{bottom:405.227067pt;}
.y21_c00493{bottom:423.627067pt;}
.y20_c00493{bottom:442.027067pt;}
.y1f_c00493{bottom:460.427067pt;}
.y1e_c00493{bottom:478.827067pt;}
.y1d_c00493{bottom:497.227067pt;}
.y1c_c00493{bottom:515.627067pt;}
.y1b_c00493{bottom:534.027067pt;}
.y1a_c00493{bottom:552.427067pt;}
.y19_c00493{bottom:570.827067pt;}
.y18_c00493{bottom:589.147067pt;}
.y17_c00493{bottom:607.627067pt;}
.y16_c00493{bottom:626.027067pt;}
.y15_c00493{bottom:644.427067pt;}
.y14_c00493{bottom:662.827067pt;}
.y13_c00493{bottom:681.227067pt;}
.y12_c00493{bottom:699.627067pt;}
.y11_c00493{bottom:718.027067pt;}
.y10_c00493{bottom:736.427067pt;}
.yf_c00493{bottom:754.827067pt;}
.ye_c00493{bottom:773.227067pt;}
.yd_c00493{bottom:791.627067pt;}
.yc_c00493{bottom:810.027067pt;}
.yb_c00493{bottom:828.427067pt;}
.ya_c00493{bottom:846.827067pt;}
.y9_c00493{bottom:865.227067pt;}
.y8_c00493{bottom:883.627067pt;}
.y7_c00493{bottom:902.027067pt;}
.y6_c00493{bottom:920.427067pt;}
.y5_c00493{bottom:938.827067pt;}
.y4_c00493{bottom:957.227067pt;}
.y3_c00493{bottom:975.627067pt;}
.h1_c00493{height:56.156250pt;}
.h2_c00493{height:62.781250pt;}
.h0_c00493{height:1122.666667pt;}
.w1_c00493{width:793.333333pt;}
.w0_c00493{width:793.626667pt;}
.x0_c00493{left:0.000000pt;}
.x2_c00493{left:113.440000pt;}
.x3_c00493{left:161.440000pt;}
.x1_c00493{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_30cb4f0420e412799bc47b5a.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.093262;font-style:normal;font-weight:normal;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_48ea5a7573818421d13dcbfd.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00494{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.lsd_c00494{letter-spacing:-0.079200px;}
.ls13_c00494{letter-spacing:-0.050400px;}
.ls11_c00494{letter-spacing:-0.036000px;}
.ls12_c00494{letter-spacing:-0.028800px;}
.ls10_c00494{letter-spacing:-0.021600px;}
.lsf_c00494{letter-spacing:-0.014400px;}
.lse_c00494{letter-spacing:-0.007200px;}
.lsc_c00494{letter-spacing:0.000000px;}
.ls6_c00494{letter-spacing:0.007200px;}
.ls1_c00494{letter-spacing:0.014400px;}
.ls2_c00494{letter-spacing:0.021600px;}
.ls0_c00494{letter-spacing:0.028800px;}
.ls3_c00494{letter-spacing:0.036000px;}
.ls9_c00494{letter-spacing:0.043200px;}
.ls7_c00494{letter-spacing:0.050400px;}
.ls4_c00494{letter-spacing:0.057600px;}
.ls5_c00494{letter-spacing:0.064800px;}
.ls8_c00494{letter-spacing:0.072000px;}
.lsa_c00494{letter-spacing:0.079200px;}
.lsb_c00494{letter-spacing:0.115200px;}
.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;}
}
.ws1_c00494{word-spacing:-18.072000px;}
.ws0_c00494{word-spacing:-18.021600px;}
.ws17_c00494{word-spacing:-4.334400px;}
.ws5_c00494{word-spacing:-3.520800px;}
.ws40_c00494{word-spacing:-3.304800px;}
.ws4_c00494{word-spacing:-3.268800px;}
.ws3_c00494{word-spacing:-3.254400px;}
.ws24_c00494{word-spacing:-3.002400px;}
.ws23_c00494{word-spacing:-2.980800px;}
.ws18_c00494{word-spacing:-0.338400px;}
.wsf_c00494{word-spacing:-0.288000px;}
.wsa_c00494{word-spacing:-0.244800px;}
.ws13_c00494{word-spacing:-0.194400px;}
.ws46_c00494{word-spacing:-0.187200px;}
.ws47_c00494{word-spacing:-0.136800px;}
.wse_c00494{word-spacing:-0.129600px;}
.ws45_c00494{word-spacing:-0.100800px;}
.ws15_c00494{word-spacing:-0.086400px;}
.ws16_c00494{word-spacing:-0.079200px;}
.ws9_c00494{word-spacing:-0.057600px;}
.ws8_c00494{word-spacing:-0.036000px;}
.ws7_c00494{word-spacing:-0.021600px;}
.ws6_c00494{word-spacing:-0.014400px;}
.ws3f_c00494{word-spacing:-0.007200px;}
.ws2_c00494{word-spacing:0.000000px;}
.ws25_c00494{word-spacing:0.007200px;}
.ws14_c00494{word-spacing:0.021600px;}
.ws33_c00494{word-spacing:0.028800px;}
.ws2c_c00494{word-spacing:0.036000px;}
.ws41_c00494{word-spacing:0.050400px;}
.ws27_c00494{word-spacing:0.280800px;}
.ws26_c00494{word-spacing:0.316800px;}
.ws22_c00494{word-spacing:0.338400px;}
.ws20_c00494{word-spacing:0.374400px;}
.ws21_c00494{word-spacing:0.410400px;}
.ws32_c00494{word-spacing:1.159200px;}
.ws31_c00494{word-spacing:1.281600px;}
.ws1a_c00494{word-spacing:1.375200px;}
.ws30_c00494{word-spacing:1.418400px;}
.ws19_c00494{word-spacing:1.591200px;}
.ws1b_c00494{word-spacing:1.792800px;}
.ws1c_c00494{word-spacing:1.836000px;}
.ws1e_c00494{word-spacing:1.951200px;}
.ws1f_c00494{word-spacing:2.008800px;}
.ws1d_c00494{word-spacing:2.181600px;}
.ws11_c00494{word-spacing:3.362400px;}
.ws12_c00494{word-spacing:3.585600px;}
.ws10_c00494{word-spacing:3.592800px;}
.ws3e_c00494{word-spacing:5.400000px;}
.ws44_c00494{word-spacing:7.509600px;}
.ws43_c00494{word-spacing:7.812000px;}
.ws42_c00494{word-spacing:7.833600px;}
.ws2b_c00494{word-spacing:10.418400px;}
.ws2a_c00494{word-spacing:10.569600px;}
.ws36_c00494{word-spacing:12.153600px;}
.ws35_c00494{word-spacing:12.211200px;}
.ws37_c00494{word-spacing:12.571200px;}
.wsb_c00494{word-spacing:13.312800px;}
.wsc_c00494{word-spacing:13.327200px;}
.wsd_c00494{word-spacing:13.334400px;}
.ws34_c00494{word-spacing:16.898400px;}
.ws2f_c00494{word-spacing:20.966400px;}
.ws2d_c00494{word-spacing:21.096000px;}
.ws2e_c00494{word-spacing:21.139200px;}
.ws3a_c00494{word-spacing:22.564800px;}
.ws39_c00494{word-spacing:22.672800px;}
.ws38_c00494{word-spacing:22.694400px;}
.ws3d_c00494{word-spacing:29.448000px;}
.ws3b_c00494{word-spacing:29.491200px;}
.ws3c_c00494{word-spacing:29.520000px;}
.ws28_c00494{word-spacing:33.760800px;}
.ws29_c00494{word-spacing:33.861600px;}
._0_c00494{margin-left:-1.375200px;}
._1_c00494{width:22.680000px;}
.fc0_c00494{color:rgb(0,0,0);}
.fs0_c00494{font-size:72.000000px;}
.y0_c00494{bottom:0.000000px;}
.y2_c00494{bottom:46.830450px;}
.y1_c00494{bottom:67.530450px;}
.y31_c00494{bottom:145.470600px;}
.y30_c00494{bottom:166.170450px;}
.y2f_c00494{bottom:186.870450px;}
.y2e_c00494{bottom:207.570450px;}
.y2d_c00494{bottom:228.270450px;}
.y2c_c00494{bottom:248.970450px;}
.y2b_c00494{bottom:269.670450px;}
.y2a_c00494{bottom:290.370450px;}
.y29_c00494{bottom:311.070450px;}
.y28_c00494{bottom:331.770450px;}
.y27_c00494{bottom:352.470450px;}
.y26_c00494{bottom:373.170450px;}
.y25_c00494{bottom:393.780450px;}
.y24_c00494{bottom:414.480450px;}
.y23_c00494{bottom:435.180450px;}
.y22_c00494{bottom:455.880450px;}
.y21_c00494{bottom:476.580450px;}
.y20_c00494{bottom:497.280450px;}
.y1f_c00494{bottom:517.980450px;}
.y1e_c00494{bottom:538.680450px;}
.y1d_c00494{bottom:559.380450px;}
.y1c_c00494{bottom:580.080450px;}
.y1b_c00494{bottom:600.780450px;}
.y1a_c00494{bottom:621.480450px;}
.y19_c00494{bottom:642.180450px;}
.y18_c00494{bottom:662.880450px;}
.y17_c00494{bottom:683.580450px;}
.y16_c00494{bottom:704.280450px;}
.y15_c00494{bottom:724.980450px;}
.y14_c00494{bottom:745.680450px;}
.y13_c00494{bottom:766.380450px;}
.y12_c00494{bottom:787.080450px;}
.y11_c00494{bottom:807.780450px;}
.y10_c00494{bottom:828.480450px;}
.yf_c00494{bottom:849.180450px;}
.ye_c00494{bottom:869.880450px;}
.yd_c00494{bottom:890.580450px;}
.yc_c00494{bottom:911.280450px;}
.yb_c00494{bottom:931.980450px;}
.ya_c00494{bottom:952.680450px;}
.y9_c00494{bottom:973.380450px;}
.y8_c00494{bottom:994.080450px;}
.y7_c00494{bottom:1014.780450px;}
.y6_c00494{bottom:1035.480450px;}
.y5_c00494{bottom:1056.180450px;}
.y4_c00494{bottom:1076.880450px;}
.y3_c00494{bottom:1097.580450px;}
.h1_c00494{height:63.175781px;}
.h3_c00494{height:63.176381px;}
.h2_c00494{height:70.628906px;}
.h0_c00494{height:1263.000000px;}
.w1_c00494{width:892.500000px;}
.w0_c00494{width:892.830000px;}
.x0_c00494{left:0.000000px;}
.x2_c00494{left:170.100000px;}
.x3_c00494{left:224.100000px;}
.x1_c00494{left:738.360000px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.lsd_c00494{letter-spacing:-0.070400pt;}
.ls13_c00494{letter-spacing:-0.044800pt;}
.ls11_c00494{letter-spacing:-0.032000pt;}
.ls12_c00494{letter-spacing:-0.025600pt;}
.ls10_c00494{letter-spacing:-0.019200pt;}
.lsf_c00494{letter-spacing:-0.012800pt;}
.lse_c00494{letter-spacing:-0.006400pt;}
.lsc_c00494{letter-spacing:0.000000pt;}
.ls6_c00494{letter-spacing:0.006400pt;}
.ls1_c00494{letter-spacing:0.012800pt;}
.ls2_c00494{letter-spacing:0.019200pt;}
.ls0_c00494{letter-spacing:0.025600pt;}
.ls3_c00494{letter-spacing:0.032000pt;}
.ls9_c00494{letter-spacing:0.038400pt;}
.ls7_c00494{letter-spacing:0.044800pt;}
.ls4_c00494{letter-spacing:0.051200pt;}
.ls5_c00494{letter-spacing:0.057600pt;}
.ls8_c00494{letter-spacing:0.064000pt;}
.lsa_c00494{letter-spacing:0.070400pt;}
.lsb_c00494{letter-spacing:0.102400pt;}
.ws1_c00494{word-spacing:-16.064000pt;}
.ws0_c00494{word-spacing:-16.019200pt;}
.ws17_c00494{word-spacing:-3.852800pt;}
.ws5_c00494{word-spacing:-3.129600pt;}
.ws40_c00494{word-spacing:-2.937600pt;}
.ws4_c00494{word-spacing:-2.905600pt;}
.ws3_c00494{word-spacing:-2.892800pt;}
.ws24_c00494{word-spacing:-2.668800pt;}
.ws23_c00494{word-spacing:-2.649600pt;}
.ws18_c00494{word-spacing:-0.300800pt;}
.wsf_c00494{word-spacing:-0.256000pt;}
.wsa_c00494{word-spacing:-0.217600pt;}
.ws13_c00494{word-spacing:-0.172800pt;}
.ws46_c00494{word-spacing:-0.166400pt;}
.ws47_c00494{word-spacing:-0.121600pt;}
.wse_c00494{word-spacing:-0.115200pt;}
.ws45_c00494{word-spacing:-0.089600pt;}
.ws15_c00494{word-spacing:-0.076800pt;}
.ws16_c00494{word-spacing:-0.070400pt;}
.ws9_c00494{word-spacing:-0.051200pt;}
.ws8_c00494{word-spacing:-0.032000pt;}
.ws7_c00494{word-spacing:-0.019200pt;}
.ws6_c00494{word-spacing:-0.012800pt;}
.ws3f_c00494{word-spacing:-0.006400pt;}
.ws2_c00494{word-spacing:0.000000pt;}
.ws25_c00494{word-spacing:0.006400pt;}
.ws14_c00494{word-spacing:0.019200pt;}
.ws33_c00494{word-spacing:0.025600pt;}
.ws2c_c00494{word-spacing:0.032000pt;}
.ws41_c00494{word-spacing:0.044800pt;}
.ws27_c00494{word-spacing:0.249600pt;}
.ws26_c00494{word-spacing:0.281600pt;}
.ws22_c00494{word-spacing:0.300800pt;}
.ws20_c00494{word-spacing:0.332800pt;}
.ws21_c00494{word-spacing:0.364800pt;}
.ws32_c00494{word-spacing:1.030400pt;}
.ws31_c00494{word-spacing:1.139200pt;}
.ws1a_c00494{word-spacing:1.222400pt;}
.ws30_c00494{word-spacing:1.260800pt;}
.ws19_c00494{word-spacing:1.414400pt;}
.ws1b_c00494{word-spacing:1.593600pt;}
.ws1c_c00494{word-spacing:1.632000pt;}
.ws1e_c00494{word-spacing:1.734400pt;}
.ws1f_c00494{word-spacing:1.785600pt;}
.ws1d_c00494{word-spacing:1.939200pt;}
.ws11_c00494{word-spacing:2.988800pt;}
.ws12_c00494{word-spacing:3.187200pt;}
.ws10_c00494{word-spacing:3.193600pt;}
.ws3e_c00494{word-spacing:4.800000pt;}
.ws44_c00494{word-spacing:6.675200pt;}
.ws43_c00494{word-spacing:6.944000pt;}
.ws42_c00494{word-spacing:6.963200pt;}
.ws2b_c00494{word-spacing:9.260800pt;}
.ws2a_c00494{word-spacing:9.395200pt;}
.ws36_c00494{word-spacing:10.803200pt;}
.ws35_c00494{word-spacing:10.854400pt;}
.ws37_c00494{word-spacing:11.174400pt;}
.wsb_c00494{word-spacing:11.833600pt;}
.wsc_c00494{word-spacing:11.846400pt;}
.wsd_c00494{word-spacing:11.852800pt;}
.ws34_c00494{word-spacing:15.020800pt;}
.ws2f_c00494{word-spacing:18.636800pt;}
.ws2d_c00494{word-spacing:18.752000pt;}
.ws2e_c00494{word-spacing:18.790400pt;}
.ws3a_c00494{word-spacing:20.057600pt;}
.ws39_c00494{word-spacing:20.153600pt;}
.ws38_c00494{word-spacing:20.172800pt;}
.ws3d_c00494{word-spacing:26.176000pt;}
.ws3b_c00494{word-spacing:26.214400pt;}
.ws3c_c00494{word-spacing:26.240000pt;}
.ws28_c00494{word-spacing:30.009600pt;}
.ws29_c00494{word-spacing:30.099200pt;}
._0_c00494{margin-left:-1.222400pt;}
._1_c00494{width:20.160000pt;}
.fs0_c00494{font-size:64.000000pt;}
.y0_c00494{bottom:0.000000pt;}
.y2_c00494{bottom:41.627067pt;}
.y1_c00494{bottom:60.027067pt;}
.y31_c00494{bottom:129.307200pt;}
.y30_c00494{bottom:147.707067pt;}
.y2f_c00494{bottom:166.107067pt;}
.y2e_c00494{bottom:184.507067pt;}
.y2d_c00494{bottom:202.907067pt;}
.y2c_c00494{bottom:221.307067pt;}
.y2b_c00494{bottom:239.707067pt;}
.y2a_c00494{bottom:258.107067pt;}
.y29_c00494{bottom:276.507067pt;}
.y28_c00494{bottom:294.907067pt;}
.y27_c00494{bottom:313.307067pt;}
.y26_c00494{bottom:331.707067pt;}
.y25_c00494{bottom:350.027067pt;}
.y24_c00494{bottom:368.427067pt;}
.y23_c00494{bottom:386.827067pt;}
.y22_c00494{bottom:405.227067pt;}
.y21_c00494{bottom:423.627067pt;}
.y20_c00494{bottom:442.027067pt;}
.y1f_c00494{bottom:460.427067pt;}
.y1e_c00494{bottom:478.827067pt;}
.y1d_c00494{bottom:497.227067pt;}
.y1c_c00494{bottom:515.627067pt;}
.y1b_c00494{bottom:534.027067pt;}
.y1a_c00494{bottom:552.427067pt;}
.y19_c00494{bottom:570.827067pt;}
.y18_c00494{bottom:589.227067pt;}
.y17_c00494{bottom:607.627067pt;}
.y16_c00494{bottom:626.027067pt;}
.y15_c00494{bottom:644.427067pt;}
.y14_c00494{bottom:662.827067pt;}
.y13_c00494{bottom:681.227067pt;}
.y12_c00494{bottom:699.627067pt;}
.y11_c00494{bottom:718.027067pt;}
.y10_c00494{bottom:736.427067pt;}
.yf_c00494{bottom:754.827067pt;}
.ye_c00494{bottom:773.227067pt;}
.yd_c00494{bottom:791.627067pt;}
.yc_c00494{bottom:810.027067pt;}
.yb_c00494{bottom:828.427067pt;}
.ya_c00494{bottom:846.827067pt;}
.y9_c00494{bottom:865.227067pt;}
.y8_c00494{bottom:883.627067pt;}
.y7_c00494{bottom:902.027067pt;}
.y6_c00494{bottom:920.427067pt;}
.y5_c00494{bottom:938.827067pt;}
.y4_c00494{bottom:957.227067pt;}
.y3_c00494{bottom:975.627067pt;}
.h1_c00494{height:56.156250pt;}
.h3_c00494{height:56.156783pt;}
.h2_c00494{height:62.781250pt;}
.h0_c00494{height:1122.666667pt;}
.w1_c00494{width:793.333333pt;}
.w0_c00494{width:793.626667pt;}
.x0_c00494{left:0.000000pt;}
.x2_c00494{left:151.200000pt;}
.x3_c00494{left:199.200000pt;}
.x1_c00494{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_50cdf5e4cbec3021d32d5c54.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.093262;font-style:normal;font-weight:normal;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_2122d4ac4faec605d80a53f3.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls14_c00495{letter-spacing:-0.100800px;}
.ls13_c00495{letter-spacing:-0.093600px;}
.lsc_c00495{letter-spacing:-0.086400px;}
.ls12_c00495{letter-spacing:-0.072000px;}
.ls11_c00495{letter-spacing:-0.057600px;}
.ls15_c00495{letter-spacing:-0.043200px;}
.lse_c00495{letter-spacing:-0.036000px;}
.ls10_c00495{letter-spacing:-0.021600px;}
.lsd_c00495{letter-spacing:-0.014400px;}
.lsf_c00495{letter-spacing:-0.007200px;}
.lsb_c00495{letter-spacing:0.000000px;}
.ls4_c00495{letter-spacing:0.007200px;}
.ls6_c00495{letter-spacing:0.014400px;}
.ls2_c00495{letter-spacing:0.021600px;}
.ls0_c00495{letter-spacing:0.028800px;}
.ls5_c00495{letter-spacing:0.036000px;}
.ls8_c00495{letter-spacing:0.043200px;}
.ls3_c00495{letter-spacing:0.050400px;}
.ls1_c00495{letter-spacing:0.057600px;}
.ls7_c00495{letter-spacing:0.064800px;}
.lsa_c00495{letter-spacing:0.072000px;}
.ls9_c00495{letter-spacing:0.079200px;}
.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:-18.079200px;}
.ws8_c00495{word-spacing:-18.072000px;}
.ws7_c00495{word-spacing:-18.043200px;}
.ws4_c00495{word-spacing:-18.028800px;}
.ws0_c00495{word-spacing:-18.021600px;}
.ws3_c00495{word-spacing:-18.014400px;}
.ws5_c00495{word-spacing:-18.007200px;}
.ws2_c00495{word-spacing:-17.928000px;}
.ws6_c00495{word-spacing:-17.906400px;}
.ws11_c00495{word-spacing:-4.406400px;}
.ws45_c00495{word-spacing:-4.348800px;}
.ws12_c00495{word-spacing:-4.334400px;}
.ws46_c00495{word-spacing:-4.320000px;}
.ws23_c00495{word-spacing:-2.296800px;}
.ws16_c00495{word-spacing:-2.275200px;}
.ws27_c00495{word-spacing:-2.224800px;}
.ws24_c00495{word-spacing:-2.210400px;}
.ws22_c00495{word-spacing:-2.181600px;}
.ws17_c00495{word-spacing:-2.174400px;}
.ws26_c00495{word-spacing:-2.167200px;}
.ws18_c00495{word-spacing:-2.160000px;}
.ws2b_c00495{word-spacing:-1.310400px;}
.ws2d_c00495{word-spacing:-1.094400px;}
.ws2c_c00495{word-spacing:-1.022400px;}
.ws3a_c00495{word-spacing:-0.900000px;}
.ws38_c00495{word-spacing:-0.813600px;}
.ws39_c00495{word-spacing:-0.777600px;}
.ws4c_c00495{word-spacing:-0.403200px;}
.ws25_c00495{word-spacing:-0.360000px;}
.ws4b_c00495{word-spacing:-0.180000px;}
.ws41_c00495{word-spacing:-0.144000px;}
.wsd_c00495{word-spacing:-0.136800px;}
.ws37_c00495{word-spacing:-0.122400px;}
.ws35_c00495{word-spacing:-0.108000px;}
.ws49_c00495{word-spacing:-0.100800px;}
.ws36_c00495{word-spacing:-0.093600px;}
.ws4a_c00495{word-spacing:-0.072000px;}
.ws15_c00495{word-spacing:-0.064800px;}
.ws28_c00495{word-spacing:-0.050400px;}
.ws3d_c00495{word-spacing:-0.043200px;}
.ws4d_c00495{word-spacing:-0.028800px;}
.ws1f_c00495{word-spacing:-0.014400px;}
.ws1a_c00495{word-spacing:-0.007200px;}
.ws9_c00495{word-spacing:0.000000px;}
.ws2a_c00495{word-spacing:0.007200px;}
.ws29_c00495{word-spacing:0.021600px;}
.ws19_c00495{word-spacing:0.036000px;}
.ws51_c00495{word-spacing:0.043200px;}
.ws52_c00495{word-spacing:0.129600px;}
.ws13_c00495{word-spacing:3.232800px;}
.ws14_c00495{word-spacing:3.254400px;}
.ws42_c00495{word-spacing:3.758400px;}
.ws44_c00495{word-spacing:3.909600px;}
.ws43_c00495{word-spacing:3.960000px;}
.ws1d_c00495{word-spacing:4.212000px;}
.ws1e_c00495{word-spacing:4.291200px;}
.ws40_c00495{word-spacing:4.550400px;}
.ws3f_c00495{word-spacing:4.680000px;}
.ws50_c00495{word-spacing:5.032800px;}
.ws4f_c00495{word-spacing:5.148000px;}
.ws4e_c00495{word-spacing:5.364000px;}
.ws32_c00495{word-spacing:8.438400px;}
.ws30_c00495{word-spacing:8.481600px;}
.ws31_c00495{word-spacing:8.640000px;}
.ws3e_c00495{word-spacing:10.771200px;}
.wsc_c00495{word-spacing:11.462400px;}
.ws21_c00495{word-spacing:11.793600px;}
.ws10_c00495{word-spacing:11.829600px;}
.wsf_c00495{word-spacing:11.844000px;}
.ws1b_c00495{word-spacing:11.851200px;}
.ws20_c00495{word-spacing:11.865600px;}
.wse_c00495{word-spacing:11.872800px;}
.ws1c_c00495{word-spacing:11.880000px;}
.ws47_c00495{word-spacing:12.218400px;}
.ws48_c00495{word-spacing:12.254400px;}
.ws33_c00495{word-spacing:18.669600px;}
.ws34_c00495{word-spacing:18.734400px;}
.wsa_c00495{word-spacing:30.513600px;}
.wsb_c00495{word-spacing:30.600000px;}
.ws2e_c00495{word-spacing:40.320000px;}
.ws3b_c00495{word-spacing:48.189600px;}
.ws3c_c00495{word-spacing:48.225600px;}
.ws2f_c00495{word-spacing:1087.200000px;}
._0_c00495{margin-left:-1.152000px;}
.fc0_c00495{color:rgb(0,0,0);}
.fs0_c00495{font-size:72.000000px;}
.y0_c00495{bottom:0.000000px;}
.y2_c00495{bottom:46.830450px;}
.y1_c00495{bottom:67.530450px;}
.y31_c00495{bottom:145.470450px;}
.y30_c00495{bottom:166.170450px;}
.y2f_c00495{bottom:186.870450px;}
.y2e_c00495{bottom:207.570450px;}
.y2d_c00495{bottom:228.270450px;}
.y2c_c00495{bottom:248.970450px;}
.y2b_c00495{bottom:269.670450px;}
.y2a_c00495{bottom:290.370450px;}
.y29_c00495{bottom:311.070450px;}
.y28_c00495{bottom:331.770450px;}
.y27_c00495{bottom:352.470450px;}
.y26_c00495{bottom:373.170450px;}
.y25_c00495{bottom:393.780450px;}
.y24_c00495{bottom:414.480450px;}
.y23_c00495{bottom:435.090450px;}
.y22_c00495{bottom:455.880450px;}
.y21_c00495{bottom:476.580450px;}
.y20_c00495{bottom:497.280450px;}
.y1f_c00495{bottom:517.980450px;}
.y1e_c00495{bottom:538.680450px;}
.y1d_c00495{bottom:559.380450px;}
.y1c_c00495{bottom:580.080450px;}
.y1b_c00495{bottom:600.780450px;}
.y1a_c00495{bottom:621.480450px;}
.y19_c00495{bottom:642.180450px;}
.y18_c00495{bottom:662.880450px;}
.y17_c00495{bottom:683.580450px;}
.y16_c00495{bottom:704.280450px;}
.y15_c00495{bottom:724.890450px;}
.y14_c00495{bottom:745.680450px;}
.y13_c00495{bottom:766.380450px;}
.y12_c00495{bottom:787.080450px;}
.y11_c00495{bottom:807.780450px;}
.y10_c00495{bottom:828.480450px;}
.yf_c00495{bottom:849.180450px;}
.ye_c00495{bottom:869.790450px;}
.yd_c00495{bottom:890.580450px;}
.yc_c00495{bottom:911.280450px;}
.yb_c00495{bottom:931.980450px;}
.ya_c00495{bottom:952.680450px;}
.y9_c00495{bottom:973.380450px;}
.y8_c00495{bottom:994.080450px;}
.y7_c00495{bottom:1014.780450px;}
.y6_c00495{bottom:1035.480450px;}
.y5_c00495{bottom:1056.180450px;}
.y4_c00495{bottom:1076.790450px;}
.y3_c00495{bottom:1097.580450px;}
.h1_c00495{height:63.175781px;}
.h2_c00495{height:70.628906px;}
.h0_c00495{height:1263.000000px;}
.w1_c00495{width:892.500000px;}
.w0_c00495{width:892.830000px;}
.x0_c00495{left:0.000000px;}
.x2_c00495{left:127.620000px;}
.x3_c00495{left:181.620000px;}
.x1_c00495{left:695.880000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls14_c00495{letter-spacing:-0.089600pt;}
.ls13_c00495{letter-spacing:-0.083200pt;}
.lsc_c00495{letter-spacing:-0.076800pt;}
.ls12_c00495{letter-spacing:-0.064000pt;}
.ls11_c00495{letter-spacing:-0.051200pt;}
.ls15_c00495{letter-spacing:-0.038400pt;}
.lse_c00495{letter-spacing:-0.032000pt;}
.ls10_c00495{letter-spacing:-0.019200pt;}
.lsd_c00495{letter-spacing:-0.012800pt;}
.lsf_c00495{letter-spacing:-0.006400pt;}
.lsb_c00495{letter-spacing:0.000000pt;}
.ls4_c00495{letter-spacing:0.006400pt;}
.ls6_c00495{letter-spacing:0.012800pt;}
.ls2_c00495{letter-spacing:0.019200pt;}
.ls0_c00495{letter-spacing:0.025600pt;}
.ls5_c00495{letter-spacing:0.032000pt;}
.ls8_c00495{letter-spacing:0.038400pt;}
.ls3_c00495{letter-spacing:0.044800pt;}
.ls1_c00495{letter-spacing:0.051200pt;}
.ls7_c00495{letter-spacing:0.057600pt;}
.lsa_c00495{letter-spacing:0.064000pt;}
.ls9_c00495{letter-spacing:0.070400pt;}
.ws1_c00495{word-spacing:-16.070400pt;}
.ws8_c00495{word-spacing:-16.064000pt;}
.ws7_c00495{word-spacing:-16.038400pt;}
.ws4_c00495{word-spacing:-16.025600pt;}
.ws0_c00495{word-spacing:-16.019200pt;}
.ws3_c00495{word-spacing:-16.012800pt;}
.ws5_c00495{word-spacing:-16.006400pt;}
.ws2_c00495{word-spacing:-15.936000pt;}
.ws6_c00495{word-spacing:-15.916800pt;}
.ws11_c00495{word-spacing:-3.916800pt;}
.ws45_c00495{word-spacing:-3.865600pt;}
.ws12_c00495{word-spacing:-3.852800pt;}
.ws46_c00495{word-spacing:-3.840000pt;}
.ws23_c00495{word-spacing:-2.041600pt;}
.ws16_c00495{word-spacing:-2.022400pt;}
.ws27_c00495{word-spacing:-1.977600pt;}
.ws24_c00495{word-spacing:-1.964800pt;}
.ws22_c00495{word-spacing:-1.939200pt;}
.ws17_c00495{word-spacing:-1.932800pt;}
.ws26_c00495{word-spacing:-1.926400pt;}
.ws18_c00495{word-spacing:-1.920000pt;}
.ws2b_c00495{word-spacing:-1.164800pt;}
.ws2d_c00495{word-spacing:-0.972800pt;}
.ws2c_c00495{word-spacing:-0.908800pt;}
.ws3a_c00495{word-spacing:-0.800000pt;}
.ws38_c00495{word-spacing:-0.723200pt;}
.ws39_c00495{word-spacing:-0.691200pt;}
.ws4c_c00495{word-spacing:-0.358400pt;}
.ws25_c00495{word-spacing:-0.320000pt;}
.ws4b_c00495{word-spacing:-0.160000pt;}
.ws41_c00495{word-spacing:-0.128000pt;}
.wsd_c00495{word-spacing:-0.121600pt;}
.ws37_c00495{word-spacing:-0.108800pt;}
.ws35_c00495{word-spacing:-0.096000pt;}
.ws49_c00495{word-spacing:-0.089600pt;}
.ws36_c00495{word-spacing:-0.083200pt;}
.ws4a_c00495{word-spacing:-0.064000pt;}
.ws15_c00495{word-spacing:-0.057600pt;}
.ws28_c00495{word-spacing:-0.044800pt;}
.ws3d_c00495{word-spacing:-0.038400pt;}
.ws4d_c00495{word-spacing:-0.025600pt;}
.ws1f_c00495{word-spacing:-0.012800pt;}
.ws1a_c00495{word-spacing:-0.006400pt;}
.ws9_c00495{word-spacing:0.000000pt;}
.ws2a_c00495{word-spacing:0.006400pt;}
.ws29_c00495{word-spacing:0.019200pt;}
.ws19_c00495{word-spacing:0.032000pt;}
.ws51_c00495{word-spacing:0.038400pt;}
.ws52_c00495{word-spacing:0.115200pt;}
.ws13_c00495{word-spacing:2.873600pt;}
.ws14_c00495{word-spacing:2.892800pt;}
.ws42_c00495{word-spacing:3.340800pt;}
.ws44_c00495{word-spacing:3.475200pt;}
.ws43_c00495{word-spacing:3.520000pt;}
.ws1d_c00495{word-spacing:3.744000pt;}
.ws1e_c00495{word-spacing:3.814400pt;}
.ws40_c00495{word-spacing:4.044800pt;}
.ws3f_c00495{word-spacing:4.160000pt;}
.ws50_c00495{word-spacing:4.473600pt;}
.ws4f_c00495{word-spacing:4.576000pt;}
.ws4e_c00495{word-spacing:4.768000pt;}
.ws32_c00495{word-spacing:7.500800pt;}
.ws30_c00495{word-spacing:7.539200pt;}
.ws31_c00495{word-spacing:7.680000pt;}
.ws3e_c00495{word-spacing:9.574400pt;}
.wsc_c00495{word-spacing:10.188800pt;}
.ws21_c00495{word-spacing:10.483200pt;}
.ws10_c00495{word-spacing:10.515200pt;}
.wsf_c00495{word-spacing:10.528000pt;}
.ws1b_c00495{word-spacing:10.534400pt;}
.ws20_c00495{word-spacing:10.547200pt;}
.wse_c00495{word-spacing:10.553600pt;}
.ws1c_c00495{word-spacing:10.560000pt;}
.ws47_c00495{word-spacing:10.860800pt;}
.ws48_c00495{word-spacing:10.892800pt;}
.ws33_c00495{word-spacing:16.595200pt;}
.ws34_c00495{word-spacing:16.652800pt;}
.wsa_c00495{word-spacing:27.123200pt;}
.wsb_c00495{word-spacing:27.200000pt;}
.ws2e_c00495{word-spacing:35.840000pt;}
.ws3b_c00495{word-spacing:42.835200pt;}
.ws3c_c00495{word-spacing:42.867200pt;}
.ws2f_c00495{word-spacing:966.400000pt;}
._0_c00495{margin-left:-1.024000pt;}
.fs0_c00495{font-size:64.000000pt;}
.y0_c00495{bottom:0.000000pt;}
.y2_c00495{bottom:41.627067pt;}
.y1_c00495{bottom:60.027067pt;}
.y31_c00495{bottom:129.307067pt;}
.y30_c00495{bottom:147.707067pt;}
.y2f_c00495{bottom:166.107067pt;}
.y2e_c00495{bottom:184.507067pt;}
.y2d_c00495{bottom:202.907067pt;}
.y2c_c00495{bottom:221.307067pt;}
.y2b_c00495{bottom:239.707067pt;}
.y2a_c00495{bottom:258.107067pt;}
.y29_c00495{bottom:276.507067pt;}
.y28_c00495{bottom:294.907067pt;}
.y27_c00495{bottom:313.307067pt;}
.y26_c00495{bottom:331.707067pt;}
.y25_c00495{bottom:350.027067pt;}
.y24_c00495{bottom:368.427067pt;}
.y23_c00495{bottom:386.747067pt;}
.y22_c00495{bottom:405.227067pt;}
.y21_c00495{bottom:423.627067pt;}
.y20_c00495{bottom:442.027067pt;}
.y1f_c00495{bottom:460.427067pt;}
.y1e_c00495{bottom:478.827067pt;}
.y1d_c00495{bottom:497.227067pt;}
.y1c_c00495{bottom:515.627067pt;}
.y1b_c00495{bottom:534.027067pt;}
.y1a_c00495{bottom:552.427067pt;}
.y19_c00495{bottom:570.827067pt;}
.y18_c00495{bottom:589.227067pt;}
.y17_c00495{bottom:607.627067pt;}
.y16_c00495{bottom:626.027067pt;}
.y15_c00495{bottom:644.347067pt;}
.y14_c00495{bottom:662.827067pt;}
.y13_c00495{bottom:681.227067pt;}
.y12_c00495{bottom:699.627067pt;}
.y11_c00495{bottom:718.027067pt;}
.y10_c00495{bottom:736.427067pt;}
.yf_c00495{bottom:754.827067pt;}
.ye_c00495{bottom:773.147067pt;}
.yd_c00495{bottom:791.627067pt;}
.yc_c00495{bottom:810.027067pt;}
.yb_c00495{bottom:828.427067pt;}
.ya_c00495{bottom:846.827067pt;}
.y9_c00495{bottom:865.227067pt;}
.y8_c00495{bottom:883.627067pt;}
.y7_c00495{bottom:902.027067pt;}
.y6_c00495{bottom:920.427067pt;}
.y5_c00495{bottom:938.827067pt;}
.y4_c00495{bottom:957.147067pt;}
.y3_c00495{bottom:975.627067pt;}
.h1_c00495{height:56.156250pt;}
.h2_c00495{height:62.781250pt;}
.h0_c00495{height:1122.666667pt;}
.w1_c00495{width:793.333333pt;}
.w0_c00495{width:793.626667pt;}
.x0_c00495{left:0.000000pt;}
.x2_c00495{left:113.440000pt;}
.x3_c00495{left:161.440000pt;}
.x1_c00495{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f17dc0cb51da16d85557dd2b.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.093262;font-style:normal;font-weight:normal;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_155ddd6419a92b08435282f4.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00496{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls10_c00496{letter-spacing:-0.108000px;}
.ls11_c00496{letter-spacing:-0.057600px;}
.ls12_c00496{letter-spacing:-0.036000px;}
.lsc_c00496{letter-spacing:-0.028800px;}
.lse_c00496{letter-spacing:-0.021600px;}
.lsd_c00496{letter-spacing:-0.014400px;}
.lsf_c00496{letter-spacing:-0.007200px;}
.lsb_c00496{letter-spacing:0.000000px;}
.ls0_c00496{letter-spacing:0.007200px;}
.ls5_c00496{letter-spacing:0.014400px;}
.ls8_c00496{letter-spacing:0.021600px;}
.ls1_c00496{letter-spacing:0.028800px;}
.ls4_c00496{letter-spacing:0.036000px;}
.ls7_c00496{letter-spacing:0.043200px;}
.lsa_c00496{letter-spacing:0.050400px;}
.ls6_c00496{letter-spacing:0.057600px;}
.ls3_c00496{letter-spacing:0.064800px;}
.ls2_c00496{letter-spacing:0.079200px;}
.ls9_c00496{letter-spacing:0.100800px;}
.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;}
}
.ws1_c00496{word-spacing:-18.064800px;}
.ws2_c00496{word-spacing:-18.057600px;}
.ws0_c00496{word-spacing:-18.043200px;}
.ws29_c00496{word-spacing:-4.068000px;}
.ws28_c00496{word-spacing:-3.996000px;}
.wsa_c00496{word-spacing:-2.880000px;}
.ws9_c00496{word-spacing:-2.851200px;}
.ws33_c00496{word-spacing:-1.130400px;}
.ws34_c00496{word-spacing:-1.022400px;}
.ws1f_c00496{word-spacing:-0.777600px;}
.ws1e_c00496{word-spacing:-0.763200px;}
.ws2b_c00496{word-spacing:-0.223200px;}
.wsf_c00496{word-spacing:-0.172800px;}
.ws2c_c00496{word-spacing:-0.158400px;}
.ws25_c00496{word-spacing:-0.151200px;}
.ws31_c00496{word-spacing:-0.100800px;}
.ws48_c00496{word-spacing:-0.079200px;}
.ws2a_c00496{word-spacing:-0.057600px;}
.ws51_c00496{word-spacing:-0.050400px;}
.ws45_c00496{word-spacing:-0.043200px;}
.ws10_c00496{word-spacing:-0.036000px;}
.ws3b_c00496{word-spacing:-0.028800px;}
.ws30_c00496{word-spacing:-0.021600px;}
.ws35_c00496{word-spacing:-0.014400px;}
.ws4a_c00496{word-spacing:-0.007200px;}
.ws3_c00496{word-spacing:0.000000px;}
.ws8_c00496{word-spacing:0.021600px;}
.ws4b_c00496{word-spacing:0.028800px;}
.ws17_c00496{word-spacing:0.172800px;}
.ws32_c00496{word-spacing:0.216000px;}
.ws15_c00496{word-spacing:0.223200px;}
.ws16_c00496{word-spacing:0.266400px;}
.ws49_c00496{word-spacing:0.302400px;}
.ws14_c00496{word-spacing:0.936000px;}
.ws13_c00496{word-spacing:1.072800px;}
.ws38_c00496{word-spacing:3.780000px;}
.ws39_c00496{word-spacing:3.916800px;}
.ws3a_c00496{word-spacing:3.952800px;}
.ws44_c00496{word-spacing:4.305600px;}
.ws43_c00496{word-spacing:4.312800px;}
.ws3c_c00496{word-spacing:5.040000px;}
.ws3e_c00496{word-spacing:5.047200px;}
.ws3d_c00496{word-spacing:5.068800px;}
.ws1a_c00496{word-spacing:5.248800px;}
.ws1b_c00496{word-spacing:5.299200px;}
.ws21_c00496{word-spacing:5.594400px;}
.ws20_c00496{word-spacing:5.695200px;}
.ws22_c00496{word-spacing:5.868000px;}
.ws1c_c00496{word-spacing:10.368000px;}
.ws1d_c00496{word-spacing:10.432800px;}
.ws2f_c00496{word-spacing:10.720800px;}
.ws23_c00496{word-spacing:10.735200px;}
.ws2d_c00496{word-spacing:10.771200px;}
.ws2e_c00496{word-spacing:10.785600px;}
.ws24_c00496{word-spacing:10.828800px;}
.ws7_c00496{word-spacing:12.434400px;}
.ws6_c00496{word-spacing:12.506400px;}
.ws42_c00496{word-spacing:12.513600px;}
.ws41_c00496{word-spacing:12.564000px;}
.ws5_c00496{word-spacing:12.571200px;}
.ws27_c00496{word-spacing:12.880800px;}
.ws26_c00496{word-spacing:12.931200px;}
.ws47_c00496{word-spacing:15.804000px;}
.ws46_c00496{word-spacing:15.818400px;}
.ws12_c00496{word-spacing:17.575200px;}
.ws11_c00496{word-spacing:17.604000px;}
.wsc_c00496{word-spacing:20.440800px;}
.wsb_c00496{word-spacing:20.512800px;}
.ws4e_c00496{word-spacing:23.284800px;}
.ws4c_c00496{word-spacing:23.356800px;}
.ws4d_c00496{word-spacing:23.385600px;}
.ws19_c00496{word-spacing:24.379200px;}
.ws18_c00496{word-spacing:24.408000px;}
.ws36_c00496{word-spacing:29.138400px;}
.ws37_c00496{word-spacing:29.152800px;}
.wse_c00496{word-spacing:31.586400px;}
.wsd_c00496{word-spacing:31.615200px;}
.ws4_c00496{word-spacing:37.792800px;}
.ws3f_c00496{word-spacing:38.282400px;}
.ws40_c00496{word-spacing:38.534400px;}
.ws50_c00496{word-spacing:42.804000px;}
.ws4f_c00496{word-spacing:43.135200px;}
._0_c00496{margin-left:-1.332000px;}
.fc0_c00496{color:rgb(0,0,0);}
.fs0_c00496{font-size:72.000000px;}
.y0_c00496{bottom:0.000000px;}
.y2_c00496{bottom:46.830450px;}
.y1_c00496{bottom:67.530450px;}
.y30_c00496{bottom:166.170450px;}
.y2f_c00496{bottom:186.870450px;}
.y2e_c00496{bottom:207.570450px;}
.y2d_c00496{bottom:228.270450px;}
.y2c_c00496{bottom:248.970450px;}
.y2b_c00496{bottom:269.670450px;}
.y2a_c00496{bottom:290.370450px;}
.y29_c00496{bottom:311.070450px;}
.y28_c00496{bottom:331.770450px;}
.y27_c00496{bottom:352.470450px;}
.y26_c00496{bottom:373.170450px;}
.y25_c00496{bottom:393.780450px;}
.y24_c00496{bottom:414.480450px;}
.y23_c00496{bottom:435.180450px;}
.y22_c00496{bottom:455.880450px;}
.y21_c00496{bottom:476.580450px;}
.y20_c00496{bottom:497.280450px;}
.y1f_c00496{bottom:517.980450px;}
.y1e_c00496{bottom:538.680450px;}
.y1d_c00496{bottom:559.380450px;}
.y1c_c00496{bottom:580.080450px;}
.y1b_c00496{bottom:600.780450px;}
.y1a_c00496{bottom:621.480450px;}
.y19_c00496{bottom:642.180450px;}
.y18_c00496{bottom:662.880450px;}
.y17_c00496{bottom:683.580450px;}
.y16_c00496{bottom:704.280450px;}
.y15_c00496{bottom:724.980450px;}
.y14_c00496{bottom:745.680450px;}
.y13_c00496{bottom:766.380450px;}
.y12_c00496{bottom:787.080450px;}
.y11_c00496{bottom:807.780450px;}
.y10_c00496{bottom:828.480450px;}
.yf_c00496{bottom:849.180450px;}
.ye_c00496{bottom:869.880450px;}
.yd_c00496{bottom:890.580450px;}
.yc_c00496{bottom:911.280450px;}
.yb_c00496{bottom:931.980450px;}
.ya_c00496{bottom:952.680450px;}
.y9_c00496{bottom:973.380450px;}
.y8_c00496{bottom:994.080450px;}
.y7_c00496{bottom:1014.780450px;}
.y6_c00496{bottom:1035.480450px;}
.y5_c00496{bottom:1056.180450px;}
.y4_c00496{bottom:1076.880450px;}
.y3_c00496{bottom:1097.580450px;}
.h1_c00496{height:63.175781px;}
.h2_c00496{height:70.628906px;}
.h0_c00496{height:1263.000000px;}
.w1_c00496{width:892.500000px;}
.w0_c00496{width:892.830000px;}
.x0_c00496{left:0.000000px;}
.x2_c00496{left:170.100000px;}
.x3_c00496{left:224.100000px;}
.x1_c00496{left:738.360000px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls10_c00496{letter-spacing:-0.096000pt;}
.ls11_c00496{letter-spacing:-0.051200pt;}
.ls12_c00496{letter-spacing:-0.032000pt;}
.lsc_c00496{letter-spacing:-0.025600pt;}
.lse_c00496{letter-spacing:-0.019200pt;}
.lsd_c00496{letter-spacing:-0.012800pt;}
.lsf_c00496{letter-spacing:-0.006400pt;}
.lsb_c00496{letter-spacing:0.000000pt;}
.ls0_c00496{letter-spacing:0.006400pt;}
.ls5_c00496{letter-spacing:0.012800pt;}
.ls8_c00496{letter-spacing:0.019200pt;}
.ls1_c00496{letter-spacing:0.025600pt;}
.ls4_c00496{letter-spacing:0.032000pt;}
.ls7_c00496{letter-spacing:0.038400pt;}
.lsa_c00496{letter-spacing:0.044800pt;}
.ls6_c00496{letter-spacing:0.051200pt;}
.ls3_c00496{letter-spacing:0.057600pt;}
.ls2_c00496{letter-spacing:0.070400pt;}
.ls9_c00496{letter-spacing:0.089600pt;}
.ws1_c00496{word-spacing:-16.057600pt;}
.ws2_c00496{word-spacing:-16.051200pt;}
.ws0_c00496{word-spacing:-16.038400pt;}
.ws29_c00496{word-spacing:-3.616000pt;}
.ws28_c00496{word-spacing:-3.552000pt;}
.wsa_c00496{word-spacing:-2.560000pt;}
.ws9_c00496{word-spacing:-2.534400pt;}
.ws33_c00496{word-spacing:-1.004800pt;}
.ws34_c00496{word-spacing:-0.908800pt;}
.ws1f_c00496{word-spacing:-0.691200pt;}
.ws1e_c00496{word-spacing:-0.678400pt;}
.ws2b_c00496{word-spacing:-0.198400pt;}
.wsf_c00496{word-spacing:-0.153600pt;}
.ws2c_c00496{word-spacing:-0.140800pt;}
.ws25_c00496{word-spacing:-0.134400pt;}
.ws31_c00496{word-spacing:-0.089600pt;}
.ws48_c00496{word-spacing:-0.070400pt;}
.ws2a_c00496{word-spacing:-0.051200pt;}
.ws51_c00496{word-spacing:-0.044800pt;}
.ws45_c00496{word-spacing:-0.038400pt;}
.ws10_c00496{word-spacing:-0.032000pt;}
.ws3b_c00496{word-spacing:-0.025600pt;}
.ws30_c00496{word-spacing:-0.019200pt;}
.ws35_c00496{word-spacing:-0.012800pt;}
.ws4a_c00496{word-spacing:-0.006400pt;}
.ws3_c00496{word-spacing:0.000000pt;}
.ws8_c00496{word-spacing:0.019200pt;}
.ws4b_c00496{word-spacing:0.025600pt;}
.ws17_c00496{word-spacing:0.153600pt;}
.ws32_c00496{word-spacing:0.192000pt;}
.ws15_c00496{word-spacing:0.198400pt;}
.ws16_c00496{word-spacing:0.236800pt;}
.ws49_c00496{word-spacing:0.268800pt;}
.ws14_c00496{word-spacing:0.832000pt;}
.ws13_c00496{word-spacing:0.953600pt;}
.ws38_c00496{word-spacing:3.360000pt;}
.ws39_c00496{word-spacing:3.481600pt;}
.ws3a_c00496{word-spacing:3.513600pt;}
.ws44_c00496{word-spacing:3.827200pt;}
.ws43_c00496{word-spacing:3.833600pt;}
.ws3c_c00496{word-spacing:4.480000pt;}
.ws3e_c00496{word-spacing:4.486400pt;}
.ws3d_c00496{word-spacing:4.505600pt;}
.ws1a_c00496{word-spacing:4.665600pt;}
.ws1b_c00496{word-spacing:4.710400pt;}
.ws21_c00496{word-spacing:4.972800pt;}
.ws20_c00496{word-spacing:5.062400pt;}
.ws22_c00496{word-spacing:5.216000pt;}
.ws1c_c00496{word-spacing:9.216000pt;}
.ws1d_c00496{word-spacing:9.273600pt;}
.ws2f_c00496{word-spacing:9.529600pt;}
.ws23_c00496{word-spacing:9.542400pt;}
.ws2d_c00496{word-spacing:9.574400pt;}
.ws2e_c00496{word-spacing:9.587200pt;}
.ws24_c00496{word-spacing:9.625600pt;}
.ws7_c00496{word-spacing:11.052800pt;}
.ws6_c00496{word-spacing:11.116800pt;}
.ws42_c00496{word-spacing:11.123200pt;}
.ws41_c00496{word-spacing:11.168000pt;}
.ws5_c00496{word-spacing:11.174400pt;}
.ws27_c00496{word-spacing:11.449600pt;}
.ws26_c00496{word-spacing:11.494400pt;}
.ws47_c00496{word-spacing:14.048000pt;}
.ws46_c00496{word-spacing:14.060800pt;}
.ws12_c00496{word-spacing:15.622400pt;}
.ws11_c00496{word-spacing:15.648000pt;}
.wsc_c00496{word-spacing:18.169600pt;}
.wsb_c00496{word-spacing:18.233600pt;}
.ws4e_c00496{word-spacing:20.697600pt;}
.ws4c_c00496{word-spacing:20.761600pt;}
.ws4d_c00496{word-spacing:20.787200pt;}
.ws19_c00496{word-spacing:21.670400pt;}
.ws18_c00496{word-spacing:21.696000pt;}
.ws36_c00496{word-spacing:25.900800pt;}
.ws37_c00496{word-spacing:25.913600pt;}
.wse_c00496{word-spacing:28.076800pt;}
.wsd_c00496{word-spacing:28.102400pt;}
.ws4_c00496{word-spacing:33.593600pt;}
.ws3f_c00496{word-spacing:34.028800pt;}
.ws40_c00496{word-spacing:34.252800pt;}
.ws50_c00496{word-spacing:38.048000pt;}
.ws4f_c00496{word-spacing:38.342400pt;}
._0_c00496{margin-left:-1.184000pt;}
.fs0_c00496{font-size:64.000000pt;}
.y0_c00496{bottom:0.000000pt;}
.y2_c00496{bottom:41.627067pt;}
.y1_c00496{bottom:60.027067pt;}
.y30_c00496{bottom:147.707067pt;}
.y2f_c00496{bottom:166.107067pt;}
.y2e_c00496{bottom:184.507067pt;}
.y2d_c00496{bottom:202.907067pt;}
.y2c_c00496{bottom:221.307067pt;}
.y2b_c00496{bottom:239.707067pt;}
.y2a_c00496{bottom:258.107067pt;}
.y29_c00496{bottom:276.507067pt;}
.y28_c00496{bottom:294.907067pt;}
.y27_c00496{bottom:313.307067pt;}
.y26_c00496{bottom:331.707067pt;}
.y25_c00496{bottom:350.027067pt;}
.y24_c00496{bottom:368.427067pt;}
.y23_c00496{bottom:386.827067pt;}
.y22_c00496{bottom:405.227067pt;}
.y21_c00496{bottom:423.627067pt;}
.y20_c00496{bottom:442.027067pt;}
.y1f_c00496{bottom:460.427067pt;}
.y1e_c00496{bottom:478.827067pt;}
.y1d_c00496{bottom:497.227067pt;}
.y1c_c00496{bottom:515.627067pt;}
.y1b_c00496{bottom:534.027067pt;}
.y1a_c00496{bottom:552.427067pt;}
.y19_c00496{bottom:570.827067pt;}
.y18_c00496{bottom:589.227067pt;}
.y17_c00496{bottom:607.627067pt;}
.y16_c00496{bottom:626.027067pt;}
.y15_c00496{bottom:644.427067pt;}
.y14_c00496{bottom:662.827067pt;}
.y13_c00496{bottom:681.227067pt;}
.y12_c00496{bottom:699.627067pt;}
.y11_c00496{bottom:718.027067pt;}
.y10_c00496{bottom:736.427067pt;}
.yf_c00496{bottom:754.827067pt;}
.ye_c00496{bottom:773.227067pt;}
.yd_c00496{bottom:791.627067pt;}
.yc_c00496{bottom:810.027067pt;}
.yb_c00496{bottom:828.427067pt;}
.ya_c00496{bottom:846.827067pt;}
.y9_c00496{bottom:865.227067pt;}
.y8_c00496{bottom:883.627067pt;}
.y7_c00496{bottom:902.027067pt;}
.y6_c00496{bottom:920.427067pt;}
.y5_c00496{bottom:938.827067pt;}
.y4_c00496{bottom:957.227067pt;}
.y3_c00496{bottom:975.627067pt;}
.h1_c00496{height:56.156250pt;}
.h2_c00496{height:62.781250pt;}
.h0_c00496{height:1122.666667pt;}
.w1_c00496{width:793.333333pt;}
.w0_c00496{width:793.626667pt;}
.x0_c00496{left:0.000000pt;}
.x2_c00496{left:151.200000pt;}
.x3_c00496{left:199.200000pt;}
.x1_c00496{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b62bece33a85f16a67fe530c.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.093262;font-style:normal;font-weight:normal;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_7fb1300472e35f228593d8e4.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00497;src:url('chunks/assets/font_89160228d7762050d71ce14a.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00497{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls8_c00497{letter-spacing:-0.180000px;}
.ls6_c00497{letter-spacing:-0.028800px;}
.ls7_c00497{letter-spacing:-0.021600px;}
.ls9_c00497{letter-spacing:-0.014400px;}
.ls5_c00497{letter-spacing:0.000000px;}
.ls1_c00497{letter-spacing:0.007200px;}
.ls0_c00497{letter-spacing:0.014400px;}
.ls3_c00497{letter-spacing:0.021600px;}
.ls4_c00497{letter-spacing:0.043200px;}
.ls2_c00497{letter-spacing:0.057600px;}
.lsa_c00497{letter-spacing:843.998400px;}
.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;}
}
.wsc_c00497{word-spacing:-0.115200px;}
.ws4_c00497{word-spacing:-0.014400px;}
.ws3_c00497{word-spacing:-0.007200px;}
.ws0_c00497{word-spacing:0.000000px;}
.ws5_c00497{word-spacing:0.028800px;}
.wsb_c00497{word-spacing:3.916800px;}
.wsa_c00497{word-spacing:3.952800px;}
.ws6_c00497{word-spacing:22.140000px;}
.ws8_c00497{word-spacing:22.219200px;}
.ws7_c00497{word-spacing:22.298400px;}
.ws1_c00497{word-spacing:22.305600px;}
.ws2_c00497{word-spacing:22.312800px;}
.ws9_c00497{word-spacing:22.500000px;}
._0_c00497{margin-left:-1.152000px;}
._1_c00497{width:1.029600px;}
.fc0_c00497{color:rgb(0,0,0);}
.fs0_c00497{font-size:72.000000px;}
.y0_c00497{bottom:0.000000px;}
.y2_c00497{bottom:46.830450px;}
.y1_c00497{bottom:67.530450px;}
.yd_c00497{bottom:890.490450px;}
.yc_c00497{bottom:911.190450px;}
.yb_c00497{bottom:931.890450px;}
.ya_c00497{bottom:952.680450px;}
.y9_c00497{bottom:973.380450px;}
.y8_c00497{bottom:994.080450px;}
.y7_c00497{bottom:1014.780450px;}
.y6_c00497{bottom:1035.480450px;}
.y5_c00497{bottom:1056.180450px;}
.y4_c00497{bottom:1076.880450px;}
.y3_c00497{bottom:1097.580450px;}
.h1_c00497{height:63.175781px;}
.h3_c00497{height:64.546875px;}
.h2_c00497{height:70.628906px;}
.h0_c00497{height:1263.000000px;}
.w1_c00497{width:892.500000px;}
.w0_c00497{width:892.830000px;}
.x0_c00497{left:0.000000px;}
.x2_c00497{left:127.620000px;}
.x3_c00497{left:181.620000px;}
.x1_c00497{left:695.880000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls8_c00497{letter-spacing:-0.160000pt;}
.ls6_c00497{letter-spacing:-0.025600pt;}
.ls7_c00497{letter-spacing:-0.019200pt;}
.ls9_c00497{letter-spacing:-0.012800pt;}
.ls5_c00497{letter-spacing:0.000000pt;}
.ls1_c00497{letter-spacing:0.006400pt;}
.ls0_c00497{letter-spacing:0.012800pt;}
.ls3_c00497{letter-spacing:0.019200pt;}
.ls4_c00497{letter-spacing:0.038400pt;}
.ls2_c00497{letter-spacing:0.051200pt;}
.lsa_c00497{letter-spacing:750.220800pt;}
.wsc_c00497{word-spacing:-0.102400pt;}
.ws4_c00497{word-spacing:-0.012800pt;}
.ws3_c00497{word-spacing:-0.006400pt;}
.ws0_c00497{word-spacing:0.000000pt;}
.ws5_c00497{word-spacing:0.025600pt;}
.wsb_c00497{word-spacing:3.481600pt;}
.wsa_c00497{word-spacing:3.513600pt;}
.ws6_c00497{word-spacing:19.680000pt;}
.ws8_c00497{word-spacing:19.750400pt;}
.ws7_c00497{word-spacing:19.820800pt;}
.ws1_c00497{word-spacing:19.827200pt;}
.ws2_c00497{word-spacing:19.833600pt;}
.ws9_c00497{word-spacing:20.000000pt;}
._0_c00497{margin-left:-1.024000pt;}
._1_c00497{width:0.915200pt;}
.fs0_c00497{font-size:64.000000pt;}
.y0_c00497{bottom:0.000000pt;}
.y2_c00497{bottom:41.627067pt;}
.y1_c00497{bottom:60.027067pt;}
.yd_c00497{bottom:791.547067pt;}
.yc_c00497{bottom:809.947067pt;}
.yb_c00497{bottom:828.347067pt;}
.ya_c00497{bottom:846.827067pt;}
.y9_c00497{bottom:865.227067pt;}
.y8_c00497{bottom:883.627067pt;}
.y7_c00497{bottom:902.027067pt;}
.y6_c00497{bottom:920.427067pt;}
.y5_c00497{bottom:938.827067pt;}
.y4_c00497{bottom:957.227067pt;}
.y3_c00497{bottom:975.627067pt;}
.h1_c00497{height:56.156250pt;}
.h3_c00497{height:57.375000pt;}
.h2_c00497{height:62.781250pt;}
.h0_c00497{height:1122.666667pt;}
.w1_c00497{width:793.333333pt;}
.w0_c00497{width:793.626667pt;}
.x0_c00497{left:0.000000pt;}
.x2_c00497{left:113.440000pt;}
.x3_c00497{left:161.440000pt;}
.x1_c00497{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f30e541856731864b0bb57bf.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.093262;font-style:normal;font-weight:normal;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_0067628de870ad770f75a414.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00498{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.ls0_c00498{letter-spacing:0.000000px;}
.ls1_c00498{letter-spacing:0.134208px;}
.ls2_c00498{letter-spacing:846.000000px;}
.sc__c00498{text-shadow:none;}
.sc0_c00498{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00498{-webkit-text-stroke:0px transparent;}
.sc0_c00498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00498{word-spacing:0.000000px;}
.ws1_c00498{word-spacing:14.360256px;}
.fc0_c00498{color:rgb(0,0,0);}
.fs0_c00498{font-size:72.000000px;}
.fs1_c00498{font-size:83.880000px;}
.y0_c00498{bottom:0.000000px;}
.y2_c00498{bottom:46.830450px;}
.y1_c00498{bottom:67.530450px;}
.y5_c00498{bottom:1048.260450px;}
.y4_c00498{bottom:1068.960450px;}
.y3_c00498{bottom:1094.520450px;}
.h1_c00498{height:63.175781px;}
.h2_c00498{height:87.484219px;}
.h0_c00498{height:1263.000000px;}
.w1_c00498{width:892.500000px;}
.w0_c00498{width:892.830000px;}
.x0_c00498{left:0.000000px;}
.x2_c00498{left:170.100000px;}
.x1_c00498{left:738.360000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls0_c00498{letter-spacing:0.000000pt;}
.ls1_c00498{letter-spacing:0.119296pt;}
.ls2_c00498{letter-spacing:752.000000pt;}
.ws0_c00498{word-spacing:0.000000pt;}
.ws1_c00498{word-spacing:12.764672pt;}
.fs0_c00498{font-size:64.000000pt;}
.fs1_c00498{font-size:74.560000pt;}
.y0_c00498{bottom:0.000000pt;}
.y2_c00498{bottom:41.627067pt;}
.y1_c00498{bottom:60.027067pt;}
.y5_c00498{bottom:931.787067pt;}
.y4_c00498{bottom:950.187067pt;}
.y3_c00498{bottom:972.907067pt;}
.h1_c00498{height:56.156250pt;}
.h2_c00498{height:77.763750pt;}
.h0_c00498{height:1122.666667pt;}
.w1_c00498{width:793.333333pt;}
.w0_c00498{width:793.626667pt;}
.x0_c00498{left:0.000000pt;}
.x2_c00498{left:151.200000pt;}
.x1_c00498{left:656.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_80ebfc20056a7151c57b1ca2.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.093262;font-style: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;}
.ls0_c00499{letter-spacing:0.000000px;}
.ls1_c00499{letter-spacing:846.000000px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00499{word-spacing:0.000000px;}
.fc0_c00499{color:rgb(0,0,0);}
.fs0_c00499{font-size:72.000000px;}
.y0_c00499{bottom:0.000000px;}
.y2_c00499{bottom:46.830450px;}
.y1_c00499{bottom:67.530450px;}
.y3_c00499{bottom:1097.580450px;}
.h1_c00499{height:63.175781px;}
.h0_c00499{height:1263.000000px;}
.w1_c00499{width:892.500000px;}
.w0_c00499{width:892.830000px;}
.x0_c00499{left:0.000000px;}
.x2_c00499{left:127.620000px;}
.x1_c00499{left:695.880000px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls0_c00499{letter-spacing:0.000000pt;}
.ls1_c00499{letter-spacing:752.000000pt;}
.ws0_c00499{word-spacing:0.000000pt;}
.fs0_c00499{font-size:64.000000pt;}
.y0_c00499{bottom:0.000000pt;}
.y2_c00499{bottom:41.627067pt;}
.y1_c00499{bottom:60.027067pt;}
.y3_c00499{bottom:975.627067pt;}
.h1_c00499{height:56.156250pt;}
.h0_c00499{height:1122.666667pt;}
.w1_c00499{width:793.333333pt;}
.w0_c00499{width:793.626667pt;}
.x0_c00499{left:0.000000pt;}
.x2_c00499{left:113.440000pt;}
.x1_c00499{left:618.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63aff67cde1f55f577a52b3c.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00001;src:url('chunks/assets/font_bf3b1c0680e00427bfb493b6.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_f00a6d15022aa1a9d21e917b.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.106934;font-style:normal;font-weight:normal;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_5278b1cd369eba38e2ea773c.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;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_c00001;src:url('chunks/assets/font_943b8b35a84688d3da8d4ade.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;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_c00001;src:url('chunks/assets/font_0b0ac76fbcf993a51110e3a4.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00001;src:url('chunks/assets/font_c55dfeb8354c2a3faba022de.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00001;src:url('chunks/assets/font_47aa0f20fe2f16015a8c24fc.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:0.895996;font-style:normal;font-weight: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_e4b82f33289a7abee99da48a.woff2')format("woff");}.ff9_c00001{font-family:ff9_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00001;src:url('chunks/assets/font_6e7420d5637b3e0b53cd133b.woff2')format("woff");}.ffa_c00001{font-family:ffa_c00001;line-height:0.683105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00001{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m2_c00001{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.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:41.400000px;}
.v2_c00001{vertical-align:50.040000px;}
.ls29_c00001{letter-spacing:-0.540000px;}
.ls28_c00001{letter-spacing:-0.223200px;}
.ls33_c00001{letter-spacing:-0.194400px;}
.ls32_c00001{letter-spacing:-0.144000px;}
.ls4_c00001{letter-spacing:-0.108000px;}
.lse_c00001{letter-spacing:-0.093600px;}
.ls12_c00001{letter-spacing:-0.086400px;}
.lsb_c00001{letter-spacing:-0.072000px;}
.lsa_c00001{letter-spacing:-0.064800px;}
.lsd_c00001{letter-spacing:-0.057600px;}
.ls19_c00001{letter-spacing:-0.054108px;}
.ls9_c00001{letter-spacing:-0.050400px;}
.ls3_c00001{letter-spacing:-0.043200px;}
.ls1a_c00001{letter-spacing:-0.042084px;}
.ls7_c00001{letter-spacing:-0.036000px;}
.ls8_c00001{letter-spacing:-0.028800px;}
.ls6_c00001{letter-spacing:-0.021600px;}
.ls1b_c00001{letter-spacing:-0.018036px;}
.ls11_c00001{letter-spacing:-0.014400px;}
.lsc_c00001{letter-spacing:-0.007200px;}
.ls1_c00001{letter-spacing:0.000000px;}
.lsf_c00001{letter-spacing:0.007200px;}
.ls2_c00001{letter-spacing:0.014400px;}
.ls10_c00001{letter-spacing:0.021600px;}
.ls5_c00001{letter-spacing:0.028800px;}
.ls1c_c00001{letter-spacing:0.036000px;}
.ls18_c00001{letter-spacing:0.043200px;}
.ls20_c00001{letter-spacing:0.050400px;}
.ls15_c00001{letter-spacing:0.057600px;}
.ls21_c00001{letter-spacing:0.064800px;}
.ls1d_c00001{letter-spacing:0.072000px;}
.ls17_c00001{letter-spacing:0.079200px;}
.ls1e_c00001{letter-spacing:0.086400px;}
.ls16_c00001{letter-spacing:0.093600px;}
.ls0_c00001{letter-spacing:0.100656px;}
.ls2b_c00001{letter-spacing:0.100800px;}
.ls1f_c00001{letter-spacing:0.108000px;}
.ls14_c00001{letter-spacing:0.117432px;}
.ls30_c00001{letter-spacing:0.122400px;}
.ls27_c00001{letter-spacing:0.187200px;}
.ls22_c00001{letter-spacing:0.288000px;}
.ls2c_c00001{letter-spacing:97.192800px;}
.ls23_c00001{letter-spacing:112.312800px;}
.ls24_c00001{letter-spacing:120.672000px;}
.ls2d_c00001{letter-spacing:125.352000px;}
.ls2a_c00001{letter-spacing:174.600000px;}
.ls26_c00001{letter-spacing:174.678677px;}
.ls2f_c00001{letter-spacing:185.483089px;}
.ls31_c00001{letter-spacing:314.860464px;}
.ls2e_c00001{letter-spacing:610.680083px;}
.ls25_c00001{letter-spacing:640.714148px;}
.ls13_c00001{letter-spacing:843.998400px;}
.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;}
}
.ws103_c00001{word-spacing:-72.000000px;}
.wsd8_c00001{word-spacing:-19.987200px;}
.ws100_c00001{word-spacing:-19.965600px;}
.ws106_c00001{word-spacing:-18.050400px;}
.ws108_c00001{word-spacing:-18.036000px;}
.wsf4_c00001{word-spacing:-17.985600px;}
.ws109_c00001{word-spacing:-17.978400px;}
.wsbb_c00001{word-spacing:-4.204800px;}
.wsbc_c00001{word-spacing:-4.111200px;}
.wsc5_c00001{word-spacing:-3.844800px;}
.ws12_c00001{word-spacing:-3.772800px;}
.wsc6_c00001{word-spacing:-3.765600px;}
.ws2c_c00001{word-spacing:-3.758400px;}
.ws13_c00001{word-spacing:-3.751200px;}
.ws81_c00001{word-spacing:-3.736800px;}
.ws2d_c00001{word-spacing:-3.679200px;}
.ws91_c00001{word-spacing:-3.571200px;}
.ws90_c00001{word-spacing:-3.499200px;}
.ws8f_c00001{word-spacing:-3.420000px;}
.ws9_c00001{word-spacing:-3.398400px;}
.wsa_c00001{word-spacing:-3.391200px;}
.ws65_c00001{word-spacing:-3.376800px;}
.ws42_c00001{word-spacing:-3.067200px;}
.wsdd_c00001{word-spacing:-3.060000px;}
.wsdc_c00001{word-spacing:-3.052800px;}
.ws43_c00001{word-spacing:-3.031200px;}
.wse6_c00001{word-spacing:-2.728800px;}
.wsd0_c00001{word-spacing:-2.678400px;}
.wse5_c00001{word-spacing:-2.664000px;}
.ws1e_c00001{word-spacing:-2.534400px;}
.wse2_c00001{word-spacing:-2.376000px;}
.ws80_c00001{word-spacing:-2.340000px;}
.wse1_c00001{word-spacing:-2.332800px;}
.ws1f_c00001{word-spacing:-2.325600px;}
.wse0_c00001{word-spacing:-2.260800px;}
.ws57_c00001{word-spacing:-1.677600px;}
.ws56_c00001{word-spacing:-1.605600px;}
.ws30_c00001{word-spacing:-1.274400px;}
.ws9e_c00001{word-spacing:-1.260000px;}
.ws31_c00001{word-spacing:-1.173600px;}
.wsca_c00001{word-spacing:-0.950400px;}
.wsc7_c00001{word-spacing:-0.928800px;}
.wsba_c00001{word-spacing:-0.907200px;}
.ws62_c00001{word-spacing:-0.900000px;}
.wsa0_c00001{word-spacing:-0.878400px;}
.ws8c_c00001{word-spacing:-0.871200px;}
.wscb_c00001{word-spacing:-0.864000px;}
.wsb8_c00001{word-spacing:-0.849600px;}
.ws9f_c00001{word-spacing:-0.828000px;}
.ws8d_c00001{word-spacing:-0.799200px;}
.wsb9_c00001{word-spacing:-0.720000px;}
.ws19_c00001{word-spacing:-0.669600px;}
.ws61_c00001{word-spacing:-0.518400px;}
.ws18_c00001{word-spacing:-0.511200px;}
.ws1a_c00001{word-spacing:-0.489600px;}
.ws113_c00001{word-spacing:-0.468000px;}
.ws118_c00001{word-spacing:-0.446400px;}
.ws10c_c00001{word-spacing:-0.424800px;}
.ws10f_c00001{word-spacing:-0.417600px;}
.ws10e_c00001{word-spacing:-0.410400px;}
.ws112_c00001{word-spacing:-0.396000px;}
.ws111_c00001{word-spacing:-0.388800px;}
.ws10a_c00001{word-spacing:-0.288000px;}
.ws104_c00001{word-spacing:-0.259200px;}
.ws114_c00001{word-spacing:-0.237600px;}
.ws119_c00001{word-spacing:-0.223200px;}
.wsee_c00001{word-spacing:-0.216000px;}
.wsfd_c00001{word-spacing:-0.201600px;}
.ws102_c00001{word-spacing:-0.172800px;}
.ws7f_c00001{word-spacing:-0.165600px;}
.wsf7_c00001{word-spacing:-0.158400px;}
.wsa3_c00001{word-spacing:-0.151200px;}
.ws7e_c00001{word-spacing:-0.144000px;}
.wsf9_c00001{word-spacing:-0.136800px;}
.ws101_c00001{word-spacing:-0.129600px;}
.ws105_c00001{word-spacing:-0.122400px;}
.wsfc_c00001{word-spacing:-0.115200px;}
.wsf2_c00001{word-spacing:-0.100800px;}
.wsed_c00001{word-spacing:-0.086400px;}
.wsfe_c00001{word-spacing:-0.079200px;}
.wsa2_c00001{word-spacing:-0.072000px;}
.wsf8_c00001{word-spacing:-0.064800px;}
.wsfb_c00001{word-spacing:-0.057600px;}
.wsec_c00001{word-spacing:-0.050400px;}
.wsff_c00001{word-spacing:-0.043200px;}
.wseb_c00001{word-spacing:-0.042084px;}
.wsf0_c00001{word-spacing:-0.036000px;}
.wsf6_c00001{word-spacing:-0.028800px;}
.wsfa_c00001{word-spacing:-0.021600px;}
.wsef_c00001{word-spacing:-0.014400px;}
.wsf5_c00001{word-spacing:-0.007200px;}
.ws0_c00001{word-spacing:0.000000px;}
.ws3b_c00001{word-spacing:0.007200px;}
.ws49_c00001{word-spacing:0.014400px;}
.ws110_c00001{word-spacing:0.021600px;}
.wsf3_c00001{word-spacing:0.028800px;}
.wse7_c00001{word-spacing:0.036000px;}
.ws10b_c00001{word-spacing:0.043200px;}
.wsf1_c00001{word-spacing:0.064800px;}
.ws115_c00001{word-spacing:0.072000px;}
.wsea_c00001{word-spacing:0.078156px;}
.wse9_c00001{word-spacing:0.090180px;}
.wsa4_c00001{word-spacing:0.100800px;}
.ws116_c00001{word-spacing:0.122400px;}
.ws5_c00001{word-spacing:0.129600px;}
.ws2_c00001{word-spacing:0.144000px;}
.ws98_c00001{word-spacing:0.151200px;}
.ws87_c00001{word-spacing:0.158400px;}
.ws4a_c00001{word-spacing:0.165600px;}
.ws55_c00001{word-spacing:0.172800px;}
.ws1d_c00001{word-spacing:0.180000px;}
.ws48_c00001{word-spacing:0.187200px;}
.ws29_c00001{word-spacing:0.194400px;}
.ws94_c00001{word-spacing:0.201600px;}
.wsbe_c00001{word-spacing:0.208800px;}
.ws66_c00001{word-spacing:0.273600px;}
.ws71_c00001{word-spacing:0.288000px;}
.wsce_c00001{word-spacing:0.309600px;}
.ws7a_c00001{word-spacing:0.367200px;}
.ws10d_c00001{word-spacing:0.547200px;}
.ws74_c00001{word-spacing:0.561600px;}
.ws96_c00001{word-spacing:0.828000px;}
.wse3_c00001{word-spacing:0.835200px;}
.ws1c_c00001{word-spacing:0.856800px;}
.ws34_c00001{word-spacing:0.871200px;}
.ws4f_c00001{word-spacing:0.885600px;}
.ws50_c00001{word-spacing:0.900000px;}
.ws36_c00001{word-spacing:0.921600px;}
.wse4_c00001{word-spacing:0.928800px;}
.ws1b_c00001{word-spacing:0.936000px;}
.ws97_c00001{word-spacing:0.993600px;}
.ws35_c00001{word-spacing:1.094400px;}
.wscd_c00001{word-spacing:1.260000px;}
.ws5a_c00001{word-spacing:1.274400px;}
.wscc_c00001{word-spacing:1.317600px;}
.wsa5_c00001{word-spacing:1.339200px;}
.ws59_c00001{word-spacing:1.360800px;}
.ws15_c00001{word-spacing:1.605600px;}
.ws93_c00001{word-spacing:1.620000px;}
.ws54_c00001{word-spacing:1.641600px;}
.ws14_c00001{word-spacing:1.684800px;}
.ws25_c00001{word-spacing:1.828800px;}
.ws23_c00001{word-spacing:1.951200px;}
.ws24_c00001{word-spacing:2.030400px;}
.ws39_c00001{word-spacing:2.340000px;}
.ws3a_c00001{word-spacing:2.354400px;}
.ws8b_c00001{word-spacing:2.757600px;}
.ws8a_c00001{word-spacing:2.779200px;}
.wsc_c00001{word-spacing:3.074400px;}
.wsd_c00001{word-spacing:3.088800px;}
.ws63_c00001{word-spacing:3.405600px;}
.wsd9_c00001{word-spacing:3.434400px;}
.ws6_c00001{word-spacing:3.441600px;}
.ws60_c00001{word-spacing:3.456000px;}
.ws6c_c00001{word-spacing:3.492000px;}
.ws6d_c00001{word-spacing:3.571200px;}
.ws77_c00001{word-spacing:3.772800px;}
.ws76_c00001{word-spacing:3.794400px;}
.ws75_c00001{word-spacing:3.823200px;}
.wsbd_c00001{word-spacing:3.859200px;}
.ws7b_c00001{word-spacing:3.866400px;}
.ws88_c00001{word-spacing:4.399200px;}
.ws89_c00001{word-spacing:4.442400px;}
.ws73_c00001{word-spacing:4.809600px;}
.ws2b_c00001{word-spacing:4.845600px;}
.ws2a_c00001{word-spacing:4.874400px;}
.ws72_c00001{word-spacing:4.888800px;}
.ws67_c00001{word-spacing:5.140800px;}
.ws4c_c00001{word-spacing:5.205600px;}
.wsd3_c00001{word-spacing:5.234400px;}
.ws4b_c00001{word-spacing:5.313600px;}
.wsd4_c00001{word-spacing:5.342400px;}
.ws68_c00001{word-spacing:5.364000px;}
.wsb_c00001{word-spacing:5.594400px;}
.wsdf_c00001{word-spacing:5.608800px;}
.wsde_c00001{word-spacing:5.659200px;}
.ws5e_c00001{word-spacing:5.904000px;}
.ws5f_c00001{word-spacing:6.040800px;}
.ws26_c00001{word-spacing:6.192000px;}
.ws27_c00001{word-spacing:6.285600px;}
.ws4e_c00001{word-spacing:6.292800px;}
.ws7_c00001{word-spacing:6.300000px;}
.ws8_c00001{word-spacing:6.307200px;}
.ws17_c00001{word-spacing:6.336000px;}
.ws95_c00001{word-spacing:6.343200px;}
.ws16_c00001{word-spacing:6.350400px;}
.ws84_c00001{word-spacing:6.624000px;}
.ws4d_c00001{word-spacing:6.645600px;}
.wsb6_c00001{word-spacing:6.652800px;}
.ws83_c00001{word-spacing:6.660000px;}
.wsb5_c00001{word-spacing:6.717600px;}
.wsc0_c00001{word-spacing:7.027200px;}
.wsbf_c00001{word-spacing:7.048800px;}
.wsac_c00001{word-spacing:7.394400px;}
.ws5d_c00001{word-spacing:7.740000px;}
.wsb0_c00001{word-spacing:7.754400px;}
.wscf_c00001{word-spacing:7.761600px;}
.ws5c_c00001{word-spacing:7.812000px;}
.ws5b_c00001{word-spacing:7.855200px;}
.wsae_c00001{word-spacing:8.020800px;}
.wsc3_c00001{word-spacing:8.100000px;}
.wsad_c00001{word-spacing:8.114400px;}
.wsc4_c00001{word-spacing:8.179200px;}
.ws28_c00001{word-spacing:8.805600px;}
.wsc8_c00001{word-spacing:9.244800px;}
.wsc9_c00001{word-spacing:9.273600px;}
.ws92_c00001{word-spacing:9.921600px;}
.wsb1_c00001{word-spacing:10.598400px;}
.wsb2_c00001{word-spacing:10.663200px;}
.ws6e_c00001{word-spacing:10.800000px;}
.ws6f_c00001{word-spacing:10.987200px;}
.wsd5_c00001{word-spacing:11.030400px;}
.ws64_c00001{word-spacing:11.743200px;}
.ws46_c00001{word-spacing:12.060000px;}
.ws47_c00001{word-spacing:12.081600px;}
.wsaf_c00001{word-spacing:12.096000px;}
.ws7d_c00001{word-spacing:12.124800px;}
.ws7c_c00001{word-spacing:12.168000px;}
.wsa7_c00001{word-spacing:12.405600px;}
.wsa6_c00001{word-spacing:12.549600px;}
.ws44_c00001{word-spacing:12.772800px;}
.ws9a_c00001{word-spacing:13.521600px;}
.ws99_c00001{word-spacing:13.528800px;}
.wsa1_c00001{word-spacing:13.536000px;}
.ws53_c00001{word-spacing:13.860000px;}
.ws51_c00001{word-spacing:13.867200px;}
.ws52_c00001{word-spacing:14.025600px;}
.ws6a_c00001{word-spacing:14.133600px;}
.ws69_c00001{word-spacing:14.220000px;}
.ws6b_c00001{word-spacing:14.292000px;}
.wsb4_c00001{word-spacing:14.853600px;}
.wsb3_c00001{word-spacing:14.961600px;}
.wsc2_c00001{word-spacing:16.372800px;}
.ws3e_c00001{word-spacing:16.380000px;}
.wsc1_c00001{word-spacing:16.444800px;}
.ws3f_c00001{word-spacing:16.466400px;}
.ws3c_c00001{word-spacing:17.100000px;}
.ws3d_c00001{word-spacing:17.114400px;}
.ws45_c00001{word-spacing:17.474400px;}
.wse_c00001{word-spacing:17.503200px;}
.wsf_c00001{word-spacing:17.510400px;}
.ws11_c00001{word-spacing:17.769600px;}
.ws10_c00001{word-spacing:17.848800px;}
.ws86_c00001{word-spacing:18.525600px;}
.ws85_c00001{word-spacing:18.554400px;}
.wsb7_c00001{word-spacing:18.561600px;}
.ws32_c00001{word-spacing:19.238400px;}
.ws8e_c00001{word-spacing:19.274400px;}
.ws33_c00001{word-spacing:19.432800px;}
.ws41_c00001{word-spacing:20.253600px;}
.ws40_c00001{word-spacing:20.347200px;}
.wsaa_c00001{word-spacing:22.017600px;}
.wsab_c00001{word-spacing:22.219200px;}
.wsd1_c00001{word-spacing:22.456800px;}
.wsd2_c00001{word-spacing:22.514400px;}
.wsa8_c00001{word-spacing:24.321600px;}
.wsa9_c00001{word-spacing:24.350400px;}
.ws21_c00001{word-spacing:24.897600px;}
.ws22_c00001{word-spacing:25.048800px;}
.ws58_c00001{word-spacing:26.445600px;}
.ws20_c00001{word-spacing:27.194400px;}
.ws79_c00001{word-spacing:28.274400px;}
.ws78_c00001{word-spacing:28.296000px;}
.wsda_c00001{word-spacing:32.515200px;}
.wsdb_c00001{word-spacing:32.580000px;}
.ws70_c00001{word-spacing:34.048800px;}
.ws3_c00001{word-spacing:34.279200px;}
.ws4_c00001{word-spacing:34.408800px;}
.ws107_c00001{word-spacing:37.742400px;}
.ws37_c00001{word-spacing:38.361600px;}
.ws38_c00001{word-spacing:38.505600px;}
.ws117_c00001{word-spacing:39.902400px;}
.wsd7_c00001{word-spacing:41.954400px;}
.wsd6_c00001{word-spacing:41.968800px;}
.ws9b_c00001{word-spacing:46.620000px;}
.ws9c_c00001{word-spacing:48.060000px;}
.ws9d_c00001{word-spacing:48.146400px;}
.ws82_c00001{word-spacing:53.452800px;}
.ws2e_c00001{word-spacing:74.685600px;}
.ws2f_c00001{word-spacing:74.692800px;}
.ws1_c00001{word-spacing:153.357804px;}
.wse8_c00001{word-spacing:153.408132px;}
._0_c00001{margin-left:-153.332640px;}
._6_c00001{margin-left:-8.251200px;}
._2_c00001{margin-left:-1.152000px;}
._1_c00001{width:1.425600px;}
._a_c00001{width:6.076800px;}
._e_c00001{width:21.583080px;}
._5_c00001{width:121.754571px;}
._3_c00001{width:140.832000px;}
._4_c00001{width:192.312000px;}
._8_c00001{width:271.183995px;}
._c_c00001{width:275.505760px;}
._7_c00001{width:284.149289px;}
._b_c00001{width:286.310172px;}
._9_c00001{width:385.710760px;}
._d_c00001{width:396.515172px;}
.fc2_c00001{color:transparent;}
.fc1_c00001{color:rgb(0,0,255);}
.fc0_c00001{color:rgb(0,0,0);}
.fs1_c00001{font-size:60.120000px;}
.fs0_c00001{font-size:72.000000px;}
.fs2_c00001{font-size:83.880000px;}
.y0_c00001{bottom:0.000000px;}
.y113_c00001{bottom:4.050450px;}
.y2_c00001{bottom:46.830450px;}
.y1_c00001{bottom:67.530450px;}
.yef_c00001{bottom:141.690450px;}
.y14a_c00001{bottom:142.500450px;}
.ya2_c00001{bottom:144.930450px;}
.y10d_c00001{bottom:145.110450px;}
.y56_c00001{bottom:146.280450px;}
.yee_c00001{bottom:162.390450px;}
.y149_c00001{bottom:163.200450px;}
.y1e_c00001{bottom:164.280450px;}
.y10c_c00001{bottom:165.810450px;}
.y46_c00001{bottom:169.230450px;}
.ya1_c00001{bottom:169.590450px;}
.y55_c00001{bottom:177.330450px;}
.y10f_c00001{bottom:179.220450px;}
.yc7_c00001{bottom:181.020450px;}
.yed_c00001{bottom:183.270450px;}
.y148_c00001{bottom:183.900450px;}
.y10b_c00001{bottom:186.510450px;}
.y3a_c00001{bottom:187.230450px;}
.y67_c00001{bottom:190.380450px;}
.y1d_c00001{bottom:195.330450px;}
.y45_c00001{bottom:200.280450px;}
.ya0_c00001{bottom:200.460600px;}
.yc6_c00001{bottom:201.720450px;}
.yec_c00001{bottom:203.970450px;}
.y147_c00001{bottom:204.600450px;}
.y10a_c00001{bottom:207.210450px;}
.y73_c00001{bottom:208.380450px;}
.y10e_c00001{bottom:210.360450px;}
.y39_c00001{bottom:218.280450px;}
.y66_c00001{bottom:221.430450px;}
.yc5_c00001{bottom:222.600450px;}
.yeb_c00001{bottom:224.670450px;}
.y146_c00001{bottom:225.300450px;}
.y1c_c00001{bottom:226.380450px;}
.y109_c00001{bottom:227.910450px;}
.y44_c00001{bottom:231.330450px;}
.y9f_c00001{bottom:231.420450px;}
.y14c_c00001{bottom:238.710600px;}
.y72_c00001{bottom:239.430450px;}
.yea_c00001{bottom:241.320450px;}
.yc4_c00001{bottom:243.300450px;}
.y145_c00001{bottom:246.000450px;}
.y108_c00001{bottom:248.610450px;}
.y38_c00001{bottom:249.330450px;}
.y65_c00001{bottom:252.390450px;}
.y1b_c00001{bottom:257.430450px;}
.y9e_c00001{bottom:262.290450px;}
.y43_c00001{bottom:262.380450px;}
.yc3_c00001{bottom:264.000450px;}
.ye9_c00001{bottom:265.980450px;}
.y144_c00001{bottom:266.700450px;}
.y14b_c00001{bottom:269.850450px;}
.y107_c00001{bottom:273.810600px;}
.y54_c00001{bottom:275.430450px;}
.y37_c00001{bottom:280.380450px;}
.yc2_c00001{bottom:280.650450px;}
.y143_c00001{bottom:287.400450px;}
.y1a_c00001{bottom:288.390450px;}
.y7c_c00001{bottom:291.540450px;}
.y9d_c00001{bottom:293.070450px;}
.ye8_c00001{bottom:296.940450px;}
.y64_c00001{bottom:301.440450px;}
.yc1_c00001{bottom:305.310450px;}
.y53_c00001{bottom:306.390450px;}
.y142_c00001{bottom:308.100450px;}
.y106_c00001{bottom:310.530600px;}
.y36_c00001{bottom:311.430450px;}
.y9c_c00001{bottom:313.950450px;}
.y19_c00001{bottom:319.440450px;}
.y105_c00001{bottom:320.790600px;}
.y140_c00001{bottom:324.750000px;}
.ye7_c00001{bottom:327.810450px;}
.y141_c00001{bottom:328.800450px;}
.y63_c00001{bottom:332.490450px;}
.y9b_c00001{bottom:334.650450px;}
.yc0_c00001{bottom:336.180450px;}
.y52_c00001{bottom:337.440450px;}
.y7b_c00001{bottom:340.590450px;}
.y35_c00001{bottom:342.390450px;}
.y13f_c00001{bottom:349.500450px;}
.y18_c00001{bottom:350.490450px;}
.y9a_c00001{bottom:355.350450px;}
.ye6_c00001{bottom:358.590450px;}
.y62_c00001{bottom:363.540450px;}
.ybf_c00001{bottom:367.140450px;}
.y104_c00001{bottom:367.860600px;}
.y71_c00001{bottom:368.490450px;}
.y13e_c00001{bottom:370.200450px;}
.y99_c00001{bottom:372.000450px;}
.y34_c00001{bottom:373.440450px;}
.ye5_c00001{bottom:379.290450px;}
.y51_c00001{bottom:386.490450px;}
.y7a_c00001{bottom:389.640450px;}
.y103_c00001{bottom:389.730600px;}
.y61_c00001{bottom:394.590450px;}
.y13b_c00001{bottom:395.400450px;}
.y98_c00001{bottom:396.660450px;}
.ybe_c00001{bottom:398.010450px;}
.y17_c00001{bottom:399.540450px;}
.y102_c00001{bottom:410.970600px;}
.y13a_c00001{bottom:416.100450px;}
.y50_c00001{bottom:417.540450px;}
.ye4_c00001{bottom:418.170450px;}
.y33_c00001{bottom:422.490450px;}
.y60_c00001{bottom:425.640450px;}
.y97_c00001{bottom:427.530450px;}
.ybd_c00001{bottom:428.790450px;}
.y16_c00001{bottom:430.590450px;}
.y101_c00001{bottom:431.670600px;}
.y139_c00001{bottom:436.800450px;}
.y79_c00001{bottom:438.690450px;}
.ye3_c00001{bottom:438.870450px;}
.y4f_c00001{bottom:448.590450px;}
.ybc_c00001{bottom:449.670450px;}
.y100_c00001{bottom:452.370600px;}
.y16c_c00001{bottom:452.730450px;}
.y138_c00001{bottom:457.500450px;}
.y96_c00001{bottom:458.490450px;}
.ye2_c00001{bottom:459.570450px;}
.y15_c00001{bottom:461.640450px;}
.yff_c00001{bottom:469.020600px;}
.ybb_c00001{bottom:470.370450px;}
.y32_c00001{bottom:471.540450px;}
.y5f_c00001{bottom:474.690450px;}
.ye1_c00001{bottom:476.220450px;}
.y137_c00001{bottom:478.200450px;}
.y70_c00001{bottom:479.640450px;}
.y13d_c00001{bottom:481.260450px;}
.y78_c00001{bottom:487.740450px;}
.y95_c00001{bottom:489.450450px;}
.yba_c00001{bottom:491.070450px;}
.y16a_c00001{bottom:491.520450px;}
.y14_c00001{bottom:492.690450px;}
.yfe_c00001{bottom:493.770600px;}
.y4e_c00001{bottom:497.640450px;}
.y136_c00001{bottom:498.900450px;}
.ye0_c00001{bottom:500.880450px;}
.y31_c00001{bottom:502.590450px;}
.yb9_c00001{bottom:507.720450px;}
.y94_c00001{bottom:510.150450px;}
.y6f_c00001{bottom:510.690450px;}
.y169_c00001{bottom:512.220450px;}
.y13c_c00001{bottom:512.400450px;}
.y135_c00001{bottom:519.600450px;}
.y13_c00001{bottom:523.740450px;}
.yfd_c00001{bottom:524.730450px;}
.y4d_c00001{bottom:528.690450px;}
.y93_c00001{bottom:530.850450px;}
.ydf_c00001{bottom:531.750450px;}
.yb8_c00001{bottom:532.380450px;}
.y168_c00001{bottom:532.920450px;}
.y30_c00001{bottom:533.640450px;}
.y77_c00001{bottom:536.790450px;}
.y134_c00001{bottom:540.300450px;}
.y6e_c00001{bottom:541.740450px;}
.y16b_c00001{bottom:544.350450px;}
.yfc_c00001{bottom:545.430450px;}
.y92_c00001{bottom:551.550450px;}
.y167_c00001{bottom:553.620450px;}
.y12_c00001{bottom:554.790450px;}
.y4c_c00001{bottom:559.740450px;}
.y133_c00001{bottom:561.000450px;}
.yde_c00001{bottom:562.620450px;}
.yb7_c00001{bottom:563.340450px;}
.y2f_c00001{bottom:564.690450px;}
.yfb_c00001{bottom:566.130450px;}
.y91_c00001{bottom:568.200450px;}
.y6d_c00001{bottom:572.790450px;}
.y166_c00001{bottom:574.320450px;}
.y132_c00001{bottom:581.700450px;}
.yb6_c00001{bottom:584.040450px;}
.y11_c00001{bottom:585.840450px;}
.yfa_c00001{bottom:586.830450px;}
.y90_c00001{bottom:592.950450px;}
.ydd_c00001{bottom:593.580450px;}
.y165_c00001{bottom:595.020450px;}
.y2e_c00001{bottom:595.740450px;}
.y131_c00001{bottom:602.400450px;}
.yf9_c00001{bottom:603.480450px;}
.yb5_c00001{bottom:604.650450px;}
.y4b_c00001{bottom:608.790450px;}
.ydc_c00001{bottom:614.280450px;}
.y10_c00001{bottom:616.890450px;}
.y162_c00001{bottom:620.220450px;}
.y6c_c00001{bottom:621.840450px;}
.y2d_c00001{bottom:626.790450px;}
.y12e_c00001{bottom:627.600450px;}
.yf8_c00001{bottom:628.140450px;}
.y76_c00001{bottom:634.890450px;}
.ydb_c00001{bottom:634.980450px;}
.yb4_c00001{bottom:635.520450px;}
.y4a_c00001{bottom:639.840450px;}
.y161_c00001{bottom:640.920450px;}
.yf_c00001{bottom:647.940450px;}
.y12d_c00001{bottom:648.300450px;}
.yda_c00001{bottom:655.680450px;}
.y8f_c00001{bottom:657.480450px;}
.y2c_c00001{bottom:657.840450px;}
.yf7_c00001{bottom:659.100450px;}
.y160_c00001{bottom:661.620450px;}
.y164_c00001{bottom:664.680450px;}
.y5e_c00001{bottom:665.940450px;}
.yb3_c00001{bottom:666.480450px;}
.y12c_c00001{bottom:669.000450px;}
.y49_c00001{bottom:670.890450px;}
.y42_c00001{bottom:675.840450px;}
.yd9_c00001{bottom:676.380450px;}
.y8e_c00001{bottom:678.180450px;}
.ye_c00001{bottom:678.990450px;}
.yf6_c00001{bottom:679.800450px;}
.y15f_c00001{bottom:682.320450px;}
.y130_c00001{bottom:682.410450px;}
.y75_c00001{bottom:683.940450px;}
.y2b_c00001{bottom:688.890450px;}
.y12b_c00001{bottom:689.700450px;}
.y163_c00001{bottom:695.820450px;}
.y5d_c00001{bottom:696.990450px;}
.yd8_c00001{bottom:697.080450px;}
.yb2_c00001{bottom:697.350450px;}
.y8d_c00001{bottom:698.880450px;}
.yf5_c00001{bottom:700.500450px;}
.y48_c00001{bottom:701.940450px;}
.y15e_c00001{bottom:703.020450px;}
.y41_c00001{bottom:706.890450px;}
.yd_c00001{bottom:710.040450px;}
.y12a_c00001{bottom:710.400450px;}
.y12f_c00001{bottom:713.550450px;}
.yd7_c00001{bottom:717.780450px;}
.y8c_c00001{bottom:719.580450px;}
.y2a_c00001{bottom:719.940450px;}
.yf4_c00001{bottom:721.200450px;}
.y15d_c00001{bottom:723.720450px;}
.y5c_c00001{bottom:728.040450px;}
.yb1_c00001{bottom:728.130450px;}
.y129_c00001{bottom:731.100450px;}
.y74_c00001{bottom:732.990450px;}
.y8b_c00001{bottom:736.230450px;}
.y40_c00001{bottom:737.940450px;}
.yd6_c00001{bottom:738.480450px;}
.yc_c00001{bottom:741.090450px;}
.yf3_c00001{bottom:741.900450px;}
.y15c_c00001{bottom:744.420450px;}
.y127_c00001{bottom:747.750000px;}
.y47_c00001{bottom:750.990450px;}
.y128_c00001{bottom:751.800450px;}
.yf2_c00001{bottom:758.550450px;}
.yd5_c00001{bottom:759.180450px;}
.y8a_c00001{bottom:760.890450px;}
.yb0_c00001{bottom:767.010450px;}
.y29_c00001{bottom:768.990450px;}
.y159_c00001{bottom:769.620450px;}
.yb_c00001{bottom:772.140450px;}
.y126_c00001{bottom:772.500450px;}
.y5b_c00001{bottom:777.090450px;}
.yd4_c00001{bottom:779.880450px;}
.y6b_c00001{bottom:782.040450px;}
.yf1_c00001{bottom:783.300450px;}
.yaf_c00001{bottom:787.710450px;}
.y158_c00001{bottom:790.320450px;}
.y89_c00001{bottom:791.760450px;}
.y123_c00001{bottom:797.700450px;}
.y28_c00001{bottom:800.040450px;}
.yd3_c00001{bottom:800.490450px;}
.y15b_c00001{bottom:803.730450px;}
.yae_c00001{bottom:808.410450px;}
.y157_c00001{bottom:811.020450px;}
.y6a_c00001{bottom:813.090450px;}
.y122_c00001{bottom:818.400450px;}
.ya_c00001{bottom:821.190450px;}
.yad_c00001{bottom:825.060450px;}
.y5a_c00001{bottom:826.140450px;}
.y27_c00001{bottom:831.090450px;}
.y156_c00001{bottom:831.720450px;}
.y88_c00001{bottom:833.970450px;}
.y15a_c00001{bottom:834.870450px;}
.y121_c00001{bottom:839.100450px;}
.yd2_c00001{bottom:841.890450px;}
.y69_c00001{bottom:844.140450px;}
.yac_c00001{bottom:849.720450px;}
.y155_c00001{bottom:852.420450px;}
.y87_c00001{bottom:854.670450px;}
.y59_c00001{bottom:857.190450px;}
.y120_c00001{bottom:859.800450px;}
.y26_c00001{bottom:862.140450px;}
.yd1_c00001{bottom:862.590450px;}
.y125_c00001{bottom:862.860600px;}
.y9_c00001{bottom:870.240450px;}
.y154_c00001{bottom:873.120450px;}
.y86_c00001{bottom:875.370450px;}
.y3f_c00001{bottom:880.140450px;}
.y11f_c00001{bottom:880.500450px;}
.yab_c00001{bottom:880.590450px;}
.yd0_c00001{bottom:883.200450px;}
.y25_c00001{bottom:893.190450px;}
.y124_c00001{bottom:894.000600px;}
.y85_c00001{bottom:896.070450px;}
.y153_c00001{bottom:898.320450px;}
.y11e_c00001{bottom:901.200450px;}
.ycf_c00001{bottom:903.900450px;}
.y58_c00001{bottom:906.240450px;}
.y3e_c00001{bottom:911.190450px;}
.yaa_c00001{bottom:911.550450px;}
.y84_c00001{bottom:912.720450px;}
.y11c_c00001{bottom:917.760000px;}
.y8_c00001{bottom:919.290450px;}
.y11d_c00001{bottom:921.810450px;}
.yf0_c00001{bottom:922.080450px;}
.y24_c00001{bottom:924.240450px;}
.y152_c00001{bottom:934.950450px;}
.y83_c00001{bottom:936.468210px;}
.y57_c00001{bottom:937.290450px;}
.y3d_c00001{bottom:942.240450px;}
.ya9_c00001{bottom:942.420450px;}
.y11b_c00001{bottom:942.510450px;}
.yce_c00001{bottom:942.780450px;}
.y151_c00001{bottom:945.300450px;}
.y7_c00001{bottom:950.340450px;}
.y82_c00001{bottom:954.564330px;}
.y23_c00001{bottom:955.290450px;}
.y11a_c00001{bottom:963.210450px;}
.ycd_c00001{bottom:963.480450px;}
.y81_c00001{bottom:972.660450px;}
.ya8_c00001{bottom:973.200450px;}
.y3c_c00001{bottom:973.290450px;}
.ycc_c00001{bottom:984.180450px;}
.y22_c00001{bottom:986.340450px;}
.y117_c00001{bottom:988.410450px;}
.y119_c00001{bottom:991.470450px;}
.y150_c00001{bottom:992.370450px;}
.ya7_c00001{bottom:993.900450px;}
.y6_c00001{bottom:999.390450px;}
.ycb_c00001{bottom:1000.830450px;}
.y3b_c00001{bottom:1004.340450px;}
.y116_c00001{bottom:1009.110450px;}
.y14f_c00001{bottom:1014.240450px;}
.ya6_c00001{bottom:1014.600450px;}
.y68_c00001{bottom:1017.390450px;}
.y80_c00001{bottom:1020.090450px;}
.y118_c00001{bottom:1022.610450px;}
.yca_c00001{bottom:1025.490450px;}
.y115_c00001{bottom:1029.810450px;}
.ya5_c00001{bottom:1035.300450px;}
.y21_c00001{bottom:1035.390450px;}
.y14e_c00001{bottom:1035.480450px;}
.y5_c00001{bottom:1038.540450px;}
.y7d_c00001{bottom:1048.440450px;}
.y112_c00001{bottom:1050.960000px;}
.y114_c00001{bottom:1055.010450px;}
.ya4_c00001{bottom:1056.180450px;}
.yc9_c00001{bottom:1056.450450px;}
.y7f_c00001{bottom:1059.240450px;}
.y20_c00001{bottom:1066.440450px;}
.y111_c00001{bottom:1075.710450px;}
.ya3_c00001{bottom:1076.880450px;}
.y4_c00001{bottom:1079.670450px;}
.yc8_c00001{bottom:1087.320450px;}
.y14d_c00001{bottom:1093.530450px;}
.y110_c00001{bottom:1096.410450px;}
.y1f_c00001{bottom:1097.490450px;}
.y3_c00001{bottom:1097.580450px;}
.y7e_c00001{bottom:1100.370450px;}
.hd_c00001{height:20.250000px;}
.h8_c00001{height:51.679688px;}
.h2_c00001{height:52.751777px;}
.h1_c00001{height:63.175781px;}
.h5_c00001{height:64.148040px;}
.h4_c00001{height:64.546875px;}
.h7_c00001{height:70.628906px;}
.h6_c00001{height:72.562500px;}
.h3_c00001{height:87.484219px;}
.he_c00001{height:112.855181px;}
.hf_c00001{height:112.855781px;}
.h11_c00001{height:113.215181px;}
.hc_c00001{height:113.215781px;}
.h10_c00001{height:113.216381px;}
.hb_c00001{height:113.602500px;}
.h9_c00001{height:113.962500px;}
.ha_c00001{height:155.002500px;}
.h12_c00001{height:155.362500px;}
.h0_c00001{height:1263.000000px;}
.w2_c00001{width:65.610000px;}
.w3_c00001{width:95.490000px;}
.w4_c00001{width:115.470000px;}
.w1_c00001{width:892.500000px;}
.w0_c00001{width:892.830000px;}
.x0_c00001{left:0.000000px;}
.x5_c00001{left:127.620000px;}
.x1d_c00001{left:131.972356px;}
.xa_c00001{left:134.707774px;}
.x9_c00001{left:136.628747px;}
.x8_c00001{left:158.040000px;}
.x2_c00001{left:170.100000px;}
.x6_c00001{left:179.100000px;}
.x3_c00001{left:197.100000px;}
.x7_c00001{left:200.520000px;}
.x1e_c00001{left:211.176002px;}
.xb_c00001{left:217.689876px;}
.x27_c00001{left:245.250000px;}
.x20_c00001{left:257.940000px;}
.xd_c00001{left:265.410000px;}
.x21_c00001{left:304.380000px;}
.x15_c00001{left:307.890000px;}
.xe_c00001{left:311.850000px;}
.x22_c00001{left:342.990000px;}
.xf_c00001{left:349.920000px;}
.x16_c00001{left:354.330000px;}
.x1f_c00001{left:356.160775px;}
.xc_c00001{left:363.052495px;}
.x23_c00001{left:389.430000px;}
.x17_c00001{left:392.400000px;}
.x10_c00001{left:396.360000px;}
.x24_c00001{left:425.340000px;}
.x11_c00001{left:431.190000px;}
.x18_c00001{left:438.840000px;}
.x25_c00001{left:471.780000px;}
.x19_c00001{left:473.760000px;}
.x12_c00001{left:477.630000px;}
.x26_c00001{left:507.780000px;}
.x13_c00001{left:512.550000px;}
.x1a_c00001{left:520.200000px;}
.x1b_c00001{left:555.030000px;}
.x14_c00001{left:558.990000px;}
.x1c_c00001{left:601.470000px;}
.x4_c00001{left:695.880000px;}
.x1_c00001{left:738.360000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.v1_c00001{vertical-align:36.800000pt;}
.v2_c00001{vertical-align:44.480000pt;}
.ls29_c00001{letter-spacing:-0.480000pt;}
.ls28_c00001{letter-spacing:-0.198400pt;}
.ls33_c00001{letter-spacing:-0.172800pt;}
.ls32_c00001{letter-spacing:-0.128000pt;}
.ls4_c00001{letter-spacing:-0.096000pt;}
.lse_c00001{letter-spacing:-0.083200pt;}
.ls12_c00001{letter-spacing:-0.076800pt;}
.lsb_c00001{letter-spacing:-0.064000pt;}
.lsa_c00001{letter-spacing:-0.057600pt;}
.lsd_c00001{letter-spacing:-0.051200pt;}
.ls19_c00001{letter-spacing:-0.048096pt;}
.ls9_c00001{letter-spacing:-0.044800pt;}
.ls3_c00001{letter-spacing:-0.038400pt;}
.ls1a_c00001{letter-spacing:-0.037408pt;}
.ls7_c00001{letter-spacing:-0.032000pt;}
.ls8_c00001{letter-spacing:-0.025600pt;}
.ls6_c00001{letter-spacing:-0.019200pt;}
.ls1b_c00001{letter-spacing:-0.016032pt;}
.ls11_c00001{letter-spacing:-0.012800pt;}
.lsc_c00001{letter-spacing:-0.006400pt;}
.ls1_c00001{letter-spacing:0.000000pt;}
.lsf_c00001{letter-spacing:0.006400pt;}
.ls2_c00001{letter-spacing:0.012800pt;}
.ls10_c00001{letter-spacing:0.019200pt;}
.ls5_c00001{letter-spacing:0.025600pt;}
.ls1c_c00001{letter-spacing:0.032000pt;}
.ls18_c00001{letter-spacing:0.038400pt;}
.ls20_c00001{letter-spacing:0.044800pt;}
.ls15_c00001{letter-spacing:0.051200pt;}
.ls21_c00001{letter-spacing:0.057600pt;}
.ls1d_c00001{letter-spacing:0.064000pt;}
.ls17_c00001{letter-spacing:0.070400pt;}
.ls1e_c00001{letter-spacing:0.076800pt;}
.ls16_c00001{letter-spacing:0.083200pt;}
.ls0_c00001{letter-spacing:0.089472pt;}
.ls2b_c00001{letter-spacing:0.089600pt;}
.ls1f_c00001{letter-spacing:0.096000pt;}
.ls14_c00001{letter-spacing:0.104384pt;}
.ls30_c00001{letter-spacing:0.108800pt;}
.ls27_c00001{letter-spacing:0.166400pt;}
.ls22_c00001{letter-spacing:0.256000pt;}
.ls2c_c00001{letter-spacing:86.393600pt;}
.ls23_c00001{letter-spacing:99.833600pt;}
.ls24_c00001{letter-spacing:107.264000pt;}
.ls2d_c00001{letter-spacing:111.424000pt;}
.ls2a_c00001{letter-spacing:155.200000pt;}
.ls26_c00001{letter-spacing:155.269935pt;}
.ls2f_c00001{letter-spacing:164.873857pt;}
.ls31_c00001{letter-spacing:279.875968pt;}
.ls2e_c00001{letter-spacing:542.826740pt;}
.ls25_c00001{letter-spacing:569.523687pt;}
.ls13_c00001{letter-spacing:750.220800pt;}
.ws103_c00001{word-spacing:-64.000000pt;}
.wsd8_c00001{word-spacing:-17.766400pt;}
.ws100_c00001{word-spacing:-17.747200pt;}
.ws106_c00001{word-spacing:-16.044800pt;}
.ws108_c00001{word-spacing:-16.032000pt;}
.wsf4_c00001{word-spacing:-15.987200pt;}
.ws109_c00001{word-spacing:-15.980800pt;}
.wsbb_c00001{word-spacing:-3.737600pt;}
.wsbc_c00001{word-spacing:-3.654400pt;}
.wsc5_c00001{word-spacing:-3.417600pt;}
.ws12_c00001{word-spacing:-3.353600pt;}
.wsc6_c00001{word-spacing:-3.347200pt;}
.ws2c_c00001{word-spacing:-3.340800pt;}
.ws13_c00001{word-spacing:-3.334400pt;}
.ws81_c00001{word-spacing:-3.321600pt;}
.ws2d_c00001{word-spacing:-3.270400pt;}
.ws91_c00001{word-spacing:-3.174400pt;}
.ws90_c00001{word-spacing:-3.110400pt;}
.ws8f_c00001{word-spacing:-3.040000pt;}
.ws9_c00001{word-spacing:-3.020800pt;}
.wsa_c00001{word-spacing:-3.014400pt;}
.ws65_c00001{word-spacing:-3.001600pt;}
.ws42_c00001{word-spacing:-2.726400pt;}
.wsdd_c00001{word-spacing:-2.720000pt;}
.wsdc_c00001{word-spacing:-2.713600pt;}
.ws43_c00001{word-spacing:-2.694400pt;}
.wse6_c00001{word-spacing:-2.425600pt;}
.wsd0_c00001{word-spacing:-2.380800pt;}
.wse5_c00001{word-spacing:-2.368000pt;}
.ws1e_c00001{word-spacing:-2.252800pt;}
.wse2_c00001{word-spacing:-2.112000pt;}
.ws80_c00001{word-spacing:-2.080000pt;}
.wse1_c00001{word-spacing:-2.073600pt;}
.ws1f_c00001{word-spacing:-2.067200pt;}
.wse0_c00001{word-spacing:-2.009600pt;}
.ws57_c00001{word-spacing:-1.491200pt;}
.ws56_c00001{word-spacing:-1.427200pt;}
.ws30_c00001{word-spacing:-1.132800pt;}
.ws9e_c00001{word-spacing:-1.120000pt;}
.ws31_c00001{word-spacing:-1.043200pt;}
.wsca_c00001{word-spacing:-0.844800pt;}
.wsc7_c00001{word-spacing:-0.825600pt;}
.wsba_c00001{word-spacing:-0.806400pt;}
.ws62_c00001{word-spacing:-0.800000pt;}
.wsa0_c00001{word-spacing:-0.780800pt;}
.ws8c_c00001{word-spacing:-0.774400pt;}
.wscb_c00001{word-spacing:-0.768000pt;}
.wsb8_c00001{word-spacing:-0.755200pt;}
.ws9f_c00001{word-spacing:-0.736000pt;}
.ws8d_c00001{word-spacing:-0.710400pt;}
.wsb9_c00001{word-spacing:-0.640000pt;}
.ws19_c00001{word-spacing:-0.595200pt;}
.ws61_c00001{word-spacing:-0.460800pt;}
.ws18_c00001{word-spacing:-0.454400pt;}
.ws1a_c00001{word-spacing:-0.435200pt;}
.ws113_c00001{word-spacing:-0.416000pt;}
.ws118_c00001{word-spacing:-0.396800pt;}
.ws10c_c00001{word-spacing:-0.377600pt;}
.ws10f_c00001{word-spacing:-0.371200pt;}
.ws10e_c00001{word-spacing:-0.364800pt;}
.ws112_c00001{word-spacing:-0.352000pt;}
.ws111_c00001{word-spacing:-0.345600pt;}
.ws10a_c00001{word-spacing:-0.256000pt;}
.ws104_c00001{word-spacing:-0.230400pt;}
.ws114_c00001{word-spacing:-0.211200pt;}
.ws119_c00001{word-spacing:-0.198400pt;}
.wsee_c00001{word-spacing:-0.192000pt;}
.wsfd_c00001{word-spacing:-0.179200pt;}
.ws102_c00001{word-spacing:-0.153600pt;}
.ws7f_c00001{word-spacing:-0.147200pt;}
.wsf7_c00001{word-spacing:-0.140800pt;}
.wsa3_c00001{word-spacing:-0.134400pt;}
.ws7e_c00001{word-spacing:-0.128000pt;}
.wsf9_c00001{word-spacing:-0.121600pt;}
.ws101_c00001{word-spacing:-0.115200pt;}
.ws105_c00001{word-spacing:-0.108800pt;}
.wsfc_c00001{word-spacing:-0.102400pt;}
.wsf2_c00001{word-spacing:-0.089600pt;}
.wsed_c00001{word-spacing:-0.076800pt;}
.wsfe_c00001{word-spacing:-0.070400pt;}
.wsa2_c00001{word-spacing:-0.064000pt;}
.wsf8_c00001{word-spacing:-0.057600pt;}
.wsfb_c00001{word-spacing:-0.051200pt;}
.wsec_c00001{word-spacing:-0.044800pt;}
.wsff_c00001{word-spacing:-0.038400pt;}
.wseb_c00001{word-spacing:-0.037408pt;}
.wsf0_c00001{word-spacing:-0.032000pt;}
.wsf6_c00001{word-spacing:-0.025600pt;}
.wsfa_c00001{word-spacing:-0.019200pt;}
.wsef_c00001{word-spacing:-0.012800pt;}
.wsf5_c00001{word-spacing:-0.006400pt;}
.ws0_c00001{word-spacing:0.000000pt;}
.ws3b_c00001{word-spacing:0.006400pt;}
.ws49_c00001{word-spacing:0.012800pt;}
.ws110_c00001{word-spacing:0.019200pt;}
.wsf3_c00001{word-spacing:0.025600pt;}
.wse7_c00001{word-spacing:0.032000pt;}
.ws10b_c00001{word-spacing:0.038400pt;}
.wsf1_c00001{word-spacing:0.057600pt;}
.ws115_c00001{word-spacing:0.064000pt;}
.wsea_c00001{word-spacing:0.069472pt;}
.wse9_c00001{word-spacing:0.080160pt;}
.wsa4_c00001{word-spacing:0.089600pt;}
.ws116_c00001{word-spacing:0.108800pt;}
.ws5_c00001{word-spacing:0.115200pt;}
.ws2_c00001{word-spacing:0.128000pt;}
.ws98_c00001{word-spacing:0.134400pt;}
.ws87_c00001{word-spacing:0.140800pt;}
.ws4a_c00001{word-spacing:0.147200pt;}
.ws55_c00001{word-spacing:0.153600pt;}
.ws1d_c00001{word-spacing:0.160000pt;}
.ws48_c00001{word-spacing:0.166400pt;}
.ws29_c00001{word-spacing:0.172800pt;}
.ws94_c00001{word-spacing:0.179200pt;}
.wsbe_c00001{word-spacing:0.185600pt;}
.ws66_c00001{word-spacing:0.243200pt;}
.ws71_c00001{word-spacing:0.256000pt;}
.wsce_c00001{word-spacing:0.275200pt;}
.ws7a_c00001{word-spacing:0.326400pt;}
.ws10d_c00001{word-spacing:0.486400pt;}
.ws74_c00001{word-spacing:0.499200pt;}
.ws96_c00001{word-spacing:0.736000pt;}
.wse3_c00001{word-spacing:0.742400pt;}
.ws1c_c00001{word-spacing:0.761600pt;}
.ws34_c00001{word-spacing:0.774400pt;}
.ws4f_c00001{word-spacing:0.787200pt;}
.ws50_c00001{word-spacing:0.800000pt;}
.ws36_c00001{word-spacing:0.819200pt;}
.wse4_c00001{word-spacing:0.825600pt;}
.ws1b_c00001{word-spacing:0.832000pt;}
.ws97_c00001{word-spacing:0.883200pt;}
.ws35_c00001{word-spacing:0.972800pt;}
.wscd_c00001{word-spacing:1.120000pt;}
.ws5a_c00001{word-spacing:1.132800pt;}
.wscc_c00001{word-spacing:1.171200pt;}
.wsa5_c00001{word-spacing:1.190400pt;}
.ws59_c00001{word-spacing:1.209600pt;}
.ws15_c00001{word-spacing:1.427200pt;}
.ws93_c00001{word-spacing:1.440000pt;}
.ws54_c00001{word-spacing:1.459200pt;}
.ws14_c00001{word-spacing:1.497600pt;}
.ws25_c00001{word-spacing:1.625600pt;}
.ws23_c00001{word-spacing:1.734400pt;}
.ws24_c00001{word-spacing:1.804800pt;}
.ws39_c00001{word-spacing:2.080000pt;}
.ws3a_c00001{word-spacing:2.092800pt;}
.ws8b_c00001{word-spacing:2.451200pt;}
.ws8a_c00001{word-spacing:2.470400pt;}
.wsc_c00001{word-spacing:2.732800pt;}
.wsd_c00001{word-spacing:2.745600pt;}
.ws63_c00001{word-spacing:3.027200pt;}
.wsd9_c00001{word-spacing:3.052800pt;}
.ws6_c00001{word-spacing:3.059200pt;}
.ws60_c00001{word-spacing:3.072000pt;}
.ws6c_c00001{word-spacing:3.104000pt;}
.ws6d_c00001{word-spacing:3.174400pt;}
.ws77_c00001{word-spacing:3.353600pt;}
.ws76_c00001{word-spacing:3.372800pt;}
.ws75_c00001{word-spacing:3.398400pt;}
.wsbd_c00001{word-spacing:3.430400pt;}
.ws7b_c00001{word-spacing:3.436800pt;}
.ws88_c00001{word-spacing:3.910400pt;}
.ws89_c00001{word-spacing:3.948800pt;}
.ws73_c00001{word-spacing:4.275200pt;}
.ws2b_c00001{word-spacing:4.307200pt;}
.ws2a_c00001{word-spacing:4.332800pt;}
.ws72_c00001{word-spacing:4.345600pt;}
.ws67_c00001{word-spacing:4.569600pt;}
.ws4c_c00001{word-spacing:4.627200pt;}
.wsd3_c00001{word-spacing:4.652800pt;}
.ws4b_c00001{word-spacing:4.723200pt;}
.wsd4_c00001{word-spacing:4.748800pt;}
.ws68_c00001{word-spacing:4.768000pt;}
.wsb_c00001{word-spacing:4.972800pt;}
.wsdf_c00001{word-spacing:4.985600pt;}
.wsde_c00001{word-spacing:5.030400pt;}
.ws5e_c00001{word-spacing:5.248000pt;}
.ws5f_c00001{word-spacing:5.369600pt;}
.ws26_c00001{word-spacing:5.504000pt;}
.ws27_c00001{word-spacing:5.587200pt;}
.ws4e_c00001{word-spacing:5.593600pt;}
.ws7_c00001{word-spacing:5.600000pt;}
.ws8_c00001{word-spacing:5.606400pt;}
.ws17_c00001{word-spacing:5.632000pt;}
.ws95_c00001{word-spacing:5.638400pt;}
.ws16_c00001{word-spacing:5.644800pt;}
.ws84_c00001{word-spacing:5.888000pt;}
.ws4d_c00001{word-spacing:5.907200pt;}
.wsb6_c00001{word-spacing:5.913600pt;}
.ws83_c00001{word-spacing:5.920000pt;}
.wsb5_c00001{word-spacing:5.971200pt;}
.wsc0_c00001{word-spacing:6.246400pt;}
.wsbf_c00001{word-spacing:6.265600pt;}
.wsac_c00001{word-spacing:6.572800pt;}
.ws5d_c00001{word-spacing:6.880000pt;}
.wsb0_c00001{word-spacing:6.892800pt;}
.wscf_c00001{word-spacing:6.899200pt;}
.ws5c_c00001{word-spacing:6.944000pt;}
.ws5b_c00001{word-spacing:6.982400pt;}
.wsae_c00001{word-spacing:7.129600pt;}
.wsc3_c00001{word-spacing:7.200000pt;}
.wsad_c00001{word-spacing:7.212800pt;}
.wsc4_c00001{word-spacing:7.270400pt;}
.ws28_c00001{word-spacing:7.827200pt;}
.wsc8_c00001{word-spacing:8.217600pt;}
.wsc9_c00001{word-spacing:8.243200pt;}
.ws92_c00001{word-spacing:8.819200pt;}
.wsb1_c00001{word-spacing:9.420800pt;}
.wsb2_c00001{word-spacing:9.478400pt;}
.ws6e_c00001{word-spacing:9.600000pt;}
.ws6f_c00001{word-spacing:9.766400pt;}
.wsd5_c00001{word-spacing:9.804800pt;}
.ws64_c00001{word-spacing:10.438400pt;}
.ws46_c00001{word-spacing:10.720000pt;}
.ws47_c00001{word-spacing:10.739200pt;}
.wsaf_c00001{word-spacing:10.752000pt;}
.ws7d_c00001{word-spacing:10.777600pt;}
.ws7c_c00001{word-spacing:10.816000pt;}
.wsa7_c00001{word-spacing:11.027200pt;}
.wsa6_c00001{word-spacing:11.155200pt;}
.ws44_c00001{word-spacing:11.353600pt;}
.ws9a_c00001{word-spacing:12.019200pt;}
.ws99_c00001{word-spacing:12.025600pt;}
.wsa1_c00001{word-spacing:12.032000pt;}
.ws53_c00001{word-spacing:12.320000pt;}
.ws51_c00001{word-spacing:12.326400pt;}
.ws52_c00001{word-spacing:12.467200pt;}
.ws6a_c00001{word-spacing:12.563200pt;}
.ws69_c00001{word-spacing:12.640000pt;}
.ws6b_c00001{word-spacing:12.704000pt;}
.wsb4_c00001{word-spacing:13.203200pt;}
.wsb3_c00001{word-spacing:13.299200pt;}
.wsc2_c00001{word-spacing:14.553600pt;}
.ws3e_c00001{word-spacing:14.560000pt;}
.wsc1_c00001{word-spacing:14.617600pt;}
.ws3f_c00001{word-spacing:14.636800pt;}
.ws3c_c00001{word-spacing:15.200000pt;}
.ws3d_c00001{word-spacing:15.212800pt;}
.ws45_c00001{word-spacing:15.532800pt;}
.wse_c00001{word-spacing:15.558400pt;}
.wsf_c00001{word-spacing:15.564800pt;}
.ws11_c00001{word-spacing:15.795200pt;}
.ws10_c00001{word-spacing:15.865600pt;}
.ws86_c00001{word-spacing:16.467200pt;}
.ws85_c00001{word-spacing:16.492800pt;}
.wsb7_c00001{word-spacing:16.499200pt;}
.ws32_c00001{word-spacing:17.100800pt;}
.ws8e_c00001{word-spacing:17.132800pt;}
.ws33_c00001{word-spacing:17.273600pt;}
.ws41_c00001{word-spacing:18.003200pt;}
.ws40_c00001{word-spacing:18.086400pt;}
.wsaa_c00001{word-spacing:19.571200pt;}
.wsab_c00001{word-spacing:19.750400pt;}
.wsd1_c00001{word-spacing:19.961600pt;}
.wsd2_c00001{word-spacing:20.012800pt;}
.wsa8_c00001{word-spacing:21.619200pt;}
.wsa9_c00001{word-spacing:21.644800pt;}
.ws21_c00001{word-spacing:22.131200pt;}
.ws22_c00001{word-spacing:22.265600pt;}
.ws58_c00001{word-spacing:23.507200pt;}
.ws20_c00001{word-spacing:24.172800pt;}
.ws79_c00001{word-spacing:25.132800pt;}
.ws78_c00001{word-spacing:25.152000pt;}
.wsda_c00001{word-spacing:28.902400pt;}
.wsdb_c00001{word-spacing:28.960000pt;}
.ws70_c00001{word-spacing:30.265600pt;}
.ws3_c00001{word-spacing:30.470400pt;}
.ws4_c00001{word-spacing:30.585600pt;}
.ws107_c00001{word-spacing:33.548800pt;}
.ws37_c00001{word-spacing:34.099200pt;}
.ws38_c00001{word-spacing:34.227200pt;}
.ws117_c00001{word-spacing:35.468800pt;}
.wsd7_c00001{word-spacing:37.292800pt;}
.wsd6_c00001{word-spacing:37.305600pt;}
.ws9b_c00001{word-spacing:41.440000pt;}
.ws9c_c00001{word-spacing:42.720000pt;}
.ws9d_c00001{word-spacing:42.796800pt;}
.ws82_c00001{word-spacing:47.513600pt;}
.ws2e_c00001{word-spacing:66.387200pt;}
.ws2f_c00001{word-spacing:66.393600pt;}
.ws1_c00001{word-spacing:136.318048pt;}
.wse8_c00001{word-spacing:136.362784pt;}
._0_c00001{margin-left:-136.295680pt;}
._6_c00001{margin-left:-7.334400pt;}
._2_c00001{margin-left:-1.024000pt;}
._1_c00001{width:1.267200pt;}
._a_c00001{width:5.401600pt;}
._e_c00001{width:19.184960pt;}
._5_c00001{width:108.226286pt;}
._3_c00001{width:125.184000pt;}
._4_c00001{width:170.944000pt;}
._8_c00001{width:241.052440pt;}
._c_c00001{width:244.894009pt;}
._7_c00001{width:252.577146pt;}
._b_c00001{width:254.497930pt;}
._9_c00001{width:342.854009pt;}
._d_c00001{width:352.457931pt;}
.fs1_c00001{font-size:53.440000pt;}
.fs0_c00001{font-size:64.000000pt;}
.fs2_c00001{font-size:74.560000pt;}
.y0_c00001{bottom:0.000000pt;}
.y113_c00001{bottom:3.600400pt;}
.y2_c00001{bottom:41.627067pt;}
.y1_c00001{bottom:60.027067pt;}
.yef_c00001{bottom:125.947067pt;}
.y14a_c00001{bottom:126.667067pt;}
.ya2_c00001{bottom:128.827067pt;}
.y10d_c00001{bottom:128.987067pt;}
.y56_c00001{bottom:130.027067pt;}
.yee_c00001{bottom:144.347067pt;}
.y149_c00001{bottom:145.067067pt;}
.y1e_c00001{bottom:146.027067pt;}
.y10c_c00001{bottom:147.387067pt;}
.y46_c00001{bottom:150.427067pt;}
.ya1_c00001{bottom:150.747067pt;}
.y55_c00001{bottom:157.627067pt;}
.y10f_c00001{bottom:159.307067pt;}
.yc7_c00001{bottom:160.907067pt;}
.yed_c00001{bottom:162.907067pt;}
.y148_c00001{bottom:163.467067pt;}
.y10b_c00001{bottom:165.787067pt;}
.y3a_c00001{bottom:166.427067pt;}
.y67_c00001{bottom:169.227067pt;}
.y1d_c00001{bottom:173.627067pt;}
.y45_c00001{bottom:178.027067pt;}
.ya0_c00001{bottom:178.187200pt;}
.yc6_c00001{bottom:179.307067pt;}
.yec_c00001{bottom:181.307067pt;}
.y147_c00001{bottom:181.867067pt;}
.y10a_c00001{bottom:184.187067pt;}
.y73_c00001{bottom:185.227067pt;}
.y10e_c00001{bottom:186.987067pt;}
.y39_c00001{bottom:194.027067pt;}
.y66_c00001{bottom:196.827067pt;}
.yc5_c00001{bottom:197.867067pt;}
.yeb_c00001{bottom:199.707067pt;}
.y146_c00001{bottom:200.267067pt;}
.y1c_c00001{bottom:201.227067pt;}
.y109_c00001{bottom:202.587067pt;}
.y44_c00001{bottom:205.627067pt;}
.y9f_c00001{bottom:205.707067pt;}
.y14c_c00001{bottom:212.187200pt;}
.y72_c00001{bottom:212.827067pt;}
.yea_c00001{bottom:214.507067pt;}
.yc4_c00001{bottom:216.267067pt;}
.y145_c00001{bottom:218.667067pt;}
.y108_c00001{bottom:220.987067pt;}
.y38_c00001{bottom:221.627067pt;}
.y65_c00001{bottom:224.347067pt;}
.y1b_c00001{bottom:228.827067pt;}
.y9e_c00001{bottom:233.147067pt;}
.y43_c00001{bottom:233.227067pt;}
.yc3_c00001{bottom:234.667067pt;}
.ye9_c00001{bottom:236.427067pt;}
.y144_c00001{bottom:237.067067pt;}
.y14b_c00001{bottom:239.867067pt;}
.y107_c00001{bottom:243.387200pt;}
.y54_c00001{bottom:244.827067pt;}
.y37_c00001{bottom:249.227067pt;}
.yc2_c00001{bottom:249.467067pt;}
.y143_c00001{bottom:255.467067pt;}
.y1a_c00001{bottom:256.347067pt;}
.y7c_c00001{bottom:259.147067pt;}
.y9d_c00001{bottom:260.507067pt;}
.ye8_c00001{bottom:263.947067pt;}
.y64_c00001{bottom:267.947067pt;}
.yc1_c00001{bottom:271.387067pt;}
.y53_c00001{bottom:272.347067pt;}
.y142_c00001{bottom:273.867067pt;}
.y106_c00001{bottom:276.027200pt;}
.y36_c00001{bottom:276.827067pt;}
.y9c_c00001{bottom:279.067067pt;}
.y19_c00001{bottom:283.947067pt;}
.y105_c00001{bottom:285.147200pt;}
.y140_c00001{bottom:288.666667pt;}
.ye7_c00001{bottom:291.387067pt;}
.y141_c00001{bottom:292.267067pt;}
.y63_c00001{bottom:295.547067pt;}
.y9b_c00001{bottom:297.467067pt;}
.yc0_c00001{bottom:298.827067pt;}
.y52_c00001{bottom:299.947067pt;}
.y7b_c00001{bottom:302.747067pt;}
.y35_c00001{bottom:304.347067pt;}
.y13f_c00001{bottom:310.667067pt;}
.y18_c00001{bottom:311.547067pt;}
.y9a_c00001{bottom:315.867067pt;}
.ye6_c00001{bottom:318.747067pt;}
.y62_c00001{bottom:323.147067pt;}
.ybf_c00001{bottom:326.347067pt;}
.y104_c00001{bottom:326.987200pt;}
.y71_c00001{bottom:327.547067pt;}
.y13e_c00001{bottom:329.067067pt;}
.y99_c00001{bottom:330.667067pt;}
.y34_c00001{bottom:331.947067pt;}
.ye5_c00001{bottom:337.147067pt;}
.y51_c00001{bottom:343.547067pt;}
.y7a_c00001{bottom:346.347067pt;}
.y103_c00001{bottom:346.427200pt;}
.y61_c00001{bottom:350.747067pt;}
.y13b_c00001{bottom:351.467067pt;}
.y98_c00001{bottom:352.587067pt;}
.ybe_c00001{bottom:353.787067pt;}
.y17_c00001{bottom:355.147067pt;}
.y102_c00001{bottom:365.307200pt;}
.y13a_c00001{bottom:369.867067pt;}
.y50_c00001{bottom:371.147067pt;}
.ye4_c00001{bottom:371.707067pt;}
.y33_c00001{bottom:375.547067pt;}
.y60_c00001{bottom:378.347067pt;}
.y97_c00001{bottom:380.027067pt;}
.ybd_c00001{bottom:381.147067pt;}
.y16_c00001{bottom:382.747067pt;}
.y101_c00001{bottom:383.707200pt;}
.y139_c00001{bottom:388.267067pt;}
.y79_c00001{bottom:389.947067pt;}
.ye3_c00001{bottom:390.107067pt;}
.y4f_c00001{bottom:398.747067pt;}
.ybc_c00001{bottom:399.707067pt;}
.y100_c00001{bottom:402.107200pt;}
.y16c_c00001{bottom:402.427067pt;}
.y138_c00001{bottom:406.667067pt;}
.y96_c00001{bottom:407.547067pt;}
.ye2_c00001{bottom:408.507067pt;}
.y15_c00001{bottom:410.347067pt;}
.yff_c00001{bottom:416.907200pt;}
.ybb_c00001{bottom:418.107067pt;}
.y32_c00001{bottom:419.147067pt;}
.y5f_c00001{bottom:421.947067pt;}
.ye1_c00001{bottom:423.307067pt;}
.y137_c00001{bottom:425.067067pt;}
.y70_c00001{bottom:426.347067pt;}
.y13d_c00001{bottom:427.787067pt;}
.y78_c00001{bottom:433.547067pt;}
.y95_c00001{bottom:435.067067pt;}
.yba_c00001{bottom:436.507067pt;}
.y16a_c00001{bottom:436.907067pt;}
.y14_c00001{bottom:437.947067pt;}
.yfe_c00001{bottom:438.907200pt;}
.y4e_c00001{bottom:442.347067pt;}
.y136_c00001{bottom:443.467067pt;}
.ye0_c00001{bottom:445.227067pt;}
.y31_c00001{bottom:446.747067pt;}
.yb9_c00001{bottom:451.307067pt;}
.y94_c00001{bottom:453.467067pt;}
.y6f_c00001{bottom:453.947067pt;}
.y169_c00001{bottom:455.307067pt;}
.y13c_c00001{bottom:455.467067pt;}
.y135_c00001{bottom:461.867067pt;}
.y13_c00001{bottom:465.547067pt;}
.yfd_c00001{bottom:466.427067pt;}
.y4d_c00001{bottom:469.947067pt;}
.y93_c00001{bottom:471.867067pt;}
.ydf_c00001{bottom:472.667067pt;}
.yb8_c00001{bottom:473.227067pt;}
.y168_c00001{bottom:473.707067pt;}
.y30_c00001{bottom:474.347067pt;}
.y77_c00001{bottom:477.147067pt;}
.y134_c00001{bottom:480.267067pt;}
.y6e_c00001{bottom:481.547067pt;}
.y16b_c00001{bottom:483.867067pt;}
.yfc_c00001{bottom:484.827067pt;}
.y92_c00001{bottom:490.267067pt;}
.y167_c00001{bottom:492.107067pt;}
.y12_c00001{bottom:493.147067pt;}
.y4c_c00001{bottom:497.547067pt;}
.y133_c00001{bottom:498.667067pt;}
.yde_c00001{bottom:500.107067pt;}
.yb7_c00001{bottom:500.747067pt;}
.y2f_c00001{bottom:501.947067pt;}
.yfb_c00001{bottom:503.227067pt;}
.y91_c00001{bottom:505.067067pt;}
.y6d_c00001{bottom:509.147067pt;}
.y166_c00001{bottom:510.507067pt;}
.y132_c00001{bottom:517.067067pt;}
.yb6_c00001{bottom:519.147067pt;}
.y11_c00001{bottom:520.747067pt;}
.yfa_c00001{bottom:521.627067pt;}
.y90_c00001{bottom:527.067067pt;}
.ydd_c00001{bottom:527.627067pt;}
.y165_c00001{bottom:528.907067pt;}
.y2e_c00001{bottom:529.547067pt;}
.y131_c00001{bottom:535.467067pt;}
.yf9_c00001{bottom:536.427067pt;}
.yb5_c00001{bottom:537.467067pt;}
.y4b_c00001{bottom:541.147067pt;}
.ydc_c00001{bottom:546.027067pt;}
.y10_c00001{bottom:548.347067pt;}
.y162_c00001{bottom:551.307067pt;}
.y6c_c00001{bottom:552.747067pt;}
.y2d_c00001{bottom:557.147067pt;}
.y12e_c00001{bottom:557.867067pt;}
.yf8_c00001{bottom:558.347067pt;}
.y76_c00001{bottom:564.347067pt;}
.ydb_c00001{bottom:564.427067pt;}
.yb4_c00001{bottom:564.907067pt;}
.y4a_c00001{bottom:568.747067pt;}
.y161_c00001{bottom:569.707067pt;}
.yf_c00001{bottom:575.947067pt;}
.y12d_c00001{bottom:576.267067pt;}
.yda_c00001{bottom:582.827067pt;}
.y8f_c00001{bottom:584.427067pt;}
.y2c_c00001{bottom:584.747067pt;}
.yf7_c00001{bottom:585.867067pt;}
.y160_c00001{bottom:588.107067pt;}
.y164_c00001{bottom:590.827067pt;}
.y5e_c00001{bottom:591.947067pt;}
.yb3_c00001{bottom:592.427067pt;}
.y12c_c00001{bottom:594.667067pt;}
.y49_c00001{bottom:596.347067pt;}
.y42_c00001{bottom:600.747067pt;}
.yd9_c00001{bottom:601.227067pt;}
.y8e_c00001{bottom:602.827067pt;}
.ye_c00001{bottom:603.547067pt;}
.yf6_c00001{bottom:604.267067pt;}
.y15f_c00001{bottom:606.507067pt;}
.y130_c00001{bottom:606.587067pt;}
.y75_c00001{bottom:607.947067pt;}
.y2b_c00001{bottom:612.347067pt;}
.y12b_c00001{bottom:613.067067pt;}
.y163_c00001{bottom:618.507067pt;}
.y5d_c00001{bottom:619.547067pt;}
.yd8_c00001{bottom:619.627067pt;}
.yb2_c00001{bottom:619.867067pt;}
.y8d_c00001{bottom:621.227067pt;}
.yf5_c00001{bottom:622.667067pt;}
.y48_c00001{bottom:623.947067pt;}
.y15e_c00001{bottom:624.907067pt;}
.y41_c00001{bottom:628.347067pt;}
.yd_c00001{bottom:631.147067pt;}
.y12a_c00001{bottom:631.467067pt;}
.y12f_c00001{bottom:634.267067pt;}
.yd7_c00001{bottom:638.027067pt;}
.y8c_c00001{bottom:639.627067pt;}
.y2a_c00001{bottom:639.947067pt;}
.yf4_c00001{bottom:641.067067pt;}
.y15d_c00001{bottom:643.307067pt;}
.y5c_c00001{bottom:647.147067pt;}
.yb1_c00001{bottom:647.227067pt;}
.y129_c00001{bottom:649.867067pt;}
.y74_c00001{bottom:651.547067pt;}
.y8b_c00001{bottom:654.427067pt;}
.y40_c00001{bottom:655.947067pt;}
.yd6_c00001{bottom:656.427067pt;}
.yc_c00001{bottom:658.747067pt;}
.yf3_c00001{bottom:659.467067pt;}
.y15c_c00001{bottom:661.707067pt;}
.y127_c00001{bottom:664.666667pt;}
.y47_c00001{bottom:667.547067pt;}
.y128_c00001{bottom:668.267067pt;}
.yf2_c00001{bottom:674.267067pt;}
.yd5_c00001{bottom:674.827067pt;}
.y8a_c00001{bottom:676.347067pt;}
.yb0_c00001{bottom:681.787067pt;}
.y29_c00001{bottom:683.547067pt;}
.y159_c00001{bottom:684.107067pt;}
.yb_c00001{bottom:686.347067pt;}
.y126_c00001{bottom:686.667067pt;}
.y5b_c00001{bottom:690.747067pt;}
.yd4_c00001{bottom:693.227067pt;}
.y6b_c00001{bottom:695.147067pt;}
.yf1_c00001{bottom:696.267067pt;}
.yaf_c00001{bottom:700.187067pt;}
.y158_c00001{bottom:702.507067pt;}
.y89_c00001{bottom:703.787067pt;}
.y123_c00001{bottom:709.067067pt;}
.y28_c00001{bottom:711.147067pt;}
.yd3_c00001{bottom:711.547067pt;}
.y15b_c00001{bottom:714.427067pt;}
.yae_c00001{bottom:718.587067pt;}
.y157_c00001{bottom:720.907067pt;}
.y6a_c00001{bottom:722.747067pt;}
.y122_c00001{bottom:727.467067pt;}
.ya_c00001{bottom:729.947067pt;}
.yad_c00001{bottom:733.387067pt;}
.y5a_c00001{bottom:734.347067pt;}
.y27_c00001{bottom:738.747067pt;}
.y156_c00001{bottom:739.307067pt;}
.y88_c00001{bottom:741.307067pt;}
.y15a_c00001{bottom:742.107067pt;}
.y121_c00001{bottom:745.867067pt;}
.yd2_c00001{bottom:748.347067pt;}
.y69_c00001{bottom:750.347067pt;}
.yac_c00001{bottom:755.307067pt;}
.y155_c00001{bottom:757.707067pt;}
.y87_c00001{bottom:759.707067pt;}
.y59_c00001{bottom:761.947067pt;}
.y120_c00001{bottom:764.267067pt;}
.y26_c00001{bottom:766.347067pt;}
.yd1_c00001{bottom:766.747067pt;}
.y125_c00001{bottom:766.987200pt;}
.y9_c00001{bottom:773.547067pt;}
.y154_c00001{bottom:776.107067pt;}
.y86_c00001{bottom:778.107067pt;}
.y3f_c00001{bottom:782.347067pt;}
.y11f_c00001{bottom:782.667067pt;}
.yab_c00001{bottom:782.747067pt;}
.yd0_c00001{bottom:785.067067pt;}
.y25_c00001{bottom:793.947067pt;}
.y124_c00001{bottom:794.667200pt;}
.y85_c00001{bottom:796.507067pt;}
.y153_c00001{bottom:798.507067pt;}
.y11e_c00001{bottom:801.067067pt;}
.ycf_c00001{bottom:803.467067pt;}
.y58_c00001{bottom:805.547067pt;}
.y3e_c00001{bottom:809.947067pt;}
.yaa_c00001{bottom:810.267067pt;}
.y84_c00001{bottom:811.307067pt;}
.y11c_c00001{bottom:815.786667pt;}
.y8_c00001{bottom:817.147067pt;}
.y11d_c00001{bottom:819.387067pt;}
.yf0_c00001{bottom:819.627067pt;}
.y24_c00001{bottom:821.547067pt;}
.y152_c00001{bottom:831.067067pt;}
.y83_c00001{bottom:832.416187pt;}
.y57_c00001{bottom:833.147067pt;}
.y3d_c00001{bottom:837.547067pt;}
.ya9_c00001{bottom:837.707067pt;}
.y11b_c00001{bottom:837.787067pt;}
.yce_c00001{bottom:838.027067pt;}
.y151_c00001{bottom:840.267067pt;}
.y7_c00001{bottom:844.747067pt;}
.y82_c00001{bottom:848.501627pt;}
.y23_c00001{bottom:849.147067pt;}
.y11a_c00001{bottom:856.187067pt;}
.ycd_c00001{bottom:856.427067pt;}
.y81_c00001{bottom:864.587067pt;}
.ya8_c00001{bottom:865.067067pt;}
.y3c_c00001{bottom:865.147067pt;}
.ycc_c00001{bottom:874.827067pt;}
.y22_c00001{bottom:876.747067pt;}
.y117_c00001{bottom:878.587067pt;}
.y119_c00001{bottom:881.307067pt;}
.y150_c00001{bottom:882.107067pt;}
.ya7_c00001{bottom:883.467067pt;}
.y6_c00001{bottom:888.347067pt;}
.ycb_c00001{bottom:889.627067pt;}
.y3b_c00001{bottom:892.747067pt;}
.y116_c00001{bottom:896.987067pt;}
.y14f_c00001{bottom:901.547067pt;}
.ya6_c00001{bottom:901.867067pt;}
.y68_c00001{bottom:904.347067pt;}
.y80_c00001{bottom:906.747067pt;}
.y118_c00001{bottom:908.987067pt;}
.yca_c00001{bottom:911.547067pt;}
.y115_c00001{bottom:915.387067pt;}
.ya5_c00001{bottom:920.267067pt;}
.y21_c00001{bottom:920.347067pt;}
.y14e_c00001{bottom:920.427067pt;}
.y5_c00001{bottom:923.147067pt;}
.y7d_c00001{bottom:931.947067pt;}
.y112_c00001{bottom:934.186667pt;}
.y114_c00001{bottom:937.787067pt;}
.ya4_c00001{bottom:938.827067pt;}
.yc9_c00001{bottom:939.067067pt;}
.y7f_c00001{bottom:941.547067pt;}
.y20_c00001{bottom:947.947067pt;}
.y111_c00001{bottom:956.187067pt;}
.ya3_c00001{bottom:957.227067pt;}
.y4_c00001{bottom:959.707067pt;}
.yc8_c00001{bottom:966.507067pt;}
.y14d_c00001{bottom:972.027067pt;}
.y110_c00001{bottom:974.587067pt;}
.y1f_c00001{bottom:975.547067pt;}
.y3_c00001{bottom:975.627067pt;}
.y7e_c00001{bottom:978.107067pt;}
.hd_c00001{height:18.000000pt;}
.h8_c00001{height:45.937500pt;}
.h2_c00001{height:46.890469pt;}
.h1_c00001{height:56.156250pt;}
.h5_c00001{height:57.020480pt;}
.h4_c00001{height:57.375000pt;}
.h7_c00001{height:62.781250pt;}
.h6_c00001{height:64.500000pt;}
.h3_c00001{height:77.763750pt;}
.he_c00001{height:100.315717pt;}
.hf_c00001{height:100.316250pt;}
.h11_c00001{height:100.635717pt;}
.hc_c00001{height:100.636250pt;}
.h10_c00001{height:100.636783pt;}
.hb_c00001{height:100.980000pt;}
.h9_c00001{height:101.300000pt;}
.ha_c00001{height:137.780000pt;}
.h12_c00001{height:138.100000pt;}
.h0_c00001{height:1122.666667pt;}
.w2_c00001{width:58.320000pt;}
.w3_c00001{width:84.880000pt;}
.w4_c00001{width:102.640000pt;}
.w1_c00001{width:793.333333pt;}
.w0_c00001{width:793.626667pt;}
.x0_c00001{left:0.000000pt;}
.x5_c00001{left:113.440000pt;}
.x1d_c00001{left:117.308761pt;}
.xa_c00001{left:119.740244pt;}
.x9_c00001{left:121.447775pt;}
.x8_c00001{left:140.480000pt;}
.x2_c00001{left:151.200000pt;}
.x6_c00001{left:159.200000pt;}
.x3_c00001{left:175.200000pt;}
.x7_c00001{left:178.240000pt;}
.x1e_c00001{left:187.712001pt;}
.xb_c00001{left:193.502112pt;}
.x27_c00001{left:218.000000pt;}
.x20_c00001{left:229.280000pt;}
.xd_c00001{left:235.920000pt;}
.x21_c00001{left:270.560000pt;}
.x15_c00001{left:273.680000pt;}
.xe_c00001{left:277.200000pt;}
.x22_c00001{left:304.880000pt;}
.xf_c00001{left:311.040000pt;}
.x16_c00001{left:314.960000pt;}
.x1f_c00001{left:316.587356pt;}
.xc_c00001{left:322.713329pt;}
.x23_c00001{left:346.160000pt;}
.x17_c00001{left:348.800000pt;}
.x10_c00001{left:352.320000pt;}
.x24_c00001{left:378.080000pt;}
.x11_c00001{left:383.280000pt;}
.x18_c00001{left:390.080000pt;}
.x25_c00001{left:419.360000pt;}
.x19_c00001{left:421.120000pt;}
.x12_c00001{left:424.560000pt;}
.x26_c00001{left:451.360000pt;}
.x13_c00001{left:455.600000pt;}
.x1a_c00001{left:462.400000pt;}
.x1b_c00001{left:493.360000pt;}
.x14_c00001{left:496.880000pt;}
.x1c_c00001{left:534.640000pt;}
.x4_c00001{left:618.560000pt;}
.x1_c00001{left:656.320000pt;}
}




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